Lines Matching refs:bytecode
10 #include "src/interpreter/bytecode-array-iterator.h"
11 #include "src/interpreter/bytecode-decoder.h"
12 #include "src/interpreter/bytecode-flags.h"
13 #include "src/interpreter/bytecode-register.h"
68 interpreter::Bytecode bytecode = bytecode_iterator.current_bytecode();
71 if ((is_input && interpreter::Bytecodes::ReadsAccumulator(bytecode)) ||
72 (!is_input && interpreter::Bytecodes::WritesAccumulator(bytecode))) {
79 int operand_count = interpreter::Bytecodes::NumberOfOperands(bytecode);
82 interpreter::Bytecodes::GetOperandType(bytecode, operand_index);
95 if (!is_input && interpreter::Bytecodes::IsShortStar(bytecode)) {
98 interpreter::Register::FromShortStar(bytecode), 1);
135 // Print bytecode.
183 // (potentially) widened bytecode has completed. The iterator reports
184 // the offset as the offset of the prefix bytecode.