reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
90 return isVirtualRegister(Reg); 96 return isPhysicalRegister(Reg); 102 return virtReg2Index(Reg); 106 return Reg; 109 unsigned id() const { return Reg; } 112 return MCRegister(Reg); 116 return Reg != 0; 120 bool operator==(const Register &Other) const { return Reg == Other.Reg; } 120 bool operator==(const Register &Other) const { return Reg == Other.Reg; } 121 bool operator!=(const Register &Other) const { return Reg != Other.Reg; } 121 bool operator!=(const Register &Other) const { return Reg != Other.Reg; } 122 bool operator==(const MCRegister &Other) const { return Reg == Other.id(); } 123 bool operator!=(const MCRegister &Other) const { return Reg != Other.id(); } 129 bool operator==(unsigned Other) const { return Reg == Other; } 130 bool operator!=(unsigned Other) const { return Reg != Other; } 131 bool operator==(int Other) const { return Reg == unsigned(Other); } 132 bool operator!=(int Other) const { return Reg != unsigned(Other); } 134 bool operator==(MCPhysReg Other) const { return Reg == unsigned(Other); } 135 bool operator!=(MCPhysReg Other) const { return Reg != unsigned(Other); }