diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2011-01-07 23:50:32 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2011-01-07 23:50:32 +0000 |
| commit | 6eb516dbeaf4effee65dd609a7099397bf52aed5 (patch) | |
| tree | c7770705fb274c93e1778d512398fad221d73dd5 /llvm/lib/CodeGen/DeadMachineInstructionElim.cpp | |
| parent | 006089b761d0b92c2ce5a5f14ebe2b34a053b8b4 (diff) | |
| download | bcm5719-llvm-6eb516dbeaf4effee65dd609a7099397bf52aed5.tar.gz bcm5719-llvm-6eb516dbeaf4effee65dd609a7099397bf52aed5.zip | |
Do not model all INLINEASM instructions as having unmodelled side effects.
Instead encode llvm IR level property "HasSideEffects" in an operand (shared
with IsAlignStack). Added MachineInstrs::hasUnmodeledSideEffects() to check
the operand when the instruction is an INLINEASM.
This allows memory instructions to be moved around INLINEASM instructions.
llvm-svn: 123044
Diffstat (limited to 'llvm/lib/CodeGen/DeadMachineInstructionElim.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/DeadMachineInstructionElim.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp b/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp index 786de1b6a0b..32040e580be 100644 --- a/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp +++ b/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp @@ -54,6 +54,12 @@ FunctionPass *llvm::createDeadMachineInstructionElimPass() { } bool DeadMachineInstructionElim::isDead(const MachineInstr *MI) const { + // Technically speaking inline asm without side effects and no defs can still + // be deleted. But there is so much bad inline asm code out there, we should + // let them be. + if (MI->isInlineAsm()) + return false; + // Don't delete instructions with side effects. bool SawStore = false; if (!MI->isSafeToMove(TII, 0, SawStore) && !MI->isPHI()) |

