Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/
HDSourceExtraction.cpp60 bool areOnSameLine(SourceLocation Loc1, SourceLocation Loc2, in areOnSameLine() argument
62 return !Loc1.isMacroID() && !Loc2.isMacroID() && in areOnSameLine()
63 SM.getSpellingLineNumber(Loc1) == SM.getSpellingLineNumber(Loc2); in areOnSameLine()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
HDCallingConvLower.cpp277 const CCValAssign &Loc1 = RVLocs1[I]; in resultsCompatible() local
279 if (Loc1.getLocInfo() != Loc2.getLocInfo()) in resultsCompatible()
281 bool RegLoc1 = Loc1.isRegLoc(); in resultsCompatible()
285 if (Loc1.getLocReg() != Loc2.getLocReg()) in resultsCompatible()
288 if (Loc1.getLocMemOffset() != Loc2.getLocMemOffset()) in resultsCompatible()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
HDCallLowering.cpp433 const CCValAssign &Loc1 = ArgLocs1[i]; in resultsCompatible() local
438 if (Loc1.isRegLoc() != Loc2.isRegLoc()) in resultsCompatible()
441 if (Loc1.isRegLoc()) { in resultsCompatible()
443 if (Loc1.getLocReg() != Loc2.getLocReg()) in resultsCompatible()
451 if (Loc1.getLocMemOffset() != Loc2.getLocMemOffset()) in resultsCompatible()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
HDMergedLoadStoreMotion.cpp197 MemoryLocation Loc1 = MemoryLocation::get(Store1); in canSinkFromBlock() local
198 if (AA->isMustAlias(Loc0, Loc1) && Store0->isSameOperationAs(Store1) && in canSinkFromBlock()
199 !isStoreSinkBarrierInRange(*Store1->getNextNode(), BB1->back(), Loc1) && in canSinkFromBlock()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
HDThreadSafety.h166 SourceLocation Loc1, in handleExclusiveAndShared() argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
HDRawCommentList.cpp225 SourceLocation Loc1, SourceLocation Loc2, in onlyWhitespaceBetween() argument
227 std::pair<FileID, unsigned> Loc1Info = SM.getDecomposedLoc(Loc1); in onlyWhitespaceBetween()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
HDLoopCacheAnalysis.cpp439 const auto &Loc1 = MemoryLocation::get(&StoreOrLoadInst); in isAliased() local
441 return AA.isMustAlias(Loc1, Loc2); in isAliased()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
HDInitialization.h592 InitializationKind(InitKind Kind, InitContext Context, SourceLocation Loc1, in InitializationKind() argument
595 Locations[0] = Loc1; in InitializationKind()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
HDSourceManager.h1462 bool isWrittenInSameFile(SourceLocation Loc1, SourceLocation Loc2) const { in isWrittenInSameFile() argument
1463 return getFileID(Loc1) == getFileID(Loc2); in isWrittenInSameFile()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDAnalysisBasedWarnings.cpp1749 SourceLocation Loc1, in handleExclusiveAndShared() argument
1751 PartialDiagnosticAt Warning(Loc1, in handleExclusiveAndShared()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
HDSLPVectorizer.cpp1731 bool isAliased(const MemoryLocation &Loc1, Instruction *Inst1, in isAliased() argument
1741 if (Loc1.Ptr && Loc2.Ptr && isSimple(Inst1) && isSimple(Inst2)) { in isAliased()
1743 aliased = AA->alias(Loc1, Loc2); in isAliased()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
HDLLParser.cpp7282 Value *Val0, *Val1; LocTy Loc0, Loc1; in ParseInsertValue() local
7287 ParseTypeAndValue(Val1, Loc1, PFS) || in ParseInsertValue()
7298 return Error(Loc1, "insertvalue operand and field disagree in type: '" + in ParseInsertValue()