Searched refs:CRBit (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCPreEmitPeephole.cpp241 Register CRBit = Br->getOperand(0).getReg(); variable
242 unsigned CRReg = getCRFromCRBit(CRBit);
246 if (It->modifiesRegister(CRBit, TRI)) {
249 It->getOperand(0).getReg() == CRBit)
253 if (It->readsRegister(CRBit, TRI))
286 // If the CRBit is not used by another instruction, we can eliminate
289 // We need to check use of the CRBit in successors.
291 if (SuccMBB->isLiveIn(CRBit) || SuccMBB->isLiveIn(CRReg)) {
H A DPPCBranchSelector.cpp345 Register CRBit = I->getOperand(0).getReg(); local
346 BuildMI(MBB, I, dl, TII->get(PPC::BCn)).addReg(CRBit).addImm(2);
348 Register CRBit = I->getOperand(0).getReg(); local
349 BuildMI(MBB, I, dl, TII->get(PPC::BC)).addReg(CRBit).addImm(2);
H A DPPCInstrInfo.cpp877 static unsigned getCRBitValue(unsigned CRBit) { argument
879 if (CRBit == PPC::CR0LT || CRBit == PPC::CR1LT ||
880 CRBit == PPC::CR2LT || CRBit == PPC::CR3LT ||
881 CRBit == PPC::CR4LT || CRBit == PPC::CR5LT ||
882 CRBit == PPC::CR6LT || CRBit == PPC::CR7LT)
884 if (CRBit
[all...]
H A DPPCISelDAGToDAG.cpp2653 SDValue CRBit = local
2657 return CRBit.getNode();

Completed in 140 milliseconds