Searched refs:Dead (Results 1 - 22 of 22) sorted by relevance

/external/llvm/include/llvm/Transforms/Utils/
H A DSimplifyIndVar.h61 SmallVectorImpl<WeakVH> &Dead, IVVisitor *V = nullptr);
66 SmallVectorImpl<WeakVH> &Dead);
/external/llvm/lib/CodeGen/
H A DLiveRangeEdit.cpp167 SmallVectorImpl<MachineInstr*> &Dead) {
218 Dead.push_back(DefMI);
331 void LiveRangeEdit::eliminateDeadDefs(SmallVectorImpl<MachineInstr*> &Dead, argument
337 while (!Dead.empty())
338 eliminateDeadDef(Dead.pop_back_val(), ToShrink);
346 if (foldAsLoad(LI, Dead))
350 if (!LIS.shrinkToUses(LI, &Dead))
166 foldAsLoad(LiveInterval *LI, SmallVectorImpl<MachineInstr*> &Dead) argument
H A DRegAllocFast.cpp669 bool Dead = MO.isDead(); local
672 return MO.isKill() || Dead;
691 return Dead;
H A DSplitKit.cpp1019 SmallVector<MachineInstr*, 8> Dead; local
1024 // Dead defs end at the dead slot.
1035 Dead.push_back(MI);
1039 if (Dead.empty())
1042 Edit->eliminateDeadDefs(Dead);
H A DMachineInstr.cpp1840 bool Dead = true; local
1844 Dead = false;
1848 if (Dead) MO.setIsDead();
/external/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp59 SmallVectorImpl<WeakVH> &Dead, IVUsers *IVU = nullptr) :
63 DeadInsts(Dead),
452 SmallVectorImpl<WeakVH> &Dead, IVVisitor *V)
455 SimplifyIndvar SIV(LI->getLoopFor(CurrIV->getParent()), SE, LPM, Dead);
463 SmallVectorImpl<WeakVH> &Dead) {
466 Changed |= simplifyUsersOfIV(cast<PHINode>(I), SE, LPM, Dead);
58 SimplifyIndvar(Loop *Loop, ScalarEvolution *SE, LPPassManager *LPM, SmallVectorImpl<WeakVH> &Dead, IVUsers *IVU = nullptr) argument
451 simplifyUsersOfIV(PHINode *CurrIV, ScalarEvolution *SE, LPPassManager *LPM, SmallVectorImpl<WeakVH> &Dead, IVVisitor *V) argument
462 simplifyLoopIVs(Loop *L, ScalarEvolution *SE, LPPassManager *LPM, SmallVectorImpl<WeakVH> &Dead) argument
/external/llvm/include/llvm/CodeGen/
H A DLiveRangeEdit.h92 bool foldAsLoad(LiveInterval *LI, SmallVectorImpl<MachineInstr*> &Dead);
219 void eliminateDeadDefs(SmallVectorImpl<MachineInstr*> &Dead,
H A DMachineInstrBuilder.h34 Dead = 0x10, enumerator in enum:llvm::RegState::__anon25486
72 flags & RegState::Dead,
398 return B ? RegState::Dead : 0;
/external/chromium_org/v8/src/compiler/
H A Dcommon-operator.h72 const Operator* Dead();
H A Dcommon-operator-unittest.cc48 SHARED(Dead, Operator::kFoldable, 0, 0, 0, 0, 1),
H A Dcommon-operator.cc57 V(Dead, Operator::kFoldable, 0, 0) \
H A Dgraph-builder.cc241 Node* dead_node = graph()->NewNode(common_->Dead());
H A Dopcodes.h10 V(Dead) \
/external/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp1 //===- DeadStoreElimination.cpp - Fast Dead Store Elimination -------------===//
68 // Only check non-dead blocks. Dead blocks may have strange pointer
96 INITIALIZE_PASS_BEGIN(DSE, "dse", "Dead Store Elimination", false, false)
100 INITIALIZE_PASS_END(DSE, "dse", "Dead Store Elimination", false, false)
573 DEBUG(dbgs() << "DSE: Remove Dead Store:\n DEAD: "
599 DEBUG(dbgs() << "DSE: Remove Dead Store:\n OW END: "
758 Instruction *Dead = BBI++; local
760 DEBUG(dbgs() << "DSE: Dead Store at End of Block:\n DEAD: "
761 << *Dead << "\n Objects: ";
771 DeleteDeadInstruction(Dead, *M
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-phi-reducer.cc22 dead(graph.NewNode(common.Dead())) {
H A Dtest-scheduler.cc696 Node* nil = graph.NewNode(common_builder.Dead());
840 Node* nil = graph.NewNode(common_builder.Dead());
958 Node* nil = graph.NewNode(common_builder.Dead());
1207 Node* nil = graph.NewNode(common_builder.Dead());
1529 Node* nil = graph.NewNode(common_builder.Dead());
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp196 // If Dead[n].first is the only use of a malloc result, we can delete its
197 // chain of computation and the store to the global in Dead[n].second.
198 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead; local
211 Dead.push_back(std::make_pair(I, SI));
219 Dead.push_back(std::make_pair(I, MSI));
228 Dead.push_back(std::make_pair(I, MTI));
239 Dead.clear();
246 for (int i = 0, e = Dead.size(); i != e; ++i) {
247 if (IsSafeComputationToRemove(Dead[i].first, TLI)) {
248 Dead[
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ConditionalCompares.cpp599 .addReg(DestReg, RegState::Define | RegState::Dead)
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp332 MachineInstr *Dead = &*I; local
334 Dead->eraseFromParent();
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp3727 out << "Dead Symbol : ";
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp6795 MIB.addReg(Reg, RegState::ImplicitDefine | RegState::Dead);
7198 .addReg(ARM::R12, RegState::Implicit | RegState::Define | RegState::Dead);
7212 .addReg(ARM::R12, RegState::Implicit | RegState::Define | RegState::Dead);
/external/chromium_org/third_party/usb_ids/
H A Dusb.ids16922 065 Dead Band

Completed in 481 milliseconds