Home
last modified time | relevance | path

Searched refs:Allocators (Results 1 – 12 of 12) sorted by relevance

/openbsd-src/gnu/llvm/compiler-rt/lib/xray/
H A Dxray_profiling.cpp43 atomic_uintptr_t Allocators; member
55 thread_local FunctionCallTrie::Allocators::Buffers ThreadBuffers;
56 thread_local std::aligned_storage<sizeof(FunctionCallTrie::Allocators),
57 alignof(FunctionCallTrie::Allocators)>::type
88 uptr Allocators = 0; in getThreadLocalData() local
89 if (atomic_compare_exchange_strong(&TLD.Allocators, &Allocators, 1, in getThreadLocalData()
94 atomic_store(&TLD.Allocators, 0, memory_order_release); in getThreadLocalData()
128 new (&AllocatorsStorage) FunctionCallTrie::Allocators( in getThreadLocalData()
130 Allocators = reinterpret_cast<uptr>( in getThreadLocalData()
131 reinterpret_cast<FunctionCallTrie::Allocators *>(&AllocatorsStorage)); in getThreadLocalData()
[all …]
H A Dxray_function_call_trie.h135 struct Allocators { struct
160 Allocators() = default; argument
161 Allocators(const Allocators &) = delete;
162 Allocators &operator=(const Allocators &) = delete; argument
171 explicit Allocators(Buffers &B) XRAY_NEVER_INSTRUMENT { in Allocators() argument
193 explicit Allocators(uptr Max) XRAY_NEVER_INSTRUMENT { in Allocators() function
211 Allocators(Allocators &&O) XRAY_NEVER_INSTRUMENT { in Allocators() function
240 Allocators &operator=(Allocators &&O) XRAY_NEVER_INSTRUMENT {
294 ~Allocators() XRAY_NEVER_INSTRUMENT { in ~Allocators() argument
306 static Allocators InitAllocators() XRAY_NEVER_INSTRUMENT { in InitAllocators()
[all …]
H A Dxray_profile_collector.cpp61 FunctionCallTrie::Allocators::Buffers Buffers;
62 FunctionCallTrie::Allocators Allocators; member
109 FunctionCallTrie::Allocators &&A, in post()
110 FunctionCallTrie::Allocators::Buffers &&B, in post()
117 A.~Allocators(); in post()
136 A.~Allocators(); in post()
H A Dxray_profile_collector.h40 FunctionCallTrie::Allocators &&A,
41 FunctionCallTrie::Allocators::Buffers &&B, tid_t TId);
/openbsd-src/gnu/llvm/compiler-rt/lib/xray/tests/unit/
H A Dprofile_collector_test.cpp116 FunctionCallTrie::Allocators::Buffers Buffers; in TEST()
122 auto Allocators = FunctionCallTrie::InitAllocatorsFromBuffers(Buffers); in TEST() local
123 FunctionCallTrie T(Allocators); in TEST()
135 profileCollectorService::post(&BQ, std::move(T), std::move(Allocators), in TEST()
186 thread_local FunctionCallTrie::Allocators::Buffers Buffers = [] { in threadProcessing()
187 FunctionCallTrie::Allocators::Buffers B; in threadProcessing()
195 thread_local auto Allocators = in threadProcessing() local
198 FunctionCallTrie T(Allocators); in threadProcessing()
205 profileCollectorService::post(&BQ, std::move(T), std::move(Allocators), in threadProcessing()
H A Dfunction_call_trie_test.cpp22 FunctionCallTrie::Allocators Allocators = FunctionCallTrie::InitAllocators(); in TEST() local
23 FunctionCallTrie Trie(Allocators); in TEST()
313 typename std::aligned_storage<sizeof(FunctionCallTrie::Allocators), in TEST()
314 alignof(FunctionCallTrie::Allocators)>::type in TEST()
317 FunctionCallTrie::Allocators(FunctionCallTrie::InitAllocators()); in TEST()
319 reinterpret_cast<FunctionCallTrie::Allocators *>(&AllocatorsStorage); in TEST()
332 A->~Allocators(); in TEST()
333 new (A) FunctionCallTrie::Allocators(FunctionCallTrie::InitAllocators()); in TEST()
/openbsd-src/gnu/llvm/libcxx/docs/Status/
H A DCxx17Issues.csv2 "`2016 <https://wg21.link/LWG2016>`__","Allocators must be no-throw swappable","Urbana","|Complete|…
88 "`2447 <https://wg21.link/LWG2447>`__","Allocators and ``volatile``\ -qualified value types","Kona"…
126 "`2579 <https://wg21.link/LWG2579>`__","Inconsistency wrt Allocators in ``basic_string``\ assignme…
H A DCxx20Issues.csv4 "`2593 <https://wg21.link/LWG2593>`__","Moved-from state of Allocators","Toronto","",""
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp5996 ArrayRef<std::pair<const Expr *, const Expr *>> Allocators; member in __anonffc6c7122511::OMPUsesAllocatorsActionTy
6000 ArrayRef<std::pair<const Expr *, const Expr *>> Allocators) in OMPUsesAllocatorsActionTy() argument
6001 : Allocators(Allocators) {} in OMPUsesAllocatorsActionTy()
6005 for (const auto &AllocatorData : Allocators) { in Enter()
6013 for (const auto &AllocatorData : Allocators) { in Exit()
6027 SmallVector<std::pair<const Expr *, const Expr *>, 4> Allocators; in emitTargetOutlinedFunction() local
6033 Allocators.emplace_back(D.Allocator, D.AllocatorTraits); in emitTargetOutlinedFunction()
6036 OMPUsesAllocatorsActionTy UsesAllocatorAction(Allocators); in emitTargetOutlinedFunction()
/openbsd-src/gnu/lib/libstdc++/libstdc++/docs/html/17_intro/
H A DDESIGN161 - Allocators: Containers are specified to use user-definable
/openbsd-src/gnu/gcc/libstdc++-v3/docs/html/17_intro/
H A DDESIGN161 - Allocators: Containers are specified to use user-definable
/openbsd-src/gnu/lib/libstdc++/libstdc++/
H A DChangeLog-2001171 * docs/doxygen/Intro.3: New 'Allocators' module.