Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DRecordOps.cpp89 const RecordStorageLocation &Loc2, const Environment &Env2) { in recordsEqual() argument
91 if (Loc2.getType().getCanonicalType().getUnqualifiedType() != in recordsEqual()
94 llvm::dbgs() << "Loc2 type " << Loc2.getType() << "\n"; in recordsEqual()
97 assert(Loc2.getType().getCanonicalType().getUnqualifiedType() == in recordsEqual()
101 StorageLocation *FieldLoc2 = Loc2.getChild(*Field); in recordsEqual()
122 cast<RecordStorageLocation>(Loc2.getSyntheticField(Name)), Env2)) in recordsEqual()
125 Env2.getValue(Loc2.getSyntheticField(Name))) { in recordsEqual()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DRecordOps.h61 const RecordStorageLocation &Loc2, const Environment &Env2);
64 const RecordStorageLocation &Loc2, in recordsEqual() argument
66 return recordsEqual(Loc1, Env, Loc2, Env); in recordsEqual()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCallingConvLower.cpp276 auto AreCompatible = [](const CCValAssign &Loc1, const CCValAssign &Loc2) { in resultsCompatible() argument
277 assert(!Loc1.isPendingLoc() && !Loc2.isPendingLoc() && in resultsCompatible()
280 if (Loc1.getLocInfo() != Loc2.getLocInfo()) in resultsCompatible()
283 if (Loc1.isRegLoc() && Loc2.isRegLoc()) in resultsCompatible()
284 return Loc1.getLocReg() == Loc2.getLocReg(); in resultsCompatible()
285 if (Loc1.isMemLoc() && Loc2.isMemLoc()) in resultsCompatible()
286 return Loc1.getLocMemOffset() == Loc2.getLocMemOffset(); in resultsCompatible()
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAliasAnalysis.cpp71 const MemoryLocation &Loc2, AAQueryInfo &AAQI, in alias() argument
74 unsigned AS2 = Loc2.Ptr->getType()->getPointerAddressSpace(); in alias()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp37 std::pair<const Value *, Type *> Loc2, in PrintResults() argument
40 Type *Ty1 = Loc1.second, *Ty2 = Loc2.second; in PrintResults()
42 unsigned AS2 = Loc2.first->getType()->getPointerAddressSpace(); in PrintResults()
47 Loc2.first->printAsOperand(os2, false, M); in PrintResults()
H A DLoopCacheAnalysis.cpp547 const auto &Loc2 = MemoryLocation::get(&Other.StoreOrLoadInst); in isAliased() local
548 return AA.isMustAlias(Loc1, Loc2); in isAliased()
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/Models/
H A DUncheckedOptionalAccessModel.cpp567 void transferSwap(RecordStorageLocation *Loc1, RecordStorageLocation *Loc2, in transferSwap() argument
574 if (Loc2 != nullptr) in transferSwap()
575 setHasValue(*Loc2, Env.makeAtomicBoolValue(), Env); in transferSwap()
578 if (Loc2 == nullptr) { in transferSwap()
593 BoolValue *BoolVal2 = getHasValue(Env, Loc2); in transferSwap()
598 setHasValue(*Loc2, *BoolVal1, Env); in transferSwap()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DInitialization.h632 SourceLocation Loc2, SourceLocation Loc3) in InitializationKind() argument
635 Locations[1] = Loc2; in InitializationKind()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp1222 const CCValAssign &Loc2 = ArgLocs2[i]; in resultsCompatible() local
1226 if (Loc1.isRegLoc() != Loc2.isRegLoc()) in resultsCompatible()
1231 if (Loc1.getLocReg() != Loc2.getLocReg()) in resultsCompatible()
1239 if (Loc1.getLocMemOffset() != Loc2.getLocMemOffset()) in resultsCompatible()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h1493 bool isWrittenInSameFile(SourceLocation Loc1, SourceLocation Loc2) const { in isWrittenInSameFile() argument
1494 return getFileID(Loc1) == getFileID(Loc2); in isWrittenInSameFile()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1943 SourceLocation Loc2) override { in handleExclusiveAndShared() argument
1947 PartialDiagnosticAt Note(Loc2, S.PDiag(diag::note_lock_exclusive_and_shared) in handleExclusiveAndShared()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp7149 LocTy Loc, Loc2; in parseBr() local
7166 parseTypeAndBasicBlock(Op2, Loc2, PFS)) in parseBr()