HomeSort by: relevance | last modified time | path
    Searched refs:CurRC (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineInstr.cpp 920 Register Reg, const TargetRegisterClass *CurRC, const TargetInstrInfo *TII,
925 for (ConstMIBundleOperands OpndIt(*this); OpndIt.isValid() && CurRC;
927 CurRC = OpndIt->getParent()->getRegClassConstraintEffectForVRegImpl(
928 OpndIt.getOperandNo(), Reg, CurRC, TII, TRI);
931 for (unsigned i = 0, e = NumOperands; i < e && CurRC; ++i)
932 CurRC = getRegClassConstraintEffectForVRegImpl(i, Reg, CurRC, TII, TRI);
933 return CurRC;
937 unsigned OpIdx, Register Reg, const TargetRegisterClass *CurRC,
939 assert(CurRC && "Invalid initial register class")
    [all...]
RegAllocGreedy.cpp 2095 const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg());
2097 if (!RegClassInfo.isProperSubClass(CurRC))
2113 TRI->getLargestLegalSuperClass(CurRC, *MF);
2538 const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg());
2556 MRI->getRegClass(Intf->reg()) == CurRC) &&
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineInstr.h 1487 /// the given \p CurRC.
1493 /// Returns the register class that satisfies both \p CurRC and the
1497 /// \pre CurRC must not be NULL.
1499 Register Reg, const TargetRegisterClass *CurRC,
1504 /// to the given \p CurRC.
1506 /// Returns the register class that satisfies both \p CurRC and the
1510 /// \pre CurRC must not be NULL.
1513 getRegClassConstraintEffect(unsigned OpIdx, const TargetRegisterClass *CurRC,
1884 /// If the related operand does not constrained Reg, this returns CurRC.
1886 unsigned OpIdx, Register Reg, const TargetRegisterClass *CurRC,
    [all...]

Completed in 19 milliseconds