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

1 2 3 4

  /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/swiftshader/third_party/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();
107 Deps[Inst].insert(std::make_pair(getInstTypePair(Res),
113 DepSet &InstDeps = Deps[Inst];
124 DepSet &InstDeps = Deps[Inst];
139 DepSetMap::const_iterator DI = Deps.find(Inst);
140 if (DI == Deps.end())
  /external/swiftshader/third_party/LLVM/lib/Analysis/
MemDepPrinter.cpp 41 DepSetMap Deps;
59 Deps.clear();
109 Deps[Inst].insert(std::make_pair(getInstTypePair(Res),
115 DepSet &InstDeps = Deps[Inst];
126 Deps[Inst].insert(std::make_pair(getInstTypePair(0, Unknown),
135 Deps[Inst].insert(std::make_pair(getInstTypePair(0, Unknown),
148 DepSet &InstDeps = Deps[Inst];
164 DepSetMap::const_iterator DI = Deps.find(Inst);
165 if (DI == Deps.end())
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 629 SmallVectorImpl<DataDep> &Deps,
650 Deps.push_back(DataDep(MRI, Reg, UseMI.getOperandNo(I)));
657 // This will add at most one dependency to Deps.
659 SmallVectorImpl<DataDep> &Deps,
669 Deps.push_back(DataDep(MRI, Reg, i));
695 SmallVectorImpl<DataDep> &Deps,
724 Deps.push_back(DataDep(I->MI, I->Op, UseMI->getOperandNo(MI)));
801 SmallVector<DataDep, 8> Deps;
828 Deps.clear();
830 getPHIDeps(UseMI, Deps, TBI.Pred, MTM.MRI)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ScheduleDAGInstrs.h 42 LoopDeps Deps;
51 assert(Deps.empty() && "stale loop dependencies");
83 Deps.insert(std::make_pair(MOReg, std::make_pair(&MO, Count)));
InlineSpiller.cpp 115 TinyPtrVector<VNInfo*> Deps;
327 OS << " deps[";
328 for (unsigned i = 0, e = SVI.Deps.size(); i != e; ++i)
329 OS << ' ' << SVI.Deps[i]->id << '@' << SVI.Deps[i]->def;
346 // When VNI is non-NULL, add it to SVI's deps, and only propagate to that.
350 SVI->second.Deps.push_back(VNI);
365 TinyPtrVector<VNInfo*> *Deps = VNI ? &FirstDeps : &SVI->second.Deps;
372 DEBUG(dbgs() << " prop to " << Deps->size() << ":
    [all...]
  /build/blueprint/
context_test.go 29 Deps []string
43 return f.properties.Deps
57 Deps []string
68 return b.properties.Deps
90 deps: ["MyBarModule"],
128 deps: ["B", "C"],
133 deps: ["D"],
138 deps: ["E", "F"],
147 deps: ["G"],
152 deps: ["G"]
    [all...]
ninja_defs.go 25 // A Deps value indicates the dependency file format that Ninja should expect to
27 type Deps int
30 DepsNone Deps = iota
35 func (d Deps) String() string {
44 panic(fmt.Sprintf("unknown deps value: %d", d))
61 Deps Deps // The format of the dependency file.
81 Deps Deps // The format of the dependency file.
168 if params.Deps != DepsNone
    [all...]
  /build/soong/cc/
toolchain_library.go 35 func (*toolchainLibraryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps {
37 return deps
56 deps PathDeps) Objects {
61 flags Flags, deps PathDeps, objs Objects) android.Path {
object.go 55 func (object *objectLinker) linkerDeps(ctx DepsContext, deps Deps) Deps {
56 deps.ObjFiles = append(deps.ObjFiles, object.Properties.Objs...)
57 return deps
71 flags Flags, deps PathDeps, objs Objects) android.Path {
73 objs = objs.Append(deps.Objs)
sabi.go 41 func (sabimod *sabi) deps(ctx BaseModuleContext, deps Deps) Deps { func
42 return deps
test.go 160 func (test *testDecorator) linkerDeps(ctx BaseModuleContext, deps Deps) Deps {
165 deps.StaticLibs = append(deps.StaticLibs, "libgtest_main_ndk_libcxx", "libgtest_ndk_libcxx")
167 deps.StaticLibs = append(deps.StaticLibs, "libgtest_main_ndk_gnustl", "libgtest_ndk_gnustl")
169 deps.StaticLibs = append(deps.StaticLibs, "libgtest_main_ndk", "libgtest_ndk")
172 deps.StaticLibs = append(deps.StaticLibs, "libgtest_main", "libgtest"
    [all...]
tidy.go 47 func (tidy *tidyFeature) deps(ctx DepsContext, deps Deps) Deps { func
48 return deps
llndk_library.go 69 func (stub *llndkStubDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
75 func (stub *llndkStubDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps {
76 return Deps{}
109 func (stub *llndkStubDecorator) link(ctx ModuleContext, flags Flags, deps PathDeps,
139 return stub.libraryDecorator.link(ctx, flags, deps, objs)
coverage.go 42 func (cov *coverage) deps(ctx BaseModuleContext, deps Deps) Deps { func
43 return deps
ndk_prebuilt.go 63 func (*ndkPrebuiltObjectLinker) linkerDeps(ctx DepsContext, deps Deps) Deps {
65 return deps
80 deps PathDeps, objs Objects) android.Path {
97 func (*ndkPrebuiltLibraryLinker) linkerDeps(ctx DepsContext, deps Deps) Deps {
99 return deps
117 deps PathDeps, objs Objects) android.Path
    [all...]
proto.go 90 func protoDeps(ctx BaseModuleContext, deps Deps, p *ProtoProperties) Deps {
118 deps.StaticLibs = append(deps.StaticLibs, lib)
119 deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, lib)
121 deps.SharedLibs = append(deps.SharedLibs, lib)
122 deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, lib
    [all...]
vndk.go 58 func (vndk *vndkdep) deps(ctx BaseModuleContext, deps Deps) Deps { func
59 return deps
  /build/kati/
exec.go 79 numDeps: len(n.Deps) + len(n.OrderOnlys),
87 // We iterate n.Deps twice. In the first run, we may modify
90 var deps []*DepNode
91 for _, d := range n.Deps {
92 deps = append(deps, d)
99 deps = append(deps, d)
103 for _, d := range deps {
query.go 32 for _, d := range n.Deps {
serialize.go 118 Deps []int
200 var deps []int
201 for _, d := range n.Deps {
202 deps = append(deps, ns.serializeTarget(d.Output))
246 Deps: deps,
256 ns.serializeDepNodes(n.Deps)
558 for _, o := range n.Deps {
563 d.Deps = append(d.Deps, c
    [all...]
  /build/soong/android/
prebuilt_test.go 135 deps: ["bar"],
210 Deps []string
223 for _, d := range s.properties.Deps {
  /external/llvm/lib/Transforms/Scalar/
LoopLoadElimination.cpp 143 const auto *Deps = LAI.getDepChecker().getDependences();
144 if (!Deps)
153 for (const auto &Dep : *Deps) {
  /build/blueprint/bootstrap/
glob.go 54 Deps: blueprint.DepsGCC,
137 deptools.WriteDepFile(depFile, fileListFile, g.Deps)

Completed in 776 milliseconds

1 2 3 4