/third_party/jsframework/runtime/main/reactivity/ |
D | dep.js | 11 export default function Dep () { class 18 Dep.target = null; 22 if (Dep.target) { 23 targetStack.push(Dep.target); 25 Dep.target = _target; 29 Dep.target = targetStack.pop(); 33 Dep.target = null; 41 Dep.prototype.addSub = function (sub) { 49 Dep.prototype.removeSub = function (sub) { 56 Dep.prototype.depend = function () { [all …]
|
D | observer.js | 3 import Dep from './dep'; 25 this.dep = new Dep(); 133 const dep = new Dep(); 149 if (Dep.target) {
|
D | state.js | 3 import Dep from './dep'; 100 if (Dep.target) {
|
/third_party/typescript/tests/baselines/reference/ |
D | declarationEmitHasTypesRefOnNamespaceUse.symbols | 2 class Src implements NS.Dep { } 4 >NS.Dep : Symbol(NS.Dep, Decl(dep.d.ts, 0, 22)) 6 >Dep : Symbol(NS.Dep, Decl(dep.d.ts, 0, 22)) 12 interface Dep { 13 >Dep : Symbol(Dep, Decl(dep.d.ts, 0, 22))
|
D | declarationEmitHasTypesRefOnNamespaceUse.js | 5 interface Dep { 13 class Src implements NS.Dep { } 26 declare class Src implements NS.Dep {
|
D | declarationEmitHasTypesRefOnNamespaceUse.types | 2 class Src implements NS.Dep { } 8 No type information for this code. interface Dep {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachinePipeliner.cpp | 702 SDep Dep(Load, SDep::Barrier); in addLoopCarriedDependences() local 703 Dep.setLatency(1); in addLoopCarriedDependences() 704 SU.addPred(Dep); in addLoopCarriedDependences() 712 SDep Dep(Load, SDep::Barrier); in addLoopCarriedDependences() local 713 Dep.setLatency(1); in addLoopCarriedDependences() 714 SU.addPred(Dep); in addLoopCarriedDependences() 720 SDep Dep(Load, SDep::Barrier); in addLoopCarriedDependences() local 721 Dep.setLatency(1); in addLoopCarriedDependences() 722 SU.addPred(Dep); in addLoopCarriedDependences() 727 SDep Dep(Load, SDep::Barrier); in addLoopCarriedDependences() local [all …]
|
D | MacroFusion.cpp | 35 static bool isHazard(const SDep &Dep) { in isHazard() argument 36 return Dep.getKind() == SDep::Anti || Dep.getKind() == SDep::Output; in isHazard() 178 for (SDep &Dep : AnchorSU.Preds) { in scheduleAdjacentImpl() 180 if (Dep.isWeak() || isHazard(Dep)) in scheduleAdjacentImpl() 183 SUnit &DepSU = *Dep.getSUnit(); in scheduleAdjacentImpl()
|
D | ScheduleDAGInstrs.cpp | 254 SDep Dep; in addPhysRegDataDeps() local 256 Dep = SDep(SU, SDep::Artificial); in addPhysRegDataDeps() 261 Dep = SDep(SU, SDep::Data, *Alias); in addPhysRegDataDeps() 270 Dep.setLatency(SchedModel.computeOperandLatency(SU->getInstr(), OperIdx, in addPhysRegDataDeps() 272 ST.adjustSchedDependency(SU, UseSU, Dep); in addPhysRegDataDeps() 274 Dep.setLatency(0); in addPhysRegDataDeps() 278 ST.adjustSchedDependency(SU, UseSU, Dep); in addPhysRegDataDeps() 281 UseSU->addPred(Dep); in addPhysRegDataDeps() 317 SDep Dep(SU, Kind, /*Reg=*/*Alias); in addPhysRegDeps() local 318 Dep.setLatency( in addPhysRegDeps() [all …]
|
D | MachineTraceMetrics.cpp | 794 for (const DataDep &Dep : Deps) { in updateDepth() local 796 BlockInfo[Dep.DefMI->getParent()->getNumber()]; in updateDepth() 801 unsigned DepCycle = Cycles.lookup(Dep.DefMI).Depth; in updateDepth() 803 if (!Dep.DefMI->isTransient()) in updateDepth() 805 .computeOperandLatency(Dep.DefMI, Dep.DefOp, &UseMI, Dep.UseOp); in updateDepth() 953 static bool pushDepHeight(const DataDep &Dep, const MachineInstr &UseMI, in pushDepHeight() argument 958 if (!Dep.DefMI->isTransient()) in pushDepHeight() 959 UseHeight += SchedModel.computeOperandLatency(Dep.DefMI, Dep.DefOp, &UseMI, in pushDepHeight() 960 Dep.UseOp); in pushDepHeight() 965 std::tie(I, New) = Heights.insert(std::make_pair(Dep.DefMI, UseHeight)); in pushDepHeight() [all …]
|
D | ScheduleDAG.cpp | 368 for (const SDep &Dep : SU.Preds) { in dumpNodeAll() local 370 dumpNodeName(*Dep.getSUnit()); in dumpNodeAll() 372 Dep.dump(TRI); in dumpNodeAll() 378 for (const SDep &Dep : SU.Succs) { in dumpNodeAll() local 380 dumpNodeName(*Dep.getSUnit()); in dumpNodeAll() 382 Dep.dump(TRI); in dumpNodeAll()
|
D | ImplicitNullChecks.cpp | 252 Optional<ArrayRef<MachineInstr *>::iterator> Dep; in computeDependence() local 258 if (Dep == None) { in computeDependence() 260 Dep = I; in computeDependence() 267 return {true, Dep}; in computeDependence()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | ScheduleDAG.h | 80 PointerIntPair<SUnit *, 2, Kind> Dep; 101 SDep() : Dep(nullptr, Data) {} in SDep() 105 : Dep(S, kind), Contents() { in SDep() 124 : Dep(S, Order), Contents(), Latency(0) { in SDep() 385 SDep Dep(SU, SDep::Barrier); in addPredBarrier() 388 Dep.setLatency(TrueMemOrderLatency); in addPredBarrier() 389 return addPred(Dep); in addPredBarrier() 466 if (Dep != Other.Dep) in overlaps() 468 switch (Dep.getInt()) { in overlaps() 480 inline SUnit *SDep::getSUnit() const { return Dep.getPointer(); } in getSUnit() [all …]
|
D | MachinePipeliner.h | 246 bool isBackedge(SUnit *Source, const SDep &Dep) { in isBackedge() argument 247 if (Dep.getKind() != SDep::Anti) in isBackedge() 249 return Source->getInstr()->isPHI() || Dep.getSUnit()->getInstr()->isPHI(); in isBackedge() 252 bool isLoopCarriedDep(SUnit *Source, const SDep &Dep, bool isSucc = true); 256 unsigned getDistance(SUnit *U, SUnit *V, const SDep &Dep) { in getDistance() argument 259 if (V->getInstr()->isPHI() && Dep.getKind() == SDep::Anti) in getDistance() 532 int earliestCycleInChain(const SDep &Dep); 536 int latestCycleInChain(const SDep &Dep);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonSubtarget.cpp | 320 SDep &Dep) const { in adjustSchedDependency() 333 Dep.setLatency(0); in adjustSchedDependency() 342 Dep.setLatency(0); in adjustSchedDependency() 360 Dep.setLatency((unsigned)DLatency); in adjustSchedDependency() 368 Dep.setLatency(0); in adjustSchedDependency() 372 updateLatency(*SrcInst, *DstInst, Dep); in adjustSchedDependency() 402 MachineInstr &DstInst, SDep &Dep) const { in updateLatency() 403 if (Dep.isArtificial()) { in updateLatency() 404 Dep.setLatency(1); in updateLatency() 415 Dep.setLatency((Dep.getLatency() + 1) >> 1); in updateLatency()
|
D | HexagonVLIWPacketizer.cpp | 929 auto &Dep = PacketSU->Succs[i]; in restrictingDepExistInPacket() local 930 if (Dep.getSUnit() == PacketSUDep && Dep.getKind() == SDep::Anti && in restrictingDepExistInPacket() 931 Dep.getReg() == DepReg) in restrictingDepExistInPacket() 993 auto Dep = PacketSU->Succs[i]; in arePredicatesComplements() local 998 if (Dep.getSUnit() == SU && Dep.getKind() == SDep::Data && in arePredicatesComplements() 999 Hexagon::PredRegsRegClass.contains(Dep.getReg())) { in arePredicatesComplements() 1005 if (restrictingDepExistInPacket(*I, Dep.getReg())) in arePredicatesComplements()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | MemoryDependenceAnalysis.cpp | 877 MemDepResult Dep; in getNonLocalCallDependency() local 880 Dep = getCallDependencyFrom(QueryCall, isReadonlyCall, ScanPos, DirtyBB); in getNonLocalCallDependency() 884 Dep = MemDepResult::getNonLocal(); in getNonLocalCallDependency() 886 Dep = MemDepResult::getNonFuncLocal(); in getNonLocalCallDependency() 892 ExistingResult->setResult(Dep); in getNonLocalCallDependency() 894 Cache.push_back(NonLocalDepEntry(DirtyBB, Dep)); in getNonLocalCallDependency() 898 if (!Dep.isNonLocal()) { in getNonLocalCallDependency() 901 if (Instruction *Inst = Dep.getInst()) in getNonLocalCallDependency() 1018 MemDepResult Dep = in GetNonLocalInfoForBlock() local 1024 ExistingResult->setResult(Dep); in GetNonLocalInfoForBlock() [all …]
|
D | MemDepPrinter.cpp | 36 typedef std::pair<InstTypePair, const BasicBlock *> Dep; typedef 37 typedef SmallSetVector<Dep, 4> DepSet;
|
/third_party/typescript/tests/cases/compiler/ |
D | declarationEmitHasTypesRefOnNamespaceUse.ts | 8 interface Dep { interface 16 class Src implements NS.Dep { }
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopLoadElimination.cpp | 190 for (const auto &Dep : *Deps) { in findStoreToLoadDependences() 191 Instruction *Source = Dep.getSource(LAI); in findStoreToLoadDependences() 192 Instruction *Destination = Dep.getDestination(LAI); in findStoreToLoadDependences() 194 if (Dep.Type == MemoryDepChecker::Dependence::Unknown) { in findStoreToLoadDependences() 202 if (Dep.isBackward()) in findStoreToLoadDependences() 208 assert(Dep.isForward() && "Needs to be a forward dependence"); in findStoreToLoadDependences()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUSubtarget.cpp | 720 SDep &Dep) const { in adjustSchedDependency() 721 if (Dep.getKind() != SDep::Kind::Data || !Dep.getReg() || in adjustSchedDependency() 730 auto Reg = Dep.getReg(); in adjustSchedDependency() 740 Dep.setLatency(Lat); in adjustSchedDependency() 743 auto Reg = Dep.getReg(); in adjustSchedDependency() 752 Dep.setLatency(Lat); in adjustSchedDependency()
|
D | R600Packetizer.cpp | 195 const SDep &Dep = SUJ->Succs[i]; in isLegalToPacketizeTogether() local 196 if (Dep.getSUnit() != SUI) in isLegalToPacketizeTogether() 198 if (Dep.getKind() == SDep::Anti) in isLegalToPacketizeTogether() 200 if (Dep.getKind() == SDep::Output) in isLegalToPacketizeTogether()
|
/third_party/icu/vendor/double-conversion/upstream/test/cctest/ |
D | cctest.h | 44 #define DEPENDENT_TEST(Name, Dep) \ argument 46 CcTest register_test_##Name(Test##Name, __FILE__, #Name, #Dep, true); \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | Main.cpp | 75 for (const auto &Dep : Parser.getDependencies()) { in createDependencyFile() local 76 DepOut.os() << ' ' << Dep; in createDependencyFile()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | VectorUtils.h | 765 for (auto Dep : *Deps) in collectDependences() 766 Dependences[Dep.getSource(*LAI)].insert(Dep.getDestination(*LAI)); in collectDependences()
|