Lines Matching refs:bytecode
10 #include "src/interpreter/bytecode-register-allocator.h"
17 // registers. The bytecode generator uses temporary registers
31 // Called to emit a register transfer bytecode.
67 // Prepares for |bytecode|.
68 template <Bytecode bytecode, ImplicitRegisterUse implicit_register_use>
70 if (Bytecodes::IsJump(bytecode) || Bytecodes::IsSwitch(bytecode) ||
71 bytecode == Bytecode::kDebugger ||
72 bytecode == Bytecode::kSuspendGenerator ||
73 bytecode == Bytecode::kResumeGenerator) {
75 // - a jump bytecode (as the register equivalents at the jump target
77 // - a switch bytecode (as the register equivalents at the switch targets
85 // Materialize the accumulator if it is read by the bytecode. The
93 // clobbered when the bytecode is dispatched.
127 // Emit a register transfer bytecode from |input| to |output|.