Searched refs:Pool (Results 1 - 25 of 37) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DManagedStringPool.h1 //===-- ManagedStringPool.h - Managed String Pool ---------------*- C++ -*-===//
26 SmallVector<std::string *, 8> Pool; member in class:llvm::ManagedStringPool
32 SmallVectorImpl<std::string *>::iterator Current = Pool.begin();
33 while (Current != Pool.end()) {
41 Pool.push_back(Str);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfStringPool.h29 StringMap<EntryTy, BumpPtrAllocator &> Pool;
49 bool empty() const { return Pool.empty(); }
51 unsigned size() const { return Pool.size(); }
H A DAddressPool.cpp22 Pool.insert(std::make_pair(Sym, AddressPoolEntry(Pool.size(), TLS)));
59 SmallVector<const MCExpr *, 64> Entries(Pool.size());
61 for (const auto &I : Pool)
H A DAddressPool.h30 DenseMap<const MCSymbol *, AddressPoolEntry> Pool; member in class:llvm::AddressPool
47 bool isEmpty() { return Pool.empty(); }
H A DDwarfStringPool.cpp22 : Pool(A), Prefix(Prefix),
27 auto I = Pool.insert(std::make_pair(Str, EntryTy()));
77 if (Pool.empty())
85 Entries.reserve(Pool.size());
87 for (const auto &E : Pool)
115 for (const auto &Entry : Pool) {
/netbsd-current/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXString.cpp128 for (std::vector<CXStringBuf *>::iterator I = Pool.begin(), E = Pool.end();
135 if (Pool.empty())
138 CXStringBuf *Buf = Pool.back();
140 Pool.pop_back();
149 TU->StringPool->Pool.push_back(this);
H A DCXString.h80 std::vector<CXStringBuf *> Pool; member in class:clang::cxstring::CXStringPool
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/gc/
H A Dpooltable.d12 struct PoolTable(Pool)
23 bool insert(Pool* pool) nothrow @nogc
25 auto newpools = cast(Pool **)cstdlib.realloc(pools, (npools + 1) * pools[0].sizeof);
58 ref inout(Pool*) opIndex(size_t idx) inout return @trusted pure nothrow @nogc
65 inout(Pool*)[] opSlice(size_t a, size_t b) inout return @trusted pure nothrow @nogc
73 inout(Pool*)[] opSlice() inout return @trusted pure nothrow @nogc
81 * Find Pool that pointer is in.
82 * Return null if not in a Pool.
85 Pool *findPool(void *p) nothrow @nogc
117 Pool*[] minimiz
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-dwp/
H A DDWPStringPool.h35 DenseMap<const char *, uint32_t, CStrDenseMapInfo> Pool; member in class:llvm::DWPStringPool
44 auto Pair = Pool.insert(std::make_pair(Str, Offset));
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/
H A DCostAllocator.h36 PoolEntry(ValuePool &Pool, ValueKeyT Value) argument
37 : Pool(Pool), Value(std::move(Value)) {}
39 ~PoolEntry() { Pool.removeEntry(this); }
44 ValuePool &Pool; member in class:llvm::PBQP::ValuePool::PoolEntry
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/libdruntime/gc/
H A Dpooltable.d12 struct PoolTable(Pool)
24 bool insert(Pool* pool)
26 auto newpools = cast(Pool **)cstdlib.realloc(pools, (npools + 1) * pools[0].sizeof);
56 ref inout(Pool*) opIndex(size_t idx) inout pure
63 inout(Pool*)[] opSlice(size_t a, size_t b) inout pure
73 * Find Pool that pointer is in.
74 * Return null if not in a Pool.
77 Pool *findPool(void *p) nothrow
109 Pool*[] minimize() pure
111 static void swap(ref Pool*
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DSymbolStringPool.h46 PoolMap Pool; member in class:llvm::orc::SymbolStringPool
157 assert(Pool.empty() && "Dangling references at pool destruction time");
165 std::tie(I, Added) = Pool.try_emplace(S, 0);
171 for (auto I = Pool.begin(), E = Pool.end(); I != E;) {
174 Pool.erase(Tmp);
180 return Pool.empty();
/netbsd-current/external/apache2/llvm/dist/clang/lib/Tooling/
H A DAllTUsExecution.cpp118 llvm::ThreadPool Pool(llvm::hardware_concurrency(ThreadCount));
120 Pool.async(
142 Pool.wait();
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/aarch64/
H A Dlitpool.d2 #name: AArch64 Bignums in Literal Pool (PR 16688)
/netbsd-current/external/apache2/llvm/dist/llvm/tools/opt-viewer/
H A Dopt-stats.py14 from multiprocessing import cpu_count, Pool namespace
H A Doptpmap.py47 pool = multiprocessing.Pool(initializer=_init,
/netbsd-current/external/apache2/llvm/dist/clang/tools/clang-scan-deps/
H A DClangScanDeps.cpp558 llvm::ThreadPool Pool(llvm::hardware_concurrency(NumThreads));
560 for (unsigned I = 0; I < Pool.getThreadCount(); ++I)
575 << " files using " << Pool.getThreadCount() << " workers\n";
577 for (unsigned I = 0; I < Pool.getThreadCount(); ++I) {
578 Pool.async([I, &Lock, &Index, &Inputs, &HadErrors, &FD, &WorkerTools,
613 Pool.wait();
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-cov/
H A DCoverageExporterJson.cpp240 ThreadPool Pool(S);
247 Pool.async([&] {
255 Pool.wait();
H A DCoverageReport.cpp398 ThreadPool Pool(S);
405 Pool.async(&CoverageReport::prepareSingleFileReport, Filename,
408 Pool.wait();
/netbsd-current/external/apache2/llvm/dist/llvm/utils/lit/lit/
H A Drun.py69 pool = multiprocessing.Pool(self.workers, lit.worker.initialize,
/netbsd-current/external/apache2/llvm/dist/llvm/utils/
H A Ddemangle_tree.py16 from multiprocessing import Pool namespace
150 pool = Pool(processes=pool_size)
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/libdruntime/gc/impl/conservative/
H A Dgc.d87 debug(PRINTF) void printFreeInfo(Pool* pool) nothrow
94 printf("Pool %p: %d really free, %d supposedly free\n", pool, nReallyFree, pool.freepages);
409 Pool* pool = gcx.findPool(p);
435 Pool* pool = gcx.findPool(p);
462 Pool* pool = gcx.findPool(p);
615 Pool *pool = gcx.findPool(p);
831 Pool* pool;
1018 Pool* pool;
1259 Pool *pool;
1292 PoolTable!Pool pooltabl
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/gc/impl/conservative/
H A Dgc.d345 Pool* pool = gcx.findPool(p);
386 Pool* pool = gcx.findPool(p);
429 Pool* pool = gcx.findPool(p);
624 Pool *pool = gcx.findPool(p);
719 biti = cast(size_t)(p - pool.baseAddr) >> Pool.ShiftBy.Small;
863 Pool* pool;
921 if (!gcx.recoverPool[bin] || pool.binPageChain[pagenum] == Pool.PageRecovered)
1090 Pool* pool;
1419 Pool *pool;
1497 PoolTable!Pool pooltabl
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
H A DDWARFStreamer.h82 /// Emit the string table described by \p Pool.
83 void emitStrings(const NonRelocatableStringpool &Pool) override;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DIdentifierResolver.cpp44 IdDeclInfo Pool[POOL_SIZE]; member in struct:IdentifierResolver::IdDeclInfoMap::IdDeclInfoPool
407 IdDeclInfo *IDI = &CurPool->Pool[CurIndex];

Completed in 346 milliseconds

12