Home | History | Annotate | Download | only in MC

Lines Matching refs:RegNum

49 int MCRegisterInfo::getDwarfRegNum(unsigned RegNum, bool isEH) const {
53 DwarfLLVMRegPair Key = { RegNum, 0 };
55 if (I == M+Size || I->FromReg != RegNum)
60 int MCRegisterInfo::getLLVMRegNum(unsigned RegNum, bool isEH) const {
64 DwarfLLVMRegPair Key = { RegNum, 0 };
66 assert(I != M+Size && I->FromReg == RegNum && "Invalid RegNum");
70 int MCRegisterInfo::getSEHRegNum(unsigned RegNum) const {
71 const DenseMap<unsigned, int>::const_iterator I = L2SEHRegs.find(RegNum);
72 if (I == L2SEHRegs.end()) return (int)RegNum;