blob: 5599e1ba849604406a418dd0c0484d823cbdb18b [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- HexagonInstrInfo.cpp - Hexagon Instruction Information ------------===//
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002//
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// This file contains the Hexagon implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
Tony Linthicum1213a7a2011-12-12 21:14:40 +000014#include "HexagonInstrInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "Hexagon.h"
Craig Topperb25fda92012-03-17 18:46:09 +000016#include "HexagonRegisterInfo.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000017#include "HexagonSubtarget.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000018#include "llvm/ADT/STLExtras.h"
19#include "llvm/ADT/SmallVector.h"
Benjamin Kramerae87d7b2012-02-06 10:19:29 +000020#include "llvm/CodeGen/DFAPacketizer.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000021#include "llvm/CodeGen/MachineFrameInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/CodeGen/MachineInstrBuilder.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000023#include "llvm/CodeGen/MachineMemOperand.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "llvm/CodeGen/MachineRegisterInfo.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000025#include "llvm/CodeGen/PseudoSourceValue.h"
Jyotsna Verma5ed51812013-05-01 21:37:34 +000026#include "llvm/Support/Debug.h"
Benjamin Kramerae87d7b2012-02-06 10:19:29 +000027#include "llvm/Support/MathExtras.h"
Reid Kleckner1c76f1552013-05-03 00:54:56 +000028#include "llvm/Support/raw_ostream.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000029
Tony Linthicum1213a7a2011-12-12 21:14:40 +000030using namespace llvm;
31
Chandler Carruthe96dd892014-04-21 22:55:11 +000032#define DEBUG_TYPE "hexagon-instrinfo"
33
Chandler Carruthd174b722014-04-22 02:03:14 +000034#define GET_INSTRINFO_CTOR_DTOR
35#define GET_INSTRMAP_INFO
36#include "HexagonGenInstrInfo.inc"
37#include "HexagonGenDFAPacketizer.inc"
38
Tony Linthicum1213a7a2011-12-12 21:14:40 +000039///
40/// Constants for Hexagon instructions.
41///
42const int Hexagon_MEMW_OFFSET_MAX = 4095;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000043const int Hexagon_MEMW_OFFSET_MIN = -4096;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000044const int Hexagon_MEMD_OFFSET_MAX = 8191;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000045const int Hexagon_MEMD_OFFSET_MIN = -8192;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000046const int Hexagon_MEMH_OFFSET_MAX = 2047;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000047const int Hexagon_MEMH_OFFSET_MIN = -2048;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000048const int Hexagon_MEMB_OFFSET_MAX = 1023;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000049const int Hexagon_MEMB_OFFSET_MIN = -1024;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000050const int Hexagon_ADDI_OFFSET_MAX = 32767;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000051const int Hexagon_ADDI_OFFSET_MIN = -32768;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000052const int Hexagon_MEMD_AUTOINC_MAX = 56;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000053const int Hexagon_MEMD_AUTOINC_MIN = -64;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000054const int Hexagon_MEMW_AUTOINC_MAX = 28;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000055const int Hexagon_MEMW_AUTOINC_MIN = -32;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000056const int Hexagon_MEMH_AUTOINC_MAX = 14;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000057const int Hexagon_MEMH_AUTOINC_MIN = -16;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000058const int Hexagon_MEMB_AUTOINC_MAX = 7;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000059const int Hexagon_MEMB_AUTOINC_MIN = -8;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000060
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000061// Pin the vtable to this file.
62void HexagonInstrInfo::anchor() {}
Tony Linthicum1213a7a2011-12-12 21:14:40 +000063
64HexagonInstrInfo::HexagonInstrInfo(HexagonSubtarget &ST)
65 : HexagonGenInstrInfo(Hexagon::ADJCALLSTACKDOWN, Hexagon::ADJCALLSTACKUP),
Bill Wendling4a7a4082013-06-07 06:19:56 +000066 RI(ST), Subtarget(ST) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +000067}
68
69
70/// isLoadFromStackSlot - If the specified machine instruction is a direct
71/// load from a stack slot, return the virtual or physical register number of
72/// the destination along with the FrameIndex of the loaded stack slot. If
73/// not, return 0. This predicate must return 0 if the instruction has
74/// any side effects other than loading from the stack slot.
75unsigned HexagonInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
76 int &FrameIndex) const {
77
78
79 switch (MI->getOpcode()) {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000080 default: break;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000081 case Hexagon::LDriw:
82 case Hexagon::LDrid:
83 case Hexagon::LDrih:
Colin LeMahieu4b1eac42014-12-22 21:40:43 +000084 case Hexagon::L2_loadrb_io:
Colin LeMahieuaf1e5de2014-12-22 21:20:03 +000085 case Hexagon::L2_loadrub_io:
Tony Linthicum1213a7a2011-12-12 21:14:40 +000086 if (MI->getOperand(2).isFI() &&
87 MI->getOperand(1).isImm() && (MI->getOperand(1).getImm() == 0)) {
88 FrameIndex = MI->getOperand(2).getIndex();
89 return MI->getOperand(0).getReg();
90 }
91 break;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000092 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +000093 return 0;
94}
95
96
97/// isStoreToStackSlot - If the specified machine instruction is a direct
98/// store to a stack slot, return the virtual or physical register number of
99/// the source reg along with the FrameIndex of the loaded stack slot. If
100/// not, return 0. This predicate must return 0 if the instruction has
101/// any side effects other than storing to the stack slot.
102unsigned HexagonInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
103 int &FrameIndex) const {
104 switch (MI->getOpcode()) {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000105 default: break;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000106 case Hexagon::STriw:
107 case Hexagon::STrid:
108 case Hexagon::STrih:
109 case Hexagon::STrib:
110 if (MI->getOperand(2).isFI() &&
111 MI->getOperand(1).isImm() && (MI->getOperand(1).getImm() == 0)) {
Sirish Pande8bb97452012-05-12 05:54:15 +0000112 FrameIndex = MI->getOperand(0).getIndex();
113 return MI->getOperand(2).getReg();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000114 }
115 break;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000116 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000117 return 0;
118}
119
120
121unsigned
122HexagonInstrInfo::InsertBranch(MachineBasicBlock &MBB,MachineBasicBlock *TBB,
123 MachineBasicBlock *FBB,
124 const SmallVectorImpl<MachineOperand> &Cond,
125 DebugLoc DL) const{
126
Colin LeMahieudb0b13c2014-12-10 21:24:10 +0000127 int BOpc = Hexagon::J2_jump;
128 int BccOpc = Hexagon::J2_jumpt;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000129
130 assert(TBB && "InsertBranch must not be told to insert a fallthrough");
131
132 int regPos = 0;
133 // Check if ReverseBranchCondition has asked to reverse this branch
134 // If we want to reverse the branch an odd number of times, we want
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000135 // JMP_f.
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000136 if (!Cond.empty() && Cond[0].isImm() && Cond[0].getImm() == 0) {
Colin LeMahieudb0b13c2014-12-10 21:24:10 +0000137 BccOpc = Hexagon::J2_jumpf;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000138 regPos = 1;
139 }
140
Craig Topper062a2ba2014-04-25 05:30:21 +0000141 if (!FBB) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000142 if (Cond.empty()) {
143 // Due to a bug in TailMerging/CFG Optimization, we need to add a
144 // special case handling of a predicated jump followed by an
145 // unconditional jump. If not, Tail Merging and CFG Optimization go
146 // into an infinite loop.
147 MachineBasicBlock *NewTBB, *NewFBB;
148 SmallVector<MachineOperand, 4> Cond;
149 MachineInstr *Term = MBB.getFirstTerminator();
150 if (isPredicated(Term) && !AnalyzeBranch(MBB, NewTBB, NewFBB, Cond,
151 false)) {
152 MachineBasicBlock *NextBB =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000153 std::next(MachineFunction::iterator(&MBB));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000154 if (NewTBB == NextBB) {
155 ReverseBranchCondition(Cond);
156 RemoveBranch(MBB);
Craig Topper062a2ba2014-04-25 05:30:21 +0000157 return InsertBranch(MBB, TBB, nullptr, Cond, DL);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000158 }
159 }
160 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB);
161 } else {
162 BuildMI(&MBB, DL,
163 get(BccOpc)).addReg(Cond[regPos].getReg()).addMBB(TBB);
164 }
165 return 1;
166 }
167
168 BuildMI(&MBB, DL, get(BccOpc)).addReg(Cond[regPos].getReg()).addMBB(TBB);
169 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB);
170
171 return 2;
172}
173
174
175bool HexagonInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,
176 MachineBasicBlock *&TBB,
177 MachineBasicBlock *&FBB,
178 SmallVectorImpl<MachineOperand> &Cond,
179 bool AllowModify) const {
Craig Topper062a2ba2014-04-25 05:30:21 +0000180 TBB = nullptr;
181 FBB = nullptr;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000182
183 // If the block has no terminators, it just falls into the block after it.
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000184 MachineBasicBlock::instr_iterator I = MBB.instr_end();
185 if (I == MBB.instr_begin())
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000186 return false;
187
188 // A basic block may looks like this:
189 //
190 // [ insn
191 // EH_LABEL
192 // insn
193 // insn
194 // insn
195 // EH_LABEL
196 // insn ]
197 //
198 // It has two succs but does not have a terminator
199 // Don't know how to handle it.
200 do {
201 --I;
202 if (I->isEHLabel())
203 return true;
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000204 } while (I != MBB.instr_begin());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000205
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000206 I = MBB.instr_end();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000207 --I;
208
209 while (I->isDebugValue()) {
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000210 if (I == MBB.instr_begin())
211 return false;
212 --I;
213 }
214
215 // Delete the JMP if it's equivalent to a fall-through.
Colin LeMahieudb0b13c2014-12-10 21:24:10 +0000216 if (AllowModify && I->getOpcode() == Hexagon::J2_jump &&
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000217 MBB.isLayoutSuccessor(I->getOperand(0).getMBB())) {
218 DEBUG(dbgs()<< "\nErasing the jump to successor block\n";);
219 I->eraseFromParent();
220 I = MBB.instr_end();
221 if (I == MBB.instr_begin())
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000222 return false;
223 --I;
224 }
225 if (!isUnpredicatedTerminator(I))
226 return false;
227
228 // Get the last instruction in the block.
229 MachineInstr *LastInst = I;
Craig Topper062a2ba2014-04-25 05:30:21 +0000230 MachineInstr *SecondLastInst = nullptr;
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000231 // Find one more terminator if present.
232 do {
233 if (&*I != LastInst && !I->isBundle() && isUnpredicatedTerminator(I)) {
234 if (!SecondLastInst)
235 SecondLastInst = I;
236 else
237 // This is a third branch.
238 return true;
239 }
240 if (I == MBB.instr_begin())
241 break;
242 --I;
243 } while(I);
244
245 int LastOpcode = LastInst->getOpcode();
246
247 bool LastOpcodeHasJMP_c = PredOpcodeHasJMP_c(LastOpcode);
248 bool LastOpcodeHasNot = PredOpcodeHasNot(LastOpcode);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000249
250 // If there is only one terminator instruction, process it.
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000251 if (LastInst && !SecondLastInst) {
Colin LeMahieudb0b13c2014-12-10 21:24:10 +0000252 if (LastOpcode == Hexagon::J2_jump) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000253 TBB = LastInst->getOperand(0).getMBB();
254 return false;
255 }
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000256 if (LastOpcode == Hexagon::ENDLOOP0) {
257 TBB = LastInst->getOperand(0).getMBB();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000258 Cond.push_back(LastInst->getOperand(0));
259 return false;
260 }
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000261 if (LastOpcodeHasJMP_c) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000262 TBB = LastInst->getOperand(1).getMBB();
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000263 if (LastOpcodeHasNot) {
264 Cond.push_back(MachineOperand::CreateImm(0));
265 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000266 Cond.push_back(LastInst->getOperand(0));
267 return false;
268 }
269 // Otherwise, don't know what this is.
270 return true;
271 }
272
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000273 int SecLastOpcode = SecondLastInst->getOpcode();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000274
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000275 bool SecLastOpcodeHasJMP_c = PredOpcodeHasJMP_c(SecLastOpcode);
276 bool SecLastOpcodeHasNot = PredOpcodeHasNot(SecLastOpcode);
Colin LeMahieudb0b13c2014-12-10 21:24:10 +0000277 if (SecLastOpcodeHasJMP_c && (LastOpcode == Hexagon::J2_jump)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000278 TBB = SecondLastInst->getOperand(1).getMBB();
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000279 if (SecLastOpcodeHasNot)
280 Cond.push_back(MachineOperand::CreateImm(0));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000281 Cond.push_back(SecondLastInst->getOperand(0));
282 FBB = LastInst->getOperand(0).getMBB();
283 return false;
284 }
285
286 // If the block ends with two Hexagon:JMPs, handle it. The second one is not
287 // executed, so remove it.
Colin LeMahieudb0b13c2014-12-10 21:24:10 +0000288 if (SecLastOpcode == Hexagon::J2_jump && LastOpcode == Hexagon::J2_jump) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000289 TBB = SecondLastInst->getOperand(0).getMBB();
290 I = LastInst;
291 if (AllowModify)
292 I->eraseFromParent();
293 return false;
294 }
295
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000296 // If the block ends with an ENDLOOP, and JMP, handle it.
297 if (SecLastOpcode == Hexagon::ENDLOOP0 &&
Colin LeMahieudb0b13c2014-12-10 21:24:10 +0000298 LastOpcode == Hexagon::J2_jump) {
Jyotsna Verma5ed51812013-05-01 21:37:34 +0000299 TBB = SecondLastInst->getOperand(0).getMBB();
300 Cond.push_back(SecondLastInst->getOperand(0));
301 FBB = LastInst->getOperand(0).getMBB();
302 return false;
303 }
304
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000305 // Otherwise, can't handle this.
306 return true;
307}
308
309
310unsigned HexagonInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
Colin LeMahieudb0b13c2014-12-10 21:24:10 +0000311 int BOpc = Hexagon::J2_jump;
312 int BccOpc = Hexagon::J2_jumpt;
313 int BccOpcNot = Hexagon::J2_jumpf;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000314
315 MachineBasicBlock::iterator I = MBB.end();
316 if (I == MBB.begin()) return 0;
317 --I;
318 if (I->getOpcode() != BOpc && I->getOpcode() != BccOpc &&
319 I->getOpcode() != BccOpcNot)
320 return 0;
321
322 // Remove the branch.
323 I->eraseFromParent();
324
325 I = MBB.end();
326
327 if (I == MBB.begin()) return 1;
328 --I;
329 if (I->getOpcode() != BccOpc && I->getOpcode() != BccOpcNot)
330 return 1;
331
332 // Remove the branch.
333 I->eraseFromParent();
334 return 2;
335}
336
337
Krzysztof Parzyszekcfe285e2013-02-11 20:04:29 +0000338/// \brief For a comparison instruction, return the source registers in
339/// \p SrcReg and \p SrcReg2 if having two register operands, and the value it
340/// compares against in CmpValue. Return true if the comparison instruction
341/// can be analyzed.
342bool HexagonInstrInfo::analyzeCompare(const MachineInstr *MI,
343 unsigned &SrcReg, unsigned &SrcReg2,
344 int &Mask, int &Value) const {
345 unsigned Opc = MI->getOpcode();
346
347 // Set mask and the first source register.
348 switch (Opc) {
Colin LeMahieu9bfe5472014-12-08 21:56:47 +0000349 case Hexagon::C2_cmpeqp:
Colin LeMahieu6e0f9f82014-11-26 19:43:12 +0000350 case Hexagon::C2_cmpeqi:
Colin LeMahieu902157c2014-11-25 18:20:52 +0000351 case Hexagon::C2_cmpeq:
Colin LeMahieu9bfe5472014-12-08 21:56:47 +0000352 case Hexagon::C2_cmpgtp:
353 case Hexagon::C2_cmpgtup:
Colin LeMahieu6e0f9f82014-11-26 19:43:12 +0000354 case Hexagon::C2_cmpgtui:
Colin LeMahieu902157c2014-11-25 18:20:52 +0000355 case Hexagon::C2_cmpgtu:
Colin LeMahieu6e0f9f82014-11-26 19:43:12 +0000356 case Hexagon::C2_cmpgti:
Colin LeMahieu902157c2014-11-25 18:20:52 +0000357 case Hexagon::C2_cmpgt:
Krzysztof Parzyszekcfe285e2013-02-11 20:04:29 +0000358 SrcReg = MI->getOperand(1).getReg();
359 Mask = ~0;
360 break;
361 case Hexagon::CMPbEQri_V4:
362 case Hexagon::CMPbEQrr_sbsb_V4:
363 case Hexagon::CMPbEQrr_ubub_V4:
364 case Hexagon::CMPbGTUri_V4:
365 case Hexagon::CMPbGTUrr_V4:
366 case Hexagon::CMPbGTrr_V4:
367 SrcReg = MI->getOperand(1).getReg();
368 Mask = 0xFF;
369 break;
370 case Hexagon::CMPhEQri_V4:
371 case Hexagon::CMPhEQrr_shl_V4:
372 case Hexagon::CMPhEQrr_xor_V4:
373 case Hexagon::CMPhGTUri_V4:
374 case Hexagon::CMPhGTUrr_V4:
375 case Hexagon::CMPhGTrr_shl_V4:
376 SrcReg = MI->getOperand(1).getReg();
377 Mask = 0xFFFF;
378 break;
379 }
380
381 // Set the value/second source register.
382 switch (Opc) {
Colin LeMahieu9bfe5472014-12-08 21:56:47 +0000383 case Hexagon::C2_cmpeqp:
Colin LeMahieu902157c2014-11-25 18:20:52 +0000384 case Hexagon::C2_cmpeq:
Colin LeMahieu9bfe5472014-12-08 21:56:47 +0000385 case Hexagon::C2_cmpgtp:
386 case Hexagon::C2_cmpgtup:
Colin LeMahieu902157c2014-11-25 18:20:52 +0000387 case Hexagon::C2_cmpgtu:
388 case Hexagon::C2_cmpgt:
Krzysztof Parzyszekcfe285e2013-02-11 20:04:29 +0000389 case Hexagon::CMPbEQrr_sbsb_V4:
390 case Hexagon::CMPbEQrr_ubub_V4:
391 case Hexagon::CMPbGTUrr_V4:
392 case Hexagon::CMPbGTrr_V4:
393 case Hexagon::CMPhEQrr_shl_V4:
394 case Hexagon::CMPhEQrr_xor_V4:
395 case Hexagon::CMPhGTUrr_V4:
396 case Hexagon::CMPhGTrr_shl_V4:
Krzysztof Parzyszekcfe285e2013-02-11 20:04:29 +0000397 SrcReg2 = MI->getOperand(2).getReg();
398 return true;
399
Colin LeMahieu6e0f9f82014-11-26 19:43:12 +0000400 case Hexagon::C2_cmpeqi:
401 case Hexagon::C2_cmpgtui:
402 case Hexagon::C2_cmpgti:
Krzysztof Parzyszekcfe285e2013-02-11 20:04:29 +0000403 case Hexagon::CMPbEQri_V4:
404 case Hexagon::CMPbGTUri_V4:
405 case Hexagon::CMPhEQri_V4:
406 case Hexagon::CMPhGTUri_V4:
407 SrcReg2 = 0;
408 Value = MI->getOperand(2).getImm();
409 return true;
410 }
411
412 return false;
413}
414
415
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000416void HexagonInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
417 MachineBasicBlock::iterator I, DebugLoc DL,
418 unsigned DestReg, unsigned SrcReg,
419 bool KillSrc) const {
420 if (Hexagon::IntRegsRegClass.contains(SrcReg, DestReg)) {
Colin LeMahieu4af437f2014-12-09 20:23:30 +0000421 BuildMI(MBB, I, DL, get(Hexagon::A2_tfr), DestReg).addReg(SrcReg);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000422 return;
423 }
424 if (Hexagon::DoubleRegsRegClass.contains(SrcReg, DestReg)) {
Colin LeMahieu4af437f2014-12-09 20:23:30 +0000425 BuildMI(MBB, I, DL, get(Hexagon::A2_tfrp), DestReg).addReg(SrcReg);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000426 return;
427 }
428 if (Hexagon::PredRegsRegClass.contains(SrcReg, DestReg)) {
429 // Map Pd = Ps to Pd = or(Ps, Ps).
Colin LeMahieu5cf56322014-12-08 23:55:43 +0000430 BuildMI(MBB, I, DL, get(Hexagon::C2_or),
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000431 DestReg).addReg(SrcReg).addReg(SrcReg);
432 return;
433 }
Sirish Pande8bb97452012-05-12 05:54:15 +0000434 if (Hexagon::DoubleRegsRegClass.contains(DestReg) &&
435 Hexagon::IntRegsRegClass.contains(SrcReg)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000436 // We can have an overlap between single and double reg: r1:0 = r0.
437 if(SrcReg == RI.getSubReg(DestReg, Hexagon::subreg_loreg)) {
438 // r1:0 = r0
Colin LeMahieu4af437f2014-12-09 20:23:30 +0000439 BuildMI(MBB, I, DL, get(Hexagon::A2_tfrsi), (RI.getSubReg(DestReg,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000440 Hexagon::subreg_hireg))).addImm(0);
441 } else {
442 // r1:0 = r1 or no overlap.
Colin LeMahieu4af437f2014-12-09 20:23:30 +0000443 BuildMI(MBB, I, DL, get(Hexagon::A2_tfr), (RI.getSubReg(DestReg,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000444 Hexagon::subreg_loreg))).addReg(SrcReg);
Colin LeMahieu4af437f2014-12-09 20:23:30 +0000445 BuildMI(MBB, I, DL, get(Hexagon::A2_tfrsi), (RI.getSubReg(DestReg,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000446 Hexagon::subreg_hireg))).addImm(0);
447 }
448 return;
449 }
Colin LeMahieu402f7722014-12-19 18:56:10 +0000450 if (Hexagon::CtrRegsRegClass.contains(DestReg) &&
Sirish Pande8bb97452012-05-12 05:54:15 +0000451 Hexagon::IntRegsRegClass.contains(SrcReg)) {
Colin LeMahieu0f850bd2014-12-19 20:29:29 +0000452 BuildMI(MBB, I, DL, get(Hexagon::A2_tfrrcr), DestReg).addReg(SrcReg);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000453 return;
Sirish Pande30804c22012-02-15 18:52:27 +0000454 }
Anshuman Dasguptae96f8042013-02-13 22:56:34 +0000455 if (Hexagon::PredRegsRegClass.contains(SrcReg) &&
456 Hexagon::IntRegsRegClass.contains(DestReg)) {
Colin LeMahieu30dcb232014-12-09 18:16:49 +0000457 BuildMI(MBB, I, DL, get(Hexagon::C2_tfrpr), DestReg).
Anshuman Dasguptae96f8042013-02-13 22:56:34 +0000458 addReg(SrcReg, getKillRegState(KillSrc));
459 return;
460 }
461 if (Hexagon::IntRegsRegClass.contains(SrcReg) &&
462 Hexagon::PredRegsRegClass.contains(DestReg)) {
Colin LeMahieu30dcb232014-12-09 18:16:49 +0000463 BuildMI(MBB, I, DL, get(Hexagon::C2_tfrrp), DestReg).
Anshuman Dasguptae96f8042013-02-13 22:56:34 +0000464 addReg(SrcReg, getKillRegState(KillSrc));
465 return;
466 }
Sirish Pande30804c22012-02-15 18:52:27 +0000467
468 llvm_unreachable("Unimplemented");
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000469}
470
471
472void HexagonInstrInfo::
473storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
474 unsigned SrcReg, bool isKill, int FI,
475 const TargetRegisterClass *RC,
476 const TargetRegisterInfo *TRI) const {
477
478 DebugLoc DL = MBB.findDebugLoc(I);
479 MachineFunction &MF = *MBB.getParent();
480 MachineFrameInfo &MFI = *MF.getFrameInfo();
481 unsigned Align = MFI.getObjectAlignment(FI);
482
483 MachineMemOperand *MMO =
484 MF.getMachineMemOperand(
485 MachinePointerInfo(PseudoSourceValue::getFixedStack(FI)),
486 MachineMemOperand::MOStore,
487 MFI.getObjectSize(FI),
488 Align);
489
Craig Topperc7242e02012-04-20 07:30:17 +0000490 if (Hexagon::IntRegsRegClass.hasSubClassEq(RC)) {
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000491 BuildMI(MBB, I, DL, get(Hexagon::STriw))
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000492 .addFrameIndex(FI).addImm(0)
493 .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO);
Craig Topperc7242e02012-04-20 07:30:17 +0000494 } else if (Hexagon::DoubleRegsRegClass.hasSubClassEq(RC)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000495 BuildMI(MBB, I, DL, get(Hexagon::STrid))
496 .addFrameIndex(FI).addImm(0)
497 .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO);
Craig Topperc7242e02012-04-20 07:30:17 +0000498 } else if (Hexagon::PredRegsRegClass.hasSubClassEq(RC)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000499 BuildMI(MBB, I, DL, get(Hexagon::STriw_pred))
500 .addFrameIndex(FI).addImm(0)
501 .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO);
502 } else {
Craig Toppere55c5562012-02-07 02:50:20 +0000503 llvm_unreachable("Unimplemented");
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000504 }
505}
506
507
508void HexagonInstrInfo::storeRegToAddr(
509 MachineFunction &MF, unsigned SrcReg,
510 bool isKill,
511 SmallVectorImpl<MachineOperand> &Addr,
512 const TargetRegisterClass *RC,
513 SmallVectorImpl<MachineInstr*> &NewMIs) const
514{
Craig Toppere55c5562012-02-07 02:50:20 +0000515 llvm_unreachable("Unimplemented");
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000516}
517
518
519void HexagonInstrInfo::
520loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
521 unsigned DestReg, int FI,
522 const TargetRegisterClass *RC,
523 const TargetRegisterInfo *TRI) const {
524 DebugLoc DL = MBB.findDebugLoc(I);
525 MachineFunction &MF = *MBB.getParent();
526 MachineFrameInfo &MFI = *MF.getFrameInfo();
527 unsigned Align = MFI.getObjectAlignment(FI);
528
529 MachineMemOperand *MMO =
530 MF.getMachineMemOperand(
531 MachinePointerInfo(PseudoSourceValue::getFixedStack(FI)),
532 MachineMemOperand::MOLoad,
533 MFI.getObjectSize(FI),
534 Align);
Craig Topperc7242e02012-04-20 07:30:17 +0000535 if (RC == &Hexagon::IntRegsRegClass) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000536 BuildMI(MBB, I, DL, get(Hexagon::LDriw), DestReg)
537 .addFrameIndex(FI).addImm(0).addMemOperand(MMO);
Craig Topperc7242e02012-04-20 07:30:17 +0000538 } else if (RC == &Hexagon::DoubleRegsRegClass) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000539 BuildMI(MBB, I, DL, get(Hexagon::LDrid), DestReg)
540 .addFrameIndex(FI).addImm(0).addMemOperand(MMO);
Craig Topperc7242e02012-04-20 07:30:17 +0000541 } else if (RC == &Hexagon::PredRegsRegClass) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000542 BuildMI(MBB, I, DL, get(Hexagon::LDriw_pred), DestReg)
543 .addFrameIndex(FI).addImm(0).addMemOperand(MMO);
544 } else {
Craig Toppere55c5562012-02-07 02:50:20 +0000545 llvm_unreachable("Can't store this register to stack slot");
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000546 }
547}
548
549
550void HexagonInstrInfo::loadRegFromAddr(MachineFunction &MF, unsigned DestReg,
551 SmallVectorImpl<MachineOperand> &Addr,
552 const TargetRegisterClass *RC,
553 SmallVectorImpl<MachineInstr*> &NewMIs) const {
Craig Toppere55c5562012-02-07 02:50:20 +0000554 llvm_unreachable("Unimplemented");
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000555}
556
557
558MachineInstr *HexagonInstrInfo::foldMemoryOperandImpl(MachineFunction &MF,
559 MachineInstr* MI,
560 const SmallVectorImpl<unsigned> &Ops,
561 int FI) const {
562 // Hexagon_TODO: Implement.
Craig Topper062a2ba2014-04-25 05:30:21 +0000563 return nullptr;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000564}
565
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000566unsigned HexagonInstrInfo::createVR(MachineFunction* MF, MVT VT) const {
567
568 MachineRegisterInfo &RegInfo = MF->getRegInfo();
569 const TargetRegisterClass *TRC;
Sirish Pande69295b82012-05-10 20:20:25 +0000570 if (VT == MVT::i1) {
Craig Topperc7242e02012-04-20 07:30:17 +0000571 TRC = &Hexagon::PredRegsRegClass;
Sirish Pande69295b82012-05-10 20:20:25 +0000572 } else if (VT == MVT::i32 || VT == MVT::f32) {
Craig Topperc7242e02012-04-20 07:30:17 +0000573 TRC = &Hexagon::IntRegsRegClass;
Sirish Pande69295b82012-05-10 20:20:25 +0000574 } else if (VT == MVT::i64 || VT == MVT::f64) {
Craig Topperc7242e02012-04-20 07:30:17 +0000575 TRC = &Hexagon::DoubleRegsRegClass;
Sirish Pande69295b82012-05-10 20:20:25 +0000576 } else {
Benjamin Kramerb6684012011-12-27 11:41:05 +0000577 llvm_unreachable("Cannot handle this register class");
Sirish Pande69295b82012-05-10 20:20:25 +0000578 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000579
580 unsigned NewReg = RegInfo.createVirtualRegister(TRC);
581 return NewReg;
582}
583
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000584bool HexagonInstrInfo::isExtendable(const MachineInstr *MI) const {
Jyotsna Vermaf1214a82013-03-05 18:51:42 +0000585 // Constant extenders are allowed only for V4 and above.
586 if (!Subtarget.hasV4TOps())
587 return false;
588
589 const MCInstrDesc &MID = MI->getDesc();
590 const uint64_t F = MID.TSFlags;
591 if ((F >> HexagonII::ExtendablePos) & HexagonII::ExtendableMask)
592 return true;
593
594 // TODO: This is largely obsolete now. Will need to be removed
595 // in consecutive patches.
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000596 switch(MI->getOpcode()) {
Jyotsna Vermaf1214a82013-03-05 18:51:42 +0000597 // TFR_FI Remains a special case.
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000598 case Hexagon::TFR_FI:
599 return true;
Jyotsna Vermaf1214a82013-03-05 18:51:42 +0000600 default:
601 return false;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000602 }
Jyotsna Vermaf1214a82013-03-05 18:51:42 +0000603 return false;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000604}
605
Jyotsna Vermaf1214a82013-03-05 18:51:42 +0000606// This returns true in two cases:
607// - The OP code itself indicates that this is an extended instruction.
608// - One of MOs has been marked with HMOTF_ConstExtended flag.
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000609bool HexagonInstrInfo::isExtended(const MachineInstr *MI) const {
Jyotsna Vermaf1214a82013-03-05 18:51:42 +0000610 // First check if this is permanently extended op code.
611 const uint64_t F = MI->getDesc().TSFlags;
612 if ((F >> HexagonII::ExtendedPos) & HexagonII::ExtendedMask)
613 return true;
614 // Use MO operand flags to determine if one of MI's operands
615 // has HMOTF_ConstExtended flag set.
616 for (MachineInstr::const_mop_iterator I = MI->operands_begin(),
617 E = MI->operands_end(); I != E; ++I) {
618 if (I->getTargetFlags() && HexagonII::HMOTF_ConstExtended)
Sirish Pande69295b82012-05-10 20:20:25 +0000619 return true;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000620 }
Jyotsna Vermaf1214a82013-03-05 18:51:42 +0000621 return false;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000622}
623
Jyotsna Verma84c47102013-05-06 18:49:23 +0000624bool HexagonInstrInfo::isBranch (const MachineInstr *MI) const {
625 return MI->getDesc().isBranch();
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000626}
627
Jyotsna Vermaf1214a82013-03-05 18:51:42 +0000628bool HexagonInstrInfo::isNewValueInst(const MachineInstr *MI) const {
629 if (isNewValueJump(MI))
630 return true;
631
632 if (isNewValueStore(MI))
633 return true;
634
635 return false;
636}
637
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000638bool HexagonInstrInfo::isSaveCalleeSavedRegsCall(const MachineInstr *MI) const {
639 return MI->getOpcode() == Hexagon::SAVE_REGISTERS_CALL_V4;
640}
Andrew Trickd06df962012-02-01 22:13:57 +0000641
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000642bool HexagonInstrInfo::isPredicable(MachineInstr *MI) const {
643 bool isPred = MI->getDesc().isPredicable();
644
645 if (!isPred)
646 return false;
647
648 const int Opc = MI->getOpcode();
649
650 switch(Opc) {
Colin LeMahieu4af437f2014-12-09 20:23:30 +0000651 case Hexagon::A2_tfrsi:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000652 return isInt<12>(MI->getOperand(1).getImm());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000653
654 case Hexagon::STrid:
655 case Hexagon::STrid_indexed:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000656 return isShiftedUInt<6,3>(MI->getOperand(1).getImm());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000657
658 case Hexagon::STriw:
659 case Hexagon::STriw_indexed:
660 case Hexagon::STriw_nv_V4:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000661 return isShiftedUInt<6,2>(MI->getOperand(1).getImm());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000662
663 case Hexagon::STrih:
664 case Hexagon::STrih_indexed:
665 case Hexagon::STrih_nv_V4:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000666 return isShiftedUInt<6,1>(MI->getOperand(1).getImm());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000667
668 case Hexagon::STrib:
669 case Hexagon::STrib_indexed:
670 case Hexagon::STrib_nv_V4:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000671 return isUInt<6>(MI->getOperand(1).getImm());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000672
673 case Hexagon::LDrid:
674 case Hexagon::LDrid_indexed:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000675 return isShiftedUInt<6,3>(MI->getOperand(2).getImm());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000676
677 case Hexagon::LDriw:
678 case Hexagon::LDriw_indexed:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000679 return isShiftedUInt<6,2>(MI->getOperand(2).getImm());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000680
681 case Hexagon::LDrih:
Colin LeMahieua9386d22014-12-23 16:42:57 +0000682 case Hexagon::L2_loadruh_io:
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000683 case Hexagon::LDrih_indexed:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000684 return isShiftedUInt<6,1>(MI->getOperand(2).getImm());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000685
Colin LeMahieu4b1eac42014-12-22 21:40:43 +0000686 case Hexagon::L2_loadrb_io:
Colin LeMahieuaf1e5de2014-12-22 21:20:03 +0000687 case Hexagon::L2_loadrub_io:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000688 return isUInt<6>(MI->getOperand(2).getImm());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000689
690 case Hexagon::POST_LDrid:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000691 return isShiftedInt<4,3>(MI->getOperand(3).getImm());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000692
693 case Hexagon::POST_LDriw:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000694 return isShiftedInt<4,2>(MI->getOperand(3).getImm());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000695
696 case Hexagon::POST_LDrih:
697 case Hexagon::POST_LDriuh:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000698 return isShiftedInt<4,1>(MI->getOperand(3).getImm());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000699
700 case Hexagon::POST_LDrib:
701 case Hexagon::POST_LDriub:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000702 return isInt<4>(MI->getOperand(3).getImm());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000703
704 case Hexagon::STrib_imm_V4:
705 case Hexagon::STrih_imm_V4:
706 case Hexagon::STriw_imm_V4:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000707 return (isUInt<6>(MI->getOperand(1).getImm()) &&
708 isInt<6>(MI->getOperand(2).getImm()));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000709
710 case Hexagon::ADD_ri:
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000711 return isInt<8>(MI->getOperand(2).getImm());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000712
Colin LeMahieu3b3197e2014-11-24 17:44:19 +0000713 case Hexagon::A2_aslh:
Colin LeMahieu397a25e2014-11-24 18:04:42 +0000714 case Hexagon::A2_asrh:
Colin LeMahieu91ffec92014-11-21 21:35:52 +0000715 case Hexagon::A2_sxtb:
Colin LeMahieu310991c2014-11-21 21:54:59 +0000716 case Hexagon::A2_sxth:
Colin LeMahieubb7d6f52014-11-24 16:48:43 +0000717 case Hexagon::A2_zxtb:
Colin LeMahieu098256c2014-11-24 17:11:34 +0000718 case Hexagon::A2_zxth:
Sirish Pande8bb97452012-05-12 05:54:15 +0000719 return Subtarget.hasV4TOps();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000720 }
721
722 return true;
723}
724
Sirish Pande8bb97452012-05-12 05:54:15 +0000725// This function performs the following inversiones:
726//
727// cPt ---> cNotPt
728// cNotPt ---> cPt
729//
Sirish Pande30804c22012-02-15 18:52:27 +0000730unsigned HexagonInstrInfo::getInvertedPredicatedOpcode(const int Opc) const {
Jyotsna Verma84c47102013-05-06 18:49:23 +0000731 int InvPredOpcode;
732 InvPredOpcode = isPredicatedTrue(Opc) ? Hexagon::getFalsePredOpcode(Opc)
733 : Hexagon::getTruePredOpcode(Opc);
734 if (InvPredOpcode >= 0) // Valid instruction with the inverted predicate.
735 return InvPredOpcode;
736
Sirish Pande30804c22012-02-15 18:52:27 +0000737 switch(Opc) {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000738 default: llvm_unreachable("Unexpected predicated instruction");
Colin LeMahieub580d7d2014-12-09 19:23:45 +0000739 case Hexagon::C2_ccombinewt:
740 return Hexagon::C2_ccombinewf;
741 case Hexagon::C2_ccombinewf:
742 return Hexagon::C2_ccombinewt;
Sirish Pande30804c22012-02-15 18:52:27 +0000743
Jyotsna Verma978e9722013-05-09 18:25:44 +0000744 // Dealloc_return.
Sirish Pande30804c22012-02-15 18:52:27 +0000745 case Hexagon::DEALLOC_RET_cPt_V4:
746 return Hexagon::DEALLOC_RET_cNotPt_V4;
747 case Hexagon::DEALLOC_RET_cNotPt_V4:
748 return Hexagon::DEALLOC_RET_cPt_V4;
Sirish Pande30804c22012-02-15 18:52:27 +0000749 }
750}
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000751
Jyotsna Verma300f0b92013-05-10 20:27:34 +0000752// New Value Store instructions.
753bool HexagonInstrInfo::isNewValueStore(const MachineInstr *MI) const {
754 const uint64_t F = MI->getDesc().TSFlags;
755
756 return ((F >> HexagonII::NVStorePos) & HexagonII::NVStoreMask);
757}
758
759bool HexagonInstrInfo::isNewValueStore(unsigned Opcode) const {
760 const uint64_t F = get(Opcode).TSFlags;
761
762 return ((F >> HexagonII::NVStorePos) & HexagonII::NVStoreMask);
763}
Andrew Trickd06df962012-02-01 22:13:57 +0000764
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000765int HexagonInstrInfo::
766getMatchingCondBranchOpcode(int Opc, bool invertPredicate) const {
Pranav Bhandarkar34b60182012-11-01 19:13:23 +0000767 enum Hexagon::PredSense inPredSense;
768 inPredSense = invertPredicate ? Hexagon::PredSense_false :
769 Hexagon::PredSense_true;
770 int CondOpcode = Hexagon::getPredOpcode(Opc, inPredSense);
771 if (CondOpcode >= 0) // Valid Conditional opcode/instruction
772 return CondOpcode;
773
774 // This switch case will be removed once all the instructions have been
775 // modified to use relation maps.
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000776 switch(Opc) {
Sirish Pande69295b82012-05-10 20:20:25 +0000777 case Hexagon::TFRI_f:
778 return !invertPredicate ? Hexagon::TFRI_cPt_f :
779 Hexagon::TFRI_cNotPt_f;
Colin LeMahieub580d7d2014-12-09 19:23:45 +0000780 case Hexagon::A2_combinew:
781 return !invertPredicate ? Hexagon::C2_ccombinewt :
782 Hexagon::C2_ccombinewf;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000783
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000784 // Word.
Jyotsna Verma978e9722013-05-09 18:25:44 +0000785 case Hexagon::STriw_f:
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000786 return !invertPredicate ? Hexagon::STriw_cPt :
787 Hexagon::STriw_cNotPt;
Jyotsna Verma978e9722013-05-09 18:25:44 +0000788 case Hexagon::STriw_indexed_f:
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000789 return !invertPredicate ? Hexagon::STriw_indexed_cPt :
790 Hexagon::STriw_indexed_cNotPt;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000791
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000792 // DEALLOC_RETURN.
793 case Hexagon::DEALLOC_RET_V4:
794 return !invertPredicate ? Hexagon::DEALLOC_RET_cPt_V4 :
795 Hexagon::DEALLOC_RET_cNotPt_V4;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000796 }
Benjamin Kramerb6684012011-12-27 11:41:05 +0000797 llvm_unreachable("Unexpected predicable instruction");
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000798}
799
800
801bool HexagonInstrInfo::
802PredicateInstruction(MachineInstr *MI,
803 const SmallVectorImpl<MachineOperand> &Cond) const {
804 int Opc = MI->getOpcode();
805 assert (isPredicable(MI) && "Expected predicable instruction");
806 bool invertJump = (!Cond.empty() && Cond[0].isImm() &&
807 (Cond[0].getImm() == 0));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000808
Jyotsna Verma39f7a2b2013-02-12 16:06:23 +0000809 // This will change MI's opcode to its predicate version.
810 // However, its operand list is still the old one, i.e. the
811 // non-predicate one.
812 MI->setDesc(get(getMatchingCondBranchOpcode(Opc, invertJump)));
813
814 int oper = -1;
815 unsigned int GAIdx = 0;
816
817 // Indicates whether the current MI has a GlobalAddress operand
818 bool hasGAOpnd = false;
819 std::vector<MachineOperand> tmpOpnds;
820
821 // Indicates whether we need to shift operands to right.
822 bool needShift = true;
823
824 // The predicate is ALWAYS the FIRST input operand !!!
825 if (MI->getNumOperands() == 0) {
826 // The non-predicate version of MI does not take any operands,
827 // i.e. no outs and no ins. In this condition, the predicate
828 // operand will be directly placed at Operands[0]. No operand
829 // shift is needed.
830 // Example: BARRIER
831 needShift = false;
832 oper = -1;
833 }
834 else if ( MI->getOperand(MI->getNumOperands()-1).isReg()
835 && MI->getOperand(MI->getNumOperands()-1).isDef()
836 && !MI->getOperand(MI->getNumOperands()-1).isImplicit()) {
837 // The non-predicate version of MI does not have any input operands.
838 // In this condition, we extend the length of Operands[] by one and
839 // copy the original last operand to the newly allocated slot.
840 // At this moment, it is just a place holder. Later, we will put
841 // predicate operand directly into it. No operand shift is needed.
842 // Example: r0=BARRIER (this is a faked insn used here for illustration)
843 MI->addOperand(MI->getOperand(MI->getNumOperands()-1));
844 needShift = false;
845 oper = MI->getNumOperands() - 2;
846 }
847 else {
848 // We need to right shift all input operands by one. Duplicate the
849 // last operand into the newly allocated slot.
850 MI->addOperand(MI->getOperand(MI->getNumOperands()-1));
851 }
852
853 if (needShift)
854 {
855 // Operands[ MI->getNumOperands() - 2 ] has been copied into
856 // Operands[ MI->getNumOperands() - 1 ], so we start from
857 // Operands[ MI->getNumOperands() - 3 ].
858 // oper is a signed int.
859 // It is ok if "MI->getNumOperands()-3" is -3, -2, or -1.
860 for (oper = MI->getNumOperands() - 3; oper >= 0; --oper)
861 {
862 MachineOperand &MO = MI->getOperand(oper);
863
864 // Opnd[0] Opnd[1] Opnd[2] Opnd[3] Opnd[4] Opnd[5] Opnd[6] Opnd[7]
865 // <Def0> <Def1> <Use0> <Use1> <ImpDef0> <ImpDef1> <ImpUse0> <ImpUse1>
866 // /\~
867 // /||\~
868 // ||
869 // Predicate Operand here
870 if (MO.isReg() && !MO.isUse() && !MO.isImplicit()) {
871 break;
872 }
873 if (MO.isReg()) {
874 MI->getOperand(oper+1).ChangeToRegister(MO.getReg(), MO.isDef(),
875 MO.isImplicit(), MO.isKill(),
876 MO.isDead(), MO.isUndef(),
877 MO.isDebug());
878 }
879 else if (MO.isImm()) {
880 MI->getOperand(oper+1).ChangeToImmediate(MO.getImm());
881 }
882 else if (MO.isGlobal()) {
883 // MI can not have more than one GlobalAddress operand.
884 assert(hasGAOpnd == false && "MI can only have one GlobalAddress opnd");
885
886 // There is no member function called "ChangeToGlobalAddress" in the
887 // MachineOperand class (not like "ChangeToRegister" and
888 // "ChangeToImmediate"). So we have to remove them from Operands[] list
889 // first, and then add them back after we have inserted the predicate
890 // operand. tmpOpnds[] is to remember these operands before we remove
891 // them.
892 tmpOpnds.push_back(MO);
893
894 // Operands[oper] is a GlobalAddress operand;
895 // Operands[oper+1] has been copied into Operands[oper+2];
896 hasGAOpnd = true;
897 GAIdx = oper;
898 continue;
899 }
900 else {
901 assert(false && "Unexpected operand type");
902 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000903 }
904 }
905
906 int regPos = invertJump ? 1 : 0;
907 MachineOperand PredMO = Cond[regPos];
Jyotsna Verma39f7a2b2013-02-12 16:06:23 +0000908
909 // [oper] now points to the last explicit Def. Predicate operand must be
910 // located at [oper+1]. See diagram above.
911 // This assumes that the predicate is always the first operand,
912 // i.e. Operands[0+numResults], in the set of inputs
913 // It is better to have an assert here to check this. But I don't know how
914 // to write this assert because findFirstPredOperandIdx() would return -1
915 if (oper < -1) oper = -1;
Jyotsna Vermacd66c0a2013-05-01 21:27:30 +0000916
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000917 MI->getOperand(oper+1).ChangeToRegister(PredMO.getReg(), PredMO.isDef(),
Jyotsna Vermacd66c0a2013-05-01 21:27:30 +0000918 PredMO.isImplicit(), false,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000919 PredMO.isDead(), PredMO.isUndef(),
920 PredMO.isDebug());
921
Jyotsna Vermacd66c0a2013-05-01 21:27:30 +0000922 MachineRegisterInfo &RegInfo = MI->getParent()->getParent()->getRegInfo();
923 RegInfo.clearKillFlags(PredMO.getReg());
924
Jyotsna Verma39f7a2b2013-02-12 16:06:23 +0000925 if (hasGAOpnd)
926 {
927 unsigned int i;
928
929 // Operands[GAIdx] is the original GlobalAddress operand, which is
930 // already copied into tmpOpnds[0].
931 // Operands[GAIdx] now stores a copy of Operands[GAIdx-1]
932 // Operands[GAIdx+1] has already been copied into Operands[GAIdx+2],
933 // so we start from [GAIdx+2]
934 for (i = GAIdx + 2; i < MI->getNumOperands(); ++i)
935 tmpOpnds.push_back(MI->getOperand(i));
936
937 // Remove all operands in range [ (GAIdx+1) ... (MI->getNumOperands()-1) ]
938 // It is very important that we always remove from the end of Operands[]
939 // MI->getNumOperands() is at least 2 if program goes to here.
940 for (i = MI->getNumOperands() - 1; i > GAIdx; --i)
941 MI->RemoveOperand(i);
942
943 for (i = 0; i < tmpOpnds.size(); ++i)
944 MI->addOperand(tmpOpnds[i]);
945 }
946
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000947 return true;
948}
949
950
951bool
952HexagonInstrInfo::
953isProfitableToIfCvt(MachineBasicBlock &MBB,
Kay Tiong Khoof2949212012-06-13 15:53:04 +0000954 unsigned NumCycles,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000955 unsigned ExtraPredCycles,
956 const BranchProbability &Probability) const {
957 return true;
958}
959
960
961bool
962HexagonInstrInfo::
963isProfitableToIfCvt(MachineBasicBlock &TMBB,
964 unsigned NumTCycles,
965 unsigned ExtraTCycles,
966 MachineBasicBlock &FMBB,
967 unsigned NumFCycles,
968 unsigned ExtraFCycles,
969 const BranchProbability &Probability) const {
970 return true;
971}
972
Jyotsna Verma84c47102013-05-06 18:49:23 +0000973// Returns true if an instruction is predicated irrespective of the predicate
974// sense. For example, all of the following will return true.
975// if (p0) R1 = add(R2, R3)
976// if (!p0) R1 = add(R2, R3)
977// if (p0.new) R1 = add(R2, R3)
978// if (!p0.new) R1 = add(R2, R3)
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000979bool HexagonInstrInfo::isPredicated(const MachineInstr *MI) const {
Brendon Cahoon6f358372012-02-08 18:25:47 +0000980 const uint64_t F = MI->getDesc().TSFlags;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000981
Brendon Cahoon6f358372012-02-08 18:25:47 +0000982 return ((F >> HexagonII::PredicatedPos) & HexagonII::PredicatedMask);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000983}
984
Jyotsna Verma84c47102013-05-06 18:49:23 +0000985bool HexagonInstrInfo::isPredicated(unsigned Opcode) const {
986 const uint64_t F = get(Opcode).TSFlags;
987
988 return ((F >> HexagonII::PredicatedPos) & HexagonII::PredicatedMask);
989}
990
991bool HexagonInstrInfo::isPredicatedTrue(const MachineInstr *MI) const {
992 const uint64_t F = MI->getDesc().TSFlags;
993
994 assert(isPredicated(MI));
995 return (!((F >> HexagonII::PredicatedFalsePos) &
996 HexagonII::PredicatedFalseMask));
997}
998
999bool HexagonInstrInfo::isPredicatedTrue(unsigned Opcode) const {
1000 const uint64_t F = get(Opcode).TSFlags;
1001
1002 // Make sure that the instruction is predicated.
1003 assert((F>> HexagonII::PredicatedPos) & HexagonII::PredicatedMask);
1004 return (!((F >> HexagonII::PredicatedFalsePos) &
1005 HexagonII::PredicatedFalseMask));
1006}
1007
Jyotsna Vermaa46059b2013-03-28 19:44:04 +00001008bool HexagonInstrInfo::isPredicatedNew(const MachineInstr *MI) const {
1009 const uint64_t F = MI->getDesc().TSFlags;
1010
1011 assert(isPredicated(MI));
1012 return ((F >> HexagonII::PredicatedNewPos) & HexagonII::PredicatedNewMask);
1013}
1014
Jyotsna Verma84c47102013-05-06 18:49:23 +00001015bool HexagonInstrInfo::isPredicatedNew(unsigned Opcode) const {
1016 const uint64_t F = get(Opcode).TSFlags;
1017
1018 assert(isPredicated(Opcode));
1019 return ((F >> HexagonII::PredicatedNewPos) & HexagonII::PredicatedNewMask);
1020}
1021
Jyotsna Verma438cec52013-05-10 20:58:11 +00001022// Returns true, if a ST insn can be promoted to a new-value store.
1023bool HexagonInstrInfo::mayBeNewStore(const MachineInstr *MI) const {
1024 const HexagonRegisterInfo& QRI = getRegisterInfo();
1025 const uint64_t F = MI->getDesc().TSFlags;
1026
1027 return ((F >> HexagonII::mayNVStorePos) &
1028 HexagonII::mayNVStoreMask &
1029 QRI.Subtarget.hasV4TOps());
1030}
1031
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001032bool
1033HexagonInstrInfo::DefinesPredicate(MachineInstr *MI,
1034 std::vector<MachineOperand> &Pred) const {
1035 for (unsigned oper = 0; oper < MI->getNumOperands(); ++oper) {
1036 MachineOperand MO = MI->getOperand(oper);
1037 if (MO.isReg() && MO.isDef()) {
1038 const TargetRegisterClass* RC = RI.getMinimalPhysRegClass(MO.getReg());
Craig Topperc7242e02012-04-20 07:30:17 +00001039 if (RC == &Hexagon::PredRegsRegClass) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001040 Pred.push_back(MO);
1041 return true;
1042 }
1043 }
1044 }
1045 return false;
1046}
1047
1048
1049bool
1050HexagonInstrInfo::
1051SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
1052 const SmallVectorImpl<MachineOperand> &Pred2) const {
1053 // TODO: Fix this
1054 return false;
1055}
1056
1057
1058//
1059// We indicate that we want to reverse the branch by
1060// inserting a 0 at the beginning of the Cond vector.
1061//
1062bool HexagonInstrInfo::
1063ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
1064 if (!Cond.empty() && Cond[0].isImm() && Cond[0].getImm() == 0) {
1065 Cond.erase(Cond.begin());
1066 } else {
1067 Cond.insert(Cond.begin(), MachineOperand::CreateImm(0));
1068 }
1069 return false;
1070}
1071
1072
1073bool HexagonInstrInfo::
1074isProfitableToDupForIfCvt(MachineBasicBlock &MBB,unsigned NumInstrs,
1075 const BranchProbability &Probability) const {
1076 return (NumInstrs <= 4);
1077}
1078
1079bool HexagonInstrInfo::isDeallocRet(const MachineInstr *MI) const {
1080 switch (MI->getOpcode()) {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +00001081 default: return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001082 case Hexagon::DEALLOC_RET_V4 :
1083 case Hexagon::DEALLOC_RET_cPt_V4 :
1084 case Hexagon::DEALLOC_RET_cNotPt_V4 :
1085 case Hexagon::DEALLOC_RET_cdnPnt_V4 :
1086 case Hexagon::DEALLOC_RET_cNotdnPnt_V4 :
1087 case Hexagon::DEALLOC_RET_cdnPt_V4 :
1088 case Hexagon::DEALLOC_RET_cNotdnPt_V4 :
1089 return true;
1090 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001091}
1092
1093
1094bool HexagonInstrInfo::
1095isValidOffset(const int Opcode, const int Offset) const {
1096 // This function is to check whether the "Offset" is in the correct range of
1097 // the given "Opcode". If "Offset" is not in the correct range, "ADD_ri" is
1098 // inserted to calculate the final address. Due to this reason, the function
1099 // assumes that the "Offset" has correct alignment.
Jyotsna Vermaec613662013-03-14 19:08:03 +00001100 // We used to assert if the offset was not properly aligned, however,
1101 // there are cases where a misaligned pointer recast can cause this
1102 // problem, and we need to allow for it. The front end warns of such
1103 // misaligns with respect to load size.
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001104
1105 switch(Opcode) {
1106
1107 case Hexagon::LDriw:
Jyotsna Verma9b60c1d2013-01-17 18:42:37 +00001108 case Hexagon::LDriw_indexed:
Sirish Pande69295b82012-05-10 20:20:25 +00001109 case Hexagon::LDriw_f:
Jyotsna Verma9b60c1d2013-01-17 18:42:37 +00001110 case Hexagon::STriw_indexed:
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001111 case Hexagon::STriw:
Sirish Pande69295b82012-05-10 20:20:25 +00001112 case Hexagon::STriw_f:
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001113 return (Offset >= Hexagon_MEMW_OFFSET_MIN) &&
1114 (Offset <= Hexagon_MEMW_OFFSET_MAX);
1115
1116 case Hexagon::LDrid:
Jyotsna Verma9b60c1d2013-01-17 18:42:37 +00001117 case Hexagon::LDrid_indexed:
Sirish Pande69295b82012-05-10 20:20:25 +00001118 case Hexagon::LDrid_f:
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001119 case Hexagon::STrid:
Jyotsna Verma9b60c1d2013-01-17 18:42:37 +00001120 case Hexagon::STrid_indexed:
Sirish Pande69295b82012-05-10 20:20:25 +00001121 case Hexagon::STrid_f:
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001122 return (Offset >= Hexagon_MEMD_OFFSET_MIN) &&
1123 (Offset <= Hexagon_MEMD_OFFSET_MAX);
1124
1125 case Hexagon::LDrih:
Colin LeMahieua9386d22014-12-23 16:42:57 +00001126 case Hexagon::L2_loadruh_io:
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001127 case Hexagon::STrih:
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001128 return (Offset >= Hexagon_MEMH_OFFSET_MIN) &&
1129 (Offset <= Hexagon_MEMH_OFFSET_MAX);
1130
Colin LeMahieu4b1eac42014-12-22 21:40:43 +00001131 case Hexagon::L2_loadrb_io:
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001132 case Hexagon::STrib:
Colin LeMahieuaf1e5de2014-12-22 21:20:03 +00001133 case Hexagon::L2_loadrub_io:
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001134 return (Offset >= Hexagon_MEMB_OFFSET_MIN) &&
1135 (Offset <= Hexagon_MEMB_OFFSET_MAX);
1136
1137 case Hexagon::ADD_ri:
1138 case Hexagon::TFR_FI:
1139 return (Offset >= Hexagon_ADDI_OFFSET_MIN) &&
1140 (Offset <= Hexagon_ADDI_OFFSET_MAX);
1141
Jyotsna Vermafdc660b2013-03-22 18:41:34 +00001142 case Hexagon::MemOPw_ADDi_V4 :
1143 case Hexagon::MemOPw_SUBi_V4 :
1144 case Hexagon::MemOPw_ADDr_V4 :
1145 case Hexagon::MemOPw_SUBr_V4 :
1146 case Hexagon::MemOPw_ANDr_V4 :
1147 case Hexagon::MemOPw_ORr_V4 :
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001148 return (0 <= Offset && Offset <= 255);
1149
Jyotsna Vermafdc660b2013-03-22 18:41:34 +00001150 case Hexagon::MemOPh_ADDi_V4 :
1151 case Hexagon::MemOPh_SUBi_V4 :
1152 case Hexagon::MemOPh_ADDr_V4 :
1153 case Hexagon::MemOPh_SUBr_V4 :
1154 case Hexagon::MemOPh_ANDr_V4 :
1155 case Hexagon::MemOPh_ORr_V4 :
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001156 return (0 <= Offset && Offset <= 127);
1157
Jyotsna Vermafdc660b2013-03-22 18:41:34 +00001158 case Hexagon::MemOPb_ADDi_V4 :
1159 case Hexagon::MemOPb_SUBi_V4 :
1160 case Hexagon::MemOPb_ADDr_V4 :
1161 case Hexagon::MemOPb_SUBr_V4 :
1162 case Hexagon::MemOPb_ANDr_V4 :
1163 case Hexagon::MemOPb_ORr_V4 :
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001164 return (0 <= Offset && Offset <= 63);
1165
1166 // LDri_pred and STriw_pred are pseudo operations, so it has to take offset of
1167 // any size. Later pass knows how to handle it.
1168 case Hexagon::STriw_pred:
1169 case Hexagon::LDriw_pred:
1170 return true;
1171
Colin LeMahieu5ccbb122014-12-19 00:06:53 +00001172 case Hexagon::J2_loop0i:
Krzysztof Parzyszek9a278f12013-02-11 21:37:55 +00001173 return isUInt<10>(Offset);
1174
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001175 // INLINEASM is very special.
1176 case Hexagon::INLINEASM:
1177 return true;
1178 }
1179
Benjamin Kramerb6684012011-12-27 11:41:05 +00001180 llvm_unreachable("No offset range is defined for this opcode. "
1181 "Please define it in the above switch statement!");
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001182}
1183
1184
1185//
1186// Check if the Offset is a valid auto-inc imm by Load/Store Type.
1187//
1188bool HexagonInstrInfo::
1189isValidAutoIncImm(const EVT VT, const int Offset) const {
1190
1191 if (VT == MVT::i64) {
1192 return (Offset >= Hexagon_MEMD_AUTOINC_MIN &&
1193 Offset <= Hexagon_MEMD_AUTOINC_MAX &&
1194 (Offset & 0x7) == 0);
1195 }
1196 if (VT == MVT::i32) {
1197 return (Offset >= Hexagon_MEMW_AUTOINC_MIN &&
1198 Offset <= Hexagon_MEMW_AUTOINC_MAX &&
1199 (Offset & 0x3) == 0);
1200 }
1201 if (VT == MVT::i16) {
1202 return (Offset >= Hexagon_MEMH_AUTOINC_MIN &&
1203 Offset <= Hexagon_MEMH_AUTOINC_MAX &&
1204 (Offset & 0x1) == 0);
1205 }
1206 if (VT == MVT::i8) {
1207 return (Offset >= Hexagon_MEMB_AUTOINC_MIN &&
1208 Offset <= Hexagon_MEMB_AUTOINC_MAX);
1209 }
Craig Toppere55c5562012-02-07 02:50:20 +00001210 llvm_unreachable("Not an auto-inc opc!");
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001211}
1212
1213
1214bool HexagonInstrInfo::
1215isMemOp(const MachineInstr *MI) const {
Jyotsna Verma300f0b92013-05-10 20:27:34 +00001216// return MI->getDesc().mayLoad() && MI->getDesc().mayStore();
1217
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001218 switch (MI->getOpcode())
1219 {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +00001220 default: return false;
Jyotsna Vermafdc660b2013-03-22 18:41:34 +00001221 case Hexagon::MemOPw_ADDi_V4 :
1222 case Hexagon::MemOPw_SUBi_V4 :
1223 case Hexagon::MemOPw_ADDr_V4 :
1224 case Hexagon::MemOPw_SUBr_V4 :
1225 case Hexagon::MemOPw_ANDr_V4 :
1226 case Hexagon::MemOPw_ORr_V4 :
1227 case Hexagon::MemOPh_ADDi_V4 :
1228 case Hexagon::MemOPh_SUBi_V4 :
1229 case Hexagon::MemOPh_ADDr_V4 :
1230 case Hexagon::MemOPh_SUBr_V4 :
1231 case Hexagon::MemOPh_ANDr_V4 :
1232 case Hexagon::MemOPh_ORr_V4 :
1233 case Hexagon::MemOPb_ADDi_V4 :
1234 case Hexagon::MemOPb_SUBi_V4 :
1235 case Hexagon::MemOPb_ADDr_V4 :
1236 case Hexagon::MemOPb_SUBr_V4 :
1237 case Hexagon::MemOPb_ANDr_V4 :
1238 case Hexagon::MemOPb_ORr_V4 :
1239 case Hexagon::MemOPb_SETBITi_V4:
1240 case Hexagon::MemOPh_SETBITi_V4:
1241 case Hexagon::MemOPw_SETBITi_V4:
1242 case Hexagon::MemOPb_CLRBITi_V4:
1243 case Hexagon::MemOPh_CLRBITi_V4:
1244 case Hexagon::MemOPw_CLRBITi_V4:
1245 return true;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001246 }
Jyotsna Vermafdc660b2013-03-22 18:41:34 +00001247 return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001248}
1249
1250
1251bool HexagonInstrInfo::
1252isSpillPredRegOp(const MachineInstr *MI) const {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +00001253 switch (MI->getOpcode()) {
1254 default: return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001255 case Hexagon::STriw_pred :
1256 case Hexagon::LDriw_pred :
Sirish Pandef8e5e3c2012-05-03 21:52:53 +00001257 return true;
Sirish Pande2c7bf002012-04-23 17:49:28 +00001258 }
Sirish Pande4bd20c52012-05-12 05:10:30 +00001259}
1260
1261bool HexagonInstrInfo::isNewValueJumpCandidate(const MachineInstr *MI) const {
1262 switch (MI->getOpcode()) {
Sirish Pande8bb97452012-05-12 05:54:15 +00001263 default: return false;
Colin LeMahieu902157c2014-11-25 18:20:52 +00001264 case Hexagon::C2_cmpeq:
Colin LeMahieu6e0f9f82014-11-26 19:43:12 +00001265 case Hexagon::C2_cmpeqi:
Colin LeMahieu902157c2014-11-25 18:20:52 +00001266 case Hexagon::C2_cmpgt:
Colin LeMahieu6e0f9f82014-11-26 19:43:12 +00001267 case Hexagon::C2_cmpgti:
Colin LeMahieu902157c2014-11-25 18:20:52 +00001268 case Hexagon::C2_cmpgtu:
Colin LeMahieu6e0f9f82014-11-26 19:43:12 +00001269 case Hexagon::C2_cmpgtui:
Sirish Pande4bd20c52012-05-12 05:10:30 +00001270 return true;
Sirish Pande4bd20c52012-05-12 05:10:30 +00001271 }
Sirish Pande2c7bf002012-04-23 17:49:28 +00001272}
1273
Sirish Pandef8e5e3c2012-05-03 21:52:53 +00001274bool HexagonInstrInfo::
1275isConditionalTransfer (const MachineInstr *MI) const {
1276 switch (MI->getOpcode()) {
1277 default: return false;
Colin LeMahieu4af437f2014-12-09 20:23:30 +00001278 case Hexagon::A2_tfrt:
1279 case Hexagon::A2_tfrf:
1280 case Hexagon::C2_cmoveit:
1281 case Hexagon::C2_cmoveif:
1282 case Hexagon::A2_tfrtnew:
1283 case Hexagon::A2_tfrfnew:
1284 case Hexagon::C2_cmovenewit:
1285 case Hexagon::C2_cmovenewif:
Sirish Pandef8e5e3c2012-05-03 21:52:53 +00001286 return true;
1287 }
1288}
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001289
1290bool HexagonInstrInfo::isConditionalALU32 (const MachineInstr* MI) const {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001291 switch (MI->getOpcode())
1292 {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +00001293 default: return false;
Colin LeMahieuefa74e02014-11-18 20:28:11 +00001294 case Hexagon::A2_paddf:
1295 case Hexagon::A2_paddfnew:
1296 case Hexagon::A2_paddt:
1297 case Hexagon::A2_paddtnew:
Colin LeMahieu44fd1c82014-11-18 22:45:47 +00001298 case Hexagon::A2_pandf:
1299 case Hexagon::A2_pandfnew:
1300 case Hexagon::A2_pandt:
1301 case Hexagon::A2_pandtnew:
Colin LeMahieu3b3197e2014-11-24 17:44:19 +00001302 case Hexagon::A4_paslhf:
1303 case Hexagon::A4_paslhfnew:
1304 case Hexagon::A4_paslht:
1305 case Hexagon::A4_paslhtnew:
Colin LeMahieu397a25e2014-11-24 18:04:42 +00001306 case Hexagon::A4_pasrhf:
1307 case Hexagon::A4_pasrhfnew:
1308 case Hexagon::A4_pasrht:
1309 case Hexagon::A4_pasrhtnew:
Colin LeMahieu21866542014-11-19 22:58:04 +00001310 case Hexagon::A2_porf:
1311 case Hexagon::A2_porfnew:
1312 case Hexagon::A2_port:
1313 case Hexagon::A2_portnew:
Colin LeMahieue88447d2014-11-21 21:19:18 +00001314 case Hexagon::A2_psubf:
1315 case Hexagon::A2_psubfnew:
1316 case Hexagon::A2_psubt:
1317 case Hexagon::A2_psubtnew:
Colin LeMahieuac006432014-11-19 23:22:23 +00001318 case Hexagon::A2_pxorf:
1319 case Hexagon::A2_pxorfnew:
1320 case Hexagon::A2_pxort:
1321 case Hexagon::A2_pxortnew:
Colin LeMahieu310991c2014-11-21 21:54:59 +00001322 case Hexagon::A4_psxthf:
1323 case Hexagon::A4_psxthfnew:
1324 case Hexagon::A4_psxtht:
1325 case Hexagon::A4_psxthtnew:
Colin LeMahieu91ffec92014-11-21 21:35:52 +00001326 case Hexagon::A4_psxtbf:
1327 case Hexagon::A4_psxtbfnew:
1328 case Hexagon::A4_psxtbt:
1329 case Hexagon::A4_psxtbtnew:
Colin LeMahieubb7d6f52014-11-24 16:48:43 +00001330 case Hexagon::A4_pzxtbf:
1331 case Hexagon::A4_pzxtbfnew:
1332 case Hexagon::A4_pzxtbt:
1333 case Hexagon::A4_pzxtbtnew:
Colin LeMahieu098256c2014-11-24 17:11:34 +00001334 case Hexagon::A4_pzxthf:
1335 case Hexagon::A4_pzxthfnew:
1336 case Hexagon::A4_pzxtht:
1337 case Hexagon::A4_pzxthtnew:
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001338 case Hexagon::ADD_ri_cPt:
1339 case Hexagon::ADD_ri_cNotPt:
Colin LeMahieub580d7d2014-12-09 19:23:45 +00001340 case Hexagon::C2_ccombinewt:
1341 case Hexagon::C2_ccombinewf:
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001342 return true;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001343 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001344}
1345
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001346bool HexagonInstrInfo::
1347isConditionalLoad (const MachineInstr* MI) const {
1348 const HexagonRegisterInfo& QRI = getRegisterInfo();
1349 switch (MI->getOpcode())
1350 {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +00001351 default: return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001352 case Hexagon::LDrid_cPt :
1353 case Hexagon::LDrid_cNotPt :
1354 case Hexagon::LDrid_indexed_cPt :
1355 case Hexagon::LDrid_indexed_cNotPt :
1356 case Hexagon::LDriw_cPt :
1357 case Hexagon::LDriw_cNotPt :
1358 case Hexagon::LDriw_indexed_cPt :
1359 case Hexagon::LDriw_indexed_cNotPt :
1360 case Hexagon::LDrih_cPt :
1361 case Hexagon::LDrih_cNotPt :
1362 case Hexagon::LDrih_indexed_cPt :
1363 case Hexagon::LDrih_indexed_cNotPt :
Colin LeMahieu4b1eac42014-12-22 21:40:43 +00001364 case Hexagon::L2_ploadrbt_io:
1365 case Hexagon::L2_ploadrbf_io:
Colin LeMahieua9386d22014-12-23 16:42:57 +00001366 case Hexagon::L2_ploadruht_io:
1367 case Hexagon::L2_ploadruhf_io:
Colin LeMahieuaf1e5de2014-12-22 21:20:03 +00001368 case Hexagon::L2_ploadrubt_io:
1369 case Hexagon::L2_ploadrubf_io:
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001370 return true;
1371 case Hexagon::POST_LDrid_cPt :
1372 case Hexagon::POST_LDrid_cNotPt :
1373 case Hexagon::POST_LDriw_cPt :
1374 case Hexagon::POST_LDriw_cNotPt :
1375 case Hexagon::POST_LDrih_cPt :
1376 case Hexagon::POST_LDrih_cNotPt :
1377 case Hexagon::POST_LDrib_cPt :
1378 case Hexagon::POST_LDrib_cNotPt :
1379 case Hexagon::POST_LDriuh_cPt :
1380 case Hexagon::POST_LDriuh_cNotPt :
1381 case Hexagon::POST_LDriub_cPt :
1382 case Hexagon::POST_LDriub_cNotPt :
Sirish Pandef8e5e3c2012-05-03 21:52:53 +00001383 return QRI.Subtarget.hasV4TOps();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001384 case Hexagon::LDrid_indexed_shl_cPt_V4 :
1385 case Hexagon::LDrid_indexed_shl_cNotPt_V4 :
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001386 case Hexagon::LDrib_indexed_shl_cPt_V4 :
1387 case Hexagon::LDrib_indexed_shl_cNotPt_V4 :
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001388 case Hexagon::LDriub_indexed_shl_cPt_V4 :
1389 case Hexagon::LDriub_indexed_shl_cNotPt_V4 :
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001390 case Hexagon::LDrih_indexed_shl_cPt_V4 :
1391 case Hexagon::LDrih_indexed_shl_cNotPt_V4 :
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001392 case Hexagon::LDriuh_indexed_shl_cPt_V4 :
1393 case Hexagon::LDriuh_indexed_shl_cNotPt_V4 :
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001394 case Hexagon::LDriw_indexed_shl_cPt_V4 :
1395 case Hexagon::LDriw_indexed_shl_cNotPt_V4 :
Sirish Pandef8e5e3c2012-05-03 21:52:53 +00001396 return QRI.Subtarget.hasV4TOps();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001397 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001398}
Andrew Trickd06df962012-02-01 22:13:57 +00001399
Sirish Pandef8e5e3c2012-05-03 21:52:53 +00001400// Returns true if an instruction is a conditional store.
1401//
1402// Note: It doesn't include conditional new-value stores as they can't be
1403// converted to .new predicate.
1404//
1405// p.new NV store [ if(p0.new)memw(R0+#0)=R2.new ]
1406// ^ ^
1407// / \ (not OK. it will cause new-value store to be
1408// / X conditional on p0.new while R2 producer is
1409// / \ on p0)
1410// / \.
1411// p.new store p.old NV store
1412// [if(p0.new)memw(R0+#0)=R2] [if(p0)memw(R0+#0)=R2.new]
1413// ^ ^
1414// \ /
1415// \ /
1416// \ /
1417// p.old store
1418// [if (p0)memw(R0+#0)=R2]
1419//
1420// The above diagram shows the steps involoved in the conversion of a predicated
1421// store instruction to its .new predicated new-value form.
1422//
1423// The following set of instructions further explains the scenario where
1424// conditional new-value store becomes invalid when promoted to .new predicate
1425// form.
1426//
1427// { 1) if (p0) r0 = add(r1, r2)
1428// 2) p0 = cmp.eq(r3, #0) }
1429//
1430// 3) if (p0) memb(r1+#0) = r0 --> this instruction can't be grouped with
1431// the first two instructions because in instr 1, r0 is conditional on old value
1432// of p0 but its use in instr 3 is conditional on p0 modified by instr 2 which
1433// is not valid for new-value stores.
1434bool HexagonInstrInfo::
1435isConditionalStore (const MachineInstr* MI) const {
1436 const HexagonRegisterInfo& QRI = getRegisterInfo();
1437 switch (MI->getOpcode())
1438 {
1439 default: return false;
1440 case Hexagon::STrib_imm_cPt_V4 :
1441 case Hexagon::STrib_imm_cNotPt_V4 :
1442 case Hexagon::STrib_indexed_shl_cPt_V4 :
1443 case Hexagon::STrib_indexed_shl_cNotPt_V4 :
1444 case Hexagon::STrib_cPt :
1445 case Hexagon::STrib_cNotPt :
1446 case Hexagon::POST_STbri_cPt :
1447 case Hexagon::POST_STbri_cNotPt :
1448 case Hexagon::STrid_indexed_cPt :
1449 case Hexagon::STrid_indexed_cNotPt :
1450 case Hexagon::STrid_indexed_shl_cPt_V4 :
1451 case Hexagon::POST_STdri_cPt :
1452 case Hexagon::POST_STdri_cNotPt :
1453 case Hexagon::STrih_cPt :
1454 case Hexagon::STrih_cNotPt :
1455 case Hexagon::STrih_indexed_cPt :
1456 case Hexagon::STrih_indexed_cNotPt :
1457 case Hexagon::STrih_imm_cPt_V4 :
1458 case Hexagon::STrih_imm_cNotPt_V4 :
1459 case Hexagon::STrih_indexed_shl_cPt_V4 :
1460 case Hexagon::STrih_indexed_shl_cNotPt_V4 :
1461 case Hexagon::POST_SThri_cPt :
1462 case Hexagon::POST_SThri_cNotPt :
1463 case Hexagon::STriw_cPt :
1464 case Hexagon::STriw_cNotPt :
1465 case Hexagon::STriw_indexed_cPt :
1466 case Hexagon::STriw_indexed_cNotPt :
1467 case Hexagon::STriw_imm_cPt_V4 :
1468 case Hexagon::STriw_imm_cNotPt_V4 :
1469 case Hexagon::STriw_indexed_shl_cPt_V4 :
1470 case Hexagon::STriw_indexed_shl_cNotPt_V4 :
1471 case Hexagon::POST_STwri_cPt :
1472 case Hexagon::POST_STwri_cNotPt :
1473 return QRI.Subtarget.hasV4TOps();
1474
1475 // V4 global address store before promoting to dot new.
Sirish Pandef8e5e3c2012-05-03 21:52:53 +00001476 case Hexagon::STd_GP_cPt_V4 :
1477 case Hexagon::STd_GP_cNotPt_V4 :
1478 case Hexagon::STb_GP_cPt_V4 :
1479 case Hexagon::STb_GP_cNotPt_V4 :
1480 case Hexagon::STh_GP_cPt_V4 :
1481 case Hexagon::STh_GP_cNotPt_V4 :
1482 case Hexagon::STw_GP_cPt_V4 :
1483 case Hexagon::STw_GP_cNotPt_V4 :
1484 return QRI.Subtarget.hasV4TOps();
1485
1486 // Predicated new value stores (i.e. if (p0) memw(..)=r0.new) are excluded
1487 // from the "Conditional Store" list. Because a predicated new value store
1488 // would NOT be promoted to a double dot new store. See diagram below:
1489 // This function returns yes for those stores that are predicated but not
1490 // yet promoted to predicate dot new instructions.
1491 //
1492 // +---------------------+
1493 // /-----| if (p0) memw(..)=r0 |---------\~
1494 // || +---------------------+ ||
1495 // promote || /\ /\ || promote
1496 // || /||\ /||\ ||
1497 // \||/ demote || \||/
1498 // \/ || || \/
1499 // +-------------------------+ || +-------------------------+
1500 // | if (p0.new) memw(..)=r0 | || | if (p0) memw(..)=r0.new |
1501 // +-------------------------+ || +-------------------------+
1502 // || || ||
1503 // || demote \||/
1504 // promote || \/ NOT possible
1505 // || || /\~
1506 // \||/ || /||\~
1507 // \/ || ||
1508 // +-----------------------------+
1509 // | if (p0.new) memw(..)=r0.new |
1510 // +-----------------------------+
1511 // Double Dot New Store
1512 //
1513 }
1514}
1515
Jyotsna Verma84c47102013-05-06 18:49:23 +00001516
1517bool HexagonInstrInfo::isNewValueJump(const MachineInstr *MI) const {
1518 if (isNewValue(MI) && isBranch(MI))
1519 return true;
1520 return false;
1521}
1522
Jyotsna Verma00681dc2013-05-09 19:16:07 +00001523bool HexagonInstrInfo::isPostIncrement (const MachineInstr* MI) const {
1524 return (getAddrMode(MI) == HexagonII::PostInc);
1525}
1526
Jyotsna Verma84c47102013-05-06 18:49:23 +00001527bool HexagonInstrInfo::isNewValue(const MachineInstr* MI) const {
1528 const uint64_t F = MI->getDesc().TSFlags;
1529 return ((F >> HexagonII::NewValuePos) & HexagonII::NewValueMask);
1530}
1531
Jyotsna Vermaa46059b2013-03-28 19:44:04 +00001532// Returns true, if any one of the operands is a dot new
1533// insn, whether it is predicated dot new or register dot new.
1534bool HexagonInstrInfo::isDotNewInst (const MachineInstr* MI) const {
1535 return (isNewValueInst(MI) ||
1536 (isPredicated(MI) && isPredicatedNew(MI)));
1537}
1538
Jyotsna Verma438cec52013-05-10 20:58:11 +00001539// Returns the most basic instruction for the .new predicated instructions and
1540// new-value stores.
1541// For example, all of the following instructions will be converted back to the
1542// same instruction:
1543// 1) if (p0.new) memw(R0+#0) = R1.new --->
1544// 2) if (p0) memw(R0+#0)= R1.new -------> if (p0) memw(R0+#0) = R1
1545// 3) if (p0.new) memw(R0+#0) = R1 --->
1546//
1547
1548int HexagonInstrInfo::GetDotOldOp(const int opc) const {
1549 int NewOp = opc;
1550 if (isPredicated(NewOp) && isPredicatedNew(NewOp)) { // Get predicate old form
1551 NewOp = Hexagon::getPredOldOpcode(NewOp);
Craig Topper35b2f752014-06-19 06:10:58 +00001552 assert(NewOp >= 0 &&
1553 "Couldn't change predicate new instruction to its old form.");
Jyotsna Verma438cec52013-05-10 20:58:11 +00001554 }
1555
Alp Tokerf907b892013-12-05 05:44:44 +00001556 if (isNewValueStore(NewOp)) { // Convert into non-new-value format
Jyotsna Verma438cec52013-05-10 20:58:11 +00001557 NewOp = Hexagon::getNonNVStore(NewOp);
Craig Topper35b2f752014-06-19 06:10:58 +00001558 assert(NewOp >= 0 && "Couldn't change new-value store to its old form.");
Jyotsna Verma438cec52013-05-10 20:58:11 +00001559 }
1560 return NewOp;
1561}
1562
Jyotsna Verma300f0b92013-05-10 20:27:34 +00001563// Return the new value instruction for a given store.
1564int HexagonInstrInfo::GetDotNewOp(const MachineInstr* MI) const {
1565 int NVOpcode = Hexagon::getNewValueOpcode(MI->getOpcode());
1566 if (NVOpcode >= 0) // Valid new-value store instruction.
1567 return NVOpcode;
1568
1569 switch (MI->getOpcode()) {
1570 default: llvm_unreachable("Unknown .new type");
1571 // store new value byte
1572 case Hexagon::STrib_shl_V4:
1573 return Hexagon::STrib_shl_nv_V4;
1574
1575 case Hexagon::STrih_shl_V4:
1576 return Hexagon::STrih_shl_nv_V4;
1577
1578 case Hexagon::STriw_f:
1579 return Hexagon::STriw_nv_V4;
1580
1581 case Hexagon::STriw_indexed_f:
1582 return Hexagon::STriw_indexed_nv_V4;
1583
1584 case Hexagon::STriw_shl_V4:
1585 return Hexagon::STriw_shl_nv_V4;
1586
1587 }
1588 return 0;
1589}
1590
Jyotsna Verma00681dc2013-05-09 19:16:07 +00001591// Return .new predicate version for an instruction.
1592int HexagonInstrInfo::GetDotNewPredOp(MachineInstr *MI,
1593 const MachineBranchProbabilityInfo
1594 *MBPI) const {
1595
1596 int NewOpcode = Hexagon::getPredNewOpcode(MI->getOpcode());
1597 if (NewOpcode >= 0) // Valid predicate new instruction
1598 return NewOpcode;
1599
1600 switch (MI->getOpcode()) {
1601 default: llvm_unreachable("Unknown .new type");
1602 // Condtional Jumps
Colin LeMahieudb0b13c2014-12-10 21:24:10 +00001603 case Hexagon::J2_jumpt:
1604 case Hexagon::J2_jumpf:
Jyotsna Verma00681dc2013-05-09 19:16:07 +00001605 return getDotNewPredJumpOp(MI, MBPI);
1606
Colin LeMahieudb0b13c2014-12-10 21:24:10 +00001607 case Hexagon::J2_jumprt:
1608 return Hexagon::J2_jumptnewpt;
Jyotsna Verma00681dc2013-05-09 19:16:07 +00001609
Colin LeMahieudb0b13c2014-12-10 21:24:10 +00001610 case Hexagon::J2_jumprf:
1611 return Hexagon::J2_jumprfnewpt;
Jyotsna Verma00681dc2013-05-09 19:16:07 +00001612
Colin LeMahieudb0b13c2014-12-10 21:24:10 +00001613 case Hexagon::JMPrett:
1614 return Hexagon::J2_jumprtnewpt;
Jyotsna Verma00681dc2013-05-09 19:16:07 +00001615
Colin LeMahieudb0b13c2014-12-10 21:24:10 +00001616 case Hexagon::JMPretf:
1617 return Hexagon::J2_jumprfnewpt;
Jyotsna Verma00681dc2013-05-09 19:16:07 +00001618
1619
1620 // Conditional combine
Colin LeMahieub580d7d2014-12-09 19:23:45 +00001621 case Hexagon::C2_ccombinewt:
1622 return Hexagon::C2_ccombinewnewt;
1623 case Hexagon::C2_ccombinewf:
1624 return Hexagon::C2_ccombinewnewf;
Jyotsna Verma00681dc2013-05-09 19:16:07 +00001625 }
1626}
1627
1628
Jyotsna Verma84256432013-03-01 17:37:13 +00001629unsigned HexagonInstrInfo::getAddrMode(const MachineInstr* MI) const {
1630 const uint64_t F = MI->getDesc().TSFlags;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +00001631
Jyotsna Verma84256432013-03-01 17:37:13 +00001632 return((F >> HexagonII::AddrModePos) & HexagonII::AddrModeMask);
1633}
1634
1635/// immediateExtend - Changes the instruction in place to one using an immediate
1636/// extender.
1637void HexagonInstrInfo::immediateExtend(MachineInstr *MI) const {
1638 assert((isExtendable(MI)||isConstExtended(MI)) &&
1639 "Instruction must be extendable");
1640 // Find which operand is extendable.
1641 short ExtOpNum = getCExtOpNum(MI);
1642 MachineOperand &MO = MI->getOperand(ExtOpNum);
1643 // This needs to be something we understand.
1644 assert((MO.isMBB() || MO.isImm()) &&
1645 "Branch with unknown extendable field type");
1646 // Mark given operand as extended.
1647 MO.addTargetFlag(HexagonII::HMOTF_ConstExtended);
1648}
Sirish Pandef8e5e3c2012-05-03 21:52:53 +00001649
Eric Christopher143f02c2014-10-09 01:59:35 +00001650DFAPacketizer *HexagonInstrInfo::CreateTargetScheduleState(
1651 const TargetSubtargetInfo &STI) const {
1652 const InstrItineraryData *II = STI.getInstrItineraryData();
1653 return static_cast<const HexagonSubtarget &>(STI).createDFAPacketizer(II);
Andrew Trickd06df962012-02-01 22:13:57 +00001654}
1655
1656bool HexagonInstrInfo::isSchedulingBoundary(const MachineInstr *MI,
1657 const MachineBasicBlock *MBB,
1658 const MachineFunction &MF) const {
1659 // Debug info is never a scheduling boundary. It's necessary to be explicit
1660 // due to the special treatment of IT instructions below, otherwise a
1661 // dbg_value followed by an IT will result in the IT instruction being
1662 // considered a scheduling hazard, which is wrong. It should be the actual
1663 // instruction preceding the dbg_value instruction(s), just like it is
1664 // when debug info is not present.
1665 if (MI->isDebugValue())
1666 return false;
1667
1668 // Terminators and labels can't be scheduled around.
Rafael Espindolab1f25f12014-03-07 06:08:31 +00001669 if (MI->getDesc().isTerminator() || MI->isPosition() || MI->isInlineAsm())
Andrew Trickd06df962012-02-01 22:13:57 +00001670 return true;
1671
1672 return false;
1673}
Jyotsna Verma84256432013-03-01 17:37:13 +00001674
1675bool HexagonInstrInfo::isConstExtended(MachineInstr *MI) const {
1676
1677 // Constant extenders are allowed only for V4 and above.
1678 if (!Subtarget.hasV4TOps())
1679 return false;
1680
1681 const uint64_t F = MI->getDesc().TSFlags;
1682 unsigned isExtended = (F >> HexagonII::ExtendedPos) & HexagonII::ExtendedMask;
1683 if (isExtended) // Instruction must be extended.
1684 return true;
1685
1686 unsigned isExtendable = (F >> HexagonII::ExtendablePos)
1687 & HexagonII::ExtendableMask;
1688 if (!isExtendable)
1689 return false;
1690
1691 short ExtOpNum = getCExtOpNum(MI);
1692 const MachineOperand &MO = MI->getOperand(ExtOpNum);
1693 // Use MO operand flags to determine if MO
1694 // has the HMOTF_ConstExtended flag set.
1695 if (MO.getTargetFlags() && HexagonII::HMOTF_ConstExtended)
1696 return true;
1697 // If this is a Machine BB address we are talking about, and it is
1698 // not marked as extended, say so.
1699 if (MO.isMBB())
1700 return false;
1701
1702 // We could be using an instruction with an extendable immediate and shoehorn
1703 // a global address into it. If it is a global address it will be constant
1704 // extended. We do this for COMBINE.
1705 // We currently only handle isGlobal() because it is the only kind of
1706 // object we are going to end up with here for now.
1707 // In the future we probably should add isSymbol(), etc.
1708 if (MO.isGlobal() || MO.isSymbol())
1709 return true;
1710
1711 // If the extendable operand is not 'Immediate' type, the instruction should
1712 // have 'isExtended' flag set.
1713 assert(MO.isImm() && "Extendable operand must be Immediate type");
1714
1715 int MinValue = getMinValue(MI);
1716 int MaxValue = getMaxValue(MI);
1717 int ImmValue = MO.getImm();
1718
1719 return (ImmValue < MinValue || ImmValue > MaxValue);
1720}
1721
Jyotsna Verma1d297502013-05-02 15:39:30 +00001722// Returns the opcode to use when converting MI, which is a conditional jump,
1723// into a conditional instruction which uses the .new value of the predicate.
1724// We also use branch probabilities to add a hint to the jump.
1725int
1726HexagonInstrInfo::getDotNewPredJumpOp(MachineInstr *MI,
1727 const
1728 MachineBranchProbabilityInfo *MBPI) const {
1729
1730 // We assume that block can have at most two successors.
1731 bool taken = false;
1732 MachineBasicBlock *Src = MI->getParent();
1733 MachineOperand *BrTarget = &MI->getOperand(1);
1734 MachineBasicBlock *Dst = BrTarget->getMBB();
1735
1736 const BranchProbability Prediction = MBPI->getEdgeProbability(Src, Dst);
1737 if (Prediction >= BranchProbability(1,2))
1738 taken = true;
1739
1740 switch (MI->getOpcode()) {
Colin LeMahieudb0b13c2014-12-10 21:24:10 +00001741 case Hexagon::J2_jumpt:
1742 return taken ? Hexagon::J2_jumptnewpt : Hexagon::J2_jumptnew;
1743 case Hexagon::J2_jumpf:
1744 return taken ? Hexagon::J2_jumpfnewpt : Hexagon::J2_jumpfnew;
Jyotsna Verma1d297502013-05-02 15:39:30 +00001745
1746 default:
1747 llvm_unreachable("Unexpected jump instruction.");
1748 }
1749}
Jyotsna Verma84256432013-03-01 17:37:13 +00001750// Returns true if a particular operand is extendable for an instruction.
1751bool HexagonInstrInfo::isOperandExtended(const MachineInstr *MI,
1752 unsigned short OperandNum) const {
1753 // Constant extenders are allowed only for V4 and above.
1754 if (!Subtarget.hasV4TOps())
1755 return false;
1756
1757 const uint64_t F = MI->getDesc().TSFlags;
1758
1759 return ((F >> HexagonII::ExtendableOpPos) & HexagonII::ExtendableOpMask)
1760 == OperandNum;
1761}
1762
1763// Returns Operand Index for the constant extended instruction.
1764unsigned short HexagonInstrInfo::getCExtOpNum(const MachineInstr *MI) const {
1765 const uint64_t F = MI->getDesc().TSFlags;
1766 return ((F >> HexagonII::ExtendableOpPos) & HexagonII::ExtendableOpMask);
1767}
1768
1769// Returns the min value that doesn't need to be extended.
1770int HexagonInstrInfo::getMinValue(const MachineInstr *MI) const {
1771 const uint64_t F = MI->getDesc().TSFlags;
1772 unsigned isSigned = (F >> HexagonII::ExtentSignedPos)
1773 & HexagonII::ExtentSignedMask;
1774 unsigned bits = (F >> HexagonII::ExtentBitsPos)
1775 & HexagonII::ExtentBitsMask;
1776
1777 if (isSigned) // if value is signed
Alexey Samsonov2651ae62014-08-20 21:22:03 +00001778 return -1U << (bits - 1);
Jyotsna Verma84256432013-03-01 17:37:13 +00001779 else
1780 return 0;
1781}
1782
1783// Returns the max value that doesn't need to be extended.
1784int HexagonInstrInfo::getMaxValue(const MachineInstr *MI) const {
1785 const uint64_t F = MI->getDesc().TSFlags;
1786 unsigned isSigned = (F >> HexagonII::ExtentSignedPos)
1787 & HexagonII::ExtentSignedMask;
1788 unsigned bits = (F >> HexagonII::ExtentBitsPos)
1789 & HexagonII::ExtentBitsMask;
1790
1791 if (isSigned) // if value is signed
Alexey Samsonov2651ae62014-08-20 21:22:03 +00001792 return ~(-1U << (bits - 1));
Jyotsna Verma84256432013-03-01 17:37:13 +00001793 else
Alexey Samsonov2651ae62014-08-20 21:22:03 +00001794 return ~(-1U << bits);
Jyotsna Verma84256432013-03-01 17:37:13 +00001795}
1796
1797// Returns true if an instruction can be converted into a non-extended
1798// equivalent instruction.
1799bool HexagonInstrInfo::NonExtEquivalentExists (const MachineInstr *MI) const {
1800
1801 short NonExtOpcode;
1802 // Check if the instruction has a register form that uses register in place
1803 // of the extended operand, if so return that as the non-extended form.
1804 if (Hexagon::getRegForm(MI->getOpcode()) >= 0)
1805 return true;
1806
1807 if (MI->getDesc().mayLoad() || MI->getDesc().mayStore()) {
Alp Tokercb402912014-01-24 17:20:08 +00001808 // Check addressing mode and retrieve non-ext equivalent instruction.
Jyotsna Verma84256432013-03-01 17:37:13 +00001809
1810 switch (getAddrMode(MI)) {
1811 case HexagonII::Absolute :
1812 // Load/store with absolute addressing mode can be converted into
1813 // base+offset mode.
1814 NonExtOpcode = Hexagon::getBasedWithImmOffset(MI->getOpcode());
1815 break;
1816 case HexagonII::BaseImmOffset :
1817 // Load/store with base+offset addressing mode can be converted into
1818 // base+register offset addressing mode. However left shift operand should
1819 // be set to 0.
1820 NonExtOpcode = Hexagon::getBaseWithRegOffset(MI->getOpcode());
1821 break;
1822 default:
1823 return false;
1824 }
1825 if (NonExtOpcode < 0)
1826 return false;
1827 return true;
1828 }
1829 return false;
1830}
1831
1832// Returns opcode of the non-extended equivalent instruction.
1833short HexagonInstrInfo::getNonExtOpcode (const MachineInstr *MI) const {
1834
1835 // Check if the instruction has a register form that uses register in place
1836 // of the extended operand, if so return that as the non-extended form.
1837 short NonExtOpcode = Hexagon::getRegForm(MI->getOpcode());
1838 if (NonExtOpcode >= 0)
1839 return NonExtOpcode;
1840
1841 if (MI->getDesc().mayLoad() || MI->getDesc().mayStore()) {
Alp Tokercb402912014-01-24 17:20:08 +00001842 // Check addressing mode and retrieve non-ext equivalent instruction.
Jyotsna Verma84256432013-03-01 17:37:13 +00001843 switch (getAddrMode(MI)) {
1844 case HexagonII::Absolute :
1845 return Hexagon::getBasedWithImmOffset(MI->getOpcode());
1846 case HexagonII::BaseImmOffset :
1847 return Hexagon::getBaseWithRegOffset(MI->getOpcode());
1848 default:
1849 return -1;
1850 }
1851 }
1852 return -1;
1853}
Jyotsna Verma5ed51812013-05-01 21:37:34 +00001854
1855bool HexagonInstrInfo::PredOpcodeHasJMP_c(Opcode_t Opcode) const {
Colin LeMahieudb0b13c2014-12-10 21:24:10 +00001856 return (Opcode == Hexagon::J2_jumpt) ||
1857 (Opcode == Hexagon::J2_jumpf) ||
1858 (Opcode == Hexagon::J2_jumptnewpt) ||
1859 (Opcode == Hexagon::J2_jumpfnewpt) ||
1860 (Opcode == Hexagon::J2_jumpt) ||
1861 (Opcode == Hexagon::J2_jumpf);
Jyotsna Verma5ed51812013-05-01 21:37:34 +00001862}
1863
1864bool HexagonInstrInfo::PredOpcodeHasNot(Opcode_t Opcode) const {
Colin LeMahieudb0b13c2014-12-10 21:24:10 +00001865 return (Opcode == Hexagon::J2_jumpf) ||
1866 (Opcode == Hexagon::J2_jumpfnewpt) ||
1867 (Opcode == Hexagon::J2_jumpfnew);
Jyotsna Verma5ed51812013-05-01 21:37:34 +00001868}