Lines Matching defs:copy
7 #include <algorithm> // For copy
226 // like a handle) that are dereferenced during the copy to point directly
1983 // TODO(gsathya): Do not copy hash code.
2405 BytecodeArray copy = BytecodeArray::cast(AllocateRawWithImmortalMap(
2409 copy.set_length(raw_source.length());
2410 copy.set_frame_size(raw_source.frame_size());
2411 copy.set_parameter_count(raw_source.parameter_count());
2412 copy.set_incoming_new_target_or_generator_register(
2414 copy.set_constant_pool(raw_source.constant_pool());
2415 copy.set_handler_table(raw_source.handler_table());
2416 copy.set_source_position_table(raw_source.source_position_table(kAcquireLoad),
2418 copy.set_osr_urgency(raw_source.osr_urgency());
2419 copy.set_bytecode_age(raw_source.bytecode_age());
2420 raw_source.CopyBytecodesTo(copy);
2421 return handle(copy, isolate());