Home
last modified time | relevance | path

Searched refs:Dead (Results 1 – 25 of 93) sorted by relevance

1234

/third_party/flutter/skia/third_party/externals/spirv-tools/test/opt/
Daggressive_dead_code_elim_test.cpp52 OpName %Dead "Dead" in TEST_F()
60 OpName %Dead "Dead" in TEST_F()
142 OpName %Dead "Dead" in TEST_F()
152 OpName %Dead "Dead" in TEST_F()
241 OpName %Dead "Dead" in TEST_F()
250 OpName %Dead "Dead" in TEST_F()
329 OpName %Dead "Dead" in TEST_F()
337 OpName %Dead "Dead" in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveRangeEdit.cpp186 SmallVectorImpl<MachineInstr*> &Dead) { in foldAsLoad() argument
238 Dead.push_back(DefMI); in foldAsLoad()
392 void LiveRangeEdit::eliminateDeadDefs(SmallVectorImpl<MachineInstr *> &Dead, in eliminateDeadDefs() argument
399 while (!Dead.empty()) in eliminateDeadDefs()
400 eliminateDeadDef(Dead.pop_back_val(), ToShrink, AA); in eliminateDeadDefs()
408 if (foldAsLoad(LI, Dead)) in eliminateDeadDefs()
413 if (!LIS.shrinkToUses(LI, &Dead)) in eliminateDeadDefs()
/third_party/spirv-tools/test/opt/
Daggressive_dead_code_elim_test.cpp56 OpName %Dead "Dead" in TEST_F()
64 OpName %Dead "Dead" in TEST_F()
145 OpName %Dead "Dead" in TEST_F()
155 OpName %Dead "Dead" in TEST_F()
259 OpName %Dead "Dead" in TEST_F()
268 OpName %Dead "Dead" in TEST_F()
359 OpName %Dead "Dead" in TEST_F()
367 OpName %Dead "Dead" in TEST_F()
444 OpName %Dead "Dead" in TEST_F()
452 OpName %Dead "Dead" in TEST_F()
[all …]
Deliminate_dead_functions_test.cpp154 OpName %Dead "Dead" in TEST_F()
Dir_context_test.cpp504 OpName %Dead "Dead" in TEST_F()
554 OpName %Dead "Dead" in TEST_F()
610 OpName %Dead "Dead" in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DSimplifyIndVar.h49 LoopInfo *LI, SmallVectorImpl<WeakTrackingVH> &Dead,
55 LoopInfo *LI, SmallVectorImpl<WeakTrackingVH> &Dead);
/third_party/skia/resources/sksl/shared/
DDeadStripFunctions.sksl18 // Dead stripping a user function.
29 // Dead stripping a built-in function. (This is a separate overload of `unpremul`.)
/third_party/boost/libs/statechart/test/
DDeferralTest.cpp60 struct Dead : sc::simple_state< Dead, DeferralTest > struct
77 sc::transition< EvDestroy, Dead > argument
/third_party/skia/third_party/externals/spirv-tools/test/opt/
Daggressive_dead_code_elim_test.cpp54 ; CHECK-NOT: OpName %Dead "Dead" in TEST_F()
55 OpName %Dead "Dead" in TEST_F()
121 OpName %Dead "Dead" in TEST_F()
131 OpName %Dead "Dead" in TEST_F()
233 OpName %Dead "Dead" in TEST_F()
294 ; CHECK-NOT: OpName %Dead "Dead" in TEST_F()
295 OpName %Dead "Dead" in TEST_F()
354 OpName %Dead "Dead" in TEST_F()
408 OpName %Dead "Dead" in TEST_F()
845 OpName %Dead "Dead" in TEST_F()
[all …]
Deliminate_dead_functions_test.cpp154 OpName %Dead "Dead" in TEST_F()
Dir_context_test.cpp504 OpName %Dead "Dead" in TEST_F()
554 OpName %Dead "Dead" in TEST_F()
610 OpName %Dead "Dead" in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
Daggressive_dead_code_elim_test.cpp54 ; CHECK-NOT: OpName %Dead "Dead" in TEST_F()
55 OpName %Dead "Dead" in TEST_F()
121 OpName %Dead "Dead" in TEST_F()
131 OpName %Dead "Dead" in TEST_F()
233 OpName %Dead "Dead" in TEST_F()
294 ; CHECK-NOT: OpName %Dead "Dead" in TEST_F()
295 OpName %Dead "Dead" in TEST_F()
354 OpName %Dead "Dead" in TEST_F()
408 OpName %Dead "Dead" in TEST_F()
845 OpName %Dead "Dead" in TEST_F()
[all …]
Deliminate_dead_functions_test.cpp154 OpName %Dead "Dead" in TEST_F()
Dir_context_test.cpp504 OpName %Dead "Dead" in TEST_F()
554 OpName %Dead "Dead" in TEST_F()
610 OpName %Dead "Dead" in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DLiveRangeEdit.h106 bool foldAsLoad(LiveInterval *LI, SmallVectorImpl<MachineInstr *> &Dead);
245 void eliminateDeadDefs(SmallVectorImpl<MachineInstr *> &Dead,
DMachineInstrBuilder.h47 Dead = 0x10, enumerator
96 flags & RegState::Dead,
480 return B ? RegState::Dead : 0; in getDeadRegState()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyIndVar.cpp65 SmallVectorImpl<WeakTrackingVH> &Dead) in SimplifyIndvar() argument
66 : L(Loop), LI(LI), SE(SE), DT(DT), Rewriter(Rewriter), DeadInsts(Dead), in SimplifyIndvar()
934 LoopInfo *LI, SmallVectorImpl<WeakTrackingVH> &Dead, in simplifyUsersOfIV() argument
937 Dead); in simplifyUsersOfIV()
945 LoopInfo *LI, SmallVectorImpl<WeakTrackingVH> &Dead) { in simplifyLoopIVs() argument
952 Changed |= simplifyUsersOfIV(cast<PHINode>(I), SE, DT, LI, Dead, Rewriter); in simplifyLoopIVs()
DBasicBlockUtils.cpp97 SmallPtrSet<BasicBlock *, 4> Dead(BBs.begin(), BBs.end()); in DeleteDeadBlocks() local
98 assert(Dead.size() == BBs.size() && "Duplicating blocks?"); in DeleteDeadBlocks()
99 for (auto *BB : Dead) in DeleteDeadBlocks()
101 assert(Dead.count(Pred) && "All predecessors must be dead!"); in DeleteDeadBlocks()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DMVETailPredication.cpp436 SmallPtrSet<Instruction*, 4> Dead; in Cleanup() local
448 Dead.insert(I); in Cleanup()
451 for (auto *I : Dead) { in Cleanup()
DARMLowOverheadLoops.cpp779 SmallVector<MachineInstr*, 4> Dead; in ExpandLoopStart() local
787 Dead.push_back(Def); in ExpandLoopStart()
797 for (auto *MI : Dead) in ExpandLoopStart()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp205 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead; in CleanupPointerRootUsers() local
218 Dead.push_back(std::make_pair(I, SI)); in CleanupPointerRootUsers()
226 Dead.push_back(std::make_pair(I, MSI)); in CleanupPointerRootUsers()
235 Dead.push_back(std::make_pair(I, MTI)); in CleanupPointerRootUsers()
246 Dead.clear(); in CleanupPointerRootUsers()
253 for (int i = 0, e = Dead.size(); i != e; ++i) { in CleanupPointerRootUsers()
254 if (IsSafeComputationToRemove(Dead[i].first, GetTLI)) { in CleanupPointerRootUsers()
255 Dead[i].second->eraseFromParent(); in CleanupPointerRootUsers()
256 Instruction *I = Dead[i].first; in CleanupPointerRootUsers()
1784 bool Dead; in deleteIfDead() local
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceInst.cpp124 if (Dead) in deleteIfDead()
209 Dead = false; in liveness()
221 Dead = true; in liveness()
224 if (Dead) in liveness()
431 if (isDeleted() || Dead) in livenessPhiOperand()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIFormMemoryClauses.cpp141 S |= RegState::Dead; in getMopState()
379 S &= ~(RegState::Undef | RegState::Dead); in runOnMachineFunction()
/third_party/mesa3d/docs/relnotes/
D9.2.5.rst36 Severe misrendering in Left 4 Dead 2
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZElimCompare.cpp236 MIB.addReg(SystemZ::CC, RegState::ImplicitDefine | RegState::Dead); in convertToBRCT()
678 RegState::ImplicitDefine | RegState::Dead); in fuseCompareOperations()

1234