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

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Transforms/Utils/
H A DSimplifyIndVar.h43 SmallVectorImpl<WeakVH> &Dead, IVVisitor *V = NULL);
48 SmallVectorImpl<WeakVH> &Dead);
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DWeakBlock.cpp61 weakImpl->setState(WeakImpl::Dead);
75 if (weakImpl->state() == WeakImpl::Dead)
123 if (weakImpl->state() > WeakImpl::Dead)
131 weakImpl->setState(WeakImpl::Dead);
H A DWeakSetInlines.h47 ASSERT(weakImpl->state() == WeakImpl::Dead);
H A DWeakImpl.h39 Dead = 0x1, enumerator in enum:JSC::WeakImpl::State
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DLiveRangeEdit.cpp161 SmallVectorImpl<MachineInstr*> &Dead) {
214 Dead.push_back(DefMI);
219 void LiveRangeEdit::eliminateDeadDefs(SmallVectorImpl<MachineInstr*> &Dead, argument
227 while (!Dead.empty()) {
228 MachineInstr *MI = Dead.pop_back_val();
328 if (foldAsLoad(LI, Dead))
332 if (!LIS.shrinkToUses(LI, &Dead))
160 foldAsLoad(LiveInterval *LI, SmallVectorImpl<MachineInstr*> &Dead) argument
H A DLiveIntervalAnalysis.cpp712 DEBUG(dbgs() << "Dead PHI at " << VNI->def << " may separate interval\n");
1019 LiveRange* Dead; member in struct:LiveIntervals::HMEditor::RegRanges
1021 RegRanges() : Use(0), EC(0), Dead(0), Def(0) {}
1223 BR[LI->reg].Dead = LR;
1393 assert(BR[LI->reg].Dead == 0 && BR[LI->reg].Def == 0 &&
1400 // Becoming a new Dead-def.
1404 assert(BR[LI->reg].Dead == 0 &&
1407 BR[LI->reg].Dead = BR[LI->reg].Def;
1468 if (BR[LI->reg].Dead != 0) {
1469 LI->removeRange(*BR[LI->reg].Dead);
[all...]
H A DRegAllocFast.cpp658 bool Dead = MO.isDead(); local
661 return MO.isKill() || Dead;
680 return Dead;
H A DSplitKit.cpp1017 SmallVector<MachineInstr*, 8> Dead; local
1022 // Dead defs end at the dead slot.
1033 Dead.push_back(MI);
1037 if (Dead.empty())
1040 Edit->eliminateDeadDefs(Dead);
H A DMachineInstr.cpp1900 bool Dead = true;
1904 Dead = false;
1908 if (Dead) MO.setIsDead();
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp55 SmallVectorImpl<WeakVH> &Dead, IVUsers *IVU = NULL) :
60 DeadInsts(Dead),
374 SmallVectorImpl<WeakVH> &Dead, IVVisitor *V)
377 SimplifyIndvar SIV(LI->getLoopFor(CurrIV->getParent()), SE, LPM, Dead);
385 SmallVectorImpl<WeakVH> &Dead) {
388 Changed |= simplifyUsersOfIV(cast<PHINode>(I), SE, LPM, Dead);
54 SimplifyIndvar(Loop *Loop, ScalarEvolution *SE, LPPassManager *LPM, SmallVectorImpl<WeakVH> &Dead, IVUsers *IVU = NULL) argument
373 simplifyUsersOfIV(PHINode *CurrIV, ScalarEvolution *SE, LPPassManager *LPM, SmallVectorImpl<WeakVH> &Dead, IVVisitor *V) argument
384 simplifyLoopIVs(Loop *L, ScalarEvolution *SE, LPPassManager *LPM, SmallVectorImpl<WeakVH> &Dead) argument
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DLiveRangeEdit.h90 bool foldAsLoad(LiveInterval *LI, SmallVectorImpl<MachineInstr*> &Dead);
198 void eliminateDeadDefs(SmallVectorImpl<MachineInstr*> &Dead,
H A DMachineInstrBuilder.h33 Dead = 0x10, enumerator in enum:llvm::RegState::__anon9926
67 flags & RegState::Dead,
325 return B ? RegState::Dead : 0;
/macosx-10.9.5/misc_cmds-32/calendar/calendars/
H A Dcalendar.lotr18 02/26 Aragorn takes the Paths of the Dead
H A Dcalendar.music31 01/31 The Grateful Dead are busted in New Orleans, 1970
59 03/08 Ron "Pigpen" McKernan (Grateful Dead) dies in California, 1973
163 09/08 Ron "Pigpen" McKernan (Grateful Dead) is born in San Bruno, California, 1945
182 10/16 Bob Weir (Grateful Dead) is born in San Francisco, 1947
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp1 //===- DeadStoreElimination.cpp - Fast Dead Store Elimination -------------===//
64 // Only check non-dead blocks. Dead blocks may have strange pointer
92 INITIALIZE_PASS_BEGIN(DSE, "dse", "Dead Store Elimination", false, false)
96 INITIALIZE_PASS_END(DSE, "dse", "Dead Store Elimination", false, false)
571 DEBUG(dbgs() << "DSE: Remove Dead Store:\n DEAD: "
597 DEBUG(dbgs() << "DSE: Remove Dead Store:\n OW END: "
756 Instruction *Dead = BBI++; local
758 DEBUG(dbgs() << "DSE: Dead Store at End of Block:\n DEAD: "
759 << *Dead << "\n Objects: ";
769 DeleteDeadInstruction(Dead, *M
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/IPO/
H A DGlobalOpt.cpp392 // If Dead[n].first is the only use of a malloc result, we can delete its
393 // chain of computation and the store to the global in Dead[n].second.
394 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead; local
407 Dead.push_back(std::make_pair(I, SI));
415 Dead.push_back(std::make_pair(I, MSI));
424 Dead.push_back(std::make_pair(I, MTI));
435 Dead.clear();
442 for (int i = 0, e = Dead.size(); i != e; ++i) {
443 if (IsSafeComputationToRemove(Dead[i].first, TLI)) {
444 Dead[
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp311 MachineInstr *Dead = &*I; local
313 Dead->eraseFromParent();
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/
H A DARMISelLowering.cpp6299 MIB.addReg(Reg, RegState::ImplicitDefine | RegState::Dead);

Completed in 158 milliseconds