HomeSort by relevance Sort by last modified time
    Searched defs:Dep (Results 1 - 25 of 49) sorted by null

1 2

  /prebuilts/go/darwin-x86/misc/cgo/testshared/src/depBase/
dep.go 18 type Dep struct {
22 func (d *Dep) Method() int {
  /prebuilts/go/linux-x86/misc/cgo/testshared/src/depBase/
dep.go 18 type Dep struct {
22 func (d *Dep) Method() int {
  /external/llvm/lib/Analysis/
MemDepPrinter.cpp 37 typedef std::pair<InstTypePair, const BasicBlock *> Dep;
38 typedef SmallSetVector<Dep, 4> DepSet;
63 static InstTypePair getInstTypePair(MemDepResult dep) {
64 if (dep.isClobber())
65 return InstTypePair(dep.getInst(), Clobber);
66 if (dep.isDef())
67 return InstTypePair(dep.getInst(), Def);
68 if (dep.isNonFuncLocal())
69 return InstTypePair(dep.getInst(), NonFuncLocal);
70 assert(dep.isUnknown() && "unexpected dependence type")
    [all...]
MemoryDependenceAnalysis.cpp 838 MemDepResult Dep;
841 Dep =
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/mips/
obj0.go 837 type Dep struct {
845 set Dep
846 used Dep
  /prebuilts/go/linux-x86/src/cmd/internal/obj/mips/
obj0.go 837 type Dep struct {
845 set Dep
846 used Dep
  /external/swiftshader/third_party/LLVM/lib/Analysis/
MemDepPrinter.cpp 38 typedef std::pair<InstTypePair, const BasicBlock *> Dep;
39 typedef SmallSetVector<Dep, 4> DepSet;
64 static InstTypePair getInstTypePair(MemDepResult dep) {
65 if (dep.isClobber())
66 return InstTypePair(dep.getInst(), Clobber);
67 if (dep.isDef())
68 return InstTypePair(dep.getInst(), Def);
69 if (dep.isNonFuncLocal())
70 return InstTypePair(dep.getInst(), NonFuncLocal);
71 assert(dep.isUnknown() && "unexptected dependence type")
    [all...]
MemoryDependenceAnalysis.cpp 682 MemDepResult Dep;
685 Dep = getCallSiteDependencyFrom(QueryCS, isReadonlyCall,ScanPos, DirtyBB);
689 Dep = MemDepResult::getNonLocal();
691 Dep = MemDepResult::getNonFuncLocal();
697 ExistingResult->setResult(Dep);
699 Cache.push_back(NonLocalDepEntry(DirtyBB, Dep));
703 if (!Dep.isNonLocal()) {
706 if (Instruction *Inst = Dep.getInst())
797 MemDepResult Dep = getPointerDependencyFrom(Loc, isLoad, ScanPos, BB);
802 ExistingResult->setResult(Dep);
    [all...]
  /external/llvm/lib/Target/AMDGPU/
R600Packetizer.cpp 198 const SDep &Dep = SUJ->Succs[i];
199 if (Dep.getSUnit() != SUI)
201 if (Dep.getKind() == SDep::Anti)
203 if (Dep.getKind() == SDep::Output)
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DeadStoreElimination.cpp 546 MemDepResult Dep = MD->getDependency(F);
548 while (Dep.isDef() || Dep.isClobber()) {
549 Instruction *Dependency = Dep.getInst();
570 Dep = MD->getDependency(F);
  /external/clang/test/PCH/
cxx-templates.h 44 struct Dep {
  /external/llvm/lib/Transforms/Scalar/
LoopInterchange.cpp 112 std::vector<char> Dep;
144 Dep.push_back(Direction);
147 Dep.push_back(Direction);
160 Dep.push_back(Direction);
163 while (Dep.size() != Level) {
164 Dep.push_back('I');
167 DepMatrix.push_back(Dep);
    [all...]
DeadStoreElimination.cpp 601 MemDepResult Dep =
603 while (Dep.isDef() || Dep.isClobber()) {
604 Instruction *Dependency = Dep.getInst();
626 Dep = MD->getPointerDependencyFrom(Loc, false, BBI, BB);
629 if (Dep.isNonLocal())
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 74 /// Dep - A pointer to the depending/depended-on SUnit, and an enum
76 PointerIntPair<SUnit *, 2, Kind> Dep;
98 SDep() : Dep(nullptr, Data) {}
102 : Dep(S, kind), Contents() {
120 : Dep(S, Order), Contents(), Latency(0) {
403 SDep Dep(SU, SDep::Barrier);
406 Dep.setLatency(TrueMemOrderLatency);
407 return addPred(Dep);
489 if (Dep != Other.Dep)
    [all...]
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 303 SDep Dep;
305 Dep = SDep(SU, SDep::Artificial);
310 Dep = SDep(SU, SDep::Data, *Alias);
313 Dep.setLatency(
317 ST.adjustSchedDependency(SU, UseSU, Dep);
318 UseSU->addPred(Dep);
351 SDep Dep(SU, Kind, /*Reg=*/*Alias);
352 Dep.setLatency(
354 DefSU->addPred(Dep);
461 SDep Dep(SU, SDep::Data, Reg)
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp 795 // Anti-dep between c) and b) is irrelevant for this case
813 auto &Dep = PacketSU->Succs[i];
814 if (Dep.getSUnit() == PacketSUDep && Dep.getKind() == SDep::Anti &&
815 Dep.getReg() == DepReg)
878 auto Dep = PacketSU->Succs[i];
880 // candidate and one of current packet members, this dep is on
881 // predicate reg, and there already exist anti dep on the same pred in
883 if (Dep.getSUnit() == SU && Dep.getKind() == SDep::Data &
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
ScheduleDAG.h 55 /// Dep - A pointer to the depending/depended-on SUnit, and an enum
57 PointerIntPair<SUnit *, 2, Kind> Dep;
92 SDep() : Dep(0, Data) {}
98 : Dep(S, kind), Contents(), Latency(latency) {
120 if (Dep != Other.Dep || Latency != Other.Latency) return false;
121 switch (Dep.getInt()) {
155 return Dep.getPointer();
160 Dep.setPointer(SU);
165 return Dep.getInt()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 81 PointerIntPair<SUnit *, 2, Kind> Dep;
102 SDep() : Dep(nullptr, Data) {}
106 : Dep(S, kind), Contents() {
125 : Dep(S, Order), Contents(), Latency(0) {
387 SDep Dep(SU, SDep::Barrier);
390 Dep.setLatency(TrueMemOrderLatency);
391 return addPred(Dep);
470 if (Dep != Other.Dep)
472 switch (Dep.getInt())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 81 PointerIntPair<SUnit *, 2, Kind> Dep;
102 SDep() : Dep(nullptr, Data) {}
106 : Dep(S, kind), Contents() {
125 : Dep(S, Order), Contents(), Latency(0) {
387 SDep Dep(SU, SDep::Barrier);
390 Dep.setLatency(TrueMemOrderLatency);
391 return addPred(Dep);
470 if (Dep != Other.Dep)
472 switch (Dep.getInt())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 81 PointerIntPair<SUnit *, 2, Kind> Dep;
102 SDep() : Dep(nullptr, Data) {}
106 : Dep(S, kind), Contents() {
125 : Dep(S, Order), Contents(), Latency(0) {
387 SDep Dep(SU, SDep::Barrier);
390 Dep.setLatency(TrueMemOrderLatency);
391 return addPred(Dep);
470 if (Dep != Other.Dep)
472 switch (Dep.getInt())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 81 PointerIntPair<SUnit *, 2, Kind> Dep;
102 SDep() : Dep(nullptr, Data) {}
106 : Dep(S, kind), Contents() {
125 : Dep(S, Order), Contents(), Latency(0) {
387 SDep Dep(SU, SDep::Barrier);
390 Dep.setLatency(TrueMemOrderLatency);
391 return addPred(Dep);
470 if (Dep != Other.Dep)
472 switch (Dep.getInt())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 81 PointerIntPair<SUnit *, 2, Kind> Dep;
102 SDep() : Dep(nullptr, Data) {}
106 : Dep(S, kind), Contents() {
125 : Dep(S, Order), Contents(), Latency(0) {
387 SDep Dep(SU, SDep::Barrier);
390 Dep.setLatency(TrueMemOrderLatency);
391 return addPred(Dep);
470 if (Dep != Other.Dep)
472 switch (Dep.getInt())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 81 PointerIntPair<SUnit *, 2, Kind> Dep;
102 SDep() : Dep(nullptr, Data) {}
106 : Dep(S, kind), Contents() {
125 : Dep(S, Order), Contents(), Latency(0) {
387 SDep Dep(SU, SDep::Barrier);
390 Dep.setLatency(TrueMemOrderLatency);
391 return addPred(Dep);
470 if (Dep != Other.Dep)
472 switch (Dep.getInt())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 81 PointerIntPair<SUnit *, 2, Kind> Dep;
102 SDep() : Dep(nullptr, Data) {}
106 : Dep(S, kind), Contents() {
125 : Dep(S, Order), Contents(), Latency(0) {
387 SDep Dep(SU, SDep::Barrier);
390 Dep.setLatency(TrueMemOrderLatency);
391 return addPred(Dep);
470 if (Dep != Other.Dep)
472 switch (Dep.getInt())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 81 PointerIntPair<SUnit *, 2, Kind> Dep;
102 SDep() : Dep(nullptr, Data) {}
106 : Dep(S, kind), Contents() {
125 : Dep(S, Order), Contents(), Latency(0) {
387 SDep Dep(SU, SDep::Barrier);
390 Dep.setLatency(TrueMemOrderLatency);
391 return addPred(Dep);
470 if (Dep != Other.Dep)
472 switch (Dep.getInt())
    [all...]

Completed in 1769 milliseconds

1 2