• Home
  • Raw
  • Download

Lines Matching refs:BytecodeArray

35 TQ_OBJECT_CONSTRUCTORS_IMPL(BytecodeArray)  in OBJECT_CONSTRUCTORS_IMPL()
141 BytecodeArray AbstractCode::GetBytecodeArray() { in GetBytecodeArray()
142 return BytecodeArray::cast(*this); in GetBytecodeArray()
545 BytecodeArray bytecodes) { in GetBytecodeOffsetForBaselinePC()
559 BytecodeArray bytecodes) { in GetBaselinePCForBytecodeOffset()
576 BytecodeArray bytecodes) { in GetBaselineStartPCForBytecodeOffset()
582 BytecodeArray bytecodes) { in GetBaselineEndPCForBytecodeOffset()
588 BytecodeArray bytecodes) { in GetBaselinePCForNextExecutedBytecode()
593 Handle<BytecodeArray> bytecodes_handle( in GetBaselinePCForNextExecutedBytecode()
1134 byte BytecodeArray::get(int index) const { in DEF_PRIMITIVE_FORWARDING_CDC_GETTER()
1139 void BytecodeArray::set(int index, byte value) { in set()
1144 void BytecodeArray::set_frame_size(int32_t frame_size) { in set_frame_size()
1150 int32_t BytecodeArray::frame_size() const { in frame_size()
1154 int BytecodeArray::register_count() const { in register_count()
1158 void BytecodeArray::set_parameter_count(int32_t number_of_parameters) { in set_parameter_count()
1166 interpreter::Register BytecodeArray::incoming_new_target_or_generator_register() in incoming_new_target_or_generator_register()
1177 void BytecodeArray::set_incoming_new_target_or_generator_register( in set_incoming_new_target_or_generator_register()
1190 int BytecodeArray::osr_urgency() const { in osr_urgency()
1194 void BytecodeArray::set_osr_urgency(int urgency) { in set_osr_urgency()
1195 DCHECK(0 <= urgency && urgency <= BytecodeArray::kMaxOsrUrgency); in set_osr_urgency()
1196 STATIC_ASSERT(BytecodeArray::kMaxOsrUrgency <= OsrUrgencyBits::kMax); in set_osr_urgency()
1201 BytecodeArray::Age BytecodeArray::bytecode_age() const { in bytecode_age()
1207 void BytecodeArray::reset_osr_urgency() { set_osr_urgency(0); } in reset_osr_urgency()
1209 void BytecodeArray::RequestOsrAtNextOpportunity() { in RequestOsrAtNextOpportunity()
1213 int BytecodeArray::osr_install_target() { in osr_install_target()
1217 void BytecodeArray::set_osr_install_target(BytecodeOffset jump_loop_offset) { in set_osr_install_target()
1223 void BytecodeArray::reset_osr_install_target() { in reset_osr_install_target()
1229 void BytecodeArray::reset_osr_urgency_and_install_target() { in reset_osr_urgency_and_install_target()
1234 void BytecodeArray::set_bytecode_age(BytecodeArray::Age age) { in set_bytecode_age()
1244 int32_t BytecodeArray::parameter_count() const { in parameter_count()
1250 void BytecodeArray::clear_padding() { in clear_padding()
1256 Address BytecodeArray::GetFirstBytecodeAddress() { in GetFirstBytecodeAddress()
1260 bool BytecodeArray::HasSourcePositionTable() const { in HasSourcePositionTable()
1265 bool BytecodeArray::DidSourcePositionGenerationFail() const { in DidSourcePositionGenerationFail()
1269 void BytecodeArray::SetSourcePositionsFailedToCollect() { in SetSourcePositionsFailedToCollect()
1273 ByteArray BytecodeArray::SourcePositionTable() const { in SourcePositionTable()
1283 int BytecodeArray::BytecodeArraySize() { return SizeFor(this->length()); } in BytecodeArraySize()
1285 int BytecodeArray::SizeIncludingMetadata() { in SizeIncludingMetadata()