Home
last modified time | relevance | path

Searched refs:BytecodeArrayIterator (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-array-iterator.h16 class V8_EXPORT_PRIVATE BytecodeArrayIterator final
19 explicit BytecodeArrayIterator(std::unique_ptr<AbstractBytecodeArray> array);
21 explicit BytecodeArrayIterator(Handle<BytecodeArray> array);
23 BytecodeArrayIterator(const BytecodeArrayIterator&) = delete;
24 BytecodeArrayIterator& operator=(const BytecodeArrayIterator&) = delete;
Dbytecode-array-iterator.cc13 BytecodeArrayIterator::BytecodeArrayIterator( in BytecodeArrayIterator() function in v8::internal::interpreter::BytecodeArrayIterator
17 BytecodeArrayIterator::BytecodeArrayIterator( in BytecodeArrayIterator() function in v8::internal::interpreter::BytecodeArrayIterator
21 void BytecodeArrayIterator::Advance() { in Advance()
25 bool BytecodeArrayIterator::done() const { in done()
/external/v8/src/compiler/
Dserializer-for-background-compilation.cc404 void Visit##name(interpreter::BytecodeArrayIterator* iterator);
456 void ProcessJump(interpreter::BytecodeArrayIterator* iterator);
479 interpreter::BytecodeArrayIterator* iterator);
509 void ProcessCreateContext(interpreter::BytecodeArrayIterator* iterator,
523 void ProcessLdaLookupGlobalSlot(interpreter::BytecodeArrayIterator* iterator);
525 interpreter::BytecodeArrayIterator* iterator);
588 using BytecodeArrayIterator = interpreter::BytecodeArrayIterator; typedef
1187 HandlerRangeMatcher(BytecodeArrayIterator const& bytecode_iterator, in HandlerRangeMatcher()
1232 BytecodeArrayIterator const& bytecode_iterator_;
1276 BytecodeArrayIterator iterator(bytecode_array()); in TraverseBytecode()
[all …]
Dbytecode-analysis.cc638 interpreter::BytecodeArrayIterator iterator(bytecode_array()); in PrintLivenessTo()
903 interpreter::BytecodeArrayIterator forward_iterator(bytecode_array()); in LivenessIsValid()
Dbytecode-graph-builder.cc389 interpreter::BytecodeArrayIterator& bytecode_iterator() { in bytecode_iterator()
434 interpreter::BytecodeArrayIterator bytecode_iterator_;
/external/v8/src/runtime/
Druntime-interpreter.cc29 interpreter::BytecodeArrayIterator& in AdvanceToOffsetForTracing()
44 interpreter::BytecodeArrayIterator& in PrintRegisters()
114 interpreter::BytecodeArrayIterator bytecode_iterator(bytecode_array); in RUNTIME_FUNCTION()
148 interpreter::BytecodeArrayIterator bytecode_iterator(bytecode_array); in RUNTIME_FUNCTION()
/external/v8/src/debug/
Ddebug-evaluate.cc915 for (interpreter::BytecodeArrayIterator it(bytecode_array); !it.done(); in FunctionGetSideEffectState()
1124 for (interpreter::BytecodeArrayIterator it(bytecode_array); !it.done(); in ApplySideEffectChecks()
Ddebug.cc2310 for (interpreter::BytecodeArrayIterator it(debug_bytecode); !it.done(); in ClearSideEffectChecks()
/external/v8/src/objects/
Dcode.cc828 interpreter::BytecodeArrayIterator iterator(handle); in Disassemble()