• Home
  • Raw
  • Download

Lines Matching refs:BytecodeArray

659 TYPE_CHECKER(BytecodeArray, BYTECODE_ARRAY_TYPE)  in TYPE_CHECKER()
3284 CAST_ACCESSOR(BytecodeArray) in CAST_ACCESSOR()
4168 byte BytecodeArray::get(int index) { in get()
4174 void BytecodeArray::set(int index, byte value) { in set()
4180 void BytecodeArray::set_frame_size(int frame_size) { in set_frame_size()
4187 int BytecodeArray::frame_size() const { in frame_size()
4192 int BytecodeArray::register_count() const { in register_count()
4197 void BytecodeArray::set_parameter_count(int number_of_parameters) { in set_parameter_count()
4205 int BytecodeArray::interrupt_budget() const { in interrupt_budget()
4209 void BytecodeArray::set_interrupt_budget(int interrupt_budget) { in set_interrupt_budget()
4214 int BytecodeArray::osr_loop_nesting_level() const { in osr_loop_nesting_level()
4218 void BytecodeArray::set_osr_loop_nesting_level(int depth) { in set_osr_loop_nesting_level()
4224 int BytecodeArray::parameter_count() const { in parameter_count()
4231 ACCESSORS(BytecodeArray, constant_pool, FixedArray, kConstantPoolOffset) in ACCESSORS() argument
4232 ACCESSORS(BytecodeArray, handler_table, FixedArray, kHandlerTableOffset) in ACCESSORS()
4233 ACCESSORS(BytecodeArray, source_position_table, ByteArray, in ACCESSORS()
4236 Address BytecodeArray::GetFirstBytecodeAddress() { in ACCESSORS()
4241 int BytecodeArray::BytecodeArraySize() { return SizeFor(this->length()); } in BytecodeArraySize()
4243 int BytecodeArray::SizeIncludingMetadata() { in SizeIncludingMetadata()
4567 return reinterpret_cast<BytecodeArray*>(this)->BytecodeArraySize(); in SizeFromMap()
5509 BytecodeArray* AbstractCode::GetBytecodeArray() { in GetBytecodeArray()
5510 return BytecodeArray::cast(this); in GetBytecodeArray()
5989 BytecodeArray* DebugInfo::OriginalBytecodeArray() { in OriginalBytecodeArray()
5994 BytecodeArray* DebugInfo::DebugBytecodeArray() { in DebugBytecodeArray()
5996 return BytecodeArray::cast(debug_bytecode_array()); in DebugBytecodeArray()
6355 BytecodeArray* SharedFunctionInfo::bytecode_array() { in bytecode_array()
6357 return BytecodeArray::cast(function_data()); in bytecode_array()
6360 void SharedFunctionInfo::set_bytecode_array(BytecodeArray* bytecode) { in set_bytecode_array()