• Home
  • Raw
  • Download

Lines Matching refs:BytecodeArray

140 TYPE_CHECKER(BytecodeArray, BYTECODE_ARRAY_TYPE)  in TYPE_CHECKER()
616 CAST_ACCESSOR(BytecodeArray) in CAST_ACCESSOR()
3987 byte BytecodeArray::get(int index) { in get()
3993 void BytecodeArray::set(int index, byte value) { in set()
3999 void BytecodeArray::set_frame_size(int frame_size) { in set_frame_size()
4006 int BytecodeArray::frame_size() const { in frame_size()
4011 int BytecodeArray::register_count() const { in register_count()
4016 void BytecodeArray::set_parameter_count(int number_of_parameters) { in set_parameter_count()
4024 int BytecodeArray::interrupt_budget() const { in interrupt_budget()
4028 void BytecodeArray::set_interrupt_budget(int interrupt_budget) { in set_interrupt_budget()
4033 int BytecodeArray::osr_loop_nesting_level() const { in osr_loop_nesting_level()
4037 void BytecodeArray::set_osr_loop_nesting_level(int depth) { in set_osr_loop_nesting_level()
4043 BytecodeArray::Age BytecodeArray::bytecode_age() const { in bytecode_age()
4047 void BytecodeArray::set_bytecode_age(BytecodeArray::Age age) { in set_bytecode_age()
4054 int BytecodeArray::parameter_count() const { in parameter_count()
4060 ACCESSORS(BytecodeArray, constant_pool, FixedArray, kConstantPoolOffset) in ACCESSORS() argument
4061 ACCESSORS(BytecodeArray, handler_table, FixedArray, kHandlerTableOffset) in ACCESSORS()
4062 ACCESSORS(BytecodeArray, source_position_table, ByteArray, in ACCESSORS()
4065 Address BytecodeArray::GetFirstBytecodeAddress() { in ACCESSORS()
4070 int BytecodeArray::BytecodeArraySize() { return SizeFor(this->length()); } in BytecodeArraySize()
4072 int BytecodeArray::SizeIncludingMetadata() { in SizeIncludingMetadata()
4396 return reinterpret_cast<BytecodeArray*>(this)->BytecodeArraySize(); in SizeFromMap()
5341 BytecodeArray* AbstractCode::GetBytecodeArray() { in GetBytecodeArray()
5342 return BytecodeArray::cast(this); in GetBytecodeArray()
5820 BytecodeArray* DebugInfo::OriginalBytecodeArray() { in OriginalBytecodeArray()
5825 BytecodeArray* DebugInfo::DebugBytecodeArray() { in DebugBytecodeArray()
5827 return BytecodeArray::cast(debug_bytecode_array()); in DebugBytecodeArray()
6188 BytecodeArray* SharedFunctionInfo::bytecode_array() const { in bytecode_array()
6190 return BytecodeArray::cast(function_data()); in bytecode_array()
6193 void SharedFunctionInfo::set_bytecode_array(BytecodeArray* bytecode) { in set_bytecode_array()