Jyotsna Verma | 5eb5980 | 2013-05-07 19:53:00 +0000 | [diff] [blame] | 1 | //=== HexagonSplitConst32AndConst64.cpp - split CONST32/Const64 into HI/LO ===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // When the compiler is invoked with no small data, for instance, with the -G0 |
| 11 | // command line option, then all CONST32_* opcodes should be broken down into |
| 12 | // appropriate LO and HI instructions. This splitting is done by this pass. |
| 13 | // The only reason this is not done in the DAG lowering itself is that there |
| 14 | // is no simple way of getting the register allocator to allot the same hard |
| 15 | // register to the result of LO and HI instructions. This pass is always |
| 16 | // scheduled after register allocation. |
| 17 | // |
| 18 | //===----------------------------------------------------------------------===// |
Bill Wendling | 0cb8c0b | 2013-08-21 20:36:42 +0000 | [diff] [blame] | 19 | |
Bill Wendling | 0cb8c0b | 2013-08-21 20:36:42 +0000 | [diff] [blame] | 20 | #include "HexagonMachineFunctionInfo.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 21 | #include "HexagonSubtarget.h" |
Eric Christopher | 0120db5 | 2014-05-21 22:42:07 +0000 | [diff] [blame] | 22 | #include "HexagonTargetMachine.h" |
| 23 | #include "HexagonTargetObjectFile.h" |
Bill Wendling | 0cb8c0b | 2013-08-21 20:36:42 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/Statistic.h" |
Jyotsna Verma | 5eb5980 | 2013-05-07 19:53:00 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/LatencyPriorityQueue.h" |
Jyotsna Verma | 5eb5980 | 2013-05-07 19:53:00 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineDominators.h" |
| 27 | #include "llvm/CodeGen/MachineFunctionPass.h" |
Bill Wendling | 0cb8c0b | 2013-08-21 20:36:42 +0000 | [diff] [blame] | 28 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Jyotsna Verma | 5eb5980 | 2013-05-07 19:53:00 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineLoopInfo.h" |
| 30 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Bill Wendling | 0cb8c0b | 2013-08-21 20:36:42 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/Passes.h" |
| 32 | #include "llvm/CodeGen/ScheduleDAGInstrs.h" |
Jyotsna Verma | 5eb5980 | 2013-05-07 19:53:00 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/ScheduleHazardRecognizer.h" |
Bill Wendling | 0cb8c0b | 2013-08-21 20:36:42 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/SchedulerRegistry.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 35 | #include "llvm/Support/CommandLine.h" |
Jyotsna Verma | 5eb5980 | 2013-05-07 19:53:00 +0000 | [diff] [blame] | 36 | #include "llvm/Support/Compiler.h" |
| 37 | #include "llvm/Support/Debug.h" |
Bill Wendling | 0cb8c0b | 2013-08-21 20:36:42 +0000 | [diff] [blame] | 38 | #include "llvm/Support/MathExtras.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 39 | #include "llvm/Target/TargetInstrInfo.h" |
| 40 | #include "llvm/Target/TargetMachine.h" |
| 41 | #include "llvm/Target/TargetRegisterInfo.h" |
Bill Wendling | 0cb8c0b | 2013-08-21 20:36:42 +0000 | [diff] [blame] | 42 | #include <map> |
Jyotsna Verma | 5eb5980 | 2013-05-07 19:53:00 +0000 | [diff] [blame] | 43 | |
| 44 | using namespace llvm; |
| 45 | |
Chandler Carruth | 84e68b2 | 2014-04-22 02:41:26 +0000 | [diff] [blame] | 46 | #define DEBUG_TYPE "xfer" |
| 47 | |
Jyotsna Verma | 5eb5980 | 2013-05-07 19:53:00 +0000 | [diff] [blame] | 48 | namespace { |
| 49 | |
| 50 | class HexagonSplitConst32AndConst64 : public MachineFunctionPass { |
Eric Christopher | 1e65e7c | 2014-05-21 22:42:02 +0000 | [diff] [blame] | 51 | const HexagonTargetMachine &QTM; |
Jyotsna Verma | 5eb5980 | 2013-05-07 19:53:00 +0000 | [diff] [blame] | 52 | |
| 53 | public: |
| 54 | static char ID; |
Eric Christopher | 1e65e7c | 2014-05-21 22:42:02 +0000 | [diff] [blame] | 55 | HexagonSplitConst32AndConst64(const HexagonTargetMachine &TM) |
| 56 | : MachineFunctionPass(ID), QTM(TM) {} |
Jyotsna Verma | 5eb5980 | 2013-05-07 19:53:00 +0000 | [diff] [blame] | 57 | |
Craig Topper | 906c2cd | 2014-04-29 07:58:16 +0000 | [diff] [blame] | 58 | const char *getPassName() const override { |
Jyotsna Verma | 5eb5980 | 2013-05-07 19:53:00 +0000 | [diff] [blame] | 59 | return "Hexagon Split Const32s and Const64s"; |
| 60 | } |
Craig Topper | 906c2cd | 2014-04-29 07:58:16 +0000 | [diff] [blame] | 61 | bool runOnMachineFunction(MachineFunction &Fn) override; |
Jyotsna Verma | 5eb5980 | 2013-05-07 19:53:00 +0000 | [diff] [blame] | 62 | }; |
| 63 | |
| 64 | |
| 65 | char HexagonSplitConst32AndConst64::ID = 0; |
| 66 | |
| 67 | |
| 68 | bool HexagonSplitConst32AndConst64::runOnMachineFunction(MachineFunction &Fn) { |
| 69 | |
Eric Christopher | 0120db5 | 2014-05-21 22:42:07 +0000 | [diff] [blame] | 70 | const HexagonTargetObjectFile &TLOF = |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 71 | (const HexagonTargetObjectFile &)QTM.getSubtargetImpl() |
| 72 | ->getTargetLowering() |
| 73 | ->getObjFileLowering(); |
Eric Christopher | 0120db5 | 2014-05-21 22:42:07 +0000 | [diff] [blame] | 74 | if (TLOF.IsSmallDataEnabled()) |
| 75 | return true; |
| 76 | |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 77 | const TargetInstrInfo *TII = QTM.getSubtargetImpl()->getInstrInfo(); |
Jyotsna Verma | 5eb5980 | 2013-05-07 19:53:00 +0000 | [diff] [blame] | 78 | |
| 79 | // Loop over all of the basic blocks |
| 80 | for (MachineFunction::iterator MBBb = Fn.begin(), MBBe = Fn.end(); |
| 81 | MBBb != MBBe; ++MBBb) { |
| 82 | MachineBasicBlock* MBB = MBBb; |
| 83 | // Traverse the basic block |
| 84 | MachineBasicBlock::iterator MII = MBB->begin(); |
| 85 | MachineBasicBlock::iterator MIE = MBB->end (); |
| 86 | while (MII != MIE) { |
| 87 | MachineInstr *MI = MII; |
| 88 | int Opc = MI->getOpcode(); |
| 89 | if (Opc == Hexagon::CONST32_set) { |
| 90 | int DestReg = MI->getOperand(0).getReg(); |
| 91 | MachineOperand &Symbol = MI->getOperand (1); |
| 92 | |
| 93 | BuildMI (*MBB, MII, MI->getDebugLoc(), |
| 94 | TII->get(Hexagon::LO), DestReg).addOperand(Symbol); |
| 95 | BuildMI (*MBB, MII, MI->getDebugLoc(), |
| 96 | TII->get(Hexagon::HI), DestReg).addOperand(Symbol); |
| 97 | // MBB->erase returns the iterator to the next instruction, which is the |
| 98 | // one we want to process next |
| 99 | MII = MBB->erase (MI); |
| 100 | continue; |
| 101 | } |
| 102 | else if (Opc == Hexagon::CONST32_set_jt) { |
| 103 | int DestReg = MI->getOperand(0).getReg(); |
| 104 | MachineOperand &Symbol = MI->getOperand (1); |
| 105 | |
| 106 | BuildMI (*MBB, MII, MI->getDebugLoc(), |
| 107 | TII->get(Hexagon::LO_jt), DestReg).addOperand(Symbol); |
| 108 | BuildMI (*MBB, MII, MI->getDebugLoc(), |
| 109 | TII->get(Hexagon::HI_jt), DestReg).addOperand(Symbol); |
| 110 | // MBB->erase returns the iterator to the next instruction, which is the |
| 111 | // one we want to process next |
| 112 | MII = MBB->erase (MI); |
| 113 | continue; |
| 114 | } |
| 115 | else if (Opc == Hexagon::CONST32_Label) { |
| 116 | int DestReg = MI->getOperand(0).getReg(); |
| 117 | MachineOperand &Symbol = MI->getOperand (1); |
| 118 | |
| 119 | BuildMI (*MBB, MII, MI->getDebugLoc(), |
| 120 | TII->get(Hexagon::LO_label), DestReg).addOperand(Symbol); |
| 121 | BuildMI (*MBB, MII, MI->getDebugLoc(), |
| 122 | TII->get(Hexagon::HI_label), DestReg).addOperand(Symbol); |
| 123 | // MBB->erase returns the iterator to the next instruction, which is the |
| 124 | // one we want to process next |
| 125 | MII = MBB->erase (MI); |
| 126 | continue; |
| 127 | } |
| 128 | else if (Opc == Hexagon::CONST32_Int_Real) { |
| 129 | int DestReg = MI->getOperand(0).getReg(); |
| 130 | int64_t ImmValue = MI->getOperand(1).getImm (); |
| 131 | |
| 132 | BuildMI (*MBB, MII, MI->getDebugLoc(), |
| 133 | TII->get(Hexagon::LOi), DestReg).addImm(ImmValue); |
| 134 | BuildMI (*MBB, MII, MI->getDebugLoc(), |
| 135 | TII->get(Hexagon::HIi), DestReg).addImm(ImmValue); |
| 136 | MII = MBB->erase (MI); |
| 137 | continue; |
| 138 | } |
| 139 | else if (Opc == Hexagon::CONST64_Int_Real) { |
| 140 | int DestReg = MI->getOperand(0).getReg(); |
| 141 | int64_t ImmValue = MI->getOperand(1).getImm (); |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 142 | unsigned DestLo = QTM.getSubtargetImpl()->getRegisterInfo()->getSubReg( |
| 143 | DestReg, Hexagon::subreg_loreg); |
| 144 | unsigned DestHi = QTM.getSubtargetImpl()->getRegisterInfo()->getSubReg( |
| 145 | DestReg, Hexagon::subreg_hireg); |
Jyotsna Verma | 5eb5980 | 2013-05-07 19:53:00 +0000 | [diff] [blame] | 146 | |
| 147 | int32_t LowWord = (ImmValue & 0xFFFFFFFF); |
| 148 | int32_t HighWord = (ImmValue >> 32) & 0xFFFFFFFF; |
| 149 | |
| 150 | // Lower Registers Lower Half |
| 151 | BuildMI (*MBB, MII, MI->getDebugLoc(), |
| 152 | TII->get(Hexagon::LOi), DestLo).addImm(LowWord); |
| 153 | // Lower Registers Higher Half |
| 154 | BuildMI (*MBB, MII, MI->getDebugLoc(), |
| 155 | TII->get(Hexagon::HIi), DestLo).addImm(LowWord); |
| 156 | // Higher Registers Lower Half |
| 157 | BuildMI (*MBB, MII, MI->getDebugLoc(), |
| 158 | TII->get(Hexagon::LOi), DestHi).addImm(HighWord); |
| 159 | // Higher Registers Higher Half. |
| 160 | BuildMI (*MBB, MII, MI->getDebugLoc(), |
| 161 | TII->get(Hexagon::HIi), DestHi).addImm(HighWord); |
| 162 | MII = MBB->erase (MI); |
| 163 | continue; |
| 164 | } |
| 165 | ++MII; |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | return true; |
| 170 | } |
| 171 | |
| 172 | } |
| 173 | |
| 174 | //===----------------------------------------------------------------------===// |
| 175 | // Public Constructor Functions |
| 176 | //===----------------------------------------------------------------------===// |
| 177 | |
| 178 | FunctionPass * |
| 179 | llvm::createHexagonSplitConst32AndConst64(const HexagonTargetMachine &TM) { |
| 180 | return new HexagonSplitConst32AndConst64(TM); |
| 181 | } |