Searched refs:Loc1 (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/
H A DSourceExtraction.cpp60 bool areOnSameLine(SourceLocation Loc1, SourceLocation Loc2, argument
62 return !Loc1.isMacroID() && !Loc2.isMacroID() &&
63 SM.getSpellingLineNumber(Loc1) == SM.getSpellingLineNumber(Loc2);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCallingConvLower.cpp275 const CCValAssign &Loc1 = RVLocs1[I];
279 Loc1.isRegLoc() != Loc2.isRegLoc() ||
281 Loc1.getLocInfo() != Loc2.getLocInfo() ||
283 Loc1.getExtraInfo() != Loc2.getExtraInfo())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMergedLoadStoreMotion.cpp197 MemoryLocation Loc1 = MemoryLocation::get(Store1); local
198 if (AA->isMustAlias(Loc0, Loc1) && Store0->isSameOperationAs(Store1) &&
199 !isStoreSinkBarrierInRange(*Store1->getNextNode(), BB1->back(), Loc1) &&
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafety.h165 /// \param Loc1 -- The location of the first lock expression.
168 SourceLocation Loc1,
167 handleExclusiveAndShared(StringRef Kind, Name LockName, SourceLocation Loc1, SourceLocation Loc2) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp445 const CCValAssign &Loc1 = ArgLocs1[i];
450 if (Loc1.isRegLoc() != Loc2.isRegLoc())
453 if (Loc1.isRegLoc()) {
455 if (Loc1.getLocReg() != Loc2.getLocReg())
462 // Loc1 wasn't a RegLoc, so they both must be MemLocs. Check if they match.
463 if (Loc1.getLocMemOffset() != Loc2.getLocMemOffset())
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp226 SourceLocation Loc1, SourceLocation Loc2,
228 std::pair<FileID, unsigned> Loc1Info = SM.getDecomposedLoc(Loc1);
241 assert(Loc1Info.second <= Loc2Info.second && "Loc1 after Loc2!");
225 onlyWhitespaceBetween(SourceManager &SM, SourceLocation Loc1, SourceLocation Loc2, unsigned MaxNewlinesAllowed) argument
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DInitialization.h592 InitializationKind(InitKind Kind, InitContext Context, SourceLocation Loc1, argument
595 Locations[0] = Loc1;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopCacheAnalysis.cpp461 const auto &Loc1 = MemoryLocation::get(&StoreOrLoadInst);
463 return AA.isMustAlias(Loc1, Loc2);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h1429 bool isWrittenInSameFile(SourceLocation Loc1, SourceLocation Loc2) const { argument
1430 return getFileID(Loc1) == getFileID(Loc2);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1799 SourceLocation Loc1,
1801 PartialDiagnosticAt Warning(Loc1,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1743 /// \p Loc1 is the location of \p Inst1. It is passed explicitly because it
1745 bool isAliased(const MemoryLocation &Loc1, Instruction *Inst1, argument
1755 if (Loc1.Ptr && Loc2.Ptr && isSimple(Inst1) && isSimple(Inst2)) {
1757 aliased = AA->alias(Loc1, Loc2);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp7422 Value *Val0, *Val1; LocTy Loc0, Loc1;
7427 ParseTypeAndValue(Val1, Loc1, PFS) ||
7438 return Error(Loc1, "insertvalue operand and field disagree in type: '" +

Completed in 121 milliseconds