From ffed66f6ea22300be27e5c45b38075e8a10a0109 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Sat, 21 Nov 2015 02:09:49 +0000 Subject: [PATCH] ARMLoadStoreOptimizer: Cleanup isMemoryOp(); NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253757 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMLoadStoreOptimizer.cpp | 66 ++++++++++++------------ 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/lib/Target/ARM/ARMLoadStoreOptimizer.cpp b/lib/Target/ARM/ARMLoadStoreOptimizer.cpp index f44b4cd09cd..21227cf0ed9 100644 --- a/lib/Target/ARM/ARMLoadStoreOptimizer.cpp +++ b/lib/Target/ARM/ARMLoadStoreOptimizer.cpp @@ -1432,57 +1432,57 @@ bool ARMLoadStoreOpt::MergeBaseUpdateLSDouble(MachineInstr &MI) const { /// Returns true if instruction is a memory operation that this pass is capable /// of operating on. -static bool isMemoryOp(const MachineInstr *MI) { +static bool isMemoryOp(const MachineInstr &MI) { + unsigned Opcode = MI.getOpcode(); + switch (Opcode) { + case ARM::VLDRS: + case ARM::VSTRS: + case ARM::VLDRD: + case ARM::VSTRD: + case ARM::LDRi12: + case ARM::STRi12: + case ARM::tLDRi: + case ARM::tSTRi: + case ARM::tLDRspi: + case ARM::tSTRspi: + case ARM::t2LDRi8: + case ARM::t2LDRi12: + case ARM::t2STRi8: + case ARM::t2STRi12: + break; + default: + return false; + } + if (!MI.getOperand(1).isReg()) + return false; + // When no memory operands are present, conservatively assume unaligned, // volatile, unfoldable. - if (!MI->hasOneMemOperand()) + if (!MI.hasOneMemOperand()) return false; - const MachineMemOperand *MMO = *MI->memoperands_begin(); + const MachineMemOperand &MMO = **MI.memoperands_begin(); // Don't touch volatile memory accesses - we may be changing their order. - if (MMO->isVolatile()) + if (MMO.isVolatile()) return false; // Unaligned ldr/str is emulated by some kernels, but unaligned ldm/stm is // not. - if (MMO->getAlignment() < 4) + if (MMO.getAlignment() < 4) return false; // str could probably be eliminated entirely, but for now we just want // to avoid making a mess of it. // FIXME: Use str as a wildcard to enable better stm folding. - if (MI->getNumOperands() > 0 && MI->getOperand(0).isReg() && - MI->getOperand(0).isUndef()) + if (MI.getOperand(0).isReg() && MI.getOperand(0).isUndef()) return false; // Likewise don't mess with references to undefined addresses. - if (MI->getNumOperands() > 1 && MI->getOperand(1).isReg() && - MI->getOperand(1).isUndef()) + if (MI.getOperand(1).isUndef()) return false; - unsigned Opcode = MI->getOpcode(); - switch (Opcode) { - default: break; - case ARM::VLDRS: - case ARM::VSTRS: - return MI->getOperand(1).isReg(); - case ARM::VLDRD: - case ARM::VSTRD: - return MI->getOperand(1).isReg(); - case ARM::LDRi12: - case ARM::STRi12: - case ARM::tLDRi: - case ARM::tSTRi: - case ARM::tLDRspi: - case ARM::tSTRspi: - case ARM::t2LDRi8: - case ARM::t2LDRi12: - case ARM::t2STRi8: - case ARM::t2STRi12: - return MI->getOperand(1).isReg(); - } - return false; + return true; } static void InsertLDR_STR(MachineBasicBlock &MBB, @@ -1648,7 +1648,7 @@ bool ARMLoadStoreOpt::LoadStoreMultipleOpti(MachineBasicBlock &MBB) { continue; ++Position; - if (isMemoryOp(MBBI)) { + if (isMemoryOp(*MBBI)) { unsigned Opcode = MBBI->getOpcode(); const MachineOperand &MO = MBBI->getOperand(0); unsigned Reg = MO.getReg(); @@ -2233,7 +2233,7 @@ ARMPreAllocLoadStoreOpt::RescheduleLoadStoreInstrs(MachineBasicBlock *MBB) { if (!MI->isDebugValue()) MI2LocMap[MI] = ++Loc; - if (!isMemoryOp(MI)) + if (!isMemoryOp(*MI)) continue; unsigned PredReg = 0; if (getInstrPredicate(MI, PredReg) != ARMCC::AL) -- 2.34.1