Home
last modified time | relevance | path

Searched refs:getSecond (Results 1 – 25 of 68) sorted by relevance

123

/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DMacroExpansionContext.cpp68 It->getSecond().print(llvm::dbgs(), SM); in MacroExpands()
71 if (SM.isBeforeInTranslationUnit(It->getSecond(), ExpansionEnd)) { in MacroExpands()
72 It->getSecond() = ExpansionEnd; in MacroExpands()
75 llvm::dbgs() << " to "; It->getSecond().print(llvm::dbgs(), SM); in MacroExpands()
115 return It->getSecond().str(); in getExpandedText()
127 assert(It->getFirst() != It->getSecond() && in getOriginalText()
131 CharSourceRange::getCharRange(It->getFirst(), It->getSecond()), *SM, in getOriginalText()
147 std::make_pair(Record.getFirst(), Record.getSecond())); in dumpExpansionRangesToStream()
166 std::make_pair(Record.getFirst(), Record.getSecond())); in dumpExpandedTextsToStream()
230 It->getSecond().append(TokenAsString); in onTokenLexed()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DStackLifetime.cpp52 auto It = std::upper_bound(Instructions.begin() + ItBB->getSecond().first + 1, in isAliveAfter()
53 Instructions.begin() + ItBB->getSecond().second, I, in isAliveAfter()
129 BlockLiveness.try_emplace(BB, NumAllocas).first->getSecond(); in collectMarkers()
156 BlockMarkerSet.begin()->getSecond()); in collectMarkers()
166 ProcessMarker(II, It->getSecond()); in collectMarkers()
186 BlockLifetimeInfo &BlockInfo = BlockLiveness.find(BB)->getSecond(); in calculateLocalLiveness()
247 BlockLifetimeInfo &BlockInfo = IT.getSecond(); in calculateLiveIntervals()
302 const BlockLifetimeInfo &BlockInfo = BlockLiveness.find(BB)->getSecond(); in dumpBlockLiveness()
303 auto BlockRange = BlockInstRange.find(BB)->getSecond(); in dumpBlockLiveness()
363 if (SL.LiveRanges[KV.getSecond()].test(InstrNo)) in printInstrAlive()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMap.h131 P->getSecond().~ValueT(); in clear()
205 return TheBucket->getSecond(); in lookup()
334 TheBucket->getSecond().~ValueT(); in erase()
395 P->getSecond().~ValueT(); in destroyAll()
437 ::new (&DestBucket->getSecond()) ValueT(std::move(B->getSecond())); in moveFromOldBuckets()
441 B->getSecond().~ValueT(); in moveFromOldBuckets()
992 ::new (&RHSB->getSecond()) ValueT(std::move(LHSB->getSecond())); in swap()
995 ::new (&LHSB->getSecond()) ValueT(std::move(RHSB->getSecond())); in swap()
1025 ::new (&NewB->getSecond()) ValueT(std::move(OldB->getSecond())); in swap()
1090 ::new (&TmpEnd->getSecond()) ValueT(std::move(P->getSecond())); in grow()
[all …]
H A DDenseSet.h40 DenseSetEmpty &getSecond() { return *this; } in getSecond() function
41 const DenseSetEmpty &getSecond() const { return *this; } in getSecond() function
H A DAPFloat.h707 inline APFloat &getSecond();
708 inline const APFloat &getSecond() const;
1456 APFloat &DoubleAPFloat::getSecond() { return Floats[1]; } in getSecond() function
1457 const APFloat &DoubleAPFloat::getSecond() const { return Floats[1]; } in getSecond() function
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_dense_map.h60 P->getSecond().~ValueT(); in clear()
116 return TheBucket->getSecond(); in lookup()
191 TheBucket->getSecond().~ValueT(); in erase()
201 TheBucket->getSecond().~ValueT(); in erase()
262 P->getSecond().~ValueT(); in destroyAll()
303 ::new (&DestBucket->getSecond()) in moveFromOldBuckets()
304 ValueT(__sanitizer::move(B->getSecond())); in moveFromOldBuckets()
308 B->getSecond().~ValueT(); in moveFromOldBuckets()
333 ::new (&getBuckets()[i].getSecond()) in copyFrom()
334 ValueT(other.getBuckets()[i].getSecond()); in copyFrom()
[all …]
H A Dsanitizer_dense_map_info.h56 ValueT &getSecond() { return second; } in getSecond() function
57 const ValueT &getSecond() const { return second; } in getSecond() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsRegisterBankInfo.h194 return Types.find(MI)->getSecond(); in getRecordedTypeForInstr()
200 Types.find(MI)->getSecond() = InstTy; in changeRecordedTypeForInstr()
207 return WaitingQueues.find(MI)->getSecond(); in getWaitingQueueFor()
214 WaitingQueues.find(MI)->getSecond().push_back(WaitingForMI); in addToWaitingQueue()
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DDarwinSDKInfo.cpp27 return KV->getSecond(); in map()
45 if (auto Val = KV.getSecond().getAsString()) { in parseJSON()
97 *KV.getSecond().getAsObject(), *MaximumDeploymentVersion); in parseDarwinSDKSettingsJSON()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DDarwinSDKInfo.h147 return Mapping->getSecond() ? &*Mapping->getSecond() : nullptr; in getVersionMapping()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DRawMemProfReader.cpp418 Callstack.reserve(It->getSecond().size()); in mapRawProfileToRecords()
420 llvm::ArrayRef<uint64_t> Addresses = It->getSecond(); in mapRawProfileToRecords()
490 for (const uint64_t VAddr : Entry.getSecond()) { in symbolizeAndFilterStackFrames()
536 auto &CallStack = Entry.getSecond(); in symbolizeAndFilterStackFrames()
668 F.SymbolName = Iter->getSecond(); in readNextRecord()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DSpeculation.h50 return Position->getSecond(); in getImplFor()
82 CandidateSet = It->getSecond(); in launchCompile()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUResourceUsageAnalysis.h71 return Info->getSecond(); in getResourceInfo()
H A DAMDGPUResourceUsageAnalysis.cpp595 auto &Info = I.getSecond(); in propagateIndirectCallRegisterUsage()
606 auto &Info = I.getSecond(); in propagateIndirectCallRegisterUsage()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.cpp1037 I->getSecond().MappedParams = in emitTeamsOutlinedFunction()
1071 for (auto &Rec : I->getSecond().LocalVarData) { in emitGenericVarsProlog()
1122 I->getSecond().MappedParams->apply(CGF); in emitGenericVarsProlog()
1188 I->getSecond().MappedParams->restore(CGF); in emitGenericVarsEpilog()
3223 I->getSecond().MappedParams = in emitFunctionProlog()
3225 I->getSecond().EscapedParameters.insert( in emitFunctionProlog()
3228 I->getSecond().EscapedVariableLengthDecls.append( in emitFunctionProlog()
3230 I->getSecond().DelayedVariableLengthDecls.append( in emitFunctionProlog()
3302 auto VDI = I->getSecond().LocalVarData.find(VD); in getAddressOfLocalVariable()
3303 if (VDI != I->getSecond().LocalVarData.end()) in getAddressOfLocalVariable()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DGlobalTypeTableBuilder.h88 Result.first->getSecond() = TypeIndex(SimpleTypeKind::NotTranslated); in insertRecordAs()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DTransfer.cpp43 if (!CFCtx.isBlockReachable(*BlockIt->getSecond())) in getEnvironment()
45 if (BlockIt->getSecond()->getBlockID() == CurBlockID) in getEnvironment()
47 const auto &State = BlockToState[BlockIt->getSecond()->getBlockID()]; in getEnvironment()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DSafeStackLayout.cpp35 OS << " at " << IT.getSecond() << ": " << *IT.getFirst() << "\n"; in print()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DRawMemProfReader.h96 return It->getSecond(); in idToFrame()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp349 return std::pair<GraphIter, bool>{Ref->getSecond(), false}; in getGadgetGraph()
514 Builder.addEdge(LoopDepth, GI, Ref->getSecond()); in getGadgetGraph()
515 GI = Ref->getSecond(); in getGadgetGraph()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h483 return Off->getSecond(); in getClobberOffset()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DOpenMPOpt.cpp1314 auto &CIs = It.getSecond(); in mergeParallelRegions()
2709 AlignedBlocks += It.getSecond().IsReachedFromAlignedBarrierOnly && in getAsStr()
2710 It.getSecond().IsReachingAlignedBarrierOnly; in getAsStr()
2854 if (!It->getSecond().IsReachingAlignedBarrierOnly) in isExecutedInAlignedRegion()
2873 if (It->getSecond().IsReachedFromAlignedBarrierOnly) in isExecutedInAlignedRegion()
4929 RuntimeFunction RF = It->getSecond(); in initialize()
5075 if (It->getSecond() == OMPRTL___kmpc_parallel_51) { in updateImpl()
5085 (It->getSecond() == OMPRTL___kmpc_alloc_shared || in updateImpl()
5086 It->getSecond() == OMPRTL___kmpc_free_shared) && in updateImpl()
5094 RuntimeFunction RF = It->getSecond(); in updateImpl()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DJSON.cpp25 return try_emplace(K, nullptr).first->getSecond(); in operator []()
28 return try_emplace(std::move(K), nullptr).first->getSecond(); in operator []()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/
H A DModuleMap.h613 return It != InferredDirectories.end() && It->getSecond().InferModules; in canInferFrameworkModule()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DLocalizationChecker.cpp785 auto argumentIterator = method->getSecond().find(S); in getLocalizedArgumentForSelector()
787 if (argumentIterator == method->getSecond().end()) in getLocalizedArgumentForSelector()
790 int argumentNumber = argumentIterator->getSecond(); in getLocalizedArgumentForSelector()

123