Home
last modified time | relevance | path

Searched refs:Pending (Results 1 – 25 of 35) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DExecuteStage.cpp55 SmallVector<InstRef, 4> Pending; in issueInstruction() local
58 HWS.issueInstruction(IR, Used, Pending, Ready); in issueInstruction()
72 for (const InstRef &I : Pending) in issueInstruction()
96 SmallVector<InstRef, 4> Pending; in cycleStart() local
99 HWS.cycleEvent(Freed, Executed, Pending, Ready); in cycleStart()
113 for (const InstRef &IR : Pending) in cycleStart()
236 HWInstructionEvent(HWInstructionEvent::Pending, IR)); in notifyInstructionPending()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTextNodeDumper.h39 llvm::SmallVector<std::function<void(bool IsLastChild)>, 32> Pending; variable
64 while (!Pending.empty()) { in AddChild()
65 Pending.back()(true); in AddChild()
66 Pending.pop_back(); in AddChild()
100 unsigned Depth = Pending.size(); in AddChild()
106 while (Depth < Pending.size()) { in AddChild()
107 Pending.back()(true); in AddChild()
108 this->Pending.pop_back(); in AddChild()
116 Pending.push_back(std::move(DumpWithIndent)); in AddChild()
118 Pending.back()(false); in AddChild()
[all …]
H A DJSONNodeDumper.h36 llvm::SmallVector<std::function<void(bool IsLastChild)>, 32> Pending; variable
58 while (!Pending.empty()) { in AddChild()
59 Pending.back()(true); in AddChild()
60 Pending.pop_back(); in AddChild()
79 unsigned Depth = Pending.size(); in AddChild()
86 while (Depth < Pending.size()) { in AddChild()
87 Pending.back()(true); in AddChild()
88 this->Pending.pop_back(); in AddChild()
100 Pending.push_back(std::move(DumpWithIndent)); in AddChild()
102 Pending.back()(false); in AddChild()
[all …]
/freebsd/sys/contrib/dev/acpica/components/events/
H A Devglock.c449 BOOLEAN Pending = FALSE; in AcpiEvReleaseGlobalLock() local
469 ACPI_RELEASE_GLOBAL_LOCK (AcpiGbl_FACS, Pending); in AcpiEvReleaseGlobalLock()
475 if (Pending) in AcpiEvReleaseGlobalLock()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600MachineScheduler.cpp70 (AluInstCount + AvailablesAluCount() + Pending[IDAlu].size()) / in pickNode()
169 MoveUnits(Pending[IDFetch], Available[IDFetch]); in schedNode()
199 Pending[IK].push_back(SU); in releaseBottomNode()
327 std::vector<SUnit *> &QSrc = Pending[IDAlu]; in LoadAlu()
393 while (AvailablesAluCount() || !Pending[IDAlu].empty()) { in pickAlu()
444 MoveUnits(Pending[QID], AQ); in pickOther()
H A DR600MachineScheduler.h51 std::vector<SUnit *> Available[IDLast], Pending[IDLast]; variable
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DVLIWMachineScheduler.cpp378 Pending.push(SU); in releaseNode()
447 for (unsigned i = 0, e = Pending.size(); i != e; ++i) { in releasePending()
448 SUnit *SU = *(Pending.begin() + i); in releasePending()
461 Pending.remove(Pending.begin() + i); in releasePending()
473 assert(Pending.isInQueue(SU) && "bad ready count"); in removeReady()
474 Pending.remove(Pending.find(SU)); in removeReady()
488 if (Available.size() == 1 && Pending.size() > 0) in pickOnlyChoice()
949 assert(Top.Available.empty() && Top.Pending.empty() && in pickNode()
950 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage"); in pickNode()
H A DMachineScheduler.cpp2528 Pending.clear(); in reset()
2871 Pending.remove(Pending.begin() + Idx); in releaseNode()
2876 Pending.push(SU); in releaseNode()
3143 for (unsigned I = 0, E = Pending.size(); I < E; ++I) { in releasePending()
3144 SUnit *SU = *(Pending.begin() + I); in releasePending()
3156 if (E != Pending.size()) { in releasePending()
3169 assert(Pending.isInQueue(SU) && "bad ready count"); in removeReady()
3170 Pending.remove(Pending.find(SU)); in removeReady()
3184 Pending.push(*I); in pickOnlyChoice()
3199 LLVM_DEBUG(Pending.dump()); in pickOnlyChoice()
[all …]
H A DAssignmentTrackingAnalysis.cpp887 Pending; in run() local
912 while (!Worklist.empty() || !Pending.empty()) { in run()
944 Pending.push(BBToOrder[Succ]); in run()
951 Worklist.swap(Pending); in run()
954 assert(Pending.empty() && "Pending should be empty"); in run()
2288 Pending; in run() local
2343 Pending.push(BBToOrder[Succ]); in run()
2350 Worklist.swap(Pending); in run()
2353 assert(Pending.empty() && "Pending should be empty"); in run()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaFunctionEffects.cpp461 CompleteFunctionAnalysis(ASTContext &Ctx, PendingFunctionAnalysis &&Pending, in CompleteFunctionAnalysis() argument
466 if (Pending.violationForInferrableEffect(effect) == nullptr) in CompleteFunctionAnalysis()
470 std::move(Pending.InferrableEffectToFirstViolation); in CompleteFunctionAnalysis()
570 if (auto *Pending = dyn_cast<PendingFunctionAnalysis *>(AP)) { in run() local
572 finishPendingAnalysis(D, Pending); in run()
579 PendingFunctionAnalysis *Pending = verifyDecl(D); in run() local
580 if (Pending == nullptr) { in run()
589 Pending->unverifiedCalls()) { in run()
667 PendingFunctionAnalysis &&Pending) { in completeAnalysis() argument
669 Pending.getSortedViolationsForExplicitEffects(S.getSourceManager()); in completeAnalysis()
[all …]
H A DMultiplexExternalSemaSource.cpp335 SourceLocation> > &Pending) { in ReadPendingInstantiations()
337 Sources[i]->ReadPendingInstantiations(Pending); in ReadPendingInstantiations()
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DScheduler.h155 bool promoteToPendingSet(SmallVectorImpl<InstRef> &Pending);
207 SmallVectorImpl<InstRef> &Pending, SmallVectorImpl<InstRef> &Ready);
227 SmallVectorImpl<InstRef> &Pending,
/freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DScheduler.cpp156 bool Scheduler::promoteToPendingSet(SmallVectorImpl<InstRef> &Pending) { in promoteToPendingSet() argument
181 Pending.emplace_back(IR); in promoteToPendingSet()
267 SmallVectorImpl<InstRef> &Pending, in cycleEvent() argument
284 promoteToPendingSet(Pending); in cycleEvent()
/freebsd/sys/contrib/dev/acpica/include/platform/
H A Dacenv.h403 #define ACPI_RELEASE_GLOBAL_LOCK(GLptr, Pending) Pending = 0 argument
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DVLIWMachineScheduler.h132 ReadyQueue Pending; member
148 /// Pending queues extend the ready queues with the same ID and the
152 Pending(ID << ConvergingVLIWScheduler::LogMaxQID, Name + ".P") {} in VLIWSchedBoundary()
H A DMachineScheduler.h854 ReadyQueue Pending; variable
952 Available(ID, Name+".A"), Pending(ID << LogMaxQID, Name+".P") { in SchedBoundary()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp366 Pending(Arena, TBTM.tokenBuffer()) { in TreeBuilder()
380 Pending.foldChildren(TBTM.tokenBuffer(), Range, New); in foldNode()
393 Pending.foldChildren(TBTM.tokenBuffer(), Range, New); in foldNode()
403 auto ListRange = Pending.shrinkToFitList(SuperRange); in foldList()
404 Pending.foldChildren(TBTM.tokenBuffer(), ListRange, New); in foldList()
440 Pending.foldChildren(TBTM.tokenBuffer(), Tokens.drop_back(), in finalize()
443 auto *TU = cast<syntax::TranslationUnit>(std::move(Pending).finalize()); in finalize()
686 std::string str() { return Pending.str(TBTM); } in str()
692 Forest Pending; member in syntax::TreeBuilder
1684 Pending.assignRole(*findToken(Loc), Role); in markChildToken()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DAnalysisBasedWarnings.h58 enum VisitFlag { NotVisited = 0, Visited = 1, Pending = 2 }; enumerator
H A DExternalSemaSource.h182 SourceLocation> > &Pending) {} in ReadPendingInstantiations()
H A DMultiplexExternalSemaSource.h329 SmallVectorImpl<std::pair<ValueDecl*, SourceLocation> >& Pending) override;
/freebsd/contrib/llvm-project/libc/include/llvm-libc-types/
H A DEFI_RUNTIME_SERVICES.h58 typedef EFI_STATUS(EFIAPI *EFI_GET_WAKEUP_TIME)(bool *Enabled, bool *Pending,
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/
H A DHWEventListener.h43 Pending, enumerator
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DVarLocBasedImpl.cpp2111 VarLocSet &Pending = *Iter.second; in flushPendingLocs() local
2114 collectAllVarLocs(VarLocs, Pending, VarLocIDs); in flushPendingLocs()
2266 Pending; in ExtendRanges() local
2328 while (!Worklist.empty() || !Pending.empty()) { in ExtendRanges()
2364 Pending.push(BBToOrder[s]); in ExtendRanges()
2369 Worklist.swap(Pending); in ExtendRanges()
2372 assert(Pending.empty() && "Pending should be empty"); in ExtendRanges()
H A DInstrRefBasedImpl.cpp2689 Worklist, Pending; in buildMLocValueMap() local
2726 while (!Worklist.empty() || !Pending.empty()) { in buildMLocValueMap()
2796 Pending.push(Order); in buildMLocValueMap()
2801 Worklist.swap(Pending); in buildMLocValueMap()
2806 assert(Pending.empty() && "Pending should be empty"); in buildMLocValueMap()
3169 Worklist, Pending; in buildVLocValueMap() local
3286 while (!Worklist.empty() || !Pending.empty()) { in buildVLocValueMap()
3371 Pending.push(Order); in buildVLocValueMap()
3375 Worklist.swap(Pending); in buildVLocValueMap()
3378 assert(Pending.empty()); in buildVLocValueMap()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTUtils.h593 std::pair<clang::ValueDecl *, clang::SourceLocation>> &Pending) in ReadPendingInstantiations() argument
596 Source->ReadPendingInstantiations(Pending); in ReadPendingInstantiations()

12