• Home
  • Raw
  • Download

Lines Matching refs:EndLoc

63   SMLoc StartLoc, EndLoc;  member in __anonb2cfd2ca0111::SystemZOperand
107 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) in SystemZOperand()
122 static SystemZOperand *createInvalid(SMLoc StartLoc, SMLoc EndLoc) { in createInvalid() argument
123 return new SystemZOperand(KindInvalid, StartLoc, EndLoc); in createInvalid()
132 SMLoc StartLoc, SMLoc EndLoc) { in createReg() argument
133 SystemZOperand *Op = new SystemZOperand(KindReg, StartLoc, EndLoc); in createReg()
139 SMLoc EndLoc) { in createAccessReg() argument
140 SystemZOperand *Op = new SystemZOperand(KindAccessReg, StartLoc, EndLoc); in createAccessReg()
145 SMLoc EndLoc) { in createImm() argument
146 SystemZOperand *Op = new SystemZOperand(KindImm, StartLoc, EndLoc); in createImm()
153 SMLoc EndLoc) { in createMem() argument
154 SystemZOperand *Op = new SystemZOperand(KindMem, StartLoc, EndLoc); in createMem()
224 virtual SMLoc getEndLoc() const LLVM_OVERRIDE { return EndLoc; } in getEndLoc()
305 SMLoc StartLoc, EndLoc; member
341 SMLoc &EndLoc) LLVM_OVERRIDE;
463 Reg.EndLoc = Parser.getTok().getLoc(); in parseRegister()
501 Reg.StartLoc, Reg.EndLoc)); in parseRegister()
586 SMLoc EndLoc = in parseAddress() local
589 Length, StartLoc, EndLoc)); in parseAddress()
598 SMLoc &EndLoc) { in ParseRegister() argument
610 EndLoc = Reg.EndLoc; in ParseRegister()
670 Operands.push_back(SystemZOperand::createInvalid(Reg.StartLoc, Reg.EndLoc)); in parseOperand()
683 SMLoc EndLoc = in parseOperand() local
686 Operands.push_back(SystemZOperand::createInvalid(StartLoc, EndLoc)); in parseOperand()
688 Operands.push_back(SystemZOperand::createImm(Expr, StartLoc, EndLoc)); in parseOperand()
756 Reg.EndLoc)); in parseAccessReg()
785 SMLoc EndLoc = in parsePCRel() local
787 Operands.push_back(SystemZOperand::createImm(Expr, StartLoc, EndLoc)); in parsePCRel()