| /llvm-project-15.0.7/lld/MachO/ |
| H A D | MarkLive.cpp | 37 virtual void enqueue(InputSection *isec, uint64_t off) = 0; 52 void enqueue(InputSection *isec, uint64_t off) override { in enqueue() function in lld::macho::MarkLiveImpl 53 enqueue(isec, off, nullptr); in enqueue() 74 void MarkLiveImpl<RecordWhyLive>::enqueue( in enqueue() function in lld::macho::MarkLiveImpl 96 enqueue(d->isec, d->value, prev); in addSym() 98 enqueue(d->unwindEntry, 0, prev); in addSym() 175 enqueue(r.referent.get<InputSection *>(), r.addend, entry); in markTransitively() 195 enqueue(isec, 0, makeEntry(referentIsec, nullptr)); in markTransitively() 200 enqueue(isec, 0, makeEntry(referentIsec, nullptr)); in markTransitively() 276 marker->enqueue(isec, 0); in markLive() [all …]
|
| /llvm-project-15.0.7/lld/wasm/ |
| H A D | MarkLive.cpp | 43 void enqueue(Symbol *sym); 54 void MarkLive::enqueue(Symbol *sym) { in enqueue() function in lld::wasm::MarkLive 83 enqueue(initSym); in enqueueInitFunctions() 90 enqueue(symtab->find(config->entry)); in run() 95 enqueue(sym); in run() 98 enqueue(WasmSym::callDtors); in run() 139 enqueue(sym); in mark()
|
| /llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | WorkList.h | 66 virtual void enqueue(const WorkListUnit& U) = 0; 68 void enqueue(ExplodedNode *N, const CFGBlock *B, unsigned idx) { in enqueue() function 69 enqueue(WorkListUnit(N, CurrentCounter, B, idx)); in enqueue() 72 void enqueue(ExplodedNode *N) { in enqueue() function 74 enqueue(WorkListUnit(N, CurrentCounter)); in enqueue()
|
| H A D | CoreEngine.h | 195 void enqueue(ExplodedNodeSet &Set); 199 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/ |
| H A D | CoreEngine.cpp | 126 enqueue(DstBegin); in ExecuteWorkList() 303 enqueue(dstNodes); in HandleBlockEdge() 462 enqueue(Dst); in HandleBranch() 474 enqueue(Dst); in HandleCleanupTemporaryBranch() 485 enqueue(Dst); in HandleStaticInit() 540 if (IsNew) WList->enqueue(Node); in generateNode() 609 WList->enqueue(I); in enqueue() 624 WList->enqueue(I); in enqueueEndOfFunction() 691 Eng.WList->enqueue(Succ); in generateNode() 707 Eng.WList->enqueue(Succ); in generateCaseStmtNode() [all …]
|
| H A D | WorkList.cpp | 44 void enqueue(const WorkListUnit& U) override { in enqueue() function in __anon24f49dde0111::DFS 64 void enqueue(const WorkListUnit& U) override { in enqueue() function in __anon24f49dde0111::BFS 100 void enqueue(const WorkListUnit& U) override { in enqueue() function in __anon24f49dde0211::BFSBlockDFSContents 149 void enqueue(const WorkListUnit &U) override { in enqueue() function in __anon24f49dde0311::UnexploredFirstStack 224 void enqueue(const WorkListUnit &U) override { in enqueue() function in __anon24f49dde0411::UnexploredFirstPriorityQueue 280 void enqueue(const WorkListUnit &U) override { in enqueue() function in __anon24f49dde0511::UnexploredFirstPriorityLocationQueue
|
| H A D | ExprEngineCallAndReturn.cpp | 70 Engine.enqueue(DstBegin); in processCallEnter() 381 Engine.getWorkList()->enqueue(*PSI, calleeCtx->getCallSiteBlock(), Idx); in processCallExit() 515 WList->enqueue(N); in inlineCall()
|
| /llvm-project-15.0.7/lld/ELF/ |
| H A D | MarkLive.cpp | 53 void enqueue(InputSectionBase *sec, uint64_t offset); 116 enqueue(relSec, offset); in resolveReloc() 125 enqueue(sec, 0); in resolveReloc() 189 void MarkLive<ELFT>::enqueue(InputSectionBase *sec, uint64_t offset) { in enqueue() function in MarkLive 218 enqueue(isec, d->value); in markSymbol() 264 enqueue(sec, 0); in run() 304 enqueue(sec, 0); in run() 330 enqueue(isec, 0); in mark() 334 enqueue(sec.nextInSectionGroup, 0); in mark() 360 enqueue(sec, 0); in moveToMain()
|
| /llvm-project-15.0.7/lld/COFF/ |
| H A D | MarkLive.cpp | 38 auto enqueue = [&](SectionChunk *c) { in markLive() local 47 enqueue(sym->getChunk()); in markLive() 69 enqueue(&c); in markLive()
|
| /llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/tests/ |
| H A D | quarantine_test.cpp | 84 Cache.enqueue(Cb, FakePtr, BlockSize); in TEST() 104 From.enqueue(Cb, FakePtr, BlockSize); in TEST() 107 Cache.enqueue(Cb, FakePtr, BlockSize); in TEST() 134 From.enqueue(Cb, FakePtr, BlockSize); in TEST() 135 Cache.enqueue(Cb, FakePtr, BlockSize); in TEST() 165 From.enqueue(Cb, FakePtr, BlockSize); in TEST()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | RegAllocBase.cpp | 78 enqueue(&LIS->getInterval(Reg)); in seedLiveRegs() 161 enqueue(SplitVirtReg); in allocatePhysRegs() 176 void RegAllocBase::enqueue(const LiveInterval *LI) { in enqueue() function in RegAllocBase
|
| H A D | RegAllocBase.h | 102 void enqueue(const LiveInterval *LI);
|
| H A D | RegAllocBasic.cpp | 168 enqueue(&LI); in LRE_WillShrinkVirtReg()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/unittests/ |
| H A D | LSPClient.cpp | 77 void enqueue(std::function<void(MessageHandler &)> Action) { in enqueue() function in clang::clangd::LSPClient::TransportImpl 147 T->enqueue([ID(Slot.first), Method(Method.str()), in call() 156 T->enqueue([Method(Method.str()), in notify() 168 void LSPClient::stop() { T->enqueue(nullptr); } in stop()
|
| /llvm-project-15.0.7/mlir/lib/Analysis/DataFlow/ |
| H A D | DeadCodeAnalysis.cpp | 36 solver->enqueue({block, analysis}); in onUpdate() 40 solver->enqueue({&op, analysis}); in onUpdate() 45 solver->enqueue({edge->getTo(), analysis}); in onUpdate()
|
| H A D | SparseAnalysis.cpp | 24 solver->enqueue({user, analysis}); in onUpdate()
|
| /llvm-project-15.0.7/clang/lib/Analysis/ |
| H A D | ReachableCode.cpp | 403 void enqueue(const CFGBlock *block); 417 void DeadCodeScan::enqueue(const CFGBlock *block) { in enqueue() function in DeadCodeScan 487 enqueue(Start); in scanBackwards() 505 enqueue(predBlock); in scanBackwards()
|
| /llvm-project-15.0.7/llvm/test/Transforms/SimpleLoopUnswitch/ |
| H A D | pr37888.ll | 3 ; Check that when we do unswitching where we re-enqueue the loop to be processed
|
| /llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/ |
| H A D | quarantine.h | 74 void enqueue(Callback Cb, void *Ptr, uptr Size) { in enqueue() function 195 C->enqueue(Cb, Ptr, Size); in put()
|
| /llvm-project-15.0.7/mlir/lib/Analysis/ |
| H A D | DataFlowFramework.cpp | 104 enqueue(item); in propagateIfChanged()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/ |
| H A D | remaining-virtual-register-operands.ll | 5 ; still need to enqueue and allocate the newly split vregs after the
|
| H A D | hsa-metadata-enqueue-kernel.ll | 79 attributes #1 = { optnone noinline "calls-enqueue-kernel" "amdgpu-implicitarg-num-bytes"="48" }
|
| H A D | hsa-metadata-enqueue-kernel-v3.ll | 80 attributes #1 = { optnone noinline "calls-enqueue-kernel" "amdgpu-implicitarg-num-bytes"="48" }
|
| H A D | hsa-metadata-hidden-args-v5.ll | 124 attributes #0 = { optnone noinline "calls-enqueue-kernel" }
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/index/ |
| H A D | Background.h | 159 void enqueue(const std::vector<std::string> &ChangedFiles) { in enqueue() function
|