Searched defs:isDead (Results 1 - 15 of 15) sorted by relevance

/external/llvm/lib/CodeGen/
H A DDeadMachineInstructionElim.cpp44 bool isDead(const MachineInstr *MI) const;
53 bool DeadMachineInstructionElim::isDead(const MachineInstr *MI) const { function in class:DeadMachineInstructionElim
118 if (isDead(MI)) {
H A DMachineInstrBundle.cpp162 if (MO.isDead()) {
168 if (!MO.isDead())
173 if (!MO.isDead()) {
190 bool isDead = DeadDefSet.count(Reg) || KilledDefSet.count(Reg); local
191 MIB.addReg(Reg, getDefRegState(true) | getDeadRegState(isDead) |
319 if (!MO.isDead())
H A DPHIElimination.cpp233 bool isDead = MPhi->getOperand(0).isDead(); local
301 if (isDead) {
329 if (DestLI.endIndex().isDead()) {
H A DTailDuplication.cpp98 void UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead,
217 bool isDead = MBB->pred_empty() && !MBB->hasAddressTaken(); local
219 UpdateSuccessorsPHIs(MBB, isDead, TDBBs, Succs);
222 if (isDead) {
452 TailDuplicatePass::UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead, argument
475 if (isDead) {
H A DMachineInstr.cpp130 bool isKill, bool isDead, bool isUndef,
150 IsDead = isDead;
269 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
295 if (isDead()) {
815 if (Check == CheckKillDead && MO.isDead() != OMO.isDead())
1046 /// the specified register or -1 if it is not found. If isDead is true, defs
1050 MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead, bool Overlap, argument
1070 if (Found && (!isDead || MO.isDead()))
129 ChangeToRegister(unsigned Reg, bool isDef, bool isImp, bool isKill, bool isDead, bool isUndef, bool isDebug) argument
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DAnalyzedInstruction.java142 public boolean isDead() { method in class:AnalyzedInstruction
/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h284 bool isDead() const { function in class:llvm::MachineOperand
516 /// operand. Note: This method ignores isKill and isDead properties.
535 bool isKill = false, bool isDead = false,
561 bool isKill = false, bool isDead = false,
571 Op.IsDead = isDead;
H A DSlotIndexes.h238 /// isDead - Returns true if this is a dead def kill slot.
239 bool isDead() const { return getSlot() == Slot_Dead; } function in class:llvm::SlotIndex
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h642 bool isDead(SymbolRef sym) const { function in class:clang::ento::SymbolReaper
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_peephole.cpp62 bool Instruction::isDead() const function in class:nv50_ir::Instruction
1720 if (ldst->isDead()) {
1856 if (pSet->isDead())
2279 if (i->isDead()) {
/external/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp166 bool isDead(const MachineInstr *MI,
889 /// copied from DeadMachineInstructionElim::isDead, but with special cases
892 bool HexagonHardwareLoops::isDead(const MachineInstr *MI, function in class:HexagonHardwareLoops
944 if (isDead(MI, DeadPhis)) {
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_peephole.cpp62 bool Instruction::isDead() const function in class:nv50_ir::Instruction
1720 if (ldst->isDead()) {
1856 if (pSet->isDead())
2279 if (i->isDead()) {
/external/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp1696 if (MO.isDef()) return MO.isDead();
1738 MO.getReg() == X86::EFLAGS && !MO.isDead()) {
1849 bool isDead = MI->getOperand(0).isDead(); local
1933 .addReg(Dest, RegState::Define | getDeadRegState(isDead))
1942 if (isDead)
2249 if (Dest.isDead())
4325 getDeadRegState(MO.isDead()) |
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp145 bool isDead() const { return getUse() == 0; } function in class:__anon22618::Slice
674 std::mem_fun_ref(&Slice::isDead)),
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp887 bool isDead() const { return IsDead; } function in class:__anon16496::ContextLocation
951 if (!CLocs.back().isDead() && CLocs.back().asLocation().isFileID()) {

Completed in 507 milliseconds