Home
last modified time | relevance | path

Searched refs:Loc2 (Results 1 – 11 of 11) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DCallingConvLower.cpp273 auto AreCompatible = [](const CCValAssign &Loc1, const CCValAssign &Loc2) { in resultsCompatible() argument
274 assert(!Loc1.isPendingLoc() && !Loc2.isPendingLoc() && in resultsCompatible()
277 if (Loc1.getLocInfo() != Loc2.getLocInfo()) in resultsCompatible()
280 if (Loc1.isRegLoc() && Loc2.isRegLoc()) in resultsCompatible()
281 return Loc1.getLocReg() == Loc2.getLocReg(); in resultsCompatible()
282 if (Loc1.isMemLoc() && Loc2.isMemLoc()) in resultsCompatible()
283 return Loc1.getLocMemOffset() == Loc2.getLocMemOffset(); in resultsCompatible()
/openbsd-src/gnu/llvm/clang/lib/Tooling/Refactoring/Extract/
H A DSourceExtraction.cpp61 bool areOnSameLine(SourceLocation Loc1, SourceLocation Loc2, in areOnSameLine() argument
63 return !Loc1.isMacroID() && !Loc2.isMacroID() && in areOnSameLine()
64 SM.getSpellingLineNumber(Loc1) == SM.getSpellingLineNumber(Loc2); in areOnSameLine()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp39 std::pair<const Value *, Type *> Loc2, in PrintResults() argument
42 Type *Ty1 = Loc1.second, *Ty2 = Loc2.second; in PrintResults()
44 unsigned AS2 = Loc2.first->getType()->getPointerAddressSpace(); in PrintResults()
49 Loc2.first->printAsOperand(os2, false, M); in PrintResults()
H A DLoopCacheAnalysis.cpp542 const auto &Loc2 = MemoryLocation::get(&Other.StoreOrLoadInst); in isAliased() local
543 return AA.isMustAlias(Loc1, Loc2); in isAliased()
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/Analyses/
H A DThreadSafety.h168 SourceLocation Loc2) {} in handleExclusiveAndShared() argument
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DRawCommentList.cpp227 SourceLocation Loc1, SourceLocation Loc2, in onlyWhitespaceBetween() argument
230 std::pair<FileID, unsigned> Loc2Info = SM.getDecomposedLoc(Loc2); in onlyWhitespaceBetween()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp1065 const CCValAssign &Loc2 = ArgLocs2[i]; in resultsCompatible() local
1069 if (Loc1.isRegLoc() != Loc2.isRegLoc()) in resultsCompatible()
1074 if (Loc1.getLocReg() != Loc2.getLocReg()) in resultsCompatible()
1082 if (Loc1.getLocMemOffset() != Loc2.getLocMemOffset()) in resultsCompatible()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DInitialization.h632 SourceLocation Loc2, SourceLocation Loc3) in InitializationKind() argument
635 Locations[1] = Loc2; in InitializationKind()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DSourceManager.h1467 bool isWrittenInSameFile(SourceLocation Loc1, SourceLocation Loc2) const { in isWrittenInSameFile() argument
1468 return getFileID(Loc1) == getFileID(Loc2); in isWrittenInSameFile()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1919 SourceLocation Loc2) override { in handleExclusiveAndShared() argument
1923 PartialDiagnosticAt Note(Loc2, S.PDiag(diag::note_lock_exclusive_and_shared) in handleExclusiveAndShared()
/openbsd-src/gnu/llvm/llvm/lib/AsmParser/
H A DLLParser.cpp6535 LocTy Loc, Loc2; in parseBr() local
6552 parseTypeAndBasicBlock(Op2, Loc2, PFS)) in parseBr()