Home | History | Annotate | Download | only in runtime

Lines Matching full:bytecode

11 #include "src/interpreter/bytecode-array-iterator.h"
12 #include "src/interpreter/bytecode-decoder.h"
13 #include "src/interpreter/bytecode-flags.h"
14 #include "src/interpreter/bytecode-register.h"
60 interpreter::Bytecode bytecode = bytecode_iterator.current_bytecode();
63 if ((is_input && interpreter::Bytecodes::ReadsAccumulator(bytecode)) ||
64 (!is_input && interpreter::Bytecodes::WritesAccumulator(bytecode))) {
75 int operand_count = interpreter::Bytecodes::NumberOfOperands(bytecode);
78 interpreter::Bytecodes::GetOperandType(bytecode, operand_index);
118 // Print bytecode.
145 // (potentially) widened bytecode has completed. The iterator reports
146 // the offset as the offset of the prefix bytecode.
183 it.Advance(); // Advance by one bytecode.