Jia Liu | b22310f | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 1 | //===-- ARMInstrInfo.cpp - ARM Instruction Information --------------------===// |
Rafael Espindola | ffdc24b | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
Rafael Espindola | ffdc24b | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the ARM implementation of the TargetInstrInfo class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "ARMInstrInfo.h" |
| 15 | #include "ARM.h" |
Jush Lu | 47172a0 | 2012-09-27 05:21:41 +0000 | [diff] [blame] | 16 | #include "ARMConstantPoolValue.h" |
Evan Cheng | 10043e2 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 17 | #include "ARMMachineFunctionInfo.h" |
Jush Lu | 47172a0 | 2012-09-27 05:21:41 +0000 | [diff] [blame] | 18 | #include "ARMTargetMachine.h" |
Evan Cheng | a20cde3 | 2011-07-20 23:34:39 +0000 | [diff] [blame] | 19 | #include "MCTargetDesc/ARMAddressingModes.h" |
Owen Anderson | e2f23a3 | 2007-09-07 04:06:50 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/STLExtras.h" |
Evan Cheng | 10043e2 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/LiveVariables.h" |
Owen Anderson | 6bb0c52 | 2008-01-04 23:57:37 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Evan Cheng | 760c68b | 2007-01-29 23:45:17 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 24 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
Jim Grosbach | 08aa534 | 2013-08-26 20:07:25 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 26 | #include "llvm/IR/Function.h" |
| 27 | #include "llvm/IR/GlobalVariable.h" |
Chris Lattner | 7b26fce | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 28 | #include "llvm/MC/MCAsmInfo.h" |
Jim Grosbach | 617f84dd | 2012-02-28 23:53:30 +0000 | [diff] [blame] | 29 | #include "llvm/MC/MCInst.h" |
Rafael Espindola | ffdc24b | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 30 | using namespace llvm; |
| 31 | |
Anton Korobeynikov | 99152f3 | 2009-06-26 21:28:53 +0000 | [diff] [blame] | 32 | ARMInstrInfo::ARMInstrInfo(const ARMSubtarget &STI) |
Eric Christopher | 3408583 | 2015-03-12 05:12:31 +0000 | [diff] [blame] | 33 | : ARMBaseInstrInfo(STI), RI() {} |
Rafael Espindola | 8c41f99 | 2006-08-08 20:35:03 +0000 | [diff] [blame] | 34 | |
Jim Grosbach | 617f84dd | 2012-02-28 23:53:30 +0000 | [diff] [blame] | 35 | /// getNoopForMachoTarget - Return the noop instruction to use for a noop. |
| 36 | void ARMInstrInfo::getNoopForMachoTarget(MCInst &NopInst) const { |
| 37 | if (hasNOP()) { |
Jim Grosbach | cb540f5 | 2012-06-18 19:45:50 +0000 | [diff] [blame] | 38 | NopInst.setOpcode(ARM::HINT); |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 39 | NopInst.addOperand(MCOperand::createImm(0)); |
| 40 | NopInst.addOperand(MCOperand::createImm(ARMCC::AL)); |
| 41 | NopInst.addOperand(MCOperand::createReg(0)); |
Jim Grosbach | 617f84dd | 2012-02-28 23:53:30 +0000 | [diff] [blame] | 42 | } else { |
| 43 | NopInst.setOpcode(ARM::MOVr); |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 44 | NopInst.addOperand(MCOperand::createReg(ARM::R0)); |
| 45 | NopInst.addOperand(MCOperand::createReg(ARM::R0)); |
| 46 | NopInst.addOperand(MCOperand::createImm(ARMCC::AL)); |
| 47 | NopInst.addOperand(MCOperand::createReg(0)); |
| 48 | NopInst.addOperand(MCOperand::createReg(0)); |
Jim Grosbach | 617f84dd | 2012-02-28 23:53:30 +0000 | [diff] [blame] | 49 | } |
| 50 | } |
| 51 | |
Chris Lattner | e98a3c3 | 2009-08-02 05:20:37 +0000 | [diff] [blame] | 52 | unsigned ARMInstrInfo::getUnindexedOpcode(unsigned Opc) const { |
Evan Cheng | 10043e2 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 53 | switch (Opc) { |
NAKAMURA Takumi | 59a16a7 | 2015-09-22 11:10:17 +0000 | [diff] [blame] | 54 | default: |
| 55 | break; |
Owen Anderson | 16d33f3 | 2011-08-26 20:43:14 +0000 | [diff] [blame] | 56 | case ARM::LDR_PRE_IMM: |
| 57 | case ARM::LDR_PRE_REG: |
Owen Anderson | 2aedba6 | 2011-07-26 20:54:26 +0000 | [diff] [blame] | 58 | case ARM::LDR_POST_IMM: |
| 59 | case ARM::LDR_POST_REG: |
Jim Grosbach | 1e4d9a1 | 2010-10-26 22:37:02 +0000 | [diff] [blame] | 60 | return ARM::LDRi12; |
Evan Cheng | 10043e2 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 61 | case ARM::LDRH_PRE: |
| 62 | case ARM::LDRH_POST: |
| 63 | return ARM::LDRH; |
Owen Anderson | 16d33f3 | 2011-08-26 20:43:14 +0000 | [diff] [blame] | 64 | case ARM::LDRB_PRE_IMM: |
| 65 | case ARM::LDRB_PRE_REG: |
Owen Anderson | 2aedba6 | 2011-07-26 20:54:26 +0000 | [diff] [blame] | 66 | case ARM::LDRB_POST_IMM: |
| 67 | case ARM::LDRB_POST_REG: |
Jim Grosbach | 5a7c715 | 2010-10-27 00:19:44 +0000 | [diff] [blame] | 68 | return ARM::LDRBi12; |
Evan Cheng | 10043e2 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 69 | case ARM::LDRSH_PRE: |
| 70 | case ARM::LDRSH_POST: |
| 71 | return ARM::LDRSH; |
| 72 | case ARM::LDRSB_PRE: |
| 73 | case ARM::LDRSB_POST: |
| 74 | return ARM::LDRSB; |
Owen Anderson | 2aedba6 | 2011-07-26 20:54:26 +0000 | [diff] [blame] | 75 | case ARM::STR_PRE_IMM: |
| 76 | case ARM::STR_PRE_REG: |
| 77 | case ARM::STR_POST_IMM: |
| 78 | case ARM::STR_POST_REG: |
Jim Grosbach | 338de3e | 2010-10-27 23:12:14 +0000 | [diff] [blame] | 79 | return ARM::STRi12; |
Evan Cheng | 10043e2 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 80 | case ARM::STRH_PRE: |
| 81 | case ARM::STRH_POST: |
| 82 | return ARM::STRH; |
Owen Anderson | 2aedba6 | 2011-07-26 20:54:26 +0000 | [diff] [blame] | 83 | case ARM::STRB_PRE_IMM: |
| 84 | case ARM::STRB_PRE_REG: |
| 85 | case ARM::STRB_POST_IMM: |
| 86 | case ARM::STRB_POST_REG: |
Jim Grosbach | 338de3e | 2010-10-27 23:12:14 +0000 | [diff] [blame] | 87 | return ARM::STRBi12; |
Evan Cheng | 10043e2 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 88 | } |
David Goodwin | af7451b | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 89 | |
Evan Cheng | 10043e2 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 90 | return 0; |
| 91 | } |
Jush Lu | 47172a0 | 2012-09-27 05:21:41 +0000 | [diff] [blame] | 92 | |
Rafael Espindola | 82f4631 | 2016-06-28 15:18:26 +0000 | [diff] [blame] | 93 | void ARMInstrInfo::expandLoadStackGuard(MachineBasicBlock::iterator MI) const { |
Akira Hatanaka | 2ee0e9e | 2014-10-23 04:17:05 +0000 | [diff] [blame] | 94 | MachineFunction &MF = *MI->getParent()->getParent(); |
Eric Christopher | 22b2ad2 | 2015-02-20 08:24:37 +0000 | [diff] [blame] | 95 | const ARMSubtarget &Subtarget = MF.getSubtarget<ARMSubtarget>(); |
Rafael Espindola | 82f4631 | 2016-06-28 15:18:26 +0000 | [diff] [blame] | 96 | const TargetMachine &TM = MF.getTarget(); |
Akira Hatanaka | 2ee0e9e | 2014-10-23 04:17:05 +0000 | [diff] [blame] | 97 | |
| 98 | if (!Subtarget.useMovt(MF)) { |
Rafael Espindola | 82f4631 | 2016-06-28 15:18:26 +0000 | [diff] [blame] | 99 | if (TM.isPositionIndependent()) |
| 100 | expandLoadStackGuardBase(MI, ARM::LDRLIT_ga_pcrel, ARM::LDRi12); |
Akira Hatanaka | 2ee0e9e | 2014-10-23 04:17:05 +0000 | [diff] [blame] | 101 | else |
Rafael Espindola | 82f4631 | 2016-06-28 15:18:26 +0000 | [diff] [blame] | 102 | expandLoadStackGuardBase(MI, ARM::LDRLIT_ga_abs, ARM::LDRi12); |
Akira Hatanaka | 2ee0e9e | 2014-10-23 04:17:05 +0000 | [diff] [blame] | 103 | return; |
| 104 | } |
| 105 | |
Rafael Espindola | 82f4631 | 2016-06-28 15:18:26 +0000 | [diff] [blame] | 106 | if (!TM.isPositionIndependent()) { |
| 107 | expandLoadStackGuardBase(MI, ARM::MOVi32imm, ARM::LDRi12); |
Akira Hatanaka | 2ee0e9e | 2014-10-23 04:17:05 +0000 | [diff] [blame] | 108 | return; |
| 109 | } |
| 110 | |
| 111 | const GlobalValue *GV = |
| 112 | cast<GlobalValue>((*MI->memoperands_begin())->getValue()); |
| 113 | |
Rafael Espindola | 5ac8f5c | 2016-06-28 15:38:13 +0000 | [diff] [blame] | 114 | if (!Subtarget.isGVIndirectSymbol(GV)) { |
Rafael Espindola | 82f4631 | 2016-06-28 15:18:26 +0000 | [diff] [blame] | 115 | expandLoadStackGuardBase(MI, ARM::MOV_ga_pcrel, ARM::LDRi12); |
Akira Hatanaka | 2ee0e9e | 2014-10-23 04:17:05 +0000 | [diff] [blame] | 116 | return; |
| 117 | } |
| 118 | |
| 119 | MachineBasicBlock &MBB = *MI->getParent(); |
| 120 | DebugLoc DL = MI->getDebugLoc(); |
| 121 | unsigned Reg = MI->getOperand(0).getReg(); |
| 122 | MachineInstrBuilder MIB; |
| 123 | |
| 124 | MIB = BuildMI(MBB, MI, DL, get(ARM::MOV_ga_pcrel_ldr), Reg) |
| 125 | .addGlobalAddress(GV, 0, ARMII::MO_NONLAZY); |
Justin Lebar | 0af80cd | 2016-07-15 18:26:59 +0000 | [diff] [blame^] | 126 | auto Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOInvariant; |
Akira Hatanaka | 2ee0e9e | 2014-10-23 04:17:05 +0000 | [diff] [blame] | 127 | MachineMemOperand *MMO = MBB.getParent()->getMachineMemOperand( |
Justin Lebar | 0af80cd | 2016-07-15 18:26:59 +0000 | [diff] [blame^] | 128 | MachinePointerInfo::getGOT(*MBB.getParent()), Flags, 4, 4); |
Akira Hatanaka | 2ee0e9e | 2014-10-23 04:17:05 +0000 | [diff] [blame] | 129 | MIB.addMemOperand(MMO); |
| 130 | MIB = BuildMI(MBB, MI, DL, get(ARM::LDRi12), Reg); |
| 131 | MIB.addReg(Reg, RegState::Kill).addImm(0); |
| 132 | MIB.setMemRefs(MI->memoperands_begin(), MI->memoperands_end()); |
| 133 | AddDefaultPred(MIB); |
Akira Hatanaka | e5b6e0d | 2014-07-25 19:31:34 +0000 | [diff] [blame] | 134 | } |