/external/v8/src/compiler/ |
D | value-numbering-reducer.cc | 84 if (entry->IsDead()) { in Reduce() 117 if (entry->IsDead()) { in Reduce() 164 if (!old_entry || old_entry->IsDead()) continue; in Grow()
|
D | graph-trimmer.h | 33 if (!node->IsDead()) MarkAsLive(node); in TrimGraph() 41 DCHECK(!node->IsDead()); in MarkAsLive()
|
D | control-flow-optimizer.cc | 33 if (node->IsDead()) continue; in Optimize() 48 if (node->IsDead() || queued_.Get(node)) return; in Enqueue()
|
D | graph-reducer.cc | 125 if (node->IsDead()) return Pop(); // Node was killed while on stack. in ReduceTop() 236 DCHECK(!user->IsDead()); in ReplaceWithValue()
|
D | node.h | 49 inline bool IsDead() const; 396 bool Node::IsDead() const { in IsDead() function
|
D | load-elimination.cc | 154 if (check && !check->IsDead() && in Lookup() 320 if (pair.first->IsDead()) continue; in Lookup() 356 if (pair.first->IsDead()) continue; in Kill() 923 if (!replacement->IsDead()) { in ReduceLoadField() 1022 if (!replacement->IsDead() && NodeProperties::GetType(replacement) in ReduceLoadElement()
|
D | branch-elimination.cc | 66 if (!branch->IsDead()) { in ReduceBranch()
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | aggressive_dead_code_elim_pass.cpp | 143 bool AggressiveDCEPass::IsDead(Instruction* inst) { in IsDead() function in spvtools::opt::AggressiveDCEPass 168 return IsDead(tInst); in IsTargetDead() 499 if (!IsDead(inst)) return; in AggressiveDCE() 672 if (IsDead(counter_buffer_inst)) { in ProcessGlobalValues() 687 if (IsDead(opInst)) { in ProcessGlobalValues() 714 if (IsDead(opInst)) { in ProcessGlobalValues() 750 if (IsDead(&val)) { in ProcessGlobalValues()
|
D | aggressive_dead_code_elim_pass.h | 71 bool IsDead(Instruction* inst);
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | aggressive_dead_code_elim_pass.cpp | 143 bool AggressiveDCEPass::IsDead(Instruction* inst) { in IsDead() function in spvtools::opt::AggressiveDCEPass 168 return IsDead(tInst); in IsTargetDead() 499 if (!IsDead(inst)) return; in AggressiveDCE() 672 if (IsDead(counter_buffer_inst)) { in ProcessGlobalValues() 687 if (IsDead(opInst)) { in ProcessGlobalValues() 714 if (IsDead(opInst)) { in ProcessGlobalValues() 750 if (IsDead(&val)) { in ProcessGlobalValues()
|
D | aggressive_dead_code_elim_pass.h | 73 bool IsDead(Instruction* inst);
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | MachineOperand.h | 84 bool IsDead : 1; variable 248 return IsDead; in isDead() 338 IsDead = Val; 499 Op.IsDead = isDead;
|
/external/tensorflow/tensorflow/compiler/tf2xla/ |
D | functionalize_cond.cc | 165 bool StateMap::IsDead(StateMap::CondId id) const { return id == dead_id_; } in IsDead() function in tensorflow::functionalize_cond::StateMap 1008 if (state_map_.IsEmpty(dst) || state_map_.IsDead(src)) return src; in JoinCondStatesNonMerge() 1009 if (state_map_.IsDead(dst) || state_map_.IsEmpty(src)) return dst; in JoinCondStatesNonMerge() 1057 if (state_map_.IsDead(src)) return src; in JoinCondStatesMerge() 1058 if (state_map_.IsDead(dst)) return dst; in JoinCondStatesMerge() 1094 if (state_map_.IsDead(id)) return id; in StateAlongEdge() 1123 if (state_map_.IsDead(state_map_.LookupCondId(dst))) return Status::OK(); in DetermineCondStateMerge() 1170 if (!state_map_.IsDead(state_map_.LookupCondId(node))) return Status::OK(); in RemoveRedundantMerge() 1179 if (!state_map_.IsDead(src_id)) { in RemoveRedundantMerge() 1214 if (state_map_.IsDead(dst_id)) return Status::OK(); in RemoveRedundantSwitch() [all …]
|
D | functionalize_cond.h | 135 bool IsDead(CondId id) const;
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineOperand.h | 99 bool IsDead : 1; variable 294 return IsDead; in isDead() 383 IsDead = Val; 619 Op.IsDead = isDead;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | A15SDOptimizer.cpp | 213 bool IsDead = true; in eraseInstrWithNoUses() local 219 IsDead = false; in eraseInstrWithNoUses() 227 IsDead = false; in eraseInstrWithNoUses() 233 if (!IsDead) continue; in eraseInstrWithNoUses()
|
/external/llvm/lib/Target/Hexagon/ |
D | RDFDeadCode.cpp | 139 auto IsDead = [this] (NodeAddr<InstrNode*> IA) -> bool { in collect() local 154 if (IsDead(IA)) { in collect()
|
D | HexagonRDFOpt.cpp | 239 auto IsDead = [this] (NodeAddr<DefNode*> DA) -> bool { in rewrite() local 248 if (!std::all_of(Defs.begin(), Defs.end(), IsDead)) in rewrite()
|
/external/llvm/lib/Target/ARM/ |
D | A15SDOptimizer.cpp | 216 bool IsDead = true; in eraseInstrWithNoUses() local 223 IsDead = false; in eraseInstrWithNoUses() 233 IsDead = false; in eraseInstrWithNoUses() 239 if (!IsDead) continue; in eraseInstrWithNoUses()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | RDFDeadCode.cpp | 150 auto IsDead = [this] (NodeAddr<InstrNode*> IA) -> bool { in collect() local 165 if (IsDead(IA)) { in collect()
|
D | HexagonRDFOpt.cpp | 253 auto IsDead = [this] (NodeAddr<DefNode*> DA) -> bool { in rewrite() local 262 if (!llvm::all_of(Defs, IsDead)) in rewrite()
|
D | RDFLiveness.cpp | 392 bool IsDead = DefA.Addr->getFlags() & NodeAttrs::Dead; in getAllReachedUses() local 393 NodeId U = !IsDead ? DefA.Addr->getReachedUse() : 0; in getAllReachedUses() 473 bool IsDead = DA.Addr->getFlags() & NodeAttrs::Dead; in computePhiInfo() local 474 NodeId UN = !IsDead ? DA.Addr->getReachedUse() : 0; in computePhiInfo()
|
/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyRegStackify.cpp | 496 bool IsDead = MRI.use_empty(Reg); in RematerializeCheapDef() local 497 if (!IsDead) { in RematerializeCheapDef() 500 IsDead = !LI.liveAt(LIS.getInstructionIndex(Def).getDeadSlot()); in RematerializeCheapDef() 504 if (IsDead) { in RematerializeCheapDef()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyRegStackify.cpp | 531 bool IsDead = MRI.use_empty(Reg); in RematerializeCheapDef() local 532 if (!IsDead) { in RematerializeCheapDef() 535 IsDead = !LI.liveAt(LIS.getInstructionIndex(Def).getDeadSlot()); in RematerializeCheapDef() 539 if (IsDead) { in RematerializeCheapDef()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | SILowerControlFlow.cpp | 129 static void setImpSCCDefDead(MachineInstr &MI, bool IsDead) { in setImpSCCDefDead() argument 133 ImpDefSCC.setIsDead(IsDead); in setImpSCCDefDead()
|