Lines Matching refs:operand0

30   V8_INLINE BytecodeNode(Bytecode bytecode, uint32_t operand0,
37 SetOperand(0, operand0); in bytecode_()
40 V8_INLINE BytecodeNode(Bytecode bytecode, uint32_t operand0,
48 SetOperand(0, operand0); in bytecode_()
52 V8_INLINE BytecodeNode(Bytecode bytecode, uint32_t operand0,
60 SetOperand(0, operand0); in bytecode_()
65 V8_INLINE BytecodeNode(Bytecode bytecode, uint32_t operand0,
74 SetOperand(0, operand0); in bytecode_()
80 V8_INLINE BytecodeNode(Bytecode bytecode, uint32_t operand0,
89 SetOperand(0, operand0); in bytecode_()
116 void update_operand0(uint32_t operand0) { SetOperand(0, operand0); } in update_operand0() argument
136 BytecodeSourceInfo source_info, uint32_t operand0 = 0,
144 operands_[0] = operand0; in bytecode_()
159 uint32_t operand0) { in Create() argument
162 scale = std::max(scale, ScaleForOperand<operand0_type>(operand0)); in Create()
163 return BytecodeNode(bytecode, 1, scale, source_info, operand0); in Create()
169 uint32_t operand0, uint32_t operand1) { in Create() argument
173 scale = std::max(scale, ScaleForOperand<operand0_type>(operand0)); in Create()
175 return BytecodeNode(bytecode, 2, scale, source_info, operand0, operand1); in Create()
182 uint32_t operand0, uint32_t operand1, in Create() argument
188 scale = std::max(scale, ScaleForOperand<operand0_type>(operand0)); in Create()
191 return BytecodeNode(bytecode, 3, scale, source_info, operand0, operand1, in Create()
199 uint32_t operand0, uint32_t operand1, in Create() argument
206 scale = std::max(scale, ScaleForOperand<operand0_type>(operand0)); in Create()
210 return BytecodeNode(bytecode, 4, scale, source_info, operand0, operand1, in Create()
219 uint32_t operand0, uint32_t operand1, in Create() argument
228 scale = std::max(scale, ScaleForOperand<operand0_type>(operand0)); in Create()
233 return BytecodeNode(bytecode, 5, scale, source_info, operand0, operand1, in Create()