reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
60 return isPhysicalRegister(Reg); 64 return Reg; 68 return Reg; 72 return Reg != 0; 76 bool operator==(const MCRegister &Other) const { return Reg == Other.Reg; } 76 bool operator==(const MCRegister &Other) const { return Reg == Other.Reg; } 77 bool operator!=(const MCRegister &Other) const { return Reg != Other.Reg; } 77 bool operator!=(const MCRegister &Other) const { return Reg != Other.Reg; } 83 bool operator==(unsigned Other) const { return Reg == Other; } 84 bool operator!=(unsigned Other) const { return Reg != Other; } 85 bool operator==(int Other) const { return Reg == unsigned(Other); } 86 bool operator!=(int Other) const { return Reg != unsigned(Other); } 88 bool operator==(MCPhysReg Other) const { return Reg == unsigned(Other); } 89 bool operator!=(MCPhysReg Other) const { return Reg != unsigned(Other); }