mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
When no memoperands are present, assume unaligned, volatile.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107114 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0a1bd2abf6
commit
628a79771b
@ -788,18 +788,21 @@ bool ARMLoadStoreOpt::MergeBaseUpdateLoadStore(MachineBasicBlock &MBB,
|
||||
/// isMemoryOp - Returns true if instruction is a memory operations (that this
|
||||
/// pass is capable of operating on).
|
||||
static bool isMemoryOp(const MachineInstr *MI) {
|
||||
if (MI->hasOneMemOperand()) {
|
||||
const MachineMemOperand *MMO = *MI->memoperands_begin();
|
||||
// When no memory operands are present, conservatively assume unaligned,
|
||||
// volatile, unfoldable.
|
||||
if (!MI->hasOneMemOperand())
|
||||
return false;
|
||||
|
||||
// Don't touch volatile memory accesses - we may be changing their order.
|
||||
if (MMO->isVolatile())
|
||||
return false;
|
||||
const MachineMemOperand *MMO = *MI->memoperands_begin();
|
||||
|
||||
// Unaligned ldr/str is emulated by some kernels, but unaligned ldm/stm is
|
||||
// not.
|
||||
if (MMO->getAlignment() < 4)
|
||||
return false;
|
||||
}
|
||||
// Don't touch volatile memory accesses - we may be changing their order.
|
||||
if (MMO->isVolatile())
|
||||
return false;
|
||||
|
||||
// Unaligned ldr/str is emulated by some kernels, but unaligned ldm/stm is
|
||||
// not.
|
||||
if (MMO->getAlignment() < 4)
|
||||
return false;
|
||||
|
||||
// str <undef> could probably be eliminated entirely, but for now we just want
|
||||
// to avoid making a mess of it.
|
||||
|
Loading…
Reference in New Issue
Block a user