/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 38 SourceLocation StartLoc; variable 68 SourceLocation StartLoc, SourceLocation EndLoc, in OMPExecutableDirective() argument 70 : Stmt(SC), Kind(K), StartLoc(std::move(StartLoc)), in OMPExecutableDirective() 168 SourceLocation getLocStart() const { return StartLoc; } in getLocStart() 176 void setLocStart(SourceLocation Loc) { StartLoc = Loc; } in setLocStart() 241 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelDirective() argument 244 StartLoc, EndLoc, NumClauses, 1), in OMPParallelDirective() 271 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, 389 SourceLocation StartLoc, SourceLocation EndLoc, 392 : OMPExecutableDirective(That, SC, Kind, StartLoc, EndLoc, NumClauses, [all …]
|
D | OpenMPClause.h | 34 SourceLocation StartLoc; variable 41 OMPClause(OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc) in OMPClause() argument 42 : StartLoc(StartLoc), EndLoc(EndLoc), Kind(K) {} in OMPClause() 46 SourceLocation getLocStart() const { return StartLoc; } in getLocStart() 51 void setLocStart(SourceLocation Loc) { StartLoc = Loc; } in setLocStart() 58 bool isImplicit() const { return StartLoc.isInvalid(); } in isImplicit() 151 OMPVarListClause(OpenMPClauseKind K, SourceLocation StartLoc, in OMPVarListClause() argument 153 : OMPClause(K, StartLoc, EndLoc), LParenLoc(LParenLoc), NumVars(N) {} in OMPVarListClause() 235 SourceLocation StartLoc, SourceLocation LParenLoc, in OMPIfClause() argument 238 : OMPClause(OMPC_if, StartLoc, EndLoc), LParenLoc(LParenLoc), in OMPIfClause() [all …]
|
D | Decl.h | 487 SourceLocation StartLoc, SourceLocation IdLoc, 497 bool Inline, SourceLocation StartLoc, 911 VarDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc, 937 SourceLocation StartLoc, SourceLocation IdLoc, 1383 ParmVarDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in ParmVarDecl() argument 1386 : VarDecl(DK, C, DC, StartLoc, IdLoc, Id, T, TInfo, S) { in ParmVarDecl() 1396 SourceLocation StartLoc, 1678 FunctionDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in FunctionDecl() argument 1684 StartLoc), in FunctionDecl() 1721 SourceLocation StartLoc, SourceLocation NLoc, [all …]
|
/external/llvm/lib/Target/SystemZ/AsmParser/ |
D | SystemZAsmParser.cpp | 69 SMLoc StartLoc, EndLoc; member in __anon8217a0e90111::SystemZOperand 132 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {} in SystemZOperand() 135 static std::unique_ptr<SystemZOperand> createInvalid(SMLoc StartLoc, in createInvalid() argument 137 return make_unique<SystemZOperand>(KindInvalid, StartLoc, EndLoc); in createInvalid() 146 createReg(RegisterKind Kind, unsigned Num, SMLoc StartLoc, SMLoc EndLoc) { in createReg() argument 147 auto Op = make_unique<SystemZOperand>(KindReg, StartLoc, EndLoc); in createReg() 153 createAccessReg(unsigned Num, SMLoc StartLoc, SMLoc EndLoc) { in createAccessReg() argument 154 auto Op = make_unique<SystemZOperand>(KindAccessReg, StartLoc, EndLoc); in createAccessReg() 159 createImm(const MCExpr *Expr, SMLoc StartLoc, SMLoc EndLoc) { in createImm() argument 160 auto Op = make_unique<SystemZOperand>(KindImm, StartLoc, EndLoc); in createImm() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/AsmParser/ |
D | SystemZAsmParser.cpp | 87 SMLoc StartLoc, EndLoc; member in __anone16cff410111::SystemZOperand 152 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc) {} in SystemZOperand() 155 static std::unique_ptr<SystemZOperand> createInvalid(SMLoc StartLoc, in createInvalid() argument 157 return make_unique<SystemZOperand>(KindInvalid, StartLoc, EndLoc); in createInvalid() 168 createReg(RegisterKind Kind, unsigned Num, SMLoc StartLoc, SMLoc EndLoc) { in createReg() argument 169 auto Op = make_unique<SystemZOperand>(KindReg, StartLoc, EndLoc); in createReg() 176 createImm(const MCExpr *Expr, SMLoc StartLoc, SMLoc EndLoc) { in createImm() argument 177 auto Op = make_unique<SystemZOperand>(KindImm, StartLoc, EndLoc); in createImm() 185 unsigned LengthReg, SMLoc StartLoc, SMLoc EndLoc) { in createMem() argument 186 auto Op = make_unique<SystemZOperand>(KindMem, StartLoc, EndLoc); in createMem() [all …]
|
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 58 const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, in Create() argument 65 new (Mem) OMPParallelDirective(StartLoc, EndLoc, Clauses.size()); in Create() 83 OMPSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() argument 93 OMPSimdDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create() 125 OMPForDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() argument 135 new (Mem) OMPForDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create() 178 OMPForSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() argument 188 OMPForSimdDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create() 230 const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, in Create() argument 237 new (Mem) OMPSectionsDirective(StartLoc, EndLoc, Clauses.size()); in Create() [all …]
|
D | OpenMPClause.cpp | 172 OMPPrivateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() argument 178 new (Mem) OMPPrivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create() 203 OMPFirstprivateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() argument 209 new (Mem) OMPFirstprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create() 252 const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, in Create() argument 258 new (Mem) OMPLastprivateClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create() 275 SourceLocation StartLoc, in Create() argument 281 new (Mem) OMPSharedClause(StartLoc, LParenLoc, EndLoc, VL.size()); in Create() 316 const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, in Create() argument 325 StartLoc, LParenLoc, Modifier, ModifierLoc, ColonLoc, EndLoc, VL.size()); in Create() [all …]
|
D | DeclTemplate.cpp | 521 DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, unsigned D, in NonTypeTemplateParmDecl() argument 524 : DeclaratorDecl(NonTypeTemplateParm, DC, IdLoc, Id, T, TInfo, StartLoc), in NonTypeTemplateParmDecl() 539 SourceLocation StartLoc, SourceLocation IdLoc, in Create() argument 543 return new (C, DC) NonTypeTemplateParmDecl(DC, StartLoc, IdLoc, D, P, Id, in Create() 548 const ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in Create() argument 555 NonTypeTemplateParmDecl(DC, StartLoc, IdLoc, D, P, Id, T, TInfo, in Create() 706 DeclContext *DC, SourceLocation StartLoc, in ClassTemplateSpecializationDecl() argument 711 : CXXRecordDecl(DK, TK, Context, DC, StartLoc, IdLoc, in ClassTemplateSpecializationDecl() 729 SourceLocation StartLoc, in Create() argument 736 Context, ClassTemplateSpecialization, TK, DC, StartLoc, IdLoc, in Create() [all …]
|
D | DeclCXX.cpp | 86 DeclContext *DC, SourceLocation StartLoc, in CXXRecordDecl() argument 89 : RecordDecl(K, TK, C, DC, StartLoc, IdLoc, Id, PrevDecl), in CXXRecordDecl() 95 DeclContext *DC, SourceLocation StartLoc, in Create() argument 99 CXXRecordDecl *R = new (C, DC) CXXRecordDecl(CXXRecord, TK, C, DC, StartLoc, in Create() 1530 SourceLocation StartLoc, in Create() argument 1535 return new (C, RD) CXXMethodDecl(CXXMethod, C, RD, StartLoc, NameInfo, in Create() 1823 SourceLocation StartLoc, in Create() argument 1835 C, RD, StartLoc, NameInfo, T, TInfo, isExplicit, isInline, in Create() 1962 SourceLocation StartLoc, in Create() argument 1969 return new (C, RD) CXXDestructorDecl(C, RD, StartLoc, NameInfo, T, TInfo, in Create() [all …]
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 1870 SourceLocation StartLoc) { in CheckNestingOfRegions() argument 3122 SemaRef.Diag(StartLoc, (CurrentRegion != OMPD_simd) in CheckNestingOfRegions() 3130 SemaRef.Diag(StartLoc, diag::err_omp_prohibited_region_atomic); in CheckNestingOfRegions() 3140 SemaRef.Diag(StartLoc, diag::err_omp_orphaned_section_directive) in CheckNestingOfRegions() 3202 SemaRef.Diag(StartLoc, in CheckNestingOfRegions() 3288 SemaRef.Diag(StartLoc, diag::err_omp_prohibited_region) in CheckNestingOfRegions() 3382 Stmt *AStmt, SourceLocation StartLoc, SourceLocation EndLoc) { in ActOnOpenMPExecutableDirective() argument 3385 StartLoc)) in ActOnOpenMPExecutableDirective() 3418 Res = ActOnOpenMPParallelDirective(ClausesWithImplicit, AStmt, StartLoc, in ActOnOpenMPExecutableDirective() 3423 Res = ActOnOpenMPSimdDirective(ClausesWithImplicit, AStmt, StartLoc, EndLoc, in ActOnOpenMPExecutableDirective() [all …]
|
D | SemaExprCXX.cpp | 1399 Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXNew() argument 1466 return BuildCXXNew(SourceRange(StartLoc, D.getLocEnd()), UseGlobal, in ActOnCXXNew() 1511 SourceLocation StartLoc = Range.getBegin(); in BuildCXXNew() local 1537 return ExprError(Diag(StartLoc, diag::err_auto_new_requires_ctor_arg) in BuildCXXNew() 1553 return ExprError(Diag(StartLoc, diag::err_auto_new_deduction_failure) in BuildCXXNew() 1616 Diag(StartLoc, diag::warn_cxx98_compat_array_size_conversion) in BuildCXXNew() 1673 ConvertedSize = PerformContextualImplicitConversion(StartLoc, ArraySize, in BuildCXXNew() 1747 FindAllocationFunctions(StartLoc, in BuildCXXNew() 1758 = doesUsualArrayDeleteWantSize(*this, StartLoc, AllocType); in BuildCXXNew() 1792 Diag(StartLoc, diag::warn_overaligned_type) in BuildCXXNew() [all …]
|
D | TreeTransform.h | 1265 SourceLocation StartLoc, SourceLocation EndLoc) { in RebuildDeclStmt() argument 1267 return getSema().ActOnDeclStmt(DG, StartLoc, EndLoc); in RebuildDeclStmt() 1388 Stmt *AStmt, SourceLocation StartLoc, in RebuildOMPExecutableDirective() argument 1391 Kind, DirName, CancelRegion, Clauses, AStmt, StartLoc, EndLoc); in RebuildOMPExecutableDirective() 1399 Expr *Condition, SourceLocation StartLoc, in RebuildOMPIfClause() argument 1404 return getSema().ActOnOpenMPIfClause(NameModifier, Condition, StartLoc, in RebuildOMPIfClause() 1413 OMPClause *RebuildOMPFinalClause(Expr *Condition, SourceLocation StartLoc, in RebuildOMPFinalClause() argument 1416 return getSema().ActOnOpenMPFinalClause(Condition, StartLoc, LParenLoc, in RebuildOMPFinalClause() 1425 SourceLocation StartLoc, in RebuildOMPNumThreadsClause() argument 1428 return getSema().ActOnOpenMPNumThreadsClause(NumThreads, StartLoc, in RebuildOMPNumThreadsClause() [all …]
|
/external/clang/lib/Parse/ |
D | ParseInit.cpp | 205 SourceLocation StartLoc = T.getOpenLocation(); in ParseInitializerWithPotentialDesignator() local 218 CheckArrayDesignatorSyntax(*this, StartLoc, Desig); in ParseInitializerWithPotentialDesignator() 220 StartLoc, ConsumeToken(), nullptr, nullptr); in ParseInitializerWithPotentialDesignator() 234 CheckArrayDesignatorSyntax(*this, StartLoc, Desig); in ParseInitializerWithPotentialDesignator() 235 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, in ParseInitializerWithPotentialDesignator() 257 CheckArrayDesignatorSyntax(*this, StartLoc, Desig); in ParseInitializerWithPotentialDesignator() 259 StartLoc, ConsumeToken(), nullptr, nullptr); in ParseInitializerWithPotentialDesignator() 262 CheckArrayDesignatorSyntax(*this, StartLoc, Desig); in ParseInitializerWithPotentialDesignator() 284 return ParseAssignmentExprWithObjCMessageExprStart(StartLoc, in ParseInitializerWithPotentialDesignator() 320 StartLoc, SourceLocation(), nullptr, Idx.get()); in ParseInitializerWithPotentialDesignator() [all …]
|
D | ParseDeclCXX.cpp | 768 SourceLocation StartLoc = Tok.getLocation(); in ParseDecltypeSpecifier() local 790 StartLoc : T.getOpenLocation(); in ParseDecltypeSpecifier() 858 ? DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec, in ParseDecltypeSpecifier() 860 : DS.SetTypeSpecType(DeclSpec::TST_decltype_auto, StartLoc, PrevSpec, in ParseDecltypeSpecifier() 862 Diag(StartLoc, DiagID) << PrevSpec; in ParseDecltypeSpecifier() 869 SourceLocation StartLoc, in AnnotateExistingDecltypeSpecifier() argument 883 Tok.setLocation(StartLoc); in AnnotateExistingDecltypeSpecifier() 891 SourceLocation StartLoc = ConsumeToken(); in ParseUnderlyingTypeSpecifier() local 911 if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec, in ParseUnderlyingTypeSpecifier() 914 Diag(StartLoc, DiagID) << PrevSpec; in ParseUnderlyingTypeSpecifier() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/AsmParser/ |
D | X86Operand.h | 35 SMLoc StartLoc, EndLoc; member 81 : Kind(K), StartLoc(Start), EndLoc(End) {} in X86Operand() 87 SMLoc getStartLoc() const override { return StartLoc; } in getStartLoc() 94 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); } in getLocRange() 534 CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc, 537 auto Res = llvm::make_unique<X86Operand>(Register, StartLoc, EndLoc); 547 CreateDXReg(SMLoc StartLoc, SMLoc EndLoc) { in CreateDXReg() 548 return llvm::make_unique<X86Operand>(DXRegister, StartLoc, EndLoc); in CreateDXReg() 552 CreatePrefix(unsigned Prefixes, SMLoc StartLoc, SMLoc EndLoc) { in CreatePrefix() 553 auto Res = llvm::make_unique<X86Operand>(Prefix, StartLoc, EndLoc); in CreatePrefix() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/BPF/AsmParser/ |
D | BPFAsmParser.cpp | 41 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override; 95 SMLoc StartLoc, EndLoc; member 107 StartLoc = o.StartLoc; in BPFOperand() 142 SMLoc getStartLoc() const override { return StartLoc; } in getStartLoc() 199 Op->StartLoc = S; in createToken() 208 Op->StartLoc = S; in createReg() 217 Op->StartLoc = S; in createImm() 323 bool BPFAsmParser::ParseRegister(unsigned &RegNo, SMLoc &StartLoc, in ParseRegister() argument 326 StartLoc = Tok.getLoc(); in ParseRegister() 336 return Error(StartLoc, "invalid register name"); in ParseRegister()
|
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/AsmParser/ |
D | MBlazeAsmParser.cpp | 45 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc); 83 SMLoc StartLoc, EndLoc; member 114 StartLoc = o.StartLoc; in MBlazeOperand() 136 SMLoc getStartLoc() const { return StartLoc; } in getStartLoc() 225 Op->StartLoc = S; in CreateToken() 233 Op->StartLoc = S; in CreateReg() 241 Op->StartLoc = S; in CreateImm() 249 Op->StartLoc = S; in CreateFslImm() 260 Op->StartLoc = S; in CreateMem() 271 Op->StartLoc = S; in CreateMem() [all …]
|
/external/llvm/lib/Target/X86/AsmParser/ |
D | X86Operand.h | 33 SMLoc StartLoc, EndLoc; member 70 : Kind(K), StartLoc(Start), EndLoc(End) {} in X86Operand() 76 SMLoc getStartLoc() const override { return StartLoc; } in getStartLoc() 81 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); } in getLocRange() 476 CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc, 479 auto Res = llvm::make_unique<X86Operand>(Register, StartLoc, EndLoc); 489 SMLoc StartLoc, SMLoc EndLoc) { in CreateImm() 490 auto Res = llvm::make_unique<X86Operand>(Immediate, StartLoc, EndLoc); in CreateImm() 497 CreateMem(unsigned ModeSize, const MCExpr *Disp, SMLoc StartLoc, SMLoc EndLoc, 500 auto Res = llvm::make_unique<X86Operand>(Memory, StartLoc, EndLoc); [all …]
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/AsmParser/ |
D | X86AsmParser.cpp | 47 X86Operand *ParseMemOperand(unsigned SegReg, SMLoc StartLoc); 88 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc); 116 SMLoc StartLoc, EndLoc; member 142 : Kind(K), StartLoc(Start), EndLoc(End) {} in X86Operand() 145 SMLoc getStartLoc() const { return StartLoc; } in getStartLoc() 326 static X86Operand *CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc) { in CreateReg() 327 X86Operand *Res = new X86Operand(Register, StartLoc, EndLoc); in CreateReg() 332 static X86Operand *CreateImm(const MCExpr *Val, SMLoc StartLoc, SMLoc EndLoc){ in CreateImm() 333 X86Operand *Res = new X86Operand(Immediate, StartLoc, EndLoc); in CreateImm() 339 static X86Operand *CreateMem(const MCExpr *Disp, SMLoc StartLoc, in CreateMem() [all …]
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 1747 ParmVarDecl *CheckParameter(DeclContext *DC, SourceLocation StartLoc, 3379 SourceLocation StartLoc, 3519 SourceLocation StartLoc, 3545 SourceLocation StartLoc, 4766 ExprResult ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, 4786 bool FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range, 4791 bool FindAllocationOverload(SourceLocation StartLoc, SourceRange Range, 4801 bool FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD, 4804 FunctionDecl *FindUsualDeallocationFunction(SourceLocation StartLoc, 4809 ExprResult ActOnCXXDelete(SourceLocation StartLoc, [all …]
|
/external/clang/lib/CodeGen/ |
D | CoverageMappingGen.cpp | 403 size_t pushRegion(Counter Count, Optional<SourceLocation> StartLoc = None, in pushRegion() 405 if (StartLoc) in pushRegion() 406 MostRecentLocation = *StartLoc; in pushRegion() 407 RegionStack.emplace_back(Count, StartLoc, EndLoc); in pushRegion() 421 SourceLocation StartLoc = Region.getStartLoc(); in popRegions() local 425 while (!SM.isWrittenInSameFile(StartLoc, EndLoc)) { in popRegions() 442 if (StartLoc == getStartOfFileOrMacro(StartLoc) && in popRegions() 476 bool isRegionAlreadyAdded(SourceLocation StartLoc, SourceLocation EndLoc) { in isRegionAlreadyAdded() 480 return Region.getStartLoc() == StartLoc && in isRegionAlreadyAdded() 570 SourceLocation StartLoc = getStart(S); in extendRegion() local [all …]
|
/external/clang/lib/Lex/ |
D | TokenLexer.cpp | 533 SourceLocation StartLoc = Tok.getLocation(); in PasteTokens() local 678 if (StartLoc.isFileID()) in PasteTokens() 679 StartLoc = getExpansionLocForMacroDefLoc(StartLoc); in PasteTokens() 683 while (SM.getFileID(StartLoc) != MacroFID) in PasteTokens() 684 StartLoc = SM.getImmediateExpansionRange(StartLoc).first; in PasteTokens() 688 Tok.setLocation(SM.createExpansionLoc(Tok.getLocation(), StartLoc, EndLoc, in PasteTokens()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/AsmParser/ |
D | WebAssemblyAsmParser.cpp | 59 SMLoc StartLoc, EndLoc; member 99 : Kind(K), StartLoc(Start), EndLoc(End), Tok(T) {} in WebAssemblyOperand() 101 : Kind(K), StartLoc(Start), EndLoc(End), Reg(R) {} in WebAssemblyOperand() 103 : Kind(K), StartLoc(Start), EndLoc(End), Int(I) {} in WebAssemblyOperand() 105 : Kind(K), StartLoc(Start), EndLoc(End), Flt(F) {} in WebAssemblyOperand() 107 : Kind(K), StartLoc(Start), EndLoc(End), Sym(S) {} in WebAssemblyOperand() 128 SMLoc getStartLoc() const override { return StartLoc; } in getStartLoc()
|
/external/llvm/tools/llvm-mcmarkup/ |
D | llvm-mcmarkup.cpp | 59 SMLoc StartLoc; member in MarkupTag 62 : Name(n), Modifiers(m), StartLoc(Loc) {} in MarkupTag() 65 SMLoc getLoc() const { return StartLoc; } in getLoc()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/RISCV/AsmParser/ |
D | RISCVAsmParser.cpp | 61 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override; 154 SMLoc StartLoc, EndLoc; member 167 StartLoc = o.StartLoc; in RISCVOperand() 454 SMLoc getStartLoc() const override { return StartLoc; } in getStartLoc() 494 Op->StartLoc = S; in createToken() 504 Op->StartLoc = S; in createReg() 514 Op->StartLoc = S; in createImm() 784 bool RISCVAsmParser::ParseRegister(unsigned &RegNo, SMLoc &StartLoc, in ParseRegister() argument 787 StartLoc = Tok.getLoc(); in ParseRegister() 797 return Error(StartLoc, "invalid register name"); in ParseRegister()
|