Home
last modified time | relevance | path

Searched refs:bytecode_iterator (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/runtime/
Druntime-interpreter.cc35 interpreter::BytecodeArrayIterator& bytecode_iterator, int offset) { in AdvanceToOffsetForTracing() argument
36 while (bytecode_iterator.current_offset() + in AdvanceToOffsetForTracing()
37 bytecode_iterator.current_bytecode_size() <= in AdvanceToOffsetForTracing()
39 bytecode_iterator.Advance(); in AdvanceToOffsetForTracing()
41 DCHECK(bytecode_iterator.current_offset() == offset || in AdvanceToOffsetForTracing()
42 ((bytecode_iterator.current_offset() + 1) == offset && in AdvanceToOffsetForTracing()
43 bytecode_iterator.current_operand_scale() > in AdvanceToOffsetForTracing()
48 interpreter::BytecodeArrayIterator& bytecode_iterator, in PrintRegisters() argument
60 interpreter::Bytecode bytecode = bytecode_iterator.current_bytecode(); in PrintRegisters()
72 bytecode_iterator.bytecode_array()->GetIsolate()); in PrintRegisters()
[all …]
/external/v8/src/compiler/
Dbytecode-graph-builder.cc385 BailoutId loop_id(builder_->bytecode_iterator().current_offset()); in PrepareForOsrEntry()
603 BailoutId bailout_id(bytecode_iterator().current_offset()); in PrepareEagerCheckpoint()
618 BailoutId bailout_id(bytecode_iterator().current_offset()); in PrepareFrameState()
692 Node* node = jsgraph()->Constant(bytecode_iterator().GetImmediateOperand(0)); in VisitLdaSmi()
698 jsgraph()->Constant(bytecode_iterator().GetConstantForIndexOperand(0)); in VisitLdaConstant()
729 environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0)); in VisitLdar()
735 environment()->BindRegister(bytecode_iterator().GetRegisterOperand(0), value); in VisitStar()
740 environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0)); in VisitMov()
741 environment()->BindRegister(bytecode_iterator().GetRegisterOperand(1), value); in VisitMov()
756 Node* node = BuildLoadGlobal(bytecode_iterator().GetIndexOperand(0), in VisitLdaGlobal()
[all …]
Dbytecode-graph-builder.h241 const interpreter::BytecodeArrayIterator& bytecode_iterator() const { in bytecode_iterator() function
246 const interpreter::BytecodeArrayIterator* bytecode_iterator) { in set_bytecode_iterator() argument
247 bytecode_iterator_ = bytecode_iterator; in set_bytecode_iterator()