Searched refs:Queue (Results 51 - 67 of 67) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp729 const Record *Queue = ProcModel.LoadQueue->getValueAsDef("QueueDescriptor"); local
733 ProcModel.ProcResourceDefs.end(), Queue));
735 OS << " " << QueueID << ", // Resource Descriptor for the Load Queue\n";
739 const Record *Queue = local
744 ProcModel.ProcResourceDefs.end(), Queue));
746 OS << " " << QueueID << ", // Resource Descriptor for the Store Queue\n";
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaLookup.cpp2085 SmallVector<NamespaceDecl*, 8> Queue;
2096 Queue.push_back(ND);
2109 while (!Queue.empty()) {
2110 NamespaceDecl *ND = Queue.pop_back_val();
2144 Queue.push_back(Nom);
2849 SmallVector<const Type *, 16> Queue;
2919 Queue.push_back(Arg.getTypePtr());
2941 // Queue up the class type into which this points.
2942 Queue.push_back(MemberPtr->getClass());
2991 if (Queue
[all...]
H A DSemaDeclCXX.cpp2381 SmallVector<const CXXRecordDecl*, 8> Queue;
2397 Queue.push_back(Base);
2400 if (Queue.empty())
2403 Current = Queue.pop_back_val();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp835 SmallVector<const Metadata *, 16> Queue(MD.begin(), MD.end());
836 while (!Queue.empty()) {
837 const MDNode *M = cast<MDNode>(Queue.pop_back_val());
841 Queue.push_back(M1);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp179 PQueue Queue; member in class:__anon1792::RAGreedy
681 void RAGreedy::enqueue(LiveInterval *LI) { enqueue(Queue, LI); }
747 LiveInterval *RAGreedy::dequeue() { return dequeue(Queue); }
H A DMachineScheduler.cpp600 dbgs() << "Queue " << Name << ": ";
601 for (const SUnit *SU : Queue)
2422 // Note that the Queue contents are more useful before pickNodeFromQueue.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp1481 NullifyingVector<decltype(TmpQ)::vector_type> Queue(TmpQ.takeVector());
1483 Deleter DUQ(DAG, Queue);
1484 for (SDNode *S : reverse(Queue))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUHSAMetadataStreamer.cpp121 .Case("queue_t", ValueKind::Queue)
/freebsd-11-stable/contrib/sendmail/src/
H A Dsrvrsmtp.c3494 usrerr("459 4.5.4 Queue %s unknown",
3498 for (i = 0; i < NumQueue && Queue[i] != NULL;
3500 Queue[i]->qg_nextrun = (time_t) -1;
3501 Queue[qgrp]->qg_nextrun = 0;
3502 ok = run_work_group(Queue[qgrp]->qg_wgrp,
3639 "Send Queue=");
H A Dsendmail.h607 ** Queue group definition structure.
635 short qg_index; /* queue number internally, index in Queue[] */
2059 ** Queue related items
2108 /* Queue Run Limitations */
2143 EXTERN QUEUEGRP *Queue[MAXQUEUEGROUPS + 1]; /* queue groups */ variable
H A Dconf.c3477 if (pickqdir(Queue[i], msize, e) < 0)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp3216 /// Queue of pointer uses to analyze and potentially rewrite.
3217 SmallVector<Use *, 8> Queue;
3238 while (!Queue.empty()) {
3239 U = Queue.pop_back_val();
3251 Queue.push_back(&U);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp11398 SmallVector<Job, 16> Queue;
11422 while (!Queue.empty())
11466 Queue.resize(Queue.size()+1);
11467 Queue.back().E = E;
11468 Queue.back().Kind = Job::AnyExprKind;
11627 Job &job = Queue.back();
11640 Queue.pop_back();
11648 Queue.pop_back();
11664 Queue
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp5441 SmallVector<SDValue, 8> Queue(1, SDValue(N, 0));
5442 while (!Queue.empty()) {
5443 SDValue V = Queue.pop_back_val();
5450 Queue.push_back(O);
H A DPPCISelLowering.cpp12223 SmallVector<SDNode *, 8> Queue(1, Chain.getNode());
12229 while (!Queue.empty()) {
12230 SDNode *ChainNext = Queue.pop_back_val();
12239 Queue.push_back(ChainLD->getChain().getNode());
12243 Queue.push_back(O.getNode());
12254 Queue.clear();
12258 Queue.push_back(*I);
12260 while (!Queue.empty()) {
12261 SDNode *LoadRoot = Queue.pop_back_val();
12274 Queue
[all...]
/freebsd-11-stable/lib/clang/liblldb/
H A DMakefile559 SRCS+= Target/Queue.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp3874 llvm::Value *Queue = EmitScalarExpr(E->getArg(0));
3903 {Queue, Flags, Range, Kernel, Block});
3953 Queue, Flags, Range,
4012 std::vector<llvm::Value *> Args = {Queue, Flags, Range,

Completed in 397 milliseconds

123