blob: d096445f144bff504994adcfad4954dbfde78baa [file] [log] [blame]
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001//===- HexagonConstExtenders.cpp ------------------------------------------===//
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#include "HexagonInstrInfo.h"
11#include "HexagonRegisterInfo.h"
12#include "HexagonSubtarget.h"
13#include "llvm/ADT/SmallVector.h"
14#include "llvm/CodeGen/MachineDominators.h"
15#include "llvm/CodeGen/MachineFunctionPass.h"
16#include "llvm/CodeGen/MachineInstrBuilder.h"
17#include "llvm/CodeGen/MachineRegisterInfo.h"
18#include "llvm/Support/CommandLine.h"
19#include "llvm/Support/raw_ostream.h"
20#include "llvm/Pass.h"
21#include <map>
22#include <set>
23#include <utility>
24#include <vector>
25
26#define DEBUG_TYPE "hexagon-cext-opt"
27
28using namespace llvm;
29
30static cl::opt<unsigned> CountThreshold("hexagon-cext-threshold",
31 cl::init(3), cl::Hidden, cl::ZeroOrMore,
32 cl::desc("Minimum number of extenders to trigger replacement"));
33
34static cl::opt<unsigned> ReplaceLimit("hexagon-cext-limit", cl::init(0),
35 cl::Hidden, cl::ZeroOrMore, cl::desc("Maximum number of replacements"));
36
37namespace llvm {
38 void initializeHexagonConstExtendersPass(PassRegistry&);
39 FunctionPass *createHexagonConstExtenders();
40}
41
Krzysztof Parzyszek39a98422018-01-30 18:12:37 +000042static int32_t adjustUp(int32_t V, uint8_t A, uint8_t O) {
43 assert(isPowerOf2_32(A));
44 int32_t U = (V & -A) + O;
45 return U >= V ? U : U+A;
46}
47
48static int32_t adjustDown(int32_t V, uint8_t A, uint8_t O) {
49 assert(isPowerOf2_32(A));
50 int32_t U = (V & -A) + O;
51 return U <= V ? U : U-A;
52}
53
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +000054namespace {
55 struct OffsetRange {
Krzysztof Parzyszek39a98422018-01-30 18:12:37 +000056 // The range of values between Min and Max that are of form Align*N+Offset,
57 // for some integer N. Min and Max are required to be of that form as well,
58 // except in the case of an empty range.
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +000059 int32_t Min = INT_MIN, Max = INT_MAX;
60 uint8_t Align = 1;
Krzysztof Parzyszek39a98422018-01-30 18:12:37 +000061 uint8_t Offset = 0;
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +000062
63 OffsetRange() = default;
Krzysztof Parzyszek39a98422018-01-30 18:12:37 +000064 OffsetRange(int32_t L, int32_t H, uint8_t A, uint8_t O = 0)
65 : Min(L), Max(H), Align(A), Offset(O) {}
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +000066 OffsetRange &intersect(OffsetRange A) {
Krzysztof Parzyszek39a98422018-01-30 18:12:37 +000067 if (Align < A.Align)
68 std::swap(*this, A);
69
70 // Align >= A.Align.
71 if (Offset >= A.Offset && (Offset - A.Offset) % A.Align == 0) {
72 Min = adjustUp(std::max(Min, A.Min), Align, Offset);
73 Max = adjustDown(std::min(Max, A.Max), Align, Offset);
74 } else {
75 // Make an empty range.
76 Min = 0;
77 Max = -1;
78 }
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +000079 // Canonicalize empty ranges.
80 if (Min > Max)
81 std::tie(Min, Max, Align) = std::make_tuple(0, -1, 1);
82 return *this;
83 }
84 OffsetRange &shift(int32_t S) {
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +000085 Min += S;
86 Max += S;
Krzysztof Parzyszek39a98422018-01-30 18:12:37 +000087 Offset = (Offset+S) % Align;
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +000088 return *this;
89 }
90 OffsetRange &extendBy(int32_t D) {
91 // If D < 0, extend Min, otherwise extend Max.
Krzysztof Parzyszek39a98422018-01-30 18:12:37 +000092 assert(D % Align == 0);
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +000093 if (D < 0)
94 Min = (INT_MIN-D < Min) ? Min+D : INT_MIN;
95 else
96 Max = (INT_MAX-D > Max) ? Max+D : INT_MAX;
97 return *this;
98 }
99 bool empty() const {
100 return Min > Max;
101 }
102 bool contains(int32_t V) const {
Krzysztof Parzyszek39a98422018-01-30 18:12:37 +0000103 return Min <= V && V <= Max && (V-Offset) % Align == 0;
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000104 }
105 bool operator==(const OffsetRange &R) const {
106 return Min == R.Min && Max == R.Max && Align == R.Align;
107 }
108 bool operator!=(const OffsetRange &R) const {
109 return !operator==(R);
110 }
111 bool operator<(const OffsetRange &R) const {
112 if (Min != R.Min)
113 return Min < R.Min;
114 if (Max != R.Max)
115 return Max < R.Max;
116 return Align < R.Align;
117 }
118 static OffsetRange zero() { return {0, 0, 1}; }
119 };
120
121 struct RangeTree {
122 struct Node {
123 Node(const OffsetRange &R) : MaxEnd(R.Max), Range(R) {}
124 unsigned Height = 1;
125 unsigned Count = 1;
126 int32_t MaxEnd;
127 const OffsetRange &Range;
128 Node *Left = nullptr, *Right = nullptr;
129 };
130
131 Node *Root = nullptr;
132
133 void add(const OffsetRange &R) {
134 Root = add(Root, R);
135 }
136 void erase(const Node *N) {
137 Root = remove(Root, N);
138 delete N;
139 }
140 void order(SmallVectorImpl<Node*> &Seq) const {
141 order(Root, Seq);
142 }
143 SmallVector<Node*,8> nodesWith(int32_t P, bool CheckAlign = true) {
144 SmallVector<Node*,8> Nodes;
145 nodesWith(Root, P, CheckAlign, Nodes);
146 return Nodes;
147 }
148 void dump() const;
149 ~RangeTree() {
150 SmallVector<Node*,8> Nodes;
151 order(Nodes);
152 for (Node *N : Nodes)
153 delete N;
154 }
155
156 private:
157 void dump(const Node *N) const;
158 void order(Node *N, SmallVectorImpl<Node*> &Seq) const;
159 void nodesWith(Node *N, int32_t P, bool CheckA,
160 SmallVectorImpl<Node*> &Seq) const;
161
162 Node *add(Node *N, const OffsetRange &R);
163 Node *remove(Node *N, const Node *D);
164 Node *rotateLeft(Node *Lower, Node *Higher);
165 Node *rotateRight(Node *Lower, Node *Higher);
166 unsigned height(Node *N) {
167 return N != nullptr ? N->Height : 0;
168 }
169 Node *update(Node *N) {
170 assert(N != nullptr);
171 N->Height = 1 + std::max(height(N->Left), height(N->Right));
172 if (N->Left)
173 N->MaxEnd = std::max(N->MaxEnd, N->Left->MaxEnd);
174 if (N->Right)
175 N->MaxEnd = std::max(N->MaxEnd, N->Right->MaxEnd);
176 return N;
177 }
178 Node *rebalance(Node *N) {
179 assert(N != nullptr);
180 int32_t Balance = height(N->Right) - height(N->Left);
181 if (Balance < -1)
182 return rotateRight(N->Left, N);
183 if (Balance > 1)
184 return rotateLeft(N->Right, N);
185 return N;
186 }
187 };
188
189 struct Loc {
190 MachineBasicBlock *Block = nullptr;
191 MachineBasicBlock::iterator At;
192
193 Loc(MachineBasicBlock *B, MachineBasicBlock::iterator It)
194 : Block(B), At(It) {
195 if (B->end() == It) {
196 Pos = -1;
197 } else {
198 assert(It->getParent() == B);
199 Pos = std::distance(B->begin(), It);
200 }
201 }
202 bool operator<(Loc A) const {
203 if (Block != A.Block)
204 return Block->getNumber() < A.Block->getNumber();
205 if (A.Pos == -1)
206 return Pos != A.Pos;
207 return Pos != -1 && Pos < A.Pos;
208 }
209 private:
210 int Pos = 0;
211 };
212
213 struct HexagonConstExtenders : public MachineFunctionPass {
214 static char ID;
215 HexagonConstExtenders() : MachineFunctionPass(ID) {}
216
217 void getAnalysisUsage(AnalysisUsage &AU) const override {
218 AU.addRequired<MachineDominatorTree>();
219 AU.addPreserved<MachineDominatorTree>();
220 MachineFunctionPass::getAnalysisUsage(AU);
221 }
222
223 StringRef getPassName() const override {
224 return "Hexagon constant-extender optimization";
225 }
226 bool runOnMachineFunction(MachineFunction &MF) override;
227
228 private:
229 struct Register {
230 Register() = default;
231 Register(unsigned R, unsigned S) : Reg(R), Sub(S) {}
232 Register(const MachineOperand &Op)
233 : Reg(Op.getReg()), Sub(Op.getSubReg()) {}
234 Register &operator=(const MachineOperand &Op) {
235 if (Op.isReg()) {
236 Reg = Op.getReg();
237 Sub = Op.getSubReg();
238 } else if (Op.isFI()) {
239 Reg = TargetRegisterInfo::index2StackSlot(Op.getIndex());
240 }
241 return *this;
242 }
243 bool isVReg() const {
244 return Reg != 0 && !TargetRegisterInfo::isStackSlot(Reg) &&
245 TargetRegisterInfo::isVirtualRegister(Reg);
246 }
247 bool isSlot() const {
248 return Reg != 0 && TargetRegisterInfo::isStackSlot(Reg);
249 }
250 operator MachineOperand() const {
251 if (isVReg())
252 return MachineOperand::CreateReg(Reg, /*Def*/false, /*Imp*/false,
253 /*Kill*/false, /*Dead*/false, /*Undef*/false,
254 /*EarlyClobber*/false, Sub);
255 if (TargetRegisterInfo::isStackSlot(Reg)) {
256 int FI = TargetRegisterInfo::stackSlot2Index(Reg);
257 return MachineOperand::CreateFI(FI);
258 }
259 llvm_unreachable("Cannot create MachineOperand");
260 }
261 bool operator==(Register R) const { return Reg == R.Reg && Sub == R.Sub; }
262 bool operator!=(Register R) const { return !operator==(R); }
263 bool operator<(Register R) const {
264 // For std::map.
265 return Reg < R.Reg || (Reg == R.Reg && Sub < R.Sub);
266 }
267 unsigned Reg = 0, Sub = 0;
268 };
269
270 struct ExtExpr {
271 // A subexpression in which the extender is used. In general, this
272 // represents an expression where adding D to the extender will be
273 // equivalent to adding D to the expression as a whole. In other
274 // words, expr(add(##V,D) = add(expr(##V),D).
275
276 // The original motivation for this are the io/ur addressing modes,
277 // where the offset is extended. Consider the io example:
278 // In memw(Rs+##V), the ##V could be replaced by a register Rt to
279 // form the rr mode: memw(Rt+Rs<<0). In such case, however, the
280 // register Rt must have exactly the value of ##V. If there was
281 // another instruction memw(Rs+##V+4), it would need a different Rt.
282 // Now, if Rt was initialized as "##V+Rs<<0", both of these
283 // instructions could use the same Rt, just with different offsets.
284 // Here it's clear that "initializer+4" should be the same as if
285 // the offset 4 was added to the ##V in the initializer.
286
287 // The only kinds of expressions that support the requirement of
288 // commuting with addition are addition and subtraction from ##V.
289 // Include shifting the Rs to account for the ur addressing mode:
290 // ##Val + Rs << S
291 // ##Val - Rs
292 Register Rs;
293 unsigned S = 0;
294 bool Neg = false;
295
296 ExtExpr() = default;
297 ExtExpr(Register RS, bool NG, unsigned SH) : Rs(RS), S(SH), Neg(NG) {}
298 // Expression is trivial if it does not modify the extender.
299 bool trivial() const {
300 return Rs.Reg == 0;
301 }
302 bool operator==(const ExtExpr &Ex) const {
303 return Rs == Ex.Rs && S == Ex.S && Neg == Ex.Neg;
304 }
305 bool operator!=(const ExtExpr &Ex) const {
306 return !operator==(Ex);
307 }
308 bool operator<(const ExtExpr &Ex) const {
309 if (Rs != Ex.Rs)
310 return Rs < Ex.Rs;
311 if (S != Ex.S)
312 return S < Ex.S;
313 return !Neg && Ex.Neg;
314 }
315 };
316
317 struct ExtDesc {
318 MachineInstr *UseMI = nullptr;
319 unsigned OpNum = -1u;
320 // The subexpression in which the extender is used (e.g. address
321 // computation).
322 ExtExpr Expr;
323 // Optional register that is assigned the value of Expr.
324 Register Rd;
325 // Def means that the output of the instruction may differ from the
326 // original by a constant c, and that the difference can be corrected
327 // by adding/subtracting c in all users of the defined register.
328 bool IsDef = false;
329
330 MachineOperand &getOp() {
331 return UseMI->getOperand(OpNum);
332 }
333 const MachineOperand &getOp() const {
334 return UseMI->getOperand(OpNum);
335 }
336 };
337
338 struct ExtRoot {
339 union {
340 const ConstantFP *CFP; // MO_FPImmediate
341 const char *SymbolName; // MO_ExternalSymbol
342 const GlobalValue *GV; // MO_GlobalAddress
343 const BlockAddress *BA; // MO_BlockAddress
344 int64_t ImmVal; // MO_Immediate, MO_TargetIndex,
345 // and MO_ConstantPoolIndex
346 } V;
347 unsigned Kind; // Same as in MachineOperand.
348 unsigned char TF; // TargetFlags.
349
350 ExtRoot(const MachineOperand &Op);
351 bool operator==(const ExtRoot &ER) const {
352 return Kind == ER.Kind && V.ImmVal == ER.V.ImmVal;
353 }
354 bool operator!=(const ExtRoot &ER) const {
355 return !operator==(ER);
356 }
357 bool operator<(const ExtRoot &ER) const;
358 };
359
360 struct ExtValue : public ExtRoot {
361 int32_t Offset;
362
363 ExtValue(const MachineOperand &Op);
364 ExtValue(const ExtDesc &ED) : ExtValue(ED.getOp()) {}
365 ExtValue(const ExtRoot &ER, int32_t Off) : ExtRoot(ER), Offset(Off) {}
366 bool operator<(const ExtValue &EV) const;
367 bool operator==(const ExtValue &EV) const {
368 return ExtRoot(*this) == ExtRoot(EV) && Offset == EV.Offset;
369 }
370 bool operator!=(const ExtValue &EV) const {
371 return !operator==(EV);
372 }
373 explicit operator MachineOperand() const;
374 };
375
376 using IndexList = SetVector<unsigned>;
377 using ExtenderInit = std::pair<ExtValue, ExtExpr>;
378 using AssignmentMap = std::map<ExtenderInit, IndexList>;
Krzysztof Parzyszek5d3a6f72018-10-11 18:26:02 +0000379 using LocDefList = std::vector<std::pair<Loc, IndexList>>;
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000380
381 const HexagonInstrInfo *HII = nullptr;
382 const HexagonRegisterInfo *HRI = nullptr;
383 MachineDominatorTree *MDT = nullptr;
384 MachineRegisterInfo *MRI = nullptr;
385 std::vector<ExtDesc> Extenders;
386 std::vector<unsigned> NewRegs;
387
388 bool isStoreImmediate(unsigned Opc) const;
389 bool isRegOffOpcode(unsigned ExtOpc) const ;
390 unsigned getRegOffOpcode(unsigned ExtOpc) const;
391 unsigned getDirectRegReplacement(unsigned ExtOpc) const;
392 OffsetRange getOffsetRange(Register R, const MachineInstr &MI) const;
393 OffsetRange getOffsetRange(const ExtDesc &ED) const;
394 OffsetRange getOffsetRange(Register Rd) const;
395
396 void recordExtender(MachineInstr &MI, unsigned OpNum);
397 void collectInstr(MachineInstr &MI);
398 void collect(MachineFunction &MF);
399 void assignInits(const ExtRoot &ER, unsigned Begin, unsigned End,
400 AssignmentMap &IMap);
401 void calculatePlacement(const ExtenderInit &ExtI, const IndexList &Refs,
Krzysztof Parzyszek5d3a6f72018-10-11 18:26:02 +0000402 LocDefList &Defs);
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000403 Register insertInitializer(Loc DefL, const ExtenderInit &ExtI);
404 bool replaceInstrExact(const ExtDesc &ED, Register ExtR);
405 bool replaceInstrExpr(const ExtDesc &ED, const ExtenderInit &ExtI,
406 Register ExtR, int32_t &Diff);
407 bool replaceInstr(unsigned Idx, Register ExtR, const ExtenderInit &ExtI);
408 bool replaceExtenders(const AssignmentMap &IMap);
409
410 unsigned getOperandIndex(const MachineInstr &MI,
411 const MachineOperand &Op) const;
412 const MachineOperand &getPredicateOp(const MachineInstr &MI) const;
413 const MachineOperand &getLoadResultOp(const MachineInstr &MI) const;
414 const MachineOperand &getStoredValueOp(const MachineInstr &MI) const;
415
416 friend struct PrintRegister;
417 friend struct PrintExpr;
418 friend struct PrintInit;
419 friend struct PrintIMap;
420 friend raw_ostream &operator<< (raw_ostream &OS,
421 const struct PrintRegister &P);
422 friend raw_ostream &operator<< (raw_ostream &OS, const struct PrintExpr &P);
423 friend raw_ostream &operator<< (raw_ostream &OS, const struct PrintInit &P);
424 friend raw_ostream &operator<< (raw_ostream &OS, const ExtDesc &ED);
425 friend raw_ostream &operator<< (raw_ostream &OS, const ExtRoot &ER);
426 friend raw_ostream &operator<< (raw_ostream &OS, const ExtValue &EV);
427 friend raw_ostream &operator<< (raw_ostream &OS, const OffsetRange &OR);
428 friend raw_ostream &operator<< (raw_ostream &OS, const struct PrintIMap &P);
429 };
430
431 using HCE = HexagonConstExtenders;
432
Krzysztof Parzyszek74671192017-10-16 00:29:47 +0000433 LLVM_ATTRIBUTE_UNUSED
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000434 raw_ostream &operator<< (raw_ostream &OS, const OffsetRange &OR) {
435 if (OR.Min > OR.Max)
436 OS << '!';
Krzysztof Parzyszek39a98422018-01-30 18:12:37 +0000437 OS << '[' << OR.Min << ',' << OR.Max << "]a" << unsigned(OR.Align)
438 << '+' << unsigned(OR.Offset);
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000439 return OS;
440 }
441
442 struct PrintRegister {
443 PrintRegister(HCE::Register R, const HexagonRegisterInfo &I)
444 : Rs(R), HRI(I) {}
445 HCE::Register Rs;
446 const HexagonRegisterInfo &HRI;
447 };
448
Krzysztof Parzyszek74671192017-10-16 00:29:47 +0000449 LLVM_ATTRIBUTE_UNUSED
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000450 raw_ostream &operator<< (raw_ostream &OS, const PrintRegister &P) {
451 if (P.Rs.Reg != 0)
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000452 OS << printReg(P.Rs.Reg, &P.HRI, P.Rs.Sub);
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000453 else
454 OS << "noreg";
455 return OS;
456 }
457
458 struct PrintExpr {
459 PrintExpr(const HCE::ExtExpr &E, const HexagonRegisterInfo &I)
460 : Ex(E), HRI(I) {}
461 const HCE::ExtExpr &Ex;
462 const HexagonRegisterInfo &HRI;
463 };
464
Krzysztof Parzyszek74671192017-10-16 00:29:47 +0000465 LLVM_ATTRIBUTE_UNUSED
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000466 raw_ostream &operator<< (raw_ostream &OS, const PrintExpr &P) {
467 OS << "## " << (P.Ex.Neg ? "- " : "+ ");
468 if (P.Ex.Rs.Reg != 0)
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000469 OS << printReg(P.Ex.Rs.Reg, &P.HRI, P.Ex.Rs.Sub);
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000470 else
471 OS << "__";
472 OS << " << " << P.Ex.S;
473 return OS;
474 }
475
476 struct PrintInit {
477 PrintInit(const HCE::ExtenderInit &EI, const HexagonRegisterInfo &I)
478 : ExtI(EI), HRI(I) {}
479 const HCE::ExtenderInit &ExtI;
480 const HexagonRegisterInfo &HRI;
481 };
482
Krzysztof Parzyszek74671192017-10-16 00:29:47 +0000483 LLVM_ATTRIBUTE_UNUSED
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000484 raw_ostream &operator<< (raw_ostream &OS, const PrintInit &P) {
485 OS << '[' << P.ExtI.first << ", "
486 << PrintExpr(P.ExtI.second, P.HRI) << ']';
487 return OS;
488 }
489
Krzysztof Parzyszek74671192017-10-16 00:29:47 +0000490 LLVM_ATTRIBUTE_UNUSED
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000491 raw_ostream &operator<< (raw_ostream &OS, const HCE::ExtDesc &ED) {
492 assert(ED.OpNum != -1u);
493 const MachineBasicBlock &MBB = *ED.getOp().getParent()->getParent();
494 const MachineFunction &MF = *MBB.getParent();
495 const auto &HRI = *MF.getSubtarget<HexagonSubtarget>().getRegisterInfo();
496 OS << "bb#" << MBB.getNumber() << ": ";
497 if (ED.Rd.Reg != 0)
Francis Visoiu Mistrih9d419d32017-11-28 12:42:37 +0000498 OS << printReg(ED.Rd.Reg, &HRI, ED.Rd.Sub);
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000499 else
500 OS << "__";
501 OS << " = " << PrintExpr(ED.Expr, HRI);
502 if (ED.IsDef)
503 OS << ", def";
504 return OS;
505 }
506
Krzysztof Parzyszek74671192017-10-16 00:29:47 +0000507 LLVM_ATTRIBUTE_UNUSED
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000508 raw_ostream &operator<< (raw_ostream &OS, const HCE::ExtRoot &ER) {
509 switch (ER.Kind) {
510 case MachineOperand::MO_Immediate:
511 OS << "imm:" << ER.V.ImmVal;
512 break;
513 case MachineOperand::MO_FPImmediate:
514 OS << "fpi:" << *ER.V.CFP;
515 break;
516 case MachineOperand::MO_ExternalSymbol:
517 OS << "sym:" << *ER.V.SymbolName;
518 break;
519 case MachineOperand::MO_GlobalAddress:
520 OS << "gad:" << ER.V.GV->getName();
521 break;
522 case MachineOperand::MO_BlockAddress:
523 OS << "blk:" << *ER.V.BA;
524 break;
525 case MachineOperand::MO_TargetIndex:
526 OS << "tgi:" << ER.V.ImmVal;
527 break;
528 case MachineOperand::MO_ConstantPoolIndex:
529 OS << "cpi:" << ER.V.ImmVal;
530 break;
531 case MachineOperand::MO_JumpTableIndex:
532 OS << "jti:" << ER.V.ImmVal;
533 break;
534 default:
535 OS << "???:" << ER.V.ImmVal;
536 break;
537 }
538 return OS;
539 }
540
Krzysztof Parzyszek74671192017-10-16 00:29:47 +0000541 LLVM_ATTRIBUTE_UNUSED
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000542 raw_ostream &operator<< (raw_ostream &OS, const HCE::ExtValue &EV) {
543 OS << HCE::ExtRoot(EV) << " off:" << EV.Offset;
544 return OS;
545 }
546
547 struct PrintIMap {
548 PrintIMap(const HCE::AssignmentMap &M, const HexagonRegisterInfo &I)
549 : IMap(M), HRI(I) {}
550 const HCE::AssignmentMap &IMap;
551 const HexagonRegisterInfo &HRI;
552 };
553
Krzysztof Parzyszek74671192017-10-16 00:29:47 +0000554 LLVM_ATTRIBUTE_UNUSED
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000555 raw_ostream &operator<< (raw_ostream &OS, const PrintIMap &P) {
556 OS << "{\n";
557 for (const std::pair<HCE::ExtenderInit,HCE::IndexList> &Q : P.IMap) {
558 OS << " " << PrintInit(Q.first, P.HRI) << " -> {";
559 for (unsigned I : Q.second)
560 OS << ' ' << I;
561 OS << " }\n";
562 }
563 OS << "}\n";
564 return OS;
565 }
566}
567
568INITIALIZE_PASS_BEGIN(HexagonConstExtenders, "hexagon-cext-opt",
569 "Hexagon constant-extender optimization", false, false)
570INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
571INITIALIZE_PASS_END(HexagonConstExtenders, "hexagon-cext-opt",
572 "Hexagon constant-extender optimization", false, false)
573
574static unsigned ReplaceCounter = 0;
575
576char HCE::ID = 0;
577
Eric Christopher3148a1b2017-11-16 03:18:15 +0000578#ifndef NDEBUG
Davide Italiano76067582017-10-14 23:46:01 +0000579LLVM_DUMP_METHOD void RangeTree::dump() const {
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000580 dbgs() << "Root: " << Root << '\n';
581 if (Root)
582 dump(Root);
583}
584
Eric Christopher3148a1b2017-11-16 03:18:15 +0000585LLVM_DUMP_METHOD void RangeTree::dump(const Node *N) const {
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000586 dbgs() << "Node: " << N << '\n';
587 dbgs() << " Height: " << N->Height << '\n';
588 dbgs() << " Count: " << N->Count << '\n';
589 dbgs() << " MaxEnd: " << N->MaxEnd << '\n';
590 dbgs() << " Range: " << N->Range << '\n';
591 dbgs() << " Left: " << N->Left << '\n';
592 dbgs() << " Right: " << N->Right << "\n\n";
593
594 if (N->Left)
595 dump(N->Left);
596 if (N->Right)
597 dump(N->Right);
598}
Eric Christopher3148a1b2017-11-16 03:18:15 +0000599#endif
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000600
601void RangeTree::order(Node *N, SmallVectorImpl<Node*> &Seq) const {
602 if (N == nullptr)
603 return;
604 order(N->Left, Seq);
605 Seq.push_back(N);
606 order(N->Right, Seq);
607}
608
609void RangeTree::nodesWith(Node *N, int32_t P, bool CheckA,
610 SmallVectorImpl<Node*> &Seq) const {
611 if (N == nullptr || N->MaxEnd < P)
612 return;
613 nodesWith(N->Left, P, CheckA, Seq);
614 if (N->Range.Min <= P) {
615 if ((CheckA && N->Range.contains(P)) || (!CheckA && P <= N->Range.Max))
616 Seq.push_back(N);
617 nodesWith(N->Right, P, CheckA, Seq);
618 }
619}
620
621RangeTree::Node *RangeTree::add(Node *N, const OffsetRange &R) {
622 if (N == nullptr)
623 return new Node(R);
624
625 if (N->Range == R) {
626 N->Count++;
627 return N;
628 }
629
630 if (R < N->Range)
631 N->Left = add(N->Left, R);
632 else
633 N->Right = add(N->Right, R);
634 return rebalance(update(N));
635}
636
637RangeTree::Node *RangeTree::remove(Node *N, const Node *D) {
638 assert(N != nullptr);
639
640 if (N != D) {
641 assert(N->Range != D->Range && "N and D should not be equal");
642 if (D->Range < N->Range)
643 N->Left = remove(N->Left, D);
644 else
645 N->Right = remove(N->Right, D);
646 return rebalance(update(N));
647 }
648
649 // We got to the node we need to remove. If any of its children are
650 // missing, simply replace it with the other child.
651 if (N->Left == nullptr || N->Right == nullptr)
652 return (N->Left == nullptr) ? N->Right : N->Left;
653
654 // Find the rightmost child of N->Left, remove it and plug it in place
655 // of N.
656 Node *M = N->Left;
657 while (M->Right)
658 M = M->Right;
659 M->Left = remove(N->Left, M);
660 M->Right = N->Right;
661 return rebalance(update(M));
662}
663
664RangeTree::Node *RangeTree::rotateLeft(Node *Lower, Node *Higher) {
665 assert(Higher->Right == Lower);
666 // The Lower node is on the right from Higher. Make sure that Lower's
667 // balance is greater to the right. Otherwise the rotation will create
668 // an unbalanced tree again.
669 if (height(Lower->Left) > height(Lower->Right))
670 Lower = rotateRight(Lower->Left, Lower);
671 assert(height(Lower->Left) <= height(Lower->Right));
672 Higher->Right = Lower->Left;
673 update(Higher);
674 Lower->Left = Higher;
675 update(Lower);
676 return Lower;
677}
678
679RangeTree::Node *RangeTree::rotateRight(Node *Lower, Node *Higher) {
680 assert(Higher->Left == Lower);
681 // The Lower node is on the left from Higher. Make sure that Lower's
682 // balance is greater to the left. Otherwise the rotation will create
683 // an unbalanced tree again.
684 if (height(Lower->Left) < height(Lower->Right))
685 Lower = rotateLeft(Lower->Right, Lower);
686 assert(height(Lower->Left) >= height(Lower->Right));
687 Higher->Left = Lower->Right;
688 update(Higher);
689 Lower->Right = Higher;
690 update(Lower);
691 return Lower;
692}
693
694
695HCE::ExtRoot::ExtRoot(const MachineOperand &Op) {
696 // Always store ImmVal, since it's the field used for comparisons.
697 V.ImmVal = 0;
698 if (Op.isImm())
699 ; // Keep 0. Do not use Op.getImm() for value here (treat 0 as the root).
700 else if (Op.isFPImm())
701 V.CFP = Op.getFPImm();
702 else if (Op.isSymbol())
703 V.SymbolName = Op.getSymbolName();
704 else if (Op.isGlobal())
705 V.GV = Op.getGlobal();
706 else if (Op.isBlockAddress())
707 V.BA = Op.getBlockAddress();
708 else if (Op.isCPI() || Op.isTargetIndex() || Op.isJTI())
709 V.ImmVal = Op.getIndex();
710 else
711 llvm_unreachable("Unexpected operand type");
712
713 Kind = Op.getType();
714 TF = Op.getTargetFlags();
715}
716
717bool HCE::ExtRoot::operator< (const HCE::ExtRoot &ER) const {
718 if (Kind != ER.Kind)
719 return Kind < ER.Kind;
720 switch (Kind) {
721 case MachineOperand::MO_Immediate:
722 case MachineOperand::MO_TargetIndex:
723 case MachineOperand::MO_ConstantPoolIndex:
724 case MachineOperand::MO_JumpTableIndex:
725 return V.ImmVal < ER.V.ImmVal;
726 case MachineOperand::MO_FPImmediate: {
727 const APFloat &ThisF = V.CFP->getValueAPF();
728 const APFloat &OtherF = ER.V.CFP->getValueAPF();
729 return ThisF.bitcastToAPInt().ult(OtherF.bitcastToAPInt());
730 }
731 case MachineOperand::MO_ExternalSymbol:
732 return StringRef(V.SymbolName) < StringRef(ER.V.SymbolName);
Krzysztof Parzyszek31f25172018-09-05 15:54:44 +0000733 case MachineOperand::MO_GlobalAddress:
Krzysztof Parzyszek5d3a6f72018-10-11 18:26:02 +0000734 // Do not use GUIDs, since they depend on the source path. Moving the
735 // source file to a different directory could cause different GUID
736 // values for a pair of given symbols. These symbols could then compare
737 // "less" in one directory, but "greater" in another.
738 assert(!V.GV->getName().empty() && !ER.V.GV->getName().empty());
739 return V.GV->getName() < ER.V.GV->getName();
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +0000740 case MachineOperand::MO_BlockAddress: {
741 const BasicBlock *ThisB = V.BA->getBasicBlock();
742 const BasicBlock *OtherB = ER.V.BA->getBasicBlock();
743 assert(ThisB->getParent() == OtherB->getParent());
744 const Function &F = *ThisB->getParent();
745 return std::distance(F.begin(), ThisB->getIterator()) <
746 std::distance(F.begin(), OtherB->getIterator());
747 }
748 }
749 return V.ImmVal < ER.V.ImmVal;
750}
751
752HCE::ExtValue::ExtValue(const MachineOperand &Op) : ExtRoot(Op) {
753 if (Op.isImm())
754 Offset = Op.getImm();
755 else if (Op.isFPImm() || Op.isJTI())
756 Offset = 0;
757 else if (Op.isSymbol() || Op.isGlobal() || Op.isBlockAddress() ||
758 Op.isCPI() || Op.isTargetIndex())
759 Offset = Op.getOffset();
760 else
761 llvm_unreachable("Unexpected operand type");
762}
763
764bool HCE::ExtValue::operator< (const HCE::ExtValue &EV) const {
765 const ExtRoot &ER = *this;
766 if (!(ER == ExtRoot(EV)))
767 return ER < EV;
768 return Offset < EV.Offset;
769}
770
771HCE::ExtValue::operator MachineOperand() const {
772 switch (Kind) {
773 case MachineOperand::MO_Immediate:
774 return MachineOperand::CreateImm(V.ImmVal + Offset);
775 case MachineOperand::MO_FPImmediate:
776 assert(Offset == 0);
777 return MachineOperand::CreateFPImm(V.CFP);
778 case MachineOperand::MO_ExternalSymbol:
779 assert(Offset == 0);
780 return MachineOperand::CreateES(V.SymbolName, TF);
781 case MachineOperand::MO_GlobalAddress:
782 return MachineOperand::CreateGA(V.GV, Offset, TF);
783 case MachineOperand::MO_BlockAddress:
784 return MachineOperand::CreateBA(V.BA, Offset, TF);
785 case MachineOperand::MO_TargetIndex:
786 return MachineOperand::CreateTargetIndex(V.ImmVal, Offset, TF);
787 case MachineOperand::MO_ConstantPoolIndex:
788 return MachineOperand::CreateCPI(V.ImmVal, Offset, TF);
789 case MachineOperand::MO_JumpTableIndex:
790 assert(Offset == 0);
791 default:
792 llvm_unreachable("Unhandled kind");
793 }
794}
795
796bool HCE::isStoreImmediate(unsigned Opc) const {
797 switch (Opc) {
798 case Hexagon::S4_storeirbt_io:
799 case Hexagon::S4_storeirbf_io:
800 case Hexagon::S4_storeirht_io:
801 case Hexagon::S4_storeirhf_io:
802 case Hexagon::S4_storeirit_io:
803 case Hexagon::S4_storeirif_io:
804 case Hexagon::S4_storeirb_io:
805 case Hexagon::S4_storeirh_io:
806 case Hexagon::S4_storeiri_io:
807 return true;
808 default:
809 break;
810 }
811 return false;
812}
813
814bool HCE::isRegOffOpcode(unsigned Opc) const {
815 switch (Opc) {
816 case Hexagon::L2_loadrub_io:
817 case Hexagon::L2_loadrb_io:
818 case Hexagon::L2_loadruh_io:
819 case Hexagon::L2_loadrh_io:
820 case Hexagon::L2_loadri_io:
821 case Hexagon::L2_loadrd_io:
822 case Hexagon::L2_loadbzw2_io:
823 case Hexagon::L2_loadbzw4_io:
824 case Hexagon::L2_loadbsw2_io:
825 case Hexagon::L2_loadbsw4_io:
826 case Hexagon::L2_loadalignh_io:
827 case Hexagon::L2_loadalignb_io:
828 case Hexagon::L2_ploadrubt_io:
829 case Hexagon::L2_ploadrubf_io:
830 case Hexagon::L2_ploadrbt_io:
831 case Hexagon::L2_ploadrbf_io:
832 case Hexagon::L2_ploadruht_io:
833 case Hexagon::L2_ploadruhf_io:
834 case Hexagon::L2_ploadrht_io:
835 case Hexagon::L2_ploadrhf_io:
836 case Hexagon::L2_ploadrit_io:
837 case Hexagon::L2_ploadrif_io:
838 case Hexagon::L2_ploadrdt_io:
839 case Hexagon::L2_ploadrdf_io:
840 case Hexagon::S2_storerb_io:
841 case Hexagon::S2_storerh_io:
842 case Hexagon::S2_storerf_io:
843 case Hexagon::S2_storeri_io:
844 case Hexagon::S2_storerd_io:
845 case Hexagon::S2_pstorerbt_io:
846 case Hexagon::S2_pstorerbf_io:
847 case Hexagon::S2_pstorerht_io:
848 case Hexagon::S2_pstorerhf_io:
849 case Hexagon::S2_pstorerft_io:
850 case Hexagon::S2_pstorerff_io:
851 case Hexagon::S2_pstorerit_io:
852 case Hexagon::S2_pstorerif_io:
853 case Hexagon::S2_pstorerdt_io:
854 case Hexagon::S2_pstorerdf_io:
855 case Hexagon::A2_addi:
856 return true;
857 default:
858 break;
859 }
860 return false;
861}
862
863unsigned HCE::getRegOffOpcode(unsigned ExtOpc) const {
864 // If there exists an instruction that takes a register and offset,
865 // that corresponds to the ExtOpc, return it, otherwise return 0.
866 using namespace Hexagon;
867 switch (ExtOpc) {
868 case A2_tfrsi: return A2_addi;
869 default:
870 break;
871 }
872 const MCInstrDesc &D = HII->get(ExtOpc);
873 if (D.mayLoad() || D.mayStore()) {
874 uint64_t F = D.TSFlags;
875 unsigned AM = (F >> HexagonII::AddrModePos) & HexagonII::AddrModeMask;
876 switch (AM) {
877 case HexagonII::Absolute:
878 case HexagonII::AbsoluteSet:
879 case HexagonII::BaseLongOffset:
880 switch (ExtOpc) {
881 case PS_loadrubabs:
882 case L4_loadrub_ap:
883 case L4_loadrub_ur: return L2_loadrub_io;
884 case PS_loadrbabs:
885 case L4_loadrb_ap:
886 case L4_loadrb_ur: return L2_loadrb_io;
887 case PS_loadruhabs:
888 case L4_loadruh_ap:
889 case L4_loadruh_ur: return L2_loadruh_io;
890 case PS_loadrhabs:
891 case L4_loadrh_ap:
892 case L4_loadrh_ur: return L2_loadrh_io;
893 case PS_loadriabs:
894 case L4_loadri_ap:
895 case L4_loadri_ur: return L2_loadri_io;
896 case PS_loadrdabs:
897 case L4_loadrd_ap:
898 case L4_loadrd_ur: return L2_loadrd_io;
899 case L4_loadbzw2_ap:
900 case L4_loadbzw2_ur: return L2_loadbzw2_io;
901 case L4_loadbzw4_ap:
902 case L4_loadbzw4_ur: return L2_loadbzw4_io;
903 case L4_loadbsw2_ap:
904 case L4_loadbsw2_ur: return L2_loadbsw2_io;
905 case L4_loadbsw4_ap:
906 case L4_loadbsw4_ur: return L2_loadbsw4_io;
907 case L4_loadalignh_ap:
908 case L4_loadalignh_ur: return L2_loadalignh_io;
909 case L4_loadalignb_ap:
910 case L4_loadalignb_ur: return L2_loadalignb_io;
911 case L4_ploadrubt_abs: return L2_ploadrubt_io;
912 case L4_ploadrubf_abs: return L2_ploadrubf_io;
913 case L4_ploadrbt_abs: return L2_ploadrbt_io;
914 case L4_ploadrbf_abs: return L2_ploadrbf_io;
915 case L4_ploadruht_abs: return L2_ploadruht_io;
916 case L4_ploadruhf_abs: return L2_ploadruhf_io;
917 case L4_ploadrht_abs: return L2_ploadrht_io;
918 case L4_ploadrhf_abs: return L2_ploadrhf_io;
919 case L4_ploadrit_abs: return L2_ploadrit_io;
920 case L4_ploadrif_abs: return L2_ploadrif_io;
921 case L4_ploadrdt_abs: return L2_ploadrdt_io;
922 case L4_ploadrdf_abs: return L2_ploadrdf_io;
923 case PS_storerbabs:
924 case S4_storerb_ap:
925 case S4_storerb_ur: return S2_storerb_io;
926 case PS_storerhabs:
927 case S4_storerh_ap:
928 case S4_storerh_ur: return S2_storerh_io;
929 case PS_storerfabs:
930 case S4_storerf_ap:
931 case S4_storerf_ur: return S2_storerf_io;
932 case PS_storeriabs:
933 case S4_storeri_ap:
934 case S4_storeri_ur: return S2_storeri_io;
935 case PS_storerdabs:
936 case S4_storerd_ap:
937 case S4_storerd_ur: return S2_storerd_io;
938 case S4_pstorerbt_abs: return S2_pstorerbt_io;
939 case S4_pstorerbf_abs: return S2_pstorerbf_io;
940 case S4_pstorerht_abs: return S2_pstorerht_io;
941 case S4_pstorerhf_abs: return S2_pstorerhf_io;
942 case S4_pstorerft_abs: return S2_pstorerft_io;
943 case S4_pstorerff_abs: return S2_pstorerff_io;
944 case S4_pstorerit_abs: return S2_pstorerit_io;
945 case S4_pstorerif_abs: return S2_pstorerif_io;
946 case S4_pstorerdt_abs: return S2_pstorerdt_io;
947 case S4_pstorerdf_abs: return S2_pstorerdf_io;
948 default:
949 break;
950 }
951 break;
952 case HexagonII::BaseImmOffset:
953 if (!isStoreImmediate(ExtOpc))
954 return ExtOpc;
955 break;
956 default:
957 break;
958 }
959 }
960 return 0;
961}
962
963unsigned HCE::getDirectRegReplacement(unsigned ExtOpc) const {
964 switch (ExtOpc) {
965 case Hexagon::A2_addi: return Hexagon::A2_add;
966 case Hexagon::A2_andir: return Hexagon::A2_and;
967 case Hexagon::A2_combineii: return Hexagon::A4_combineri;
968 case Hexagon::A2_orir: return Hexagon::A2_or;
969 case Hexagon::A2_paddif: return Hexagon::A2_paddf;
970 case Hexagon::A2_paddit: return Hexagon::A2_paddt;
971 case Hexagon::A2_subri: return Hexagon::A2_sub;
972 case Hexagon::A2_tfrsi: return TargetOpcode::COPY;
973 case Hexagon::A4_cmpbeqi: return Hexagon::A4_cmpbeq;
974 case Hexagon::A4_cmpbgti: return Hexagon::A4_cmpbgt;
975 case Hexagon::A4_cmpbgtui: return Hexagon::A4_cmpbgtu;
976 case Hexagon::A4_cmpheqi: return Hexagon::A4_cmpheq;
977 case Hexagon::A4_cmphgti: return Hexagon::A4_cmphgt;
978 case Hexagon::A4_cmphgtui: return Hexagon::A4_cmphgtu;
979 case Hexagon::A4_combineii: return Hexagon::A4_combineir;
980 case Hexagon::A4_combineir: return TargetOpcode::REG_SEQUENCE;
981 case Hexagon::A4_combineri: return TargetOpcode::REG_SEQUENCE;
982 case Hexagon::A4_rcmpeqi: return Hexagon::A4_rcmpeq;
983 case Hexagon::A4_rcmpneqi: return Hexagon::A4_rcmpneq;
984 case Hexagon::C2_cmoveif: return Hexagon::A2_tfrpf;
985 case Hexagon::C2_cmoveit: return Hexagon::A2_tfrpt;
986 case Hexagon::C2_cmpeqi: return Hexagon::C2_cmpeq;
987 case Hexagon::C2_cmpgti: return Hexagon::C2_cmpgt;
988 case Hexagon::C2_cmpgtui: return Hexagon::C2_cmpgtu;
989 case Hexagon::C2_muxii: return Hexagon::C2_muxir;
990 case Hexagon::C2_muxir: return Hexagon::C2_mux;
991 case Hexagon::C2_muxri: return Hexagon::C2_mux;
992 case Hexagon::C4_cmpltei: return Hexagon::C4_cmplte;
993 case Hexagon::C4_cmplteui: return Hexagon::C4_cmplteu;
994 case Hexagon::C4_cmpneqi: return Hexagon::C4_cmpneq;
995 case Hexagon::M2_accii: return Hexagon::M2_acci; // T -> T
996 /* No M2_macsin */
997 case Hexagon::M2_macsip: return Hexagon::M2_maci; // T -> T
998 case Hexagon::M2_mpysin: return Hexagon::M2_mpyi;
999 case Hexagon::M2_mpysip: return Hexagon::M2_mpyi;
1000 case Hexagon::M2_mpysmi: return Hexagon::M2_mpyi;
1001 case Hexagon::M2_naccii: return Hexagon::M2_nacci; // T -> T
1002 case Hexagon::M4_mpyri_addi: return Hexagon::M4_mpyri_addr;
1003 case Hexagon::M4_mpyri_addr: return Hexagon::M4_mpyrr_addr; // _ -> T
1004 case Hexagon::M4_mpyrr_addi: return Hexagon::M4_mpyrr_addr; // _ -> T
1005 case Hexagon::S4_addaddi: return Hexagon::M2_acci; // _ -> T
1006 case Hexagon::S4_addi_asl_ri: return Hexagon::S2_asl_i_r_acc; // T -> T
1007 case Hexagon::S4_addi_lsr_ri: return Hexagon::S2_lsr_i_r_acc; // T -> T
1008 case Hexagon::S4_andi_asl_ri: return Hexagon::S2_asl_i_r_and; // T -> T
1009 case Hexagon::S4_andi_lsr_ri: return Hexagon::S2_lsr_i_r_and; // T -> T
1010 case Hexagon::S4_ori_asl_ri: return Hexagon::S2_asl_i_r_or; // T -> T
1011 case Hexagon::S4_ori_lsr_ri: return Hexagon::S2_lsr_i_r_or; // T -> T
1012 case Hexagon::S4_subaddi: return Hexagon::M2_subacc; // _ -> T
1013 case Hexagon::S4_subi_asl_ri: return Hexagon::S2_asl_i_r_nac; // T -> T
1014 case Hexagon::S4_subi_lsr_ri: return Hexagon::S2_lsr_i_r_nac; // T -> T
1015
1016 // Store-immediates:
1017 case Hexagon::S4_storeirbf_io: return Hexagon::S2_pstorerbf_io;
1018 case Hexagon::S4_storeirb_io: return Hexagon::S2_storerb_io;
1019 case Hexagon::S4_storeirbt_io: return Hexagon::S2_pstorerbt_io;
1020 case Hexagon::S4_storeirhf_io: return Hexagon::S2_pstorerhf_io;
1021 case Hexagon::S4_storeirh_io: return Hexagon::S2_storerh_io;
1022 case Hexagon::S4_storeirht_io: return Hexagon::S2_pstorerht_io;
1023 case Hexagon::S4_storeirif_io: return Hexagon::S2_pstorerif_io;
1024 case Hexagon::S4_storeiri_io: return Hexagon::S2_storeri_io;
1025 case Hexagon::S4_storeirit_io: return Hexagon::S2_pstorerit_io;
1026
1027 default:
1028 break;
1029 }
1030 return 0;
1031}
1032
Krzysztof Parzyszek1a1edbf2018-01-26 19:20:50 +00001033// Return the allowable deviation from the current value of Rb (i.e. the
1034// range of values that can be added to the current value) which the
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001035// instruction MI can accommodate.
1036// The instruction MI is a user of register Rb, which is defined via an
1037// extender. It may be possible for MI to be tweaked to work for a register
1038// defined with a slightly different value. For example
Krzysztof Parzyszek1a1edbf2018-01-26 19:20:50 +00001039// ... = L2_loadrub_io Rb, 1
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001040// can be modifed to be
Krzysztof Parzyszek1a1edbf2018-01-26 19:20:50 +00001041// ... = L2_loadrub_io Rb', 0
1042// if Rb' = Rb+1.
1043// The range for Rb would be [Min+1, Max+1], where [Min, Max] is a range
1044// for L2_loadrub with offset 0. That means that Rb could be replaced with
1045// Rc, where Rc-Rb belongs to [Min+1, Max+1].
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001046OffsetRange HCE::getOffsetRange(Register Rb, const MachineInstr &MI) const {
1047 unsigned Opc = MI.getOpcode();
1048 // Instructions that are constant-extended may be replaced with something
1049 // else that no longer offers the same range as the original.
1050 if (!isRegOffOpcode(Opc) || HII->isConstExtended(MI))
1051 return OffsetRange::zero();
1052
1053 if (Opc == Hexagon::A2_addi) {
1054 const MachineOperand &Op1 = MI.getOperand(1), &Op2 = MI.getOperand(2);
1055 if (Rb != Register(Op1) || !Op2.isImm())
1056 return OffsetRange::zero();
1057 OffsetRange R = { -(1<<15)+1, (1<<15)-1, 1 };
1058 return R.shift(Op2.getImm());
1059 }
1060
1061 // HII::getBaseAndOffsetPosition returns the increment position as "offset".
1062 if (HII->isPostIncrement(MI))
1063 return OffsetRange::zero();
1064
1065 const MCInstrDesc &D = HII->get(Opc);
1066 assert(D.mayLoad() || D.mayStore());
1067
1068 unsigned BaseP, OffP;
1069 if (!HII->getBaseAndOffsetPosition(MI, BaseP, OffP) ||
1070 Rb != Register(MI.getOperand(BaseP)) ||
1071 !MI.getOperand(OffP).isImm())
1072 return OffsetRange::zero();
1073
1074 uint64_t F = (D.TSFlags >> HexagonII::MemAccessSizePos) &
1075 HexagonII::MemAccesSizeMask;
1076 uint8_t A = HexagonII::getMemAccessSizeInBytes(HexagonII::MemAccessSize(F));
1077 unsigned L = Log2_32(A);
1078 unsigned S = 10+L; // sint11_L
1079 int32_t Min = -alignDown((1<<S)-1, A);
Krzysztof Parzyszek27056da2017-10-25 18:46:40 +00001080
1081 // The range will be shifted by Off. To prefer non-negative offsets,
1082 // adjust Max accordingly.
1083 int32_t Off = MI.getOperand(OffP).getImm();
1084 int32_t Max = Off >= 0 ? 0 : -Off;
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001085
1086 OffsetRange R = { Min, Max, A };
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001087 return R.shift(Off);
1088}
1089
1090// Return the allowable deviation from the current value of the extender ED,
1091// for which the instruction corresponding to ED can be modified without
1092// using an extender.
1093// The instruction uses the extender directly. It will be replaced with
1094// another instruction, say MJ, where the extender will be replaced with a
1095// register. MJ can allow some variability with respect to the value of
1096// that register, as is the case with indexed memory instructions.
1097OffsetRange HCE::getOffsetRange(const ExtDesc &ED) const {
1098 // The only way that there can be a non-zero range available is if
1099 // the instruction using ED will be converted to an indexed memory
1100 // instruction.
1101 unsigned IdxOpc = getRegOffOpcode(ED.UseMI->getOpcode());
1102 switch (IdxOpc) {
1103 case 0:
1104 return OffsetRange::zero();
1105 case Hexagon::A2_addi: // s16
1106 return { -32767, 32767, 1 };
1107 case Hexagon::A2_subri: // s10
1108 return { -511, 511, 1 };
1109 }
1110
1111 if (!ED.UseMI->mayLoad() && !ED.UseMI->mayStore())
1112 return OffsetRange::zero();
1113 const MCInstrDesc &D = HII->get(IdxOpc);
1114 uint64_t F = (D.TSFlags >> HexagonII::MemAccessSizePos) &
1115 HexagonII::MemAccesSizeMask;
1116 uint8_t A = HexagonII::getMemAccessSizeInBytes(HexagonII::MemAccessSize(F));
1117 unsigned L = Log2_32(A);
1118 unsigned S = 10+L; // sint11_L
1119 int32_t Min = -alignDown((1<<S)-1, A);
1120 int32_t Max = 0; // Force non-negative offsets.
1121 return { Min, Max, A };
1122}
1123
1124// Get the allowable deviation from the current value of Rd by checking
1125// all uses of Rd.
1126OffsetRange HCE::getOffsetRange(Register Rd) const {
1127 OffsetRange Range;
1128 for (const MachineOperand &Op : MRI->use_operands(Rd.Reg)) {
1129 // Make sure that the register being used by this operand is identical
1130 // to the register that was defined: using a different subregister
1131 // precludes any non-trivial range.
1132 if (Rd != Register(Op))
1133 return OffsetRange::zero();
1134 Range.intersect(getOffsetRange(Rd, *Op.getParent()));
1135 }
1136 return Range;
1137}
1138
1139void HCE::recordExtender(MachineInstr &MI, unsigned OpNum) {
1140 unsigned Opc = MI.getOpcode();
1141 ExtDesc ED;
1142 ED.OpNum = OpNum;
1143
1144 bool IsLoad = MI.mayLoad();
1145 bool IsStore = MI.mayStore();
1146
Krzysztof Parzyszek64212012018-04-20 19:06:46 +00001147 // Fixed stack slots have negative indexes, and they cannot be used
1148 // with TRI::stackSlot2Index and TRI::index2StackSlot. This is somewhat
1149 // unfortunate, but should not be a frequent thing.
1150 for (MachineOperand &Op : MI.operands())
1151 if (Op.isFI() && Op.getIndex() < 0)
1152 return;
1153
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001154 if (IsLoad || IsStore) {
1155 unsigned AM = HII->getAddrMode(MI);
1156 switch (AM) {
1157 // (Re: ##Off + Rb<<S) = Rd: ##Val
1158 case HexagonII::Absolute: // (__: ## + __<<_)
1159 break;
1160 case HexagonII::AbsoluteSet: // (Rd: ## + __<<_)
1161 ED.Rd = MI.getOperand(OpNum-1);
1162 ED.IsDef = true;
1163 break;
1164 case HexagonII::BaseImmOffset: // (__: ## + Rs<<0)
1165 // Store-immediates are treated as non-memory operations, since
1166 // it's the value being stored that is extended (as opposed to
1167 // a part of the address).
1168 if (!isStoreImmediate(Opc))
1169 ED.Expr.Rs = MI.getOperand(OpNum-1);
1170 break;
1171 case HexagonII::BaseLongOffset: // (__: ## + Rs<<S)
1172 ED.Expr.Rs = MI.getOperand(OpNum-2);
1173 ED.Expr.S = MI.getOperand(OpNum-1).getImm();
1174 break;
1175 default:
1176 llvm_unreachable("Unhandled memory instruction");
1177 }
1178 } else {
1179 switch (Opc) {
1180 case Hexagon::A2_tfrsi: // (Rd: ## + __<<_)
1181 ED.Rd = MI.getOperand(0);
1182 ED.IsDef = true;
1183 break;
1184 case Hexagon::A2_combineii: // (Rd: ## + __<<_)
1185 case Hexagon::A4_combineir:
1186 ED.Rd = { MI.getOperand(0).getReg(), Hexagon::isub_hi };
1187 ED.IsDef = true;
1188 break;
1189 case Hexagon::A4_combineri: // (Rd: ## + __<<_)
1190 ED.Rd = { MI.getOperand(0).getReg(), Hexagon::isub_lo };
1191 ED.IsDef = true;
1192 break;
1193 case Hexagon::A2_addi: // (Rd: ## + Rs<<0)
1194 ED.Rd = MI.getOperand(0);
1195 ED.Expr.Rs = MI.getOperand(OpNum-1);
1196 break;
1197 case Hexagon::M2_accii: // (__: ## + Rs<<0)
1198 case Hexagon::M2_naccii:
1199 case Hexagon::S4_addaddi:
1200 ED.Expr.Rs = MI.getOperand(OpNum-1);
1201 break;
1202 case Hexagon::A2_subri: // (Rd: ## - Rs<<0)
1203 ED.Rd = MI.getOperand(0);
1204 ED.Expr.Rs = MI.getOperand(OpNum+1);
1205 ED.Expr.Neg = true;
1206 break;
1207 case Hexagon::S4_subaddi: // (__: ## - Rs<<0)
1208 ED.Expr.Rs = MI.getOperand(OpNum+1);
1209 ED.Expr.Neg = true;
1210 default: // (__: ## + __<<_)
1211 break;
1212 }
1213 }
1214
1215 ED.UseMI = &MI;
Krzysztof Parzyszek31f25172018-09-05 15:54:44 +00001216
1217 // Ignore unnamed globals.
1218 ExtRoot ER(ED.getOp());
1219 if (ER.Kind == MachineOperand::MO_GlobalAddress)
1220 if (ER.V.GV->getName().empty())
1221 return;
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001222 Extenders.push_back(ED);
1223}
1224
1225void HCE::collectInstr(MachineInstr &MI) {
1226 if (!HII->isConstExtended(MI))
1227 return;
1228
1229 // Skip some non-convertible instructions.
1230 unsigned Opc = MI.getOpcode();
1231 switch (Opc) {
1232 case Hexagon::M2_macsin: // There is no Rx -= mpyi(Rs,Rt).
1233 case Hexagon::C4_addipc:
1234 case Hexagon::S4_or_andi:
1235 case Hexagon::S4_or_andix:
1236 case Hexagon::S4_or_ori:
1237 return;
1238 }
1239 recordExtender(MI, HII->getCExtOpNum(MI));
1240}
1241
1242void HCE::collect(MachineFunction &MF) {
1243 Extenders.clear();
Krzysztof Parzyszek5d3a6f72018-10-11 18:26:02 +00001244 for (MachineBasicBlock &MBB : MF) {
1245 // Skip unreachable blocks.
1246 if (MBB.getNumber() == -1)
1247 continue;
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001248 for (MachineInstr &MI : MBB)
1249 collectInstr(MI);
Krzysztof Parzyszek5d3a6f72018-10-11 18:26:02 +00001250 }
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001251}
1252
1253void HCE::assignInits(const ExtRoot &ER, unsigned Begin, unsigned End,
1254 AssignmentMap &IMap) {
1255 // Sanity check: make sure that all extenders in the range [Begin..End)
1256 // share the same root ER.
1257 for (unsigned I = Begin; I != End; ++I)
1258 assert(ER == ExtRoot(Extenders[I].getOp()));
1259
1260 // Construct the list of ranges, such that for each P in Ranges[I],
1261 // a register Reg = ER+P can be used in place of Extender[I]. If the
1262 // instruction allows, uses in the form of Reg+Off are considered
1263 // (here, Off = required_value - P).
1264 std::vector<OffsetRange> Ranges(End-Begin);
1265
1266 // For each extender that is a def, visit all uses of the defined register,
1267 // and produce an offset range that works for all uses. The def doesn't
1268 // have to be checked, because it can become dead if all uses can be updated
1269 // to use a different reg/offset.
1270 for (unsigned I = Begin; I != End; ++I) {
1271 const ExtDesc &ED = Extenders[I];
1272 if (!ED.IsDef)
1273 continue;
1274 ExtValue EV(ED);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001275 LLVM_DEBUG(dbgs() << " =" << I << ". " << EV << " " << ED << '\n');
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001276 assert(ED.Rd.Reg != 0);
1277 Ranges[I-Begin] = getOffsetRange(ED.Rd).shift(EV.Offset);
1278 // A2_tfrsi is a special case: it will be replaced with A2_addi, which
1279 // has a 16-bit signed offset. This means that A2_tfrsi not only has a
1280 // range coming from its uses, but also from the fact that its replacement
1281 // has a range as well.
1282 if (ED.UseMI->getOpcode() == Hexagon::A2_tfrsi) {
1283 int32_t D = alignDown(32767, Ranges[I-Begin].Align); // XXX hardcoded
1284 Ranges[I-Begin].extendBy(-D).extendBy(D);
1285 }
1286 }
1287
1288 // Visit all non-def extenders. For each one, determine the offset range
1289 // available for it.
1290 for (unsigned I = Begin; I != End; ++I) {
1291 const ExtDesc &ED = Extenders[I];
1292 if (ED.IsDef)
1293 continue;
1294 ExtValue EV(ED);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001295 LLVM_DEBUG(dbgs() << " " << I << ". " << EV << " " << ED << '\n');
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001296 OffsetRange Dev = getOffsetRange(ED);
1297 Ranges[I-Begin].intersect(Dev.shift(EV.Offset));
1298 }
1299
1300 // Here for each I there is a corresponding Range[I]. Construct the
1301 // inverse map, that to each range will assign the set of indexes in
1302 // [Begin..End) that this range corresponds to.
1303 std::map<OffsetRange, IndexList> RangeMap;
1304 for (unsigned I = Begin; I != End; ++I)
1305 RangeMap[Ranges[I-Begin]].insert(I);
1306
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001307 LLVM_DEBUG({
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001308 dbgs() << "Ranges\n";
1309 for (unsigned I = Begin; I != End; ++I)
1310 dbgs() << " " << I << ". " << Ranges[I-Begin] << '\n';
1311 dbgs() << "RangeMap\n";
1312 for (auto &P : RangeMap) {
1313 dbgs() << " " << P.first << " ->";
1314 for (unsigned I : P.second)
1315 dbgs() << ' ' << I;
1316 dbgs() << '\n';
1317 }
1318 });
1319
1320 // Select the definition points, and generate the assignment between
1321 // these points and the uses.
1322
1323 // For each candidate offset, keep a pair CandData consisting of
1324 // the total number of ranges containing that candidate, and the
1325 // vector of corresponding RangeTree nodes.
1326 using CandData = std::pair<unsigned, SmallVector<RangeTree::Node*,8>>;
1327 std::map<int32_t, CandData> CandMap;
1328
1329 RangeTree Tree;
1330 for (const OffsetRange &R : Ranges)
1331 Tree.add(R);
1332 SmallVector<RangeTree::Node*,8> Nodes;
1333 Tree.order(Nodes);
1334
Krzysztof Parzyszek39a98422018-01-30 18:12:37 +00001335 auto MaxAlign = [](const SmallVectorImpl<RangeTree::Node*> &Nodes,
1336 uint8_t Align, uint8_t Offset) {
1337 for (RangeTree::Node *N : Nodes) {
1338 if (N->Range.Align <= Align || N->Range.Offset < Offset)
1339 continue;
1340 if ((N->Range.Offset - Offset) % Align != 0)
1341 continue;
1342 Align = N->Range.Align;
1343 Offset = N->Range.Offset;
1344 }
1345 return std::make_pair(Align, Offset);
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001346 };
1347
1348 // Construct the set of all potential definition points from the endpoints
1349 // of the ranges. If a given endpoint also belongs to a different range,
1350 // but with a higher alignment, also consider the more-highly-aligned
1351 // value of this endpoint.
1352 std::set<int32_t> CandSet;
1353 for (RangeTree::Node *N : Nodes) {
1354 const OffsetRange &R = N->Range;
Krzysztof Parzyszek39a98422018-01-30 18:12:37 +00001355 auto P0 = MaxAlign(Tree.nodesWith(R.Min, false), R.Align, R.Offset);
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001356 CandSet.insert(R.Min);
Krzysztof Parzyszek39a98422018-01-30 18:12:37 +00001357 if (R.Align < P0.first)
1358 CandSet.insert(adjustUp(R.Min, P0.first, P0.second));
1359 auto P1 = MaxAlign(Tree.nodesWith(R.Max, false), R.Align, R.Offset);
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001360 CandSet.insert(R.Max);
Krzysztof Parzyszek39a98422018-01-30 18:12:37 +00001361 if (R.Align < P1.first)
1362 CandSet.insert(adjustDown(R.Max, P1.first, P1.second));
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001363 }
1364
1365 // Build the assignment map: candidate C -> { list of extender indexes }.
1366 // This has to be done iteratively:
1367 // - pick the candidate that covers the maximum number of extenders,
1368 // - add the candidate to the map,
1369 // - remove the extenders from the pool.
1370 while (true) {
1371 using CMap = std::map<int32_t,unsigned>;
1372 CMap Counts;
1373 for (auto It = CandSet.begin(), Et = CandSet.end(); It != Et; ) {
1374 auto &&V = Tree.nodesWith(*It);
1375 unsigned N = std::accumulate(V.begin(), V.end(), 0u,
1376 [](unsigned Acc, const RangeTree::Node *N) {
1377 return Acc + N->Count;
1378 });
1379 if (N != 0)
1380 Counts.insert({*It, N});
1381 It = (N != 0) ? std::next(It) : CandSet.erase(It);
1382 }
1383 if (Counts.empty())
1384 break;
1385
1386 // Find the best candidate with respect to the number of extenders covered.
1387 auto BestIt = std::max_element(Counts.begin(), Counts.end(),
1388 [](const CMap::value_type &A, const CMap::value_type &B) {
1389 return A.second < B.second ||
1390 (A.second == B.second && A < B);
1391 });
1392 int32_t Best = BestIt->first;
1393 ExtValue BestV(ER, Best);
1394 for (RangeTree::Node *N : Tree.nodesWith(Best)) {
1395 for (unsigned I : RangeMap[N->Range])
1396 IMap[{BestV,Extenders[I].Expr}].insert(I);
1397 Tree.erase(N);
1398 }
1399 }
1400
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001401 LLVM_DEBUG(dbgs() << "IMap (before fixup) = " << PrintIMap(IMap, *HRI));
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001402
1403 // There is some ambiguity in what initializer should be used, if the
1404 // descriptor's subexpression is non-trivial: it can be the entire
1405 // subexpression (which is what has been done so far), or it can be
1406 // the extender's value itself, if all corresponding extenders have the
1407 // exact value of the initializer (i.e. require offset of 0).
1408
1409 // To reduce the number of initializers, merge such special cases.
1410 for (std::pair<const ExtenderInit,IndexList> &P : IMap) {
1411 // Skip trivial initializers.
1412 if (P.first.second.trivial())
1413 continue;
1414 // If the corresponding trivial initializer does not exist, skip this
1415 // entry.
1416 const ExtValue &EV = P.first.first;
1417 AssignmentMap::iterator F = IMap.find({EV, ExtExpr()});
1418 if (F == IMap.end())
1419 continue;
Krzysztof Parzyszekcc712912018-04-17 15:23:09 +00001420
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001421 // Finally, check if all extenders have the same value as the initializer.
Krzysztof Parzyszekcc712912018-04-17 15:23:09 +00001422 // Make sure that extenders that are a part of a stack address are not
1423 // merged with those that aren't. Stack addresses need an offset field
1424 // (to be used by frame index elimination), while non-stack expressions
1425 // can be replaced with forms (such as rr) that do not have such a field.
1426 // Example:
1427 //
1428 // Collected 3 extenders
1429 // =2. imm:0 off:32968 bb#2: %7 = ## + __ << 0, def
1430 // 0. imm:0 off:267 bb#0: __ = ## + SS#1 << 0
1431 // 1. imm:0 off:267 bb#1: __ = ## + SS#1 << 0
1432 // Ranges
1433 // 0. [-756,267]a1+0
1434 // 1. [-756,267]a1+0
1435 // 2. [201,65735]a1+0
1436 // RangeMap
1437 // [-756,267]a1+0 -> 0 1
1438 // [201,65735]a1+0 -> 2
1439 // IMap (before fixup) = {
1440 // [imm:0 off:267, ## + __ << 0] -> { 2 }
1441 // [imm:0 off:267, ## + SS#1 << 0] -> { 0 1 }
1442 // }
1443 // IMap (after fixup) = {
1444 // [imm:0 off:267, ## + __ << 0] -> { 2 0 1 }
1445 // [imm:0 off:267, ## + SS#1 << 0] -> { }
1446 // }
1447 // Inserted def in bb#0 for initializer: [imm:0 off:267, ## + __ << 0]
1448 // %12:intregs = A2_tfrsi 267
1449 //
1450 // The result was
1451 // %12:intregs = A2_tfrsi 267
1452 // S4_pstorerbt_rr %3, %12, %stack.1, 0, killed %4
1453 // Which became
1454 // r0 = #267
1455 // if (p0.new) memb(r0+r29<<#4) = r2
1456
1457 bool IsStack = any_of(F->second, [this](unsigned I) {
1458 return Extenders[I].Expr.Rs.isSlot();
1459 });
1460 auto SameValue = [&EV,this,IsStack](unsigned I) {
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001461 const ExtDesc &ED = Extenders[I];
Krzysztof Parzyszekcc712912018-04-17 15:23:09 +00001462 return ED.Expr.Rs.isSlot() == IsStack &&
1463 ExtValue(ED).Offset == EV.Offset;
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001464 };
1465 if (all_of(P.second, SameValue)) {
1466 F->second.insert(P.second.begin(), P.second.end());
1467 P.second.clear();
1468 }
1469 }
1470
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001471 LLVM_DEBUG(dbgs() << "IMap (after fixup) = " << PrintIMap(IMap, *HRI));
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001472}
1473
1474void HCE::calculatePlacement(const ExtenderInit &ExtI, const IndexList &Refs,
Krzysztof Parzyszek5d3a6f72018-10-11 18:26:02 +00001475 LocDefList &Defs) {
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001476 if (Refs.empty())
1477 return;
1478
1479 // The placement calculation is somewhat simple right now: it finds a
1480 // single location for the def that dominates all refs. Since this may
1481 // place the def far from the uses, producing several locations for
1482 // defs that collectively dominate all refs could be better.
1483 // For now only do the single one.
1484 DenseSet<MachineBasicBlock*> Blocks;
1485 DenseSet<MachineInstr*> RefMIs;
1486 const ExtDesc &ED0 = Extenders[Refs[0]];
1487 MachineBasicBlock *DomB = ED0.UseMI->getParent();
1488 RefMIs.insert(ED0.UseMI);
1489 Blocks.insert(DomB);
1490 for (unsigned i = 1, e = Refs.size(); i != e; ++i) {
1491 const ExtDesc &ED = Extenders[Refs[i]];
1492 MachineBasicBlock *MBB = ED.UseMI->getParent();
1493 RefMIs.insert(ED.UseMI);
1494 DomB = MDT->findNearestCommonDominator(DomB, MBB);
1495 Blocks.insert(MBB);
1496 }
1497
1498#ifndef NDEBUG
1499 // The block DomB should be dominated by the def of each register used
1500 // in the initializer.
1501 Register Rs = ExtI.second.Rs; // Only one reg allowed now.
1502 const MachineInstr *DefI = Rs.isVReg() ? MRI->getVRegDef(Rs.Reg) : nullptr;
1503
1504 // This should be guaranteed given that the entire expression is used
1505 // at each instruction in Refs. Add an assertion just in case.
1506 assert(!DefI || MDT->dominates(DefI->getParent(), DomB));
1507#endif
1508
1509 MachineBasicBlock::iterator It;
1510 if (Blocks.count(DomB)) {
1511 // Try to find the latest possible location for the def.
1512 MachineBasicBlock::iterator End = DomB->end();
1513 for (It = DomB->begin(); It != End; ++It)
1514 if (RefMIs.count(&*It))
1515 break;
1516 assert(It != End && "Should have found a ref in DomB");
1517 } else {
1518 // DomB does not contain any refs.
1519 It = DomB->getFirstTerminator();
1520 }
1521 Loc DefLoc(DomB, It);
Krzysztof Parzyszek5d3a6f72018-10-11 18:26:02 +00001522 Defs.emplace_back(DefLoc, Refs);
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001523}
1524
1525HCE::Register HCE::insertInitializer(Loc DefL, const ExtenderInit &ExtI) {
1526 unsigned DefR = MRI->createVirtualRegister(&Hexagon::IntRegsRegClass);
1527 MachineBasicBlock &MBB = *DefL.Block;
1528 MachineBasicBlock::iterator At = DefL.At;
1529 DebugLoc dl = DefL.Block->findDebugLoc(DefL.At);
1530 const ExtValue &EV = ExtI.first;
1531 MachineOperand ExtOp(EV);
1532
1533 const ExtExpr &Ex = ExtI.second;
1534 const MachineInstr *InitI = nullptr;
1535
1536 if (Ex.Rs.isSlot()) {
1537 assert(Ex.S == 0 && "Cannot have a shift of a stack slot");
1538 assert(!Ex.Neg && "Cannot subtract a stack slot");
1539 // DefR = PS_fi Rb,##EV
1540 InitI = BuildMI(MBB, At, dl, HII->get(Hexagon::PS_fi), DefR)
1541 .add(MachineOperand(Ex.Rs))
1542 .add(ExtOp);
1543 } else {
1544 assert((Ex.Rs.Reg == 0 || Ex.Rs.isVReg()) && "Expecting virtual register");
1545 if (Ex.trivial()) {
1546 // DefR = ##EV
1547 InitI = BuildMI(MBB, At, dl, HII->get(Hexagon::A2_tfrsi), DefR)
1548 .add(ExtOp);
1549 } else if (Ex.S == 0) {
1550 if (Ex.Neg) {
1551 // DefR = sub(##EV,Rb)
1552 InitI = BuildMI(MBB, At, dl, HII->get(Hexagon::A2_subri), DefR)
1553 .add(ExtOp)
1554 .add(MachineOperand(Ex.Rs));
1555 } else {
1556 // DefR = add(Rb,##EV)
1557 InitI = BuildMI(MBB, At, dl, HII->get(Hexagon::A2_addi), DefR)
1558 .add(MachineOperand(Ex.Rs))
1559 .add(ExtOp);
1560 }
1561 } else {
1562 unsigned NewOpc = Ex.Neg ? Hexagon::S4_subi_asl_ri
1563 : Hexagon::S4_addi_asl_ri;
1564 // DefR = add(##EV,asl(Rb,S))
1565 InitI = BuildMI(MBB, At, dl, HII->get(NewOpc), DefR)
1566 .add(ExtOp)
1567 .add(MachineOperand(Ex.Rs))
1568 .addImm(Ex.S);
1569 }
1570 }
1571
1572 assert(InitI);
1573 (void)InitI;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001574 LLVM_DEBUG(dbgs() << "Inserted def in bb#" << MBB.getNumber()
1575 << " for initializer: " << PrintInit(ExtI, *HRI) << "\n "
1576 << *InitI);
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001577 return { DefR, 0 };
1578}
1579
1580// Replace the extender at index Idx with the register ExtR.
1581bool HCE::replaceInstrExact(const ExtDesc &ED, Register ExtR) {
1582 MachineInstr &MI = *ED.UseMI;
1583 MachineBasicBlock &MBB = *MI.getParent();
1584 MachineBasicBlock::iterator At = MI.getIterator();
1585 DebugLoc dl = MI.getDebugLoc();
1586 unsigned ExtOpc = MI.getOpcode();
1587
1588 // With a few exceptions, direct replacement amounts to creating an
1589 // instruction with a corresponding register opcode, with all operands
1590 // the same, except for the register used in place of the extender.
1591 unsigned RegOpc = getDirectRegReplacement(ExtOpc);
1592
1593 if (RegOpc == TargetOpcode::REG_SEQUENCE) {
1594 if (ExtOpc == Hexagon::A4_combineri)
1595 BuildMI(MBB, At, dl, HII->get(RegOpc))
1596 .add(MI.getOperand(0))
1597 .add(MI.getOperand(1))
1598 .addImm(Hexagon::isub_hi)
1599 .add(MachineOperand(ExtR))
1600 .addImm(Hexagon::isub_lo);
1601 else if (ExtOpc == Hexagon::A4_combineir)
1602 BuildMI(MBB, At, dl, HII->get(RegOpc))
1603 .add(MI.getOperand(0))
1604 .add(MachineOperand(ExtR))
1605 .addImm(Hexagon::isub_hi)
1606 .add(MI.getOperand(2))
1607 .addImm(Hexagon::isub_lo);
1608 else
1609 llvm_unreachable("Unexpected opcode became REG_SEQUENCE");
1610 MBB.erase(MI);
1611 return true;
1612 }
1613 if (ExtOpc == Hexagon::C2_cmpgei || ExtOpc == Hexagon::C2_cmpgeui) {
1614 unsigned NewOpc = ExtOpc == Hexagon::C2_cmpgei ? Hexagon::C2_cmplt
1615 : Hexagon::C2_cmpltu;
1616 BuildMI(MBB, At, dl, HII->get(NewOpc))
1617 .add(MI.getOperand(0))
1618 .add(MachineOperand(ExtR))
1619 .add(MI.getOperand(1));
1620 MBB.erase(MI);
1621 return true;
1622 }
1623
1624 if (RegOpc != 0) {
1625 MachineInstrBuilder MIB = BuildMI(MBB, At, dl, HII->get(RegOpc));
1626 unsigned RegN = ED.OpNum;
1627 // Copy all operands except the one that has the extender.
1628 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
1629 if (i != RegN)
1630 MIB.add(MI.getOperand(i));
1631 else
1632 MIB.add(MachineOperand(ExtR));
1633 }
Chandler Carruthc73c0302018-08-16 21:30:05 +00001634 MIB.cloneMemRefs(MI);
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001635 MBB.erase(MI);
1636 return true;
1637 }
1638
1639 if ((MI.mayLoad() || MI.mayStore()) && !isStoreImmediate(ExtOpc)) {
1640 // For memory instructions, there is an asymmetry in the addressing
1641 // modes. Addressing modes allowing extenders can be replaced with
1642 // addressing modes that use registers, but the order of operands
1643 // (or even their number) may be different.
1644 // Replacements:
1645 // BaseImmOffset (io) -> BaseRegOffset (rr)
1646 // BaseLongOffset (ur) -> BaseRegOffset (rr)
1647 unsigned RegOpc, Shift;
1648 unsigned AM = HII->getAddrMode(MI);
1649 if (AM == HexagonII::BaseImmOffset) {
1650 RegOpc = HII->changeAddrMode_io_rr(ExtOpc);
1651 Shift = 0;
1652 } else if (AM == HexagonII::BaseLongOffset) {
1653 // Loads: Rd = L4_loadri_ur Rs, S, ##
1654 // Stores: S4_storeri_ur Rs, S, ##, Rt
1655 RegOpc = HII->changeAddrMode_ur_rr(ExtOpc);
1656 Shift = MI.getOperand(MI.mayLoad() ? 2 : 1).getImm();
1657 } else {
1658 llvm_unreachable("Unexpected addressing mode");
1659 }
1660#ifndef NDEBUG
1661 if (RegOpc == -1u) {
1662 dbgs() << "\nExtOpc: " << HII->getName(ExtOpc) << " has no rr version\n";
1663 llvm_unreachable("No corresponding rr instruction");
1664 }
1665#endif
1666
1667 unsigned BaseP, OffP;
1668 HII->getBaseAndOffsetPosition(MI, BaseP, OffP);
1669
1670 // Build an rr instruction: (RegOff + RegBase<<0)
1671 MachineInstrBuilder MIB = BuildMI(MBB, At, dl, HII->get(RegOpc));
1672 // First, add the def for loads.
1673 if (MI.mayLoad())
1674 MIB.add(getLoadResultOp(MI));
1675 // Handle possible predication.
1676 if (HII->isPredicated(MI))
1677 MIB.add(getPredicateOp(MI));
1678 // Build the address.
1679 MIB.add(MachineOperand(ExtR)); // RegOff
1680 MIB.add(MI.getOperand(BaseP)); // RegBase
1681 MIB.addImm(Shift); // << Shift
1682 // Add the stored value for stores.
1683 if (MI.mayStore())
1684 MIB.add(getStoredValueOp(MI));
Chandler Carruthc73c0302018-08-16 21:30:05 +00001685 MIB.cloneMemRefs(MI);
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001686 MBB.erase(MI);
1687 return true;
1688 }
1689
1690#ifndef NDEBUG
1691 dbgs() << '\n' << MI;
1692#endif
1693 llvm_unreachable("Unhandled exact replacement");
1694 return false;
1695}
1696
1697// Replace the extender ED with a form corresponding to the initializer ExtI.
1698bool HCE::replaceInstrExpr(const ExtDesc &ED, const ExtenderInit &ExtI,
1699 Register ExtR, int32_t &Diff) {
1700 MachineInstr &MI = *ED.UseMI;
1701 MachineBasicBlock &MBB = *MI.getParent();
1702 MachineBasicBlock::iterator At = MI.getIterator();
1703 DebugLoc dl = MI.getDebugLoc();
1704 unsigned ExtOpc = MI.getOpcode();
1705
1706 if (ExtOpc == Hexagon::A2_tfrsi) {
1707 // A2_tfrsi is a special case: it's replaced with A2_addi, which introduces
1708 // another range. One range is the one that's common to all tfrsi's uses,
1709 // this one is the range of immediates in A2_addi. When calculating ranges,
1710 // the addi's 16-bit argument was included, so now we need to make it such
1711 // that the produced value is in the range for the uses alone.
1712 // Most of the time, simply adding Diff will make the addi produce exact
1713 // result, but if Diff is outside of the 16-bit range, some adjustment
1714 // will be needed.
1715 unsigned IdxOpc = getRegOffOpcode(ExtOpc);
1716 assert(IdxOpc == Hexagon::A2_addi);
1717
1718 // Clamp Diff to the 16 bit range.
Krzysztof Parzyszek1a1edbf2018-01-26 19:20:50 +00001719 int32_t D = isInt<16>(Diff) ? Diff : (Diff > 0 ? 32767 : -32768);
Krzysztof Parzyszek59b57c32018-09-10 18:49:16 +00001720 if (Diff > 32767) {
1721 // Split Diff into two values: one that is close to min/max int16,
1722 // and the other being the rest, and such that both have the same
1723 // "alignment" as Diff.
1724 uint32_t UD = Diff;
1725 OffsetRange R = getOffsetRange(MI.getOperand(0));
1726 uint32_t A = std::min<uint32_t>(R.Align, 1u << countTrailingZeros(UD));
1727 D &= ~(A-1);
1728 }
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001729 BuildMI(MBB, At, dl, HII->get(IdxOpc))
1730 .add(MI.getOperand(0))
1731 .add(MachineOperand(ExtR))
1732 .addImm(D);
1733 Diff -= D;
1734#ifndef NDEBUG
1735 // Make sure the output is within allowable range for uses.
Krzysztof Parzyszek1a1edbf2018-01-26 19:20:50 +00001736 // "Diff" is a difference in the "opposite direction", i.e. Ext - DefV,
1737 // not DefV - Ext, as the getOffsetRange would calculate.
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001738 OffsetRange Uses = getOffsetRange(MI.getOperand(0));
Krzysztof Parzyszek1a1edbf2018-01-26 19:20:50 +00001739 if (!Uses.contains(-Diff))
1740 dbgs() << "Diff: " << -Diff << " out of range " << Uses
Krzysztof Parzyszek27056da2017-10-25 18:46:40 +00001741 << " for " << MI;
Krzysztof Parzyszek1a1edbf2018-01-26 19:20:50 +00001742 assert(Uses.contains(-Diff));
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001743#endif
1744 MBB.erase(MI);
1745 return true;
1746 }
1747
1748 const ExtValue &EV = ExtI.first; (void)EV;
1749 const ExtExpr &Ex = ExtI.second; (void)Ex;
1750
1751 if (ExtOpc == Hexagon::A2_addi || ExtOpc == Hexagon::A2_subri) {
1752 // If addi/subri are replaced with the exactly matching initializer,
1753 // they amount to COPY.
1754 // Check that the initializer is an exact match (for simplicity).
Benjamin Kramer9f21ca62017-10-13 20:46:14 +00001755#ifndef NDEBUG
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001756 bool IsAddi = ExtOpc == Hexagon::A2_addi;
1757 const MachineOperand &RegOp = MI.getOperand(IsAddi ? 1 : 2);
1758 const MachineOperand &ImmOp = MI.getOperand(IsAddi ? 2 : 1);
1759 assert(Ex.Rs == RegOp && EV == ImmOp && Ex.Neg != IsAddi &&
1760 "Initializer mismatch");
Benjamin Kramer9f21ca62017-10-13 20:46:14 +00001761#endif
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001762 BuildMI(MBB, At, dl, HII->get(TargetOpcode::COPY))
1763 .add(MI.getOperand(0))
1764 .add(MachineOperand(ExtR));
1765 Diff = 0;
1766 MBB.erase(MI);
1767 return true;
1768 }
1769 if (ExtOpc == Hexagon::M2_accii || ExtOpc == Hexagon::M2_naccii ||
1770 ExtOpc == Hexagon::S4_addaddi || ExtOpc == Hexagon::S4_subaddi) {
1771 // M2_accii: add(Rt,add(Rs,V)) (tied)
1772 // M2_naccii: sub(Rt,add(Rs,V))
1773 // S4_addaddi: add(Rt,add(Rs,V))
1774 // S4_subaddi: add(Rt,sub(V,Rs))
1775 // Check that Rs and V match the initializer expression. The Rs+V is the
1776 // combination that is considered "subexpression" for V, although Rx+V
1777 // would also be valid.
Benjamin Kramer9f21ca62017-10-13 20:46:14 +00001778#ifndef NDEBUG
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001779 bool IsSub = ExtOpc == Hexagon::S4_subaddi;
1780 Register Rs = MI.getOperand(IsSub ? 3 : 2);
1781 ExtValue V = MI.getOperand(IsSub ? 2 : 3);
1782 assert(EV == V && Rs == Ex.Rs && IsSub == Ex.Neg && "Initializer mismatch");
Benjamin Kramer9f21ca62017-10-13 20:46:14 +00001783#endif
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001784 unsigned NewOpc = ExtOpc == Hexagon::M2_naccii ? Hexagon::A2_sub
1785 : Hexagon::A2_add;
1786 BuildMI(MBB, At, dl, HII->get(NewOpc))
1787 .add(MI.getOperand(0))
1788 .add(MI.getOperand(1))
1789 .add(MachineOperand(ExtR));
1790 MBB.erase(MI);
1791 return true;
1792 }
1793
1794 if (MI.mayLoad() || MI.mayStore()) {
1795 unsigned IdxOpc = getRegOffOpcode(ExtOpc);
1796 assert(IdxOpc && "Expecting indexed opcode");
1797 MachineInstrBuilder MIB = BuildMI(MBB, At, dl, HII->get(IdxOpc));
1798 // Construct the new indexed instruction.
1799 // First, add the def for loads.
1800 if (MI.mayLoad())
1801 MIB.add(getLoadResultOp(MI));
1802 // Handle possible predication.
1803 if (HII->isPredicated(MI))
1804 MIB.add(getPredicateOp(MI));
1805 // Build the address.
1806 MIB.add(MachineOperand(ExtR));
1807 MIB.addImm(Diff);
1808 // Add the stored value for stores.
1809 if (MI.mayStore())
1810 MIB.add(getStoredValueOp(MI));
Chandler Carruthc73c0302018-08-16 21:30:05 +00001811 MIB.cloneMemRefs(MI);
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001812 MBB.erase(MI);
1813 return true;
1814 }
1815
1816#ifndef NDEBUG
1817 dbgs() << '\n' << PrintInit(ExtI, *HRI) << " " << MI;
1818#endif
1819 llvm_unreachable("Unhandled expr replacement");
1820 return false;
1821}
1822
1823bool HCE::replaceInstr(unsigned Idx, Register ExtR, const ExtenderInit &ExtI) {
1824 if (ReplaceLimit.getNumOccurrences()) {
1825 if (ReplaceLimit <= ReplaceCounter)
1826 return false;
1827 ++ReplaceCounter;
1828 }
1829 const ExtDesc &ED = Extenders[Idx];
1830 assert((!ED.IsDef || ED.Rd.Reg != 0) && "Missing Rd for def");
1831 const ExtValue &DefV = ExtI.first;
1832 assert(ExtRoot(ExtValue(ED)) == ExtRoot(DefV) && "Extender root mismatch");
1833 const ExtExpr &DefEx = ExtI.second;
1834
1835 ExtValue EV(ED);
1836 int32_t Diff = EV.Offset - DefV.Offset;
1837 const MachineInstr &MI = *ED.UseMI;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001838 LLVM_DEBUG(dbgs() << __func__ << " Idx:" << Idx << " ExtR:"
1839 << PrintRegister(ExtR, *HRI) << " Diff:" << Diff << '\n');
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001840
1841 // These two addressing modes must be converted into indexed forms
1842 // regardless of what the initializer looks like.
1843 bool IsAbs = false, IsAbsSet = false;
1844 if (MI.mayLoad() || MI.mayStore()) {
1845 unsigned AM = HII->getAddrMode(MI);
1846 IsAbs = AM == HexagonII::Absolute;
1847 IsAbsSet = AM == HexagonII::AbsoluteSet;
1848 }
1849
1850 // If it's a def, remember all operands that need to be updated.
1851 // If ED is a def, and Diff is not 0, then all uses of the register Rd
1852 // defined by ED must be in the form (Rd, imm), i.e. the immediate offset
1853 // must follow the Rd in the operand list.
1854 std::vector<std::pair<MachineInstr*,unsigned>> RegOps;
1855 if (ED.IsDef && Diff != 0) {
1856 for (MachineOperand &Op : MRI->use_operands(ED.Rd.Reg)) {
1857 MachineInstr &UI = *Op.getParent();
1858 RegOps.push_back({&UI, getOperandIndex(UI, Op)});
1859 }
1860 }
1861
1862 // Replace the instruction.
1863 bool Replaced = false;
1864 if (Diff == 0 && DefEx.trivial() && !IsAbs && !IsAbsSet)
1865 Replaced = replaceInstrExact(ED, ExtR);
1866 else
1867 Replaced = replaceInstrExpr(ED, ExtI, ExtR, Diff);
1868
1869 if (Diff != 0 && Replaced && ED.IsDef) {
1870 // Update offsets of the def's uses.
1871 for (std::pair<MachineInstr*,unsigned> P : RegOps) {
1872 unsigned J = P.second;
Krzysztof Parzyszek92a26352017-10-27 18:52:28 +00001873 assert(P.first->getNumOperands() > J+1 &&
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001874 P.first->getOperand(J+1).isImm());
1875 MachineOperand &ImmOp = P.first->getOperand(J+1);
1876 ImmOp.setImm(ImmOp.getImm() + Diff);
1877 }
1878 // If it was an absolute-set instruction, the "set" part has been removed.
1879 // ExtR will now be the register with the extended value, and since all
1880 // users of Rd have been updated, all that needs to be done is to replace
1881 // Rd with ExtR.
1882 if (IsAbsSet) {
1883 assert(ED.Rd.Sub == 0 && ExtR.Sub == 0);
1884 MRI->replaceRegWith(ED.Rd.Reg, ExtR.Reg);
1885 }
1886 }
1887
1888 return Replaced;
1889}
1890
1891bool HCE::replaceExtenders(const AssignmentMap &IMap) {
Krzysztof Parzyszek5d3a6f72018-10-11 18:26:02 +00001892 LocDefList Defs;
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001893 bool Changed = false;
1894
1895 for (const std::pair<ExtenderInit,IndexList> &P : IMap) {
1896 const IndexList &Idxs = P.second;
1897 if (Idxs.size() < CountThreshold)
1898 continue;
1899
1900 Defs.clear();
1901 calculatePlacement(P.first, Idxs, Defs);
1902 for (const std::pair<Loc,IndexList> &Q : Defs) {
1903 Register DefR = insertInitializer(Q.first, P.first);
1904 NewRegs.push_back(DefR.Reg);
1905 for (unsigned I : Q.second)
1906 Changed |= replaceInstr(I, DefR, P.first);
1907 }
1908 }
1909 return Changed;
1910}
1911
1912unsigned HCE::getOperandIndex(const MachineInstr &MI,
1913 const MachineOperand &Op) const {
1914 for (unsigned i = 0, n = MI.getNumOperands(); i != n; ++i)
1915 if (&MI.getOperand(i) == &Op)
1916 return i;
1917 llvm_unreachable("Not an operand of MI");
1918}
1919
1920const MachineOperand &HCE::getPredicateOp(const MachineInstr &MI) const {
1921 assert(HII->isPredicated(MI));
1922 for (const MachineOperand &Op : MI.operands()) {
1923 if (!Op.isReg() || !Op.isUse() ||
1924 MRI->getRegClass(Op.getReg()) != &Hexagon::PredRegsRegClass)
1925 continue;
1926 assert(Op.getSubReg() == 0 && "Predicate register with a subregister");
1927 return Op;
1928 }
1929 llvm_unreachable("Predicate operand not found");
1930}
1931
1932const MachineOperand &HCE::getLoadResultOp(const MachineInstr &MI) const {
1933 assert(MI.mayLoad());
1934 return MI.getOperand(0);
1935}
1936
1937const MachineOperand &HCE::getStoredValueOp(const MachineInstr &MI) const {
1938 assert(MI.mayStore());
1939 return MI.getOperand(MI.getNumExplicitOperands()-1);
1940}
1941
1942bool HCE::runOnMachineFunction(MachineFunction &MF) {
Matthias Braunf1caa282017-12-15 22:22:58 +00001943 if (skipFunction(MF.getFunction()))
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001944 return false;
Krzysztof Parzyszek5805def2018-09-21 17:40:35 +00001945 if (MF.getFunction().hasPersonalityFn()) {
1946 LLVM_DEBUG(dbgs() << getPassName() << ": skipping " << MF.getName()
1947 << " due to exception handling\n");
1948 return false;
1949 }
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001950 LLVM_DEBUG(MF.print(dbgs() << "Before " << getPassName() << '\n', nullptr));
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001951
1952 HII = MF.getSubtarget<HexagonSubtarget>().getInstrInfo();
1953 HRI = MF.getSubtarget<HexagonSubtarget>().getRegisterInfo();
1954 MDT = &getAnalysis<MachineDominatorTree>();
1955 MRI = &MF.getRegInfo();
1956 AssignmentMap IMap;
1957
1958 collect(MF);
Krzysztof Parzyszek5d3a6f72018-10-11 18:26:02 +00001959 llvm::sort(Extenders, [this](const ExtDesc &A, const ExtDesc &B) {
1960 ExtValue VA(A), VB(B);
1961 if (VA != VB)
1962 return VA < VB;
1963 const MachineInstr *MA = A.UseMI;
1964 const MachineInstr *MB = B.UseMI;
1965 if (MA == MB) {
1966 // If it's the same instruction, compare operand numbers.
1967 return A.OpNum < B.OpNum;
1968 }
1969
1970 const MachineBasicBlock *BA = MA->getParent();
1971 const MachineBasicBlock *BB = MB->getParent();
1972 assert(BA->getNumber() != -1 && BB->getNumber() != -1);
1973 if (BA != BB)
1974 return BA->getNumber() < BB->getNumber();
1975 return MDT->dominates(MA, MB);
Fangrui Song0cac7262018-09-27 02:13:45 +00001976 });
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001977
1978 bool Changed = false;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001979 LLVM_DEBUG(dbgs() << "Collected " << Extenders.size() << " extenders\n");
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001980 for (unsigned I = 0, E = Extenders.size(); I != E; ) {
1981 unsigned B = I;
1982 const ExtRoot &T = Extenders[B].getOp();
1983 while (I != E && ExtRoot(Extenders[I].getOp()) == T)
1984 ++I;
1985
1986 IMap.clear();
1987 assignInits(T, B, I, IMap);
1988 Changed |= replaceExtenders(IMap);
1989 }
1990
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001991 LLVM_DEBUG({
Krzysztof Parzyszek7c9c0582017-10-13 19:02:59 +00001992 if (Changed)
1993 MF.print(dbgs() << "After " << getPassName() << '\n', nullptr);
1994 else
1995 dbgs() << "No changes\n";
1996 });
1997 return Changed;
1998}
1999
2000FunctionPass *llvm::createHexagonConstExtenders() {
2001 return new HexagonConstExtenders();
2002}