Home
last modified time | relevance | path

Searched refs:NewLoc (Results 1 – 20 of 20) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Interpreter/
H A DIncrementalParser.cpp215 SourceLocation NewLoc = SM.getLocForStartOfFile(SM.getMainFileID()); in Parse() local
219 /*LoadedOffset=*/0, NewLoc); in Parse()
222 if (PP.EnterSourceFile(FID, /*DirLookup=*/0, NewLoc)) in Parse()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExceptionSpec.cpp262 const FunctionProtoType *New, SourceLocation NewLoc,
487 const FunctionProtoType *New, SourceLocation NewLoc) { in CheckEquivalentExceptionSpec() argument
496 Old, OldLoc, New, NewLoc); in CheckEquivalentExceptionSpec()
513 const FunctionProtoType *New, SourceLocation NewLoc, in CheckEquivalentExceptionSpecImpl() argument
523 Old = S.ResolveExceptionSpec(NewLoc, Old); in CheckEquivalentExceptionSpecImpl()
526 New = S.ResolveExceptionSpec(NewLoc, New); in CheckEquivalentExceptionSpecImpl()
655 S.Diag(NewLoc, DiagID); in CheckEquivalentExceptionSpecImpl()
666 SourceLocation NewLoc) { in CheckEquivalentExceptionSpec() argument
670 New, NewLoc); in CheckEquivalentExceptionSpec()
H A DSemaTemplate.cpp8714 Sema::CheckSpecializationInstantiationRedecl(SourceLocation NewLoc, in CheckSpecializationInstantiationRedecl() argument
8767 Diag(NewLoc, diag::err_specialization_after_instantiation) in CheckSpecializationInstantiationRedecl()
8803 Diag(NewLoc, in CheckSpecializationInstantiationRedecl()
8830 Diag(NewLoc, diag::warn_explicit_instantiation_after_specialization) in CheckSpecializationInstantiationRedecl()
8863 Diag(NewLoc, (getLangOpts().MSVCCompat) in CheckSpecializationInstantiationRedecl()
H A DSemaTemplateInstantiateDecl.cpp3765 auto NewLoc = NewTInfo->getTypeLoc().castAs<FunctionProtoTypeLoc>(); in adjustForRewrite() local
3767 NewLoc.setParam(I, OldLoc.getParam(I)); in adjustForRewrite()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DPragma.cpp1805 SourceLocation NewLoc; in HandlePragma() local
1813 NewLoc = Loc; in HandlePragma()
1820 NewLoc = SourceLocation(); in HandlePragma()
1823 PP.setPragmaARCCFCodeAuditedInfo(NameTok.getIdentifierInfo(), NewLoc); in HandlePragma()
1860 SourceLocation NewLoc; in HandlePragma() local
1869 NewLoc = Loc; in HandlePragma()
1871 Callbacks->PragmaAssumeNonNullBegin(NewLoc); in HandlePragma()
1878 NewLoc = SourceLocation(); in HandlePragma()
1880 Callbacks->PragmaAssumeNonNullEnd(NewLoc); in HandlePragma()
1883 PP.setPragmaAssumeNonNullLoc(NewLoc); in HandlePragma()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp1179 LocIdx NewLoc = MTracker->getRegMLoc(Reg); in redefVar() local
1180 redefVar(MI, Properties, NewLoc); in redefVar()
1201 LocIdx NewLoc = *OptNewLoc; in redefVar() local
1206 if (MTracker->getNumAtPos(NewLoc) != VarLocs[NewLoc.asU64()]) { in redefVar()
1207 for (auto &P : ActiveMLocs[NewLoc]) { in redefVar()
1210 ActiveMLocs[NewLoc.asU64()].clear(); in redefVar()
1211 VarLocs[NewLoc.asU64()] = MTracker->getNumAtPos(NewLoc); in redefVar()
1214 ActiveMLocs[NewLoc].insert(Var); in redefVar()
1217 std::make_pair(Var, LocAndProperties{NewLoc, Properties})); in redefVar()
1219 It->second.Loc = NewLoc; in redefVar()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DLoopInfo.h1138 bool movementPreservesLCSSAForm(Instruction *Inst, Instruction *NewLoc) { in movementPreservesLCSSAForm() argument
1139 assert(Inst->getFunction() == NewLoc->getFunction() && in movementPreservesLCSSAForm()
1143 auto *NewBB = NewLoc->getParent(); in movementPreservesLCSSAForm()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp785 void handleFileExit(SourceLocation NewLoc) { in handleFileExit()
786 if (NewLoc.isInvalid() || in handleFileExit()
787 SM.isWrittenInSameFile(MostRecentLocation, NewLoc)) in handleFileExit()
792 SourceLocation LCA = NewLoc; in handleFileExit()
799 MostRecentLocation = NewLoc; in handleFileExit()
849 MostRecentLocation = NewLoc; in handleFileExit()
H A DCodeGenAction.cpp438 SourceLocation NewLoc = in ConvertBackendLocation() local
440 return FullSourceLoc(NewLoc, CSM); in ConvertBackendLocation()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLocal.cpp1440 DebugLoc NewLoc = getDebugValueLoc(DII, SI); in ConvertDebugDeclareToDebugValue() local
1451 Builder.insertDbgValueIntrinsic(DV, DIVar, DIExpr, NewLoc, SI); in ConvertDebugDeclareToDebugValue()
1455 Builder.insertDbgValueIntrinsic(DV, DIVar, DIExpr, NewLoc, SI); in ConvertDebugDeclareToDebugValue()
1475 DebugLoc NewLoc = getDebugValueLoc(DII, nullptr); in ConvertDebugDeclareToDebugValue() local
1482 LI, DIVar, DIExpr, NewLoc, (Instruction *)nullptr); in ConvertDebugDeclareToDebugValue()
1509 DebugLoc NewLoc = getDebugValueLoc(DII, nullptr); in ConvertDebugDeclareToDebugValue() local
1515 Builder.insertDbgValueIntrinsic(APN, DIVar, DIExpr, NewLoc, &*InsertionPt); in ConvertDebugDeclareToDebugValue()
1581 DebugLoc NewLoc = getDebugValueLoc(DDI, nullptr); in LowerDbgDeclare() local
1585 NewLoc, CI); in LowerDbgDeclare()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1080 PathDiagnosticLocation NewLoc) { in addEdgeToPath() argument
1081 if (!NewLoc.isValid()) in addEdgeToPath()
1084 SourceLocation NewLocL = NewLoc.asLocation(); in addEdgeToPath()
1089 PrevLoc = NewLoc; in addEdgeToPath()
1095 if (NewLoc.asStmt() && NewLoc.asStmt() == PrevLoc.asStmt()) in addEdgeToPath()
1099 std::make_shared<PathDiagnosticControlFlowPiece>(NewLoc, PrevLoc)); in addEdgeToPath()
1100 PrevLoc = NewLoc; in addEdgeToPath()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DInitialization.h328 static InitializedEntity InitializeNew(SourceLocation NewLoc, QualType Type) { in InitializeNew() argument
329 return InitializedEntity(EK_New, NewLoc, Type); in InitializeNew()
H A DSema.h1999 const FunctionProtoType *New, SourceLocation NewLoc);
2003 const FunctionProtoType *New, SourceLocation NewLoc);
7650 CheckSpecializationInstantiationRedecl(SourceLocation NewLoc,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp897 BasicBlock *NewLoc = preheader(DT, Lp); in adjustForInvariance() local
898 if (!NewLoc || !DT->dominates(TopB, NewLoc)) in adjustForInvariance()
901 LocB = NewLoc; in adjustForInvariance()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DPathDiagnostic.h871 void setLocation(PathDiagnosticLocation NewLoc) { in setLocation() argument
872 Loc = NewLoc; in setLocation()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp1948 MemoryLocation NewLoc = Loc.getWithNewPtr(Inc); in analyzeLoop() local
1949 Accesses.addStore(NewLoc); in analyzeLoop()
2002 MemoryLocation NewLoc = Loc.getWithNewPtr(Inc); in analyzeLoop() local
2003 Accesses.addLoad(NewLoc, IsReadOnlyPtr); in analyzeLoop()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DVTableBuilder.cpp3636 const MethodVFTableLocation &NewLoc = Loc.second; in computeVTableRelatedInformation() local
3638 if (vfptrIsEarlierInMDC(Layout, NewLoc, OldLoc)) in computeVTableRelatedInformation()
3639 OldLoc = NewLoc; in computeVTableRelatedInformation()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/
H A DRecord.cpp2267 bool RecordVal::setValue(Init *V, SMLoc NewLoc) { in setValue() argument
2268 Loc = NewLoc; in setValue()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLParser.cpp7561 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc; in parseCmpXchg() local
7580 parseTypeAndValue(New, NewLoc, PFS) || in parseCmpXchg()
7597 return error(NewLoc, "new value and pointer type do not match"); in parseCmpXchg()
7599 return error(NewLoc, "compare value and new value type do not match"); in parseCmpXchg()
7601 return error(NewLoc, "cmpxchg operand must be a first class value"); in parseCmpXchg()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
H A DRecord.h1459 bool setValue(Init *V, SMLoc NewLoc);