HomeSort by relevance Sort by last modified time
    Searched refs:WorkList (Results 101 - 125 of 164) sorted by null

1 2 3 45 6 7

  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/CodeGen/
LiveVariables.h 279 std::vector<MachineBasicBlock*> &WorkList);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/
LiveVariables.h 279 std::vector<MachineBasicBlock*> &WorkList);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
LiveVariables.h 279 std::vector<MachineBasicBlock*> &WorkList);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
LiveVariables.h 279 std::vector<MachineBasicBlock*> &WorkList);
  /external/llvm/lib/CodeGen/
InlineSpiller.cpp 406 SmallVector<std::pair<LiveInterval*, VNInfo*>, 8> WorkList;
407 WorkList.push_back(std::make_pair(&SLI, VNI));
412 std::tie(LI, VNI) = WorkList.pop_back_val();
443 WorkList.push_back(std::make_pair(&DstLI, DstVNI));
460 } while (!WorkList.empty());
471 SmallVector<std::pair<LiveInterval*, VNInfo*>, 8> WorkList;
472 WorkList.push_back(std::make_pair(LI, VNI));
474 std::tie(LI, VNI) = WorkList.pop_back_val();
483 WorkList.push_back(std::make_pair(LI, PVNI));
496 WorkList.push_back(std::make_pair(&SnipLI, SnipVNI))
    [all...]
PrologEpilogInserter.cpp 410 SmallVector<MachineBasicBlock *, 8> WorkList;
418 WorkList.push_back(Entry);
428 WorkList.push_back(Restore);
430 while (!WorkList.empty()) {
431 const MachineBasicBlock *CurBB = WorkList.pop_back_val();
440 WorkList.push_back(SuccBB);
    [all...]
MachineLICM.cpp 298 SmallVector<MachineLoop *, 8> Worklist(MLI->begin(), MLI->end());
299 while (!Worklist.empty()) {
300 CurLoop = Worklist.pop_back_val();
307 Worklist.append(CurLoop->begin(), CurLoop->end());
628 SmallVector<MachineDomTreeNode*, 8> WorkList;
633 WorkList.push_back(HeaderN);
634 while (!WorkList.empty()) {
635 MachineDomTreeNode *Node = WorkList.pop_back_val();
660 // Add children in reverse order as then the next popped worklist node is
666 WorkList.push_back(Child)
    [all...]
SafeStack.cpp 271 SmallVector<const Value *, 8> WorkList;
272 WorkList.push_back(AllocaPtr);
275 while (!WorkList.empty()) {
276 const Value *V = WorkList.pop_back_val();
350 WorkList.push_back(cast<const Instruction>(I));
    [all...]
CodeGenPrepare.cpp 285 SmallPtrSet<BasicBlock*, 8> WorkList;
294 WorkList.insert(*II);
298 MadeChange |= !WorkList.empty();
299 while (!WorkList.empty()) {
300 BasicBlock *BB = *WorkList.begin();
301 WorkList.erase(BB);
309 WorkList.insert(*II);
3713 SmallVector<Value*, 8> worklist; local
    [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp 430 SmallSetVector<Instruction *, 16> &WorkList,
448 WorkList.insert(OpI);
457 // Add the users to the worklist. CAREFUL: an instruction can use itself,
461 WorkList.insert(cast<Instruction>(U));
498 SmallSetVector<Instruction *, 16> WorkList;
499 // Iterate over the original function, only adding insts to the worklist
501 // the worklist with the entire function's worth of instructions.
509 // worklist from an earlier visit.
510 if (!WorkList.count(I))
511 MadeChange |= simplifyAndDCEInstruction(I, WorkList, DL, TLI)
    [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 86 SmallVector<Expr*, 4> WorkList;
87 WorkList.push_back(E);
88 while (WorkList.size()) {
89 Expr *E = WorkList.pop_back_val();
104 WorkList.push_back(E);
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 516 SmallVector<BasicBlock *, 16> WorkList;
526 WorkList.push_back(SecondBB);
530 while (!WorkList.empty()) {
531 BasicBlock *B = WorkList.pop_back_val();
561 WorkList.push_back(*PredI);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 212 SmallVector<const PathPieces *, 5> WorkList;
213 WorkList.push_back(&D->path);
215 while (!WorkList.empty()) {
216 const PathPieces &path = *WorkList.pop_back_val();
242 WorkList.push_back(&call->path);
246 WorkList.push_back(&macro->subPieces);
    [all...]
BugReporterVisitors.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
SIMachineScheduler.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 139 std::vector<AllocaInst*> &WorkList);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveIntervalAnalysis.cpp 759 SmallVector<std::pair<SlotIndex, VNInfo*>, 16> WorkList;
761 // Blocks that have already been added to WorkList as live-out.
787 WorkList.push_back(std::make_pair(Idx, VNI));
804 WorkList.push_back(std::make_pair(VNI->def.getLoadIndex(), UVNI));
810 // Extend intervals to reach all uses in WorkList.
811 while (!WorkList.empty()) {
812 SlotIndex Idx = WorkList.back().first;
813 VNInfo *VNI = WorkList.back().second;
814 WorkList.pop_back();
833 WorkList.push_back(std::make_pair(Stop, PVNI))
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
PGOInstrumentation.cpp 538 // Use a worklist as we will update the vector during the iteration.
539 std::vector<PGOUseEdge *> WorkList;
541 WorkList.push_back(E.get());
544 for (auto &E : WorkList) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
GenericDomTreeConstruction.h 219 SmallVector<NodePtr, 64> WorkList = {V};
222 while (!WorkList.empty()) {
223 const NodePtr BB = WorkList.pop_back_val();
248 WorkList.push_back(Succ);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
GenericDomTreeConstruction.h 219 SmallVector<NodePtr, 64> WorkList = {V};
222 while (!WorkList.empty()) {
223 const NodePtr BB = WorkList.pop_back_val();
248 WorkList.push_back(Succ);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
GenericDomTreeConstruction.h 219 SmallVector<NodePtr, 64> WorkList = {V};
222 while (!WorkList.empty()) {
223 const NodePtr BB = WorkList.pop_back_val();
248 WorkList.push_back(Succ);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
GenericDomTreeConstruction.h 219 SmallVector<NodePtr, 64> WorkList = {V};
222 while (!WorkList.empty()) {
223 const NodePtr BB = WorkList.pop_back_val();
248 WorkList.push_back(Succ);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
GenericDomTreeConstruction.h 219 SmallVector<NodePtr, 64> WorkList = {V};
222 while (!WorkList.empty()) {
223 const NodePtr BB = WorkList.pop_back_val();
248 WorkList.push_back(Succ);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
GenericDomTreeConstruction.h 219 SmallVector<NodePtr, 64> WorkList = {V};
222 while (!WorkList.empty()) {
223 const NodePtr BB = WorkList.pop_back_val();
248 WorkList.push_back(Succ);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
GenericDomTreeConstruction.h 219 SmallVector<NodePtr, 64> WorkList = {V};
222 while (!WorkList.empty()) {
223 const NodePtr BB = WorkList.pop_back_val();
248 WorkList.push_back(Succ);
    [all...]

Completed in 2316 milliseconds

1 2 3 45 6 7