blob: 8fdd493a75dc383518723ecb562660e721961930 [file] [log] [blame]
Jyotsna Verma5eb59802013-05-07 19:53:00 +00001//=== 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 Wendling0cb8c0b2013-08-21 20:36:42 +000019
Bill Wendling0cb8c0b2013-08-21 20:36:42 +000020#include "HexagonMachineFunctionInfo.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000021#include "HexagonSubtarget.h"
Eric Christopher0120db52014-05-21 22:42:07 +000022#include "HexagonTargetMachine.h"
23#include "HexagonTargetObjectFile.h"
Bill Wendling0cb8c0b2013-08-21 20:36:42 +000024#include "llvm/ADT/Statistic.h"
Jyotsna Verma5eb59802013-05-07 19:53:00 +000025#include "llvm/CodeGen/LatencyPriorityQueue.h"
Jyotsna Verma5eb59802013-05-07 19:53:00 +000026#include "llvm/CodeGen/MachineDominators.h"
27#include "llvm/CodeGen/MachineFunctionPass.h"
Bill Wendling0cb8c0b2013-08-21 20:36:42 +000028#include "llvm/CodeGen/MachineInstrBuilder.h"
Jyotsna Verma5eb59802013-05-07 19:53:00 +000029#include "llvm/CodeGen/MachineLoopInfo.h"
30#include "llvm/CodeGen/MachineRegisterInfo.h"
Bill Wendling0cb8c0b2013-08-21 20:36:42 +000031#include "llvm/CodeGen/Passes.h"
32#include "llvm/CodeGen/ScheduleDAGInstrs.h"
Jyotsna Verma5eb59802013-05-07 19:53:00 +000033#include "llvm/CodeGen/ScheduleHazardRecognizer.h"
Bill Wendling0cb8c0b2013-08-21 20:36:42 +000034#include "llvm/CodeGen/SchedulerRegistry.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000035#include "llvm/Support/CommandLine.h"
Jyotsna Verma5eb59802013-05-07 19:53:00 +000036#include "llvm/Support/Compiler.h"
37#include "llvm/Support/Debug.h"
Bill Wendling0cb8c0b2013-08-21 20:36:42 +000038#include "llvm/Support/MathExtras.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000039#include "llvm/Target/TargetInstrInfo.h"
40#include "llvm/Target/TargetMachine.h"
41#include "llvm/Target/TargetRegisterInfo.h"
Bill Wendling0cb8c0b2013-08-21 20:36:42 +000042#include <map>
Jyotsna Verma5eb59802013-05-07 19:53:00 +000043
44using namespace llvm;
45
Chandler Carruth84e68b22014-04-22 02:41:26 +000046#define DEBUG_TYPE "xfer"
47
Jyotsna Verma5eb59802013-05-07 19:53:00 +000048namespace {
49
50class HexagonSplitConst32AndConst64 : public MachineFunctionPass {
Eric Christopher1e65e7c2014-05-21 22:42:02 +000051 const HexagonTargetMachine &QTM;
Jyotsna Verma5eb59802013-05-07 19:53:00 +000052
53 public:
54 static char ID;
Eric Christopher1e65e7c2014-05-21 22:42:02 +000055 HexagonSplitConst32AndConst64(const HexagonTargetMachine &TM)
56 : MachineFunctionPass(ID), QTM(TM) {}
Jyotsna Verma5eb59802013-05-07 19:53:00 +000057
Craig Topper906c2cd2014-04-29 07:58:16 +000058 const char *getPassName() const override {
Jyotsna Verma5eb59802013-05-07 19:53:00 +000059 return "Hexagon Split Const32s and Const64s";
60 }
Craig Topper906c2cd2014-04-29 07:58:16 +000061 bool runOnMachineFunction(MachineFunction &Fn) override;
Jyotsna Verma5eb59802013-05-07 19:53:00 +000062};
63
64
65char HexagonSplitConst32AndConst64::ID = 0;
66
67
68bool HexagonSplitConst32AndConst64::runOnMachineFunction(MachineFunction &Fn) {
69
Eric Christopher0120db52014-05-21 22:42:07 +000070 const HexagonTargetObjectFile &TLOF =
Eric Christopherd9134482014-08-04 21:25:23 +000071 (const HexagonTargetObjectFile &)QTM.getSubtargetImpl()
72 ->getTargetLowering()
73 ->getObjFileLowering();
Eric Christopher0120db52014-05-21 22:42:07 +000074 if (TLOF.IsSmallDataEnabled())
75 return true;
76
Eric Christopherd9134482014-08-04 21:25:23 +000077 const TargetInstrInfo *TII = QTM.getSubtargetImpl()->getInstrInfo();
Jyotsna Verma5eb59802013-05-07 19:53:00 +000078
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 Christopherd9134482014-08-04 21:25:23 +0000142 unsigned DestLo = QTM.getSubtargetImpl()->getRegisterInfo()->getSubReg(
143 DestReg, Hexagon::subreg_loreg);
144 unsigned DestHi = QTM.getSubtargetImpl()->getRegisterInfo()->getSubReg(
145 DestReg, Hexagon::subreg_hireg);
Jyotsna Verma5eb59802013-05-07 19:53:00 +0000146
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
178FunctionPass *
179llvm::createHexagonSplitConst32AndConst64(const HexagonTargetMachine &TM) {
180 return new HexagonSplitConst32AndConst64(TM);
181}