Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dbytecode-graph-builder.cc20 const interpreter::BytecodeArrayIterator& iterator) in FrameStateBeforeAndAfter()
525 interpreter::BytecodeArrayIterator iterator(bytecode_array()); in VisitBytecodes()
550 const interpreter::BytecodeArrayIterator& iterator) { in VisitLdaZero()
557 const interpreter::BytecodeArrayIterator& iterator) { in VisitLdaSmi8()
564 const interpreter::BytecodeArrayIterator& iterator) { in VisitLdaConstantWide()
571 const interpreter::BytecodeArrayIterator& iterator) { in VisitLdaConstant()
578 const interpreter::BytecodeArrayIterator& iterator) { in VisitLdaUndefined()
585 const interpreter::BytecodeArrayIterator& iterator) { in VisitLdaNull()
592 const interpreter::BytecodeArrayIterator& iterator) { in VisitLdaTheHole()
599 const interpreter::BytecodeArrayIterator& iterator) { in VisitLdaTrue()
[all …]
Dbytecode-graph-builder.h129 const interpreter::BytecodeArrayIterator& iterator);
131 const interpreter::BytecodeArrayIterator& iterator);
133 const interpreter::BytecodeArrayIterator& iterator);
135 const interpreter::BytecodeArrayIterator& iterator);
137 const interpreter::BytecodeArrayIterator& iterator);
138 void BuildLoadGlobal(const interpreter::BytecodeArrayIterator& iterator,
140 void BuildStoreGlobal(const interpreter::BytecodeArrayIterator& iterator);
141 void BuildNamedLoad(const interpreter::BytecodeArrayIterator& iterator);
142 void BuildKeyedLoad(const interpreter::BytecodeArrayIterator& iterator);
143 void BuildNamedStore(const interpreter::BytecodeArrayIterator& iterator);
[all …]
Dbytecode-branch-analysis.cc57 interpreter::BytecodeArrayIterator iterator(bytecode_array()); in Analyze()
/external/v8/src/interpreter/
Dbytecode-array-iterator.cc13 BytecodeArrayIterator::BytecodeArrayIterator( in BytecodeArrayIterator() function in v8::internal::interpreter::BytecodeArrayIterator
18 void BytecodeArrayIterator::Advance() { in Advance()
23 bool BytecodeArrayIterator::done() const { in done()
28 Bytecode BytecodeArrayIterator::current_bytecode() const { in current_bytecode()
35 int BytecodeArrayIterator::current_bytecode_size() const { in current_bytecode_size()
40 uint32_t BytecodeArrayIterator::GetRawOperand(int operand_index, in GetRawOperand()
61 int8_t BytecodeArrayIterator::GetImmediateOperand(int operand_index) const { in GetImmediateOperand()
67 int BytecodeArrayIterator::GetCountOperand(int operand_index) const { in GetCountOperand()
77 int BytecodeArrayIterator::GetIndexOperand(int operand_index) const { in GetIndexOperand()
87 Register BytecodeArrayIterator::GetRegisterOperand(int operand_index) const { in GetRegisterOperand()
[all …]
Dbytecode-array-iterator.h16 class BytecodeArrayIterator {
18 explicit BytecodeArrayIterator(Handle<BytecodeArray> bytecode_array);
48 DISALLOW_COPY_AND_ASSIGN(BytecodeArrayIterator);
/external/v8/test/unittests/interpreter/
Dbytecode-array-builder-unittest.cc457 BytecodeArrayIterator iterator(array); in TEST_F()
568 BytecodeArrayIterator iterator(array); in TEST_F()
640 BytecodeArrayIterator iterator(array); in TEST_F()
672 BytecodeArrayIterator iterator(array); in TEST_F()
Dbytecode-array-iterator-unittest.cc55 BytecodeArrayIterator iterator(builder.ToBytecodeArray()); in TEST_F()
/external/v8/test/cctest/interpreter/
Dtest-bytecode-generator.cc208 BytecodeArrayIterator iterator(actual); in CheckBytecodeArrayEqual()