Home
last modified time | relevance | path

Searched refs:FindAndConstruct (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/
H A DGraph.h382 return Vertices.FindAndConstruct(I).second;
389 auto &P = Edges.FindAndConstruct(I);
390 Vertices.FindAndConstruct(I.first);
391 Vertices.FindAndConstruct(I.second);
465 Vertices.FindAndConstruct(EI.first); in insert()
466 Vertices.FindAndConstruct(EI.second); in insert()
482 Vertices.FindAndConstruct(EI.first); in insert()
483 Vertices.FindAndConstruct(EI.second); in insert()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_dense_map.h207 value_type &FindAndConstruct(const KeyT &Key) { in FindAndConstruct() function
215 ValueT &operator[](const KeyT &Key) { return FindAndConstruct(Key).second; }
217 value_type &FindAndConstruct(KeyT &&Key) { in FindAndConstruct() function
226 return FindAndConstruct(__sanitizer::move(Key)).second;
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DValueMap.h202 value_type& FindAndConstruct(const KeyT &Key) { in FindAndConstruct() function
203 return Map.FindAndConstruct(Wrap(Key)); in FindAndConstruct()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMap.h364 value_type& FindAndConstruct(const KeyT &Key) { in FindAndConstruct() function
373 return FindAndConstruct(Key).second;
376 value_type& FindAndConstruct(KeyT &&Key) { in FindAndConstruct() function
385 return FindAndConstruct(std::move(Key)).second;
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSSAUpdaterImpl.h142 BBMap.FindAndConstruct(Pred); in BuildBlockList()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp1153 auto &Decls = FunctionUDRMap.FindAndConstruct(CGF->CurFn); in emitUserDefinedReduction()
1332 auto &Elem = OpenMPLocThreadIDMap.FindAndConstruct(CGF.CurFn); in setLocThreadIdInsertPt()
1347 auto &Elem = OpenMPLocThreadIDMap.FindAndConstruct(CGF.CurFn); in clearLocThreadIdInsertPt()
1436 auto &Elem = OpenMPLocThreadIDMap.FindAndConstruct(CGF.CurFn); in getThreadID()
1448 auto &Elem = OpenMPLocThreadIDMap.FindAndConstruct(CGF.CurFn); in getThreadID()
8635 auto &OverlappedElements = OverlappedData.FindAndConstruct(&BaseData); in generateInfoForCapture()
9327 auto &Decls = FunctionUDMMap.FindAndConstruct(CGF->CurFn); in emitUserDefinedMapper()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCFrameLowering.cpp2428 VSRContainingGPRs.FindAndConstruct(Info.getDstReg()).second; in spillCalleeSavedRegisters()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp11423 auto &Res = EntryToLastInstruction.FindAndConstruct(E); in getLastInstructionInBundle()