Home | History | Annotate | Download | only in arm

Lines Matching refs:right_op

1154   LOperand* right_op = instr->InputAt(1);
1160 if (right_op->IsConstantOperand() && !can_overflow) {
1162 int32_t constant = ToInteger32(LConstantOperand::cast(right_op));
1219 Register right = EmitLoadRegister(right_op, scratch);
1248 LOperand* right_op = instr->InputAt(1);
1254 if (right_op->IsStackSlot() || right_op->IsArgument()) {
1255 right = Operand(EmitLoadRegister(right_op, ip));
1257 ASSERT(right_op->IsRegister() || right_op->IsConstantOperand());
1258 right = ToOperand(right_op);
1281 LOperand* right_op = instr->InputAt(1);
1285 if (right_op->IsRegister()) {
1286 // Mask the right_op operand.
1287 __ and_(scratch, ToRegister(right_op), Operand(0x1F));
1308 // Mask the right_op operand.
1309 int value = ToInteger32(LConstantOperand::cast(right_op));