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

/freebsd-11-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-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCallingConvLower.cpp277 const CCValAssign &Loc1 = RVLocs1[I];
279 if (Loc1.getLocInfo() != Loc2.getLocInfo())
281 bool RegLoc1 = Loc1.isRegLoc();
285 if (Loc1.getLocReg() != Loc2.getLocReg())
288 if (Loc1.getLocMemOffset() != Loc2.getLocMemOffset())
/freebsd-11-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-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafety.h163 /// \param Loc1 -- The location of the first lock expression.
166 SourceLocation Loc1,
165 handleExclusiveAndShared(StringRef Kind, Name LockName, SourceLocation Loc1, SourceLocation Loc2) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp433 const CCValAssign &Loc1 = ArgLocs1[i];
438 if (Loc1.isRegLoc() != Loc2.isRegLoc())
441 if (Loc1.isRegLoc()) {
443 if (Loc1.getLocReg() != Loc2.getLocReg())
450 // Loc1 wasn't a RegLoc, so they both must be MemLocs. Check if they match.
451 if (Loc1.getLocMemOffset() != Loc2.getLocMemOffset())
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp225 SourceLocation Loc1, SourceLocation Loc2,
227 std::pair<FileID, unsigned> Loc1Info = SM.getDecomposedLoc(Loc1);
240 assert(Loc1Info.second <= Loc2Info.second && "Loc1 after Loc2!");
224 onlyWhitespaceBetween(SourceManager &SM, SourceLocation Loc1, SourceLocation Loc2, unsigned MaxNewlinesAllowed) argument
/freebsd-11-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-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopCacheAnalysis.cpp439 const auto &Loc1 = MemoryLocation::get(&StoreOrLoadInst);
441 return AA.isMustAlias(Loc1, Loc2);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h1462 bool isWrittenInSameFile(SourceLocation Loc1, SourceLocation Loc2) const { argument
1463 return getFileID(Loc1) == getFileID(Loc2);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1749 SourceLocation Loc1,
1751 PartialDiagnosticAt Warning(Loc1,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1729 /// \p Loc1 is the location of \p Inst1. It is passed explicitly because it
1731 bool isAliased(const MemoryLocation &Loc1, Instruction *Inst1, argument
1741 if (Loc1.Ptr && Loc2.Ptr && isSimple(Inst1) && isSimple(Inst2)) {
1743 aliased = AA->alias(Loc1, Loc2);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp7282 Value *Val0, *Val1; LocTy Loc0, Loc1;
7287 ParseTypeAndValue(Val1, Loc1, PFS) ||
7298 return Error(Loc1, "insertvalue operand and field disagree in type: '" +

Completed in 202 milliseconds