Home
last modified time | relevance | path

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

12345

/llvm-project-15.0.7/clang/lib/Analysis/
H A DMacroExpansionContext.cpp67 It->getSecond().print(llvm::dbgs(), SM); in MacroExpands()
70 if (SM.isBeforeInTranslationUnit(It->getSecond(), ExpansionEnd)) { in MacroExpands()
71 It->getSecond() = ExpansionEnd; in MacroExpands()
74 llvm::dbgs() << " to "; It->getSecond().print(llvm::dbgs(), SM); in MacroExpands()
114 return It->getSecond().str(); in getExpandedText()
126 assert(It->getFirst() != It->getSecond() && in getOriginalText()
130 CharSourceRange::getCharRange(It->getFirst(), It->getSecond()), *SM, in getOriginalText()
146 std::make_pair(Record.getFirst(), Record.getSecond())); in dumpExpansionRangesToStream()
165 std::make_pair(Record.getFirst(), Record.getSecond())); in dumpExpandedTextsToStream()
229 It->getSecond().append(TokenAsString); in onTokenLexed()
/llvm-project-15.0.7/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()
130 BlockLiveness.try_emplace(BB, NumAllocas).first->getSecond(); in collectMarkers()
157 BlockMarkerSet.begin()->getSecond()); in collectMarkers()
167 ProcessMarker(II, It->getSecond()); in collectMarkers()
181 BlockLifetimeInfo &BlockInfo = BlockLiveness.find(BB)->getSecond(); in calculateLocalLiveness()
231 BlockLifetimeInfo &BlockInfo = IT.getSecond(); in calculateLiveIntervals()
286 const BlockLifetimeInfo &BlockInfo = BlockLiveness.find(BB)->getSecond(); in dumpBlockLiveness()
287 auto BlockRange = BlockInstRange.find(BB)->getSecond(); in dumpBlockLiveness()
347 if (SL.LiveRanges[KV.getSecond()].test(InstrNo)) in printInstrAlive()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DDenseMap.h133 P->getSecond().~ValueT(); in clear()
202 return TheBucket->getSecond(); in lookup()
309 TheBucket->getSecond().~ValueT(); in erase()
370 P->getSecond().~ValueT(); in destroyAll()
412 ::new (&DestBucket->getSecond()) ValueT(std::move(B->getSecond())); in moveFromOldBuckets()
416 B->getSecond().~ValueT(); in moveFromOldBuckets()
967 ::new (&RHSB->getSecond()) ValueT(std::move(LHSB->getSecond())); in swap()
970 ::new (&LHSB->getSecond()) ValueT(std::move(RHSB->getSecond())); in swap()
1000 ::new (&NewB->getSecond()) ValueT(std::move(OldB->getSecond())); in swap()
1065 ::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
/llvm-project-15.0.7/clang-tools-extra/clangd/support/
H A DMemoryTree.cpp27 Total += traverseTree(Entry.getSecond(), ComponentName, Out); in traverseTree()
37 auto &Child = Children.try_emplace(Name, DetailAlloc).first->getSecond(); in createChild()
49 Total += Entry.getSecond().total(); in total()
/llvm-project-15.0.7/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
/llvm-project-15.0.7/llvm/lib/Target/Mips/
H A DMipsRegisterBankInfo.h193 return Types.find(MI)->getSecond(); in getRecordedTypeForInstr()
199 Types.find(MI)->getSecond() = InstTy; in changeRecordedTypeForInstr()
206 return WaitingQueues.find(MI)->getSecond(); in getWaitingQueueFor()
213 WaitingQueues.find(MI)->getSecond().push_back(WaitingForMI); in addToWaitingQueue()
/llvm-project-15.0.7/mlir/lib/Analysis/
H A DDataLayoutAnalysis.cpp39 return *it->getSecond(); in getAbove()
49 return *it->getSecond(); in getAtOrAbove()
/llvm-project-15.0.7/clang/lib/Basic/
H A DDarwinSDKInfo.cpp26 return KV->getSecond(); in map()
44 if (auto Val = KV.getSecond().getAsString()) { in parseJSON()
95 *KV.getSecond().getAsObject(), *MaximumDeploymentVersion); in parseDarwinSDKSettingsJSON()
/llvm-project-15.0.7/llvm/lib/ProfileData/
H A DRawMemProfReader.cpp329 Callstack.reserve(It->getSecond().size()); in mapRawProfileToRecords()
331 llvm::ArrayRef<uint64_t> Addresses = It->getSecond(); in mapRawProfileToRecords()
381 for (LocationPtr Loc : I->getSecond()) { in mapRawProfileToRecords()
402 for (const uint64_t VAddr : Entry.getSecond()) { in symbolizeAndFilterStackFrames()
444 auto &CallStack = Entry.getSecond(); in symbolizeAndFilterStackFrames()
548 F.SymbolName = Iter->getSecond(); in readNextRecord()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DDarwinSDKInfo.h145 return Mapping->getSecond() ? Mapping->getSecond().getPointer() : nullptr; in getVersionMapping()
/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/
H A DSpeculation.h51 return Position->getSecond(); in getImplFor()
83 CandidateSet = It->getSecond(); in launchCompile()
/llvm-project-15.0.7/mlir/test/lib/Dialect/Test/
H A DTestAttributes.cpp164 printer << "<" << getFirst() << ", " << getSecond() << ", " << getThird() in print()
172 walkAttrsFn(getSecond()); in walkImmediateSubElements()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DASTSignalsTests.cpp60 Sym.emplace_back(P.getFirst(), P.getSecond()); in TEST()
H A DHeadersTests.cpp152 if (arg.getSecond() != D)
153 *result_listener << "distance =" << arg.getSecond();
154 return arg.getFirst() == File && arg.getSecond() == D;
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPUResourceUsageAnalysis.h71 return Info->getSecond(); in getResourceInfo()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DFileDistance.cpp110 Cache.try_emplace(Child, Unreachable).first->getSecond(); in FileDistance()
153 return R.first->getSecond(); in distance()
/llvm-project-15.0.7/mlir/lib/Dialect/Transform/IR/
H A DTransformInterfaces.cpp44 return iter->getSecond(); in getPayloadOps()
109 SmallVector<Operation *> &association = it->getSecond(); in updatePayloadOps()
177 return it->getSecond()(), failure(); in checkAndRecordHandleInvalidation()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.cpp509 return I->getSecond(); in getFieldForGlobalizedVar()
1362 I->getSecond().MappedParams = in emitTeamsOutlinedFunction()
1398 for (auto &Rec : I->getSecond().LocalVarData) { in emitGenericVarsProlog()
1470 I->getSecond().MappedParams->apply(CGF); in emitGenericVarsProlog()
1491 I->getSecond().MappedParams->restore(CGF); in emitGenericVarsEpilog()
3650 I->getSecond().MappedParams = in emitFunctionProlog()
3652 I->getSecond().EscapedParameters.insert( in emitFunctionProlog()
3655 I->getSecond().EscapedVariableLengthDecls.append( in emitFunctionProlog()
3737 auto VDI = I->getSecond().LocalVarData.find(VD); in getAddressOfLocalVariable()
3738 if (VDI != I->getSecond().LocalVarData.end()) in getAddressOfLocalVariable()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/Transform/Transforms/
H A DCheckUses.cpp36 return it->getSecond(); in getReachableImpl()
232 const llvm::SmallPtrSet<Operation *, 2> &deleters = it->getSecond(); in isFreedBetween()
/llvm-project-15.0.7/mlir/lib/Dialect/Bufferization/Transforms/
H A DFuncBufferizableOpInterfaceImpl.cpp136 auto retValIt = funcOpIt->getSecond().find(returnValIdx); in getEquivalentFuncArgIdx()
137 if (retValIt == funcOpIt->getSecond().end()) in getEquivalentFuncArgIdx()
141 return retValIt->getSecond(); in getEquivalentFuncArgIdx()
/llvm-project-15.0.7/mlir/lib/Dialect/Async/Transforms/
H A DAsyncRuntimeRefCounting.cpp275 Operation *userInTheBlock = blockAndUser.getSecond(); in addDropRefAfterLastUse()
379 BlockSet &successors = kv.getSecond(); in addDropRefInDivergentLivenessSuccessor()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/
H A DGlobalTypeTableBuilder.h88 Result.first->getSecond() = TypeIndex(SimpleTypeKind::NotTranslated); in insertRecordAs()
/llvm-project-15.0.7/clang/lib/Analysis/FlowSensitive/
H A DTypeErasedDataflowAnalysis.cpp52 const auto &State = BlockToState[BlockIt->getSecond()->getBlockID()]; in getEnvironment()
198 Preds.erase(StmtBlock->getSecond()); in computeBlockInputState()

12345