HomeSort by relevance Sort by last modified time
    Searched refs:Deps (Results 1 - 11 of 11) sorted by null

  /external/llvm/unittests/ADT/
DAGDeltaAlgorithmTest.cpp 61 std::vector<edge_ty> Deps;
65 Deps.clear();
66 Deps.push_back(std::make_pair(3, 1));
72 EXPECT_EQ(fixed_set(4, 1, 3, 5, 7), FDA.Run(range(20), Deps));
79 Deps.clear();
80 Deps.push_back(std::make_pair(1, 0));
81 Deps.push_back(std::make_pair(2, 0));
82 Deps.push_back(std::make_pair(4, 0));
83 Deps.push_back(std::make_pair(3, 2));
91 EXPECT_EQ(fixed_set(4, 0, 1, 2, 3), FDA2.Run(range(5), Deps));
    [all...]
  /external/llvm/lib/Analysis/
MemDepPrinter.cpp 40 DepSetMap Deps;
58 Deps.clear();
108 Deps[Inst].insert(std::make_pair(getInstTypePair(Res),
114 DepSet &InstDeps = Deps[Inst];
125 Deps[Inst].insert(std::make_pair(getInstTypePair(nullptr, Unknown),
134 Deps[Inst].insert(std::make_pair(getInstTypePair(nullptr, Unknown),
147 DepSet &InstDeps = Deps[Inst];
163 DepSetMap::const_iterator DI = Deps.find(Inst);
164 if (DI == Deps.end())
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 639 SmallVectorImpl<DataDep> &Deps,
654 Deps.push_back(DataDep(MRI, Reg, MO.getOperandNo()));
661 // This will add at most one dependency to Deps.
663 SmallVectorImpl<DataDep> &Deps,
673 Deps.push_back(DataDep(MRI, Reg, i));
699 SmallVectorImpl<DataDep> &Deps,
726 Deps.push_back(DataDep(I->MI, I->Op, MO.getOperandNo()));
805 SmallVector<DataDep, 8> Deps;
832 Deps.clear();
834 getPHIDeps(&UseMI, Deps, TBI.Pred, MTM.MRI)
    [all...]
InlineSpiller.cpp 121 TinyPtrVector<VNInfo*> Deps;
332 OS << " deps[";
333 for (unsigned i = 0, e = SVI.Deps.size(); i != e; ++i)
334 OS << ' ' << SVI.Deps[i]->id << '@' << SVI.Deps[i]->def;
353 // When VNI is non-NULL, add it to SVI's deps, and only propagate to that.
357 SVI->second.Deps.push_back(VNI);
370 TinyPtrVector<VNInfo*> *Deps = VNI ? &FirstDeps : &SVI->second.Deps;
377 DEBUG(dbgs() << " prop to " << Deps->size() << ":
    [all...]
MachineScheduler.cpp     [all...]
  /external/chromium_org/build/android/gyp/
write_build_config.py 26 1. inputs/deps of the action ensure that the files are available the first
29 a. inputs/deps ensure that the action runs whenever one of the files changes
54 def Deps(path):
56 return build_utils.GetSortedTransitiveDependencies(deps_config_paths, Deps)
67 '--possible-deps-configs',
117 raise Exception('Unknown deps: ' + str(unknown_deps))
  /external/chromium_org/tools/gn/
variables.cc 236 " the \"deps\" list. This is done recursively. If a config appears\n" \
239 " \"deps\" list. If a dependency has " \
267 "allow_circular_includes_from: [label list] Permit includes from deps.";
269 "allow_circular_includes_from: Permit includes from deps.\n"
271 " A list of target labels. Must be a subset of the target's \"deps\".\n"
295 " deps = [ \":b\", \":c\" ]\n"
373 "complete_static_lib: [boolean] Links all deps into a static library.";
375 "complete_static_lib: [boolean] Links all deps into a static library.\n"
378 " instead forwards the static libraries and source sets in its deps up\n"
396 " deps = [ \"bar\" ]\n
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 376 if (const SymbolRefSmallVectorTy *Deps = SymMgr.getDependentSymbols(sym)) {
377 for (SymbolRefSmallVectorTy::const_iterator I = Deps->begin(),
378 E = Deps->end(); I != E; ++I) {
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 329 const MemoryDependenceAnalysis::NonLocalDepInfo &deps = local
336 for (unsigned i = 0, e = deps.size(); i != e; ++i) {
337 const NonLocalDepEntry *I = &deps[i];
696 void AnalyzeLoadAvailability(LoadInst *LI, LoadDepVect &Deps,
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/
test_runner.py 30 class Deps(find_dependencies.FindDependenciesCommand):
36 return super(Deps, self).Run(args)
  /build/core/
java.mk 335 # Deps for generated source files must be handled separately,
336 # via deps on the target that generates the sources.

Completed in 660 milliseconds