diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-03-13 00:44:09 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-03-13 00:44:09 +0000 |
commit | 399e1101bab212f8da99c253a5b24c528d6ace13 (patch) | |
tree | f33b262945c44d6594f4f91443261f4fd3108c54 /llvm/lib/CodeGen/MachineSink.cpp | |
parent | 6424bd0b11d552bddf2cbffdac383357e7da4c92 (diff) | |
download | bcm5719-llvm-399e1101bab212f8da99c253a5b24c528d6ace13.tar.gz bcm5719-llvm-399e1101bab212f8da99c253a5b24c528d6ace13.zip |
Refactor some code out of MachineSink into a MachineInstr query.
llvm-svn: 48311
Diffstat (limited to 'llvm/lib/CodeGen/MachineSink.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineSink.cpp | 25 |
1 files changed, 2 insertions, 23 deletions
diff --git a/llvm/lib/CodeGen/MachineSink.cpp b/llvm/lib/CodeGen/MachineSink.cpp index db2fab04f00..97a4df5497f 100644 --- a/llvm/lib/CodeGen/MachineSink.cpp +++ b/llvm/lib/CodeGen/MachineSink.cpp @@ -132,30 +132,9 @@ bool MachineSinking::ProcessBlock(MachineBasicBlock &MBB) { /// SinkInstruction - Determine whether it is safe to sink the specified machine /// instruction out of its current block into a successor. bool MachineSinking::SinkInstruction(MachineInstr *MI, bool &SawStore) { - const TargetInstrDesc &TID = MI->getDesc(); - - // Ignore stuff that we obviously can't sink. - if (TID.mayStore() || TID.isCall()) { - SawStore = true; - return false; - } - if (TID.isReturn() || TID.isBranch() || TID.hasUnmodeledSideEffects()) + // Check if it's safe to move the instruction. + if (!MI->isSafeToMove(TII, SawStore)) return false; - - // See if this instruction does a load. If so, we have to guarantee that the - // loaded value doesn't change between the load and the end of block. The - // check for isInvariantLoad gives the targe the chance to classify the load - // as always returning a constant, e.g. a constant pool load. - if (TID.mayLoad() && !TII->isInvariantLoad(MI)) { - // Otherwise, this is a real load. If there is a store between the load and - // end of block, we can't sink the load. - // - // FIXME: we can't do this transformation until we know that the load is - // not volatile, and machineinstrs don't keep this info. :( - // - //if (SawStore) - return false; - } // FIXME: This should include support for sinking instructions within the // block they are currently in to shorten the live ranges. We often get |