Home
last modified time | relevance | path

Searched refs:IsDead (Results 1 – 25 of 49) sorted by relevance

12

/external/v8/src/compiler/
Dgraph-trimmer.h35 if (!node->IsDead()) MarkAsLive(node); in TrimGraph()
43 DCHECK(!node->IsDead()); in MarkAsLive()
Dvalue-numbering-reducer.cc84 if (entry->IsDead()) { in Reduce()
117 if (entry->IsDead()) { in Reduce()
164 if (!old_entry || old_entry->IsDead()) continue; in Grow()
Dcontrol-flow-optimizer.cc36 if (node->IsDead()) continue; in Optimize()
51 if (node->IsDead() || queued_.Get(node)) return; in Enqueue()
Dadd-type-assertions-reducer.cc39 DCHECK(!user->IsDead()); in Reduce()
Dgraph-reducer.cc140 if (node->IsDead()) return Pop(); // Node was killed while on stack. in ReduceTop()
250 DCHECK(!user->IsDead()); in ReplaceWithValue()
Dcsa-load-elimination.cc152 if (object->IsDead()) { in Lookup()
186 !replacement->IsDead()) { in ReduceLoadFromObject()
Dload-elimination.cc25 return !node->IsDead(); in IsRename()
254 if (pair.first->IsDead()) continue; in Lookup()
289 if (pair.first->IsDead()) continue; in KillConst()
312 if (pair.first->IsDead()) continue; in Kill()
940 !replacement->IsDead()) { in ReduceLoadField()
1086 if (!replacement->IsDead() && NodeProperties::GetType(replacement) in ReduceLoadElement()
/external/angle/third_party/spirv-tools/src/source/opt/
Daggressive_dead_code_elim_pass.cpp144 bool AggressiveDCEPass::IsDead(Instruction* inst) { in IsDead() function in spvtools::opt::AggressiveDCEPass
169 return IsDead(tInst); in IsTargetDead()
522 if (!IsDead(inst)) return; in AggressiveDCE()
763 if (IsDead(counter_buffer_inst)) { in ProcessGlobalValues()
778 if (IsDead(opInst)) { in ProcessGlobalValues()
805 if (IsDead(opInst)) { in ProcessGlobalValues()
841 if (IsDead(&val)) { in ProcessGlobalValues()
849 if (!IsDead(ptr_ty_inst)) continue; in ProcessGlobalValues()
867 if (!IsDead(var)) { in ProcessGlobalValues()
Daggressive_dead_code_elim_pass.h73 bool IsDead(Instruction* inst);
/external/deqp-deps/SPIRV-Tools/source/opt/
Daggressive_dead_code_elim_pass.cpp144 bool AggressiveDCEPass::IsDead(Instruction* inst) { in IsDead() function in spvtools::opt::AggressiveDCEPass
169 return IsDead(tInst); in IsTargetDead()
522 if (!IsDead(inst)) return; in AggressiveDCE()
763 if (IsDead(counter_buffer_inst)) { in ProcessGlobalValues()
778 if (IsDead(opInst)) { in ProcessGlobalValues()
805 if (IsDead(opInst)) { in ProcessGlobalValues()
841 if (IsDead(&val)) { in ProcessGlobalValues()
849 if (!IsDead(ptr_ty_inst)) continue; in ProcessGlobalValues()
867 if (!IsDead(var)) { in ProcessGlobalValues()
Daggressive_dead_code_elim_pass.h73 bool IsDead(Instruction* inst);
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Daggressive_dead_code_elim_pass.cpp144 bool AggressiveDCEPass::IsDead(Instruction* inst) { in IsDead() function in spvtools::opt::AggressiveDCEPass
169 return IsDead(tInst); in IsTargetDead()
522 if (!IsDead(inst)) return; in AggressiveDCE()
763 if (IsDead(counter_buffer_inst)) { in ProcessGlobalValues()
778 if (IsDead(opInst)) { in ProcessGlobalValues()
805 if (IsDead(opInst)) { in ProcessGlobalValues()
841 if (IsDead(&val)) { in ProcessGlobalValues()
849 if (!IsDead(ptr_ty_inst)) continue; in ProcessGlobalValues()
867 if (!IsDead(var)) { in ProcessGlobalValues()
Daggressive_dead_code_elim_pass.h73 bool IsDead(Instruction* inst);
/external/llvm/include/llvm/CodeGen/
DMachineOperand.h99 bool IsDead : 1; variable
294 return IsDead; in isDead()
383 IsDead = Val;
619 Op.IsDead = isDead;
/external/tensorflow/tensorflow/compiler/tf2xla/
Dfunctionalize_cond.cc167 bool StateMap::IsDead(StateMap::CondId id) const { return id == dead_id_; } in IsDead() function in tensorflow::functionalize_cond::StateMap
1043 if (state_map_.IsEmpty(dst) || state_map_.IsDead(src)) return src; in JoinCondStatesNonMerge()
1044 if (state_map_.IsDead(dst) || state_map_.IsEmpty(src)) return dst; in JoinCondStatesNonMerge()
1092 if (state_map_.IsDead(src)) return src; in JoinCondStatesMerge()
1093 if (state_map_.IsDead(dst)) return dst; in JoinCondStatesMerge()
1129 if (state_map_.IsDead(id)) return id; in StateAlongEdge()
1158 if (state_map_.IsDead(state_map_.LookupCondId(dst))) return Status::OK(); in DetermineCondStateMerge()
1205 if (!state_map_.IsDead(state_map_.LookupCondId(node))) return Status::OK(); in RemoveRedundantMerge()
1214 if (!state_map_.IsDead(src_id)) { in RemoveRedundantMerge()
1249 if (state_map_.IsDead(dst_id)) return Status::OK(); in RemoveRedundantSwitch()
[all …]
Dfunctionalize_cond.h135 bool IsDead(CondId id) const;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DA15SDOptimizer.cpp213 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/
DRDFDeadCode.cpp139 auto IsDead = [this] (NodeAddr<InstrNode*> IA) -> bool { in collect() local
154 if (IsDead(IA)) { in collect()
DHexagonRDFOpt.cpp239 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/
DA15SDOptimizer.cpp216 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/
DRDFDeadCode.cpp150 auto IsDead = [this] (NodeAddr<InstrNode*> IA) -> bool { in collect() local
165 if (IsDead(IA)) { in collect()
DHexagonRDFOpt.cpp253 auto IsDead = [this] (NodeAddr<DefNode*> DA) -> bool { in rewrite() local
262 if (!llvm::all_of(Defs, IsDead)) in rewrite()
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyRegStackify.cpp496 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/
DWebAssemblyRegStackify.cpp531 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/v8/src/torque/
Dcc-generator.cc28 if (block->IsDead()) continue; in EmitGraph()
50 if (block->IsDead()) continue; in EmitGraph()

12