• Home
  • Raw
  • Download

Lines Matching refs:BytecodeArray

28 OBJECT_CONSTRUCTORS_IMPL(BytecodeArray, FixedArrayBase)  in OBJECT_CONSTRUCTORS_IMPL()
36 CAST_ACCESSOR(BytecodeArray) in OBJECT_CONSTRUCTORS_IMPL()
118 BytecodeArray AbstractCode::GetBytecodeArray() { in GetBytecodeArray()
119 return BytecodeArray::cast(*this); in GetBytecodeArray()
629 byte BytecodeArray::get(int index) const { in get()
634 void BytecodeArray::set(int index, byte value) { in set()
639 void BytecodeArray::set_frame_size(int32_t frame_size) { in set_frame_size()
645 int32_t BytecodeArray::frame_size() const { in frame_size()
649 int BytecodeArray::register_count() const { in register_count()
653 void BytecodeArray::set_parameter_count(int32_t number_of_parameters) { in set_parameter_count()
661 interpreter::Register BytecodeArray::incoming_new_target_or_generator_register() in incoming_new_target_or_generator_register()
672 void BytecodeArray::set_incoming_new_target_or_generator_register( in set_incoming_new_target_or_generator_register()
685 int BytecodeArray::osr_loop_nesting_level() const { in osr_loop_nesting_level()
689 void BytecodeArray::set_osr_loop_nesting_level(int depth) { in set_osr_loop_nesting_level()
695 BytecodeArray::Age BytecodeArray::bytecode_age() const { in bytecode_age()
700 void BytecodeArray::set_bytecode_age(BytecodeArray::Age age) { in set_bytecode_age()
708 int32_t BytecodeArray::parameter_count() const { in parameter_count()
714 ACCESSORS(BytecodeArray, constant_pool, FixedArray, kConstantPoolOffset) in ACCESSORS() argument
715 ACCESSORS(BytecodeArray, handler_table, ByteArray, kHandlerTableOffset) in ACCESSORS()
716 RELEASE_ACQUIRE_ACCESSORS(BytecodeArray, source_position_table, Object, in ACCESSORS()
719 void BytecodeArray::clear_padding() { in ACCESSORS()
725 Address BytecodeArray::GetFirstBytecodeAddress() { in GetFirstBytecodeAddress()
729 bool BytecodeArray::HasSourcePositionTable() const { in HasSourcePositionTable()
734 bool BytecodeArray::DidSourcePositionGenerationFail() const { in DidSourcePositionGenerationFail()
738 void BytecodeArray::SetSourcePositionsFailedToCollect() { in SetSourcePositionsFailedToCollect()
742 ByteArray BytecodeArray::SourcePositionTable() const { in SourcePositionTable()
752 int BytecodeArray::BytecodeArraySize() { return SizeFor(this->length()); } in BytecodeArraySize()
754 int BytecodeArray::SizeIncludingMetadata() { in SizeIncludingMetadata()