Home | History | Annotate | Download | only in AsmParser

Lines Matching defs:RegNo

85     unsigned RegNo;
197 return Reg.RegNo;
300 static std::unique_ptr<AMDGPUOperand> CreateReg(unsigned RegNo, SMLoc S,
306 Op->Reg.RegNo = RegNo;
369 bool subtargetHasRegister(const MCRegisterInfo &MRI, unsigned RegNo) const;
415 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
519 bool AMDGPUAsmParser::ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) {
526 RegNo = getRegForName(RegName);
528 if (RegNo) {
530 return !subtargetHasRegister(*TRI, RegNo);
591 RegNo
592 return !subtargetHasRegister(*TRI, RegNo);
1054 unsigned RegNo) const {
1060 switch (RegNo) {
1074 if (*R == RegNo)
1154 unsigned RegNo;
1155 if (!ParseRegister(RegNo, S, E)) {
1184 RegNo, S, E, getContext().getRegisterInfo(), &getSTI(),