Home | History | Annotate | Download | only in s390

Lines Matching refs:right_op

1336   LOperand* right_op = instr->right();
1342 if (right_op->IsConstantOperand()) {
1343 int32_t constant = ToInteger32(LConstantOperand::cast(right_op));
1423 DCHECK(right_op->IsRegister());
1424 Register right = ToRegister(right_op);
1503 LOperand* right_op = instr->right();
1508 if (right_op->IsConstantOperand()) {
1511 __ AndP(result, left, Operand(ToOperand(right_op)));
1514 __ OrP(result, left, Operand(ToOperand(right_op)));
1517 __ XorP(result, left, Operand(ToOperand(right_op)));
1523 } else if (right_op->IsStackSlot()) {
1528 __ AndP(result, ToMemOperand(right_op));
1531 __ OrP(result, ToMemOperand(right_op));
1534 __ XorP(result, ToMemOperand(right_op));
1541 DCHECK(right_op->IsRegister());
1545 __ AndP(result, left, ToRegister(right_op));
1548 __ OrP(result, left, ToRegister(right_op));
1551 __ XorP(result, left, ToRegister(right_op));
1563 LOperand* right_op = instr->right();
1567 if (right_op->IsRegister()) {
1568 // Mask the right_op operand.
1569 __ AndP(scratch, ToRegister(right_op), Operand(0x1F));
1610 // Mask the right_op operand.
1611 int value = ToInteger32(LConstantOperand::cast(right_op));