Home
last modified time | relevance | path

Searched refs:enqueue (Results 1 – 25 of 40) sorted by relevance

12

/llvm-project-15.0.7/lld/MachO/
H A DMarkLive.cpp37 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 DMarkLive.cpp43 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 DWorkList.h66 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 DCoreEngine.h195 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 DCoreEngine.cpp126 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 DWorkList.cpp44 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 DExprEngineCallAndReturn.cpp70 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 DMarkLive.cpp53 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 DMarkLive.cpp38 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 Dquarantine_test.cpp84 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 DRegAllocBase.cpp78 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 DRegAllocBase.h102 void enqueue(const LiveInterval *LI);
H A DRegAllocBasic.cpp168 enqueue(&LI); in LRE_WillShrinkVirtReg()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DLSPClient.cpp77 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 DDeadCodeAnalysis.cpp36 solver->enqueue({block, analysis}); in onUpdate()
40 solver->enqueue({&op, analysis}); in onUpdate()
45 solver->enqueue({edge->getTo(), analysis}); in onUpdate()
H A DSparseAnalysis.cpp24 solver->enqueue({user, analysis}); in onUpdate()
/llvm-project-15.0.7/clang/lib/Analysis/
H A DReachableCode.cpp403 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 Dpr37888.ll3 ; 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 Dquarantine.h74 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 DDataFlowFramework.cpp104 enqueue(item); in propagateIfChanged()
/llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/
H A Dremaining-virtual-register-operands.ll5 ; still need to enqueue and allocate the newly split vregs after the
H A Dhsa-metadata-enqueue-kernel.ll79 attributes #1 = { optnone noinline "calls-enqueue-kernel" "amdgpu-implicitarg-num-bytes"="48" }
H A Dhsa-metadata-enqueue-kernel-v3.ll80 attributes #1 = { optnone noinline "calls-enqueue-kernel" "amdgpu-implicitarg-num-bytes"="48" }
H A Dhsa-metadata-hidden-args-v5.ll124 attributes #0 = { optnone noinline "calls-enqueue-kernel" }
/llvm-project-15.0.7/clang-tools-extra/clangd/index/
H A DBackground.h159 void enqueue(const std::vector<std::string> &ChangedFiles) { in enqueue() function

12