Lines Matching refs:LoOperand
95 MachineOperand &HiOperand, MachineOperand &LoOperand);
98 MachineOperand &HiOperand, MachineOperand &LoOperand);
101 MachineOperand &HiOperand, MachineOperand &LoOperand);
104 MachineOperand &HiOperand, MachineOperand &LoOperand);
518 MachineOperand &LoOperand = IsI1Loreg ? I1->getOperand(1) : in combine() local
525 bool IsLoReg = LoOperand.isReg(); in combine()
530 emitCombineRR(InsertPt, DoubleRegDest, HiOperand, LoOperand); in combine()
532 emitCombineRI(InsertPt, DoubleRegDest, HiOperand, LoOperand); in combine()
534 emitCombineIR(InsertPt, DoubleRegDest, HiOperand, LoOperand); in combine()
536 emitCombineII(InsertPt, DoubleRegDest, HiOperand, LoOperand); in combine()
545 MachineOperand &LoOperand) { in emitCombineII() argument
554 .addImm(LoOperand.getImm()); in emitCombineII()
557 if (LoOperand.isGlobal()) { in emitCombineII()
560 .addGlobalAddress(LoOperand.getGlobal(), LoOperand.getOffset(), in emitCombineII()
561 LoOperand.getTargetFlags()); in emitCombineII()
570 .addImm(LoOperand.getImm()); in emitCombineII()
573 if (LoOperand.isBlockAddress()) { in emitCombineII()
576 .addBlockAddress(LoOperand.getBlockAddress(), LoOperand.getOffset(), in emitCombineII()
577 LoOperand.getTargetFlags()); in emitCombineII()
585 .addImm(LoOperand.getImm()); in emitCombineII()
588 if (LoOperand.isJTI()) { in emitCombineII()
591 .addJumpTableIndex(LoOperand.getIndex(), LoOperand.getTargetFlags()); in emitCombineII()
600 .addImm(LoOperand.getImm()); in emitCombineII()
603 if (LoOperand.isCPI()) { in emitCombineII()
606 .addConstantPoolIndex(LoOperand.getIndex(), LoOperand.getOffset(), in emitCombineII()
607 LoOperand.getTargetFlags()); in emitCombineII()
614 if (isInt<8>(LoOperand.getImm())) { in emitCombineII()
617 .addImm(LoOperand.getImm()); in emitCombineII()
625 .addImm(LoOperand.getImm()); in emitCombineII()
633 .addImm(LoOperand.getImm()); in emitCombineII()
639 MachineOperand &LoOperand) { in emitCombineIR() argument
640 unsigned LoReg = LoOperand.getReg(); in emitCombineIR()
641 unsigned LoRegKillFlag = getKillRegState(LoOperand.isKill()); in emitCombineIR()
687 MachineOperand &LoOperand) { in emitCombineRI() argument
695 if (LoOperand.isGlobal()) { in emitCombineRI()
698 .addGlobalAddress(LoOperand.getGlobal(), LoOperand.getOffset(), in emitCombineRI()
699 LoOperand.getTargetFlags()); in emitCombineRI()
703 if (LoOperand.isBlockAddress()) { in emitCombineRI()
706 .addBlockAddress(LoOperand.getBlockAddress(), LoOperand.getOffset(), in emitCombineRI()
707 LoOperand.getTargetFlags()); in emitCombineRI()
711 if (LoOperand.isJTI()) { in emitCombineRI()
714 .addJumpTableIndex(LoOperand.getIndex(), LoOperand.getTargetFlags()); in emitCombineRI()
718 if (LoOperand.isCPI()) { in emitCombineRI()
721 .addConstantPoolIndex(LoOperand.getIndex(), LoOperand.getOffset(), in emitCombineRI()
722 LoOperand.getTargetFlags()); in emitCombineRI()
730 .addImm(LoOperand.getImm()); in emitCombineRI()
736 MachineOperand &LoOperand) { in emitCombineRR() argument
737 unsigned LoRegKillFlag = getKillRegState(LoOperand.isKill()); in emitCombineRR()
739 unsigned LoReg = LoOperand.getReg(); in emitCombineRR()