Home
last modified time | relevance | path

Searched refs:BytecodeArray (Results 1 – 25 of 61) sorted by relevance

123

/external/v8/src/runtime/
Druntime-interpreter.cc114 CONVERT_ARG_HANDLE_CHECKED(BytecodeArray, bytecode_array, 0); in RUNTIME_FUNCTION()
119 int offset = bytecode_offset - BytecodeArray::kHeaderSize + kHeapObjectTag; in RUNTIME_FUNCTION()
142 CONVERT_ARG_HANDLE_CHECKED(BytecodeArray, bytecode_array, 0); in RUNTIME_FUNCTION()
146 int offset = bytecode_offset - BytecodeArray::kHeaderSize + kHeapObjectTag; in RUNTIME_FUNCTION()
166 CONVERT_ARG_HANDLE_CHECKED(BytecodeArray, bytecode_array, 0); in RUNTIME_FUNCTION()
169 int offset = bytecode_offset - BytecodeArray::kHeaderSize + kHeapObjectTag; in RUNTIME_FUNCTION()
173 offset = it.current_offset() + BytecodeArray::kHeaderSize - kHeapObjectTag; in RUNTIME_FUNCTION()
/external/v8/src/compiler/
Dbytecode-analysis.h18 class BytecodeArray; variable
64 BytecodeAnalysis(Handle<BytecodeArray> bytecode_array, Zone* zone,
104 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array()
107 Handle<BytecodeArray> bytecode_array_;
Dbytecode-graph-builder.h248 const Handle<BytecodeArray>& bytecode_array() const { in bytecode_array()
290 Handle<BytecodeArray> bytecode_array_;
Dbytecode-analysis.cc84 BytecodeAnalysis::BytecodeAnalysis(Handle<BytecodeArray> bytecode_array, in BytecodeAnalysis()
183 const Handle<BytecodeArray>& bytecode_array = accessor.bytecode_array(); in UpdateOutLiveness()
/external/v8/src/interpreter/
Dbytecode-array-accessor.h21 BytecodeArrayAccessor(Handle<BytecodeArray> bytecode_array,
31 const Handle<BytecodeArray>& bytecode_array() const { in bytecode_array()
64 Handle<BytecodeArray> bytecode_array_;
Dbytecode-array-iterator.cc13 Handle<BytecodeArray> bytecode_array) in BytecodeArrayIterator()
Dbytecode-array-iterator.h17 explicit BytecodeArrayIterator(Handle<BytecodeArray> bytecode_array);
Dbytecode-array-random-iterator.cc13 Handle<BytecodeArray> bytecode_array, Zone* zone) in BytecodeArrayRandomIterator()
Dbytecode-dead-code-optimizer.h29 Handle<BytecodeArray> ToBytecodeArray( in NON_EXPORTED_BASE()
Dbytecode-array-random-iterator.h19 explicit BytecodeArrayRandomIterator(Handle<BytecodeArray> bytecode_array,
Dbytecode-dead-code-optimizer.cc16 Handle<BytecodeArray> BytecodeDeadCodeOptimizer::ToBytecodeArray( in ToBytecodeArray()
Dbytecode-peephole-optimizer.h33 Handle<BytecodeArray> ToBytecodeArray( in NON_EXPORTED_BASE()
Dbytecode-array-writer.h38 Handle<BytecodeArray> ToBytecodeArray( in NON_EXPORTED_BASE()
Dbytecode-array-writer.cc35 Handle<BytecodeArray> BytecodeArrayWriter::ToBytecodeArray( in ToBytecodeArray()
44 Handle<BytecodeArray> bytecode_array = isolate->factory()->NewBytecodeArray( in ToBytecodeArray()
Dinterpreter-assembler.cc497 BytecodeArray::kConstantPoolOffset); in LoadConstantPoolEntry()
946 IntPtrConstant(BytecodeArray::kInterruptBudgetOffset - kHeapObjectTag); in UpdateInterruptBudget()
1244 Int32Sub(Int32Constant(kHeapObjectTag + BytecodeArray::kHeaderSize), in UpdateInterruptBudgetOnReturn()
1259 BytecodeArray::kOSRNestingLevelOffset, in LoadOSRNestingLevel()
1352 bytecode_array, BytecodeArray::kFrameSizeOffset, MachineType::Uint32()); in RegisterCount()
Dbytecode-array-accessor.cc16 Handle<BytecodeArray> bytecode_array, int initial_offset) in BytecodeArrayAccessor()
/external/v8/src/
Dcompilation-info.h92 Handle<BytecodeArray> bytecode_array() const { return bytecode_array_; } in bytecode_array()
192 void SetBytecodeArray(Handle<BytecodeArray> bytecode_array) { in SetBytecodeArray()
363 Handle<BytecodeArray> bytecode_array_;
Dsource-position-table.h18 class BytecodeArray; variable
Dobjects-inl.h140 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()
[all …]
Dobjects-body-descriptors-inl.h197 class BytecodeArray::BodyDescriptor final : public BodyDescriptorBase {
221 return reinterpret_cast<BytecodeArray*>(obj)->BytecodeArraySize(); in SizeOf()
557 return Op::template apply<BytecodeArray::BodyDescriptor>(p1, p2, p3); in BodyDescriptorApply()
Dframes.cc1578 BytecodeArray* bytecode = function()->shared()->bytecode_array(); in LookupExceptionHandlerInTable()
1589 return raw_offset - BytecodeArray::kHeaderSize + kHeapObjectTag; in GetBytecodeOffset()
1600 return raw_offset - BytecodeArray::kHeaderSize + kHeapObjectTag; in GetBytecodeOffset()
1608 int raw_offset = new_offset + BytecodeArray::kHeaderSize - kHeapObjectTag; in PatchBytecodeOffset()
1612 BytecodeArray* InterpretedFrame::GetBytecodeArray() const { in GetBytecodeArray()
1617 return BytecodeArray::cast(GetExpression(index)); in GetBytecodeArray()
1620 void InterpretedFrame::PatchBytecodeArray(BytecodeArray* bytecode_array) { in PatchBytecodeArray()
1887 BytecodeArray* bytecodes = iframe->GetBytecodeArray(); in Print()
Dfactory.h355 Handle<BytecodeArray> NewBytecodeArray(int length, const byte* raw_bytecodes,
651 Handle<BytecodeArray> CopyBytecodeArray(Handle<BytecodeArray>);
/external/v8/src/heap/
Dobject-stats.h144 void RecordBytecodeArrayDetails(BytecodeArray* obj);
/external/v8/src/extensions/
Dstatistics-extension.cc157 BytecodeArray::cast(obj)->source_position_table()->Size(); in GetCounters()
/external/v8/src/debug/
Ddebug.cc294 BytecodeArray* bytecode_array = debug_info_->OriginalBytecodeArray(); in GetDebugBreakType()
325 BytecodeArray* bytecode_array = debug_info_->DebugBytecodeArray(); in SetDebugBreak()
339 BytecodeArray* bytecode_array = debug_info_->DebugBytecodeArray(); in ClearDebugBreak()
340 BytecodeArray* original = debug_info_->OriginalBytecodeArray(); in ClearDebugBreak()
348 BytecodeArray* bytecode_array = debug_info_->DebugBytecodeArray(); in IsDebugBreak()
929 BytecodeArray* bytecode = code->GetBytecodeArray(); in PrepareStepOnThrow()
1205 BytecodeArray* debug_copy = in VisitThread()

123