Home
last modified time | relevance | path

Searched refs:StartLoc (Results 1 – 25 of 75) sorted by relevance

123

/external/clang/include/clang/AST/
DStmtOpenMP.h38 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 …]
DOpenMPClause.h34 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 …]
DDecl.h487 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 …]
DDeclCXX.h644 SourceLocation StartLoc, SourceLocation IdLoc,
688 SourceLocation StartLoc, SourceLocation IdLoc,
1740 SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, in CXXMethodDecl() argument
1744 : FunctionDecl(DK, C, RD, StartLoc, NameInfo, T, TInfo, in CXXMethodDecl()
1752 SourceLocation StartLoc,
2207 CXXConstructorDecl(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, in CXXConstructorDecl() argument
2213 : CXXMethodDecl(CXXConstructor, C, RD, StartLoc, NameInfo, T, TInfo, in CXXConstructorDecl()
2227 Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc,
2419 CXXDestructorDecl(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, in CXXDestructorDecl() argument
2423 : CXXMethodDecl(CXXDestructor, C, RD, StartLoc, NameInfo, T, TInfo, in CXXDestructorDecl()
[all …]
/external/llvm/lib/Target/SystemZ/AsmParser/
DSystemZAsmParser.cpp69 SMLoc StartLoc, EndLoc; member in __anon920606c00111::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/clang/lib/AST/
DStmtOpenMP.cpp58 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 …]
DOpenMPClause.cpp172 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 …]
DDeclTemplate.cpp521 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 …]
DDeclCXX.cpp86 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 …]
DDecl.cpp1784 SourceLocation StartLoc, SourceLocation IdLoc, in VarDecl() argument
1787 : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc), in VarDecl()
2329 SourceLocation StartLoc, in Create() argument
2333 return new (C, DC) ParmVarDecl(ParmVar, C, DC, StartLoc, IdLoc, Id, T, TInfo, in Create()
3444 SourceLocation StartLoc, SourceLocation IdLoc, in Create() argument
3448 return new (C, DC) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo, in Create()
3627 SourceLocation StartLoc, SourceLocation IdLoc, in Create() argument
3631 auto *Enum = new (C, DC) EnumDecl(C, DC, StartLoc, IdLoc, Id, PrevDecl, in Create()
3716 DeclContext *DC, SourceLocation StartLoc, in RecordDecl() argument
3719 : TagDecl(DK, TK, C, DC, IdLoc, Id, PrevDecl, StartLoc) { in RecordDecl()
[all …]
/external/clang/lib/Sema/
DSemaOpenMP.cpp1870 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 …]
DSemaExprCXX.cpp1399 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 …]
DTreeTransform.h1265 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/
DParseInit.cpp205 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 …]
DParseDeclCXX.cpp768 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 …]
DParseDecl.cpp628 SourceLocation StartLoc = Tok.getLocation(); in DiagnoseAndSkipExtendedMicrosoftTypeAttributes() local
632 SourceRange Range(StartLoc, EndLoc); in DiagnoseAndSkipExtendedMicrosoftTypeAttributes()
633 Diag(StartLoc, diag::warn_microsoft_qualifiers_ignored) << Range; in DiagnoseAndSkipExtendedMicrosoftTypeAttributes()
3524 SourceLocation StartLoc = Tok.getLocation(); in ParseDeclarationSpecifiers() local
3528 if (DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc, StartLoc, in ParseDeclarationSpecifiers()
3531 Diag(StartLoc, DiagID) << PrevSpec; in ParseDeclarationSpecifiers()
3810 void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS, in ParseEnumSpecifier() argument
3984 Diag(StartLoc, diag::warn_cxx98_compat_enum_fixed_underlying_type); in ParseEnumSpecifier()
3987 Diag(StartLoc, diag::ext_cxx11_enum_fixed_underlying_type) << Range; in ParseEnumSpecifier()
3989 Diag(StartLoc, diag::ext_c_enum_fixed_underlying_type) << Range; in ParseEnumSpecifier()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/AsmParser/
DMBlazeAsmParser.cpp45 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/
DX86Operand.h33 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/
DX86AsmParser.cpp47 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/
DSema.h1747 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/
DCoverageMappingGen.cpp403 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/
DTokenLexer.cpp533 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/llvm/tools/llvm-mcmarkup/
Dllvm-mcmarkup.cpp59 SMLoc StartLoc; member in MarkupTag
62 : Name(n), Modifiers(m), StartLoc(Loc) {} in MarkupTag()
65 SMLoc getLoc() const { return StartLoc; } in getLoc()
/external/llvm/lib/Target/Sparc/AsmParser/
DSparcAsmParser.cpp53 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
194 SMLoc StartLoc, EndLoc; member in __anoncba7d3b40111::SparcOperand
281 return StartLoc; in getStartLoc()
345 Op->StartLoc = S; in CreateToken()
355 Op->StartLoc = S; in CreateReg()
364 Op->StartLoc = S; in CreateImm()
451 Op->StartLoc = S; in CreateMEMr()
593 ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) in ParseRegister() argument
596 StartLoc = Tok.getLoc(); in ParseRegister()
608 return Error(StartLoc, "invalid register name"); in ParseRegister()
/external/swiftshader/third_party/LLVM/lib/Target/ARM/AsmParser/
DARMAsmParser.cpp228 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
273 SMLoc StartLoc, EndLoc; member in __anon92cf716e0311::ARMOperand
375 StartLoc = o.StartLoc; in ARMOperand()
446 SMLoc getStartLoc() const { return StartLoc; } in getStartLoc()
1443 Op->StartLoc = S; in CreateITMask()
1451 Op->StartLoc = S; in CreateCondCode()
1459 Op->StartLoc = S; in CreateCoprocNum()
1467 Op->StartLoc = S; in CreateCoprocReg()
1475 Op->StartLoc = S; in CreateCoprocOption()
1483 Op->StartLoc = S; in CreateCCOut()
[all …]

123