Lines Matching refs:instance
19 #include "src/objects/instance-type.h"
244 BytecodeArray instance = BytecodeArray::cast(result);
245 instance.set_length(length);
246 instance.set_frame_size(frame_size);
247 instance.set_parameter_count(parameter_count);
248 instance.set_incoming_new_target_or_generator_register(
250 instance.reset_osr_urgency_and_install_target();
251 instance.set_bytecode_age(BytecodeArray::kNoAgeBytecodeAge);
252 instance.set_constant_pool(*constant_pool);
253 instance.set_handler_table(read_only_roots().empty_byte_array(),
255 instance.set_source_position_table(read_only_roots().undefined_value(),
257 CopyBytes(reinterpret_cast<byte*>(instance.GetFirstBytecodeAddress()),
259 instance.clear_padding();
260 return handle(instance, isolate());