blob: 9a72e7114be059b035c5926b2e393b30e8321a41 [file] [log] [blame]
Misha Brukmancf7d3af2004-07-26 18:45:48 +00001//===-- X86FloatingPoint.cpp - Floating point Reg -> Stack converter ------===//
Misha Brukmanc88330a2005-04-21 23:38:14 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanc88330a2005-04-21 23:38:14 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnercf53bcf2003-01-13 01:01:59 +00009//
10// This file defines the pass which converts floating point instructions from
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +000011// pseudo registers into register stack instructions. This pass uses live
Chris Lattner11290272004-01-30 22:25:18 +000012// variable information to indicate where the FPn registers are used and their
13// lifetimes.
14//
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +000015// The x87 hardware tracks liveness of the stack registers, so it is necessary
16// to implement exact liveness tracking between basic blocks. The CFG edges are
17// partitioned into bundles where the same FP registers must be live in
18// identical stack positions. Instructions are inserted at the end of each basic
19// block to rearrange the live registers to match the outgoing bundle.
Chris Lattner11290272004-01-30 22:25:18 +000020//
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +000021// This approach avoids splitting critical edges at the potential cost of more
22// live register shuffling instructions when critical edges are present.
Chris Lattnercf53bcf2003-01-13 01:01:59 +000023//
24//===----------------------------------------------------------------------===//
25
26#include "X86.h"
27#include "X86InstrInfo.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000028#include "llvm/ADT/DepthFirstIterator.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000029#include "llvm/ADT/STLExtras.h"
Owen Anderson1b351d42008-08-14 21:01:00 +000030#include "llvm/ADT/SmallPtrSet.h"
Akira Hatanaka35166692014-08-01 22:19:41 +000031#include "llvm/ADT/SmallSet.h"
Evan Chengbbbcac32006-11-15 20:56:39 +000032#include "llvm/ADT/SmallVector.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000033#include "llvm/ADT/Statistic.h"
Jakob Stoklund Olesenf96ae682011-01-04 21:10:05 +000034#include "llvm/CodeGen/EdgeBundles.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000035#include "llvm/CodeGen/LivePhysRegs.h"
Bill Wendling6eecd562009-08-03 00:11:34 +000036#include "llvm/CodeGen/MachineFunctionPass.h"
37#include "llvm/CodeGen/MachineInstrBuilder.h"
38#include "llvm/CodeGen/MachineRegisterInfo.h"
39#include "llvm/CodeGen/Passes.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000040#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000041#include "llvm/CodeGen/TargetSubtargetInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000042#include "llvm/IR/InlineAsm.h"
Bill Wendling6eecd562009-08-03 00:11:34 +000043#include "llvm/Support/Debug.h"
44#include "llvm/Support/ErrorHandling.h"
45#include "llvm/Support/raw_ostream.h"
Bill Wendling6eecd562009-08-03 00:11:34 +000046#include "llvm/Target/TargetMachine.h"
Chris Lattnercf53bcf2003-01-13 01:01:59 +000047#include <algorithm>
Benjamin Kramer9e5b4a52014-09-11 15:58:39 +000048#include <bitset>
Chris Lattnerd46cd682003-12-20 09:58:55 +000049using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000050
Chandler Carruth84e68b22014-04-22 02:41:26 +000051#define DEBUG_TYPE "x86-codegen"
52
Chris Lattner1ef9cd42006-12-19 22:59:26 +000053STATISTIC(NumFXCH, "Number of fxch instructions inserted");
54STATISTIC(NumFP , "Number of floating point instructions");
Chris Lattnercf53bcf2003-01-13 01:01:59 +000055
Chris Lattner1ef9cd42006-12-19 22:59:26 +000056namespace {
Akira Hatanaka35166692014-08-01 22:19:41 +000057 const unsigned ScratchFPReg = 7;
58
Nick Lewycky02d5f772009-10-25 06:33:48 +000059 struct FPS : public MachineFunctionPass {
Devang Patel8c78a0b2007-05-03 01:11:54 +000060 static char ID;
Owen Andersona7aed182010-08-06 18:33:48 +000061 FPS() : MachineFunctionPass(ID) {
Jakob Stoklund Olesenf96ae682011-01-04 21:10:05 +000062 initializeEdgeBundlesPass(*PassRegistry::getPassRegistry());
Jakob Stoklund Olesen8d511492010-07-16 22:00:33 +000063 // This is really only to keep valgrind quiet.
64 // The logic in isLive() is too much for it.
65 memset(Stack, 0, sizeof(Stack));
66 memset(RegMap, 0, sizeof(RegMap));
67 }
Devang Patel09f162c2007-05-01 21:15:47 +000068
Craig Topper2d9361e2014-03-09 07:44:38 +000069 void getAnalysisUsage(AnalysisUsage &AU) const override {
Dan Gohman6735e102009-08-01 00:26:16 +000070 AU.setPreservesCFG();
Jakob Stoklund Olesenf96ae682011-01-04 21:10:05 +000071 AU.addRequired<EdgeBundles>();
Evan Cheng962c2cf2008-09-22 22:21:38 +000072 AU.addPreservedID(MachineLoopInfoID);
73 AU.addPreservedID(MachineDominatorsID);
Evan Cheng168f8f32008-09-22 20:58:04 +000074 MachineFunctionPass::getAnalysisUsage(AU);
75 }
76
Craig Topper2d9361e2014-03-09 07:44:38 +000077 bool runOnMachineFunction(MachineFunction &MF) override;
Chris Lattnercf53bcf2003-01-13 01:01:59 +000078
Derek Schuff1dbf7a52016-04-04 17:09:25 +000079 MachineFunctionProperties getRequiredProperties() const override {
80 return MachineFunctionProperties().set(
Matthias Braun1eb47362016-08-25 01:27:13 +000081 MachineFunctionProperties::Property::NoVRegs);
Derek Schuff1dbf7a52016-04-04 17:09:25 +000082 }
83
Mehdi Amini117296c2016-10-01 02:56:57 +000084 StringRef getPassName() const override { return "X86 FP Stackifier"; }
Chris Lattnercf53bcf2003-01-13 01:01:59 +000085
Chris Lattnercf53bcf2003-01-13 01:01:59 +000086 private:
Evan Cheng845bd6e2006-12-01 10:11:51 +000087 const TargetInstrInfo *TII; // Machine instruction info.
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +000088
89 // Two CFG edges are related if they leave the same block, or enter the same
90 // block. The transitive closure of an edge under this relation is a
91 // LiveBundle. It represents a set of CFG edges where the live FP stack
92 // registers must be allocated identically in the x87 stack.
93 //
94 // A LiveBundle is usually all the edges leaving a block, or all the edges
95 // entering a block, but it can contain more edges if critical edges are
96 // present.
97 //
98 // The set of live FP registers in a LiveBundle is calculated by bundleCFG,
99 // but the exact mapping of FP registers to stack slots is fixed later.
100 struct LiveBundle {
101 // Bit mask of live FP registers. Bit 0 = FP0, bit 1 = FP1, &c.
102 unsigned Mask;
103
104 // Number of pre-assigned live registers in FixStack. This is 0 when the
105 // stack order has not yet been fixed.
106 unsigned FixCount;
107
108 // Assigned stack order for live-in registers.
109 // FixStack[i] == getStackEntry(i) for all i < FixCount.
110 unsigned char FixStack[8];
111
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000112 LiveBundle() : Mask(0), FixCount(0) {}
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000113
114 // Have the live registers been assigned a stack order yet?
115 bool isFixed() const { return !Mask || FixCount; }
116 };
117
118 // Numbered LiveBundle structs. LiveBundles[0] is used for all CFG edges
119 // with no live FP registers.
120 SmallVector<LiveBundle, 8> LiveBundles;
121
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000122 // The edge bundle analysis provides indices into the LiveBundles vector.
123 EdgeBundles *Bundles;
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000124
125 // Return a bitmask of FP registers in block's live-in list.
Matthias Braunac4becc2017-05-31 20:30:22 +0000126 static unsigned calcLiveInMask(MachineBasicBlock *MBB, bool RemoveFPs) {
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000127 unsigned Mask = 0;
Matthias Braunac4becc2017-05-31 20:30:22 +0000128 for (MachineBasicBlock::livein_iterator I = MBB->livein_begin();
129 I != MBB->livein_end(); ) {
130 MCPhysReg Reg = I->PhysReg;
131 static_assert(X86::FP6 - X86::FP0 == 6, "sequential regnums");
132 if (Reg >= X86::FP0 && Reg <= X86::FP6) {
133 Mask |= 1 << (Reg - X86::FP0);
134 if (RemoveFPs) {
135 I = MBB->removeLiveIn(I);
136 continue;
137 }
138 }
139 ++I;
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000140 }
141 return Mask;
142 }
143
144 // Partition all the CFG edges into LiveBundles.
Matthias Braunac4becc2017-05-31 20:30:22 +0000145 void bundleCFGRecomputeKillFlags(MachineFunction &MF);
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000146
Evan Cheng845bd6e2006-12-01 10:11:51 +0000147 MachineBasicBlock *MBB; // Current basic block
Jakob Stoklund Olesenff653a22011-06-27 04:08:36 +0000148
149 // The hardware keeps track of how many FP registers are live, so we have
150 // to model that exactly. Usually, each live register corresponds to an
151 // FP<n> register, but when dealing with calls, returns, and inline
Benjamin Kramerbde91762012-06-02 10:20:22 +0000152 // assembly, it is sometimes necessary to have live scratch registers.
Evan Cheng845bd6e2006-12-01 10:11:51 +0000153 unsigned Stack[8]; // FP<n> Registers in each stack slot...
Evan Cheng845bd6e2006-12-01 10:11:51 +0000154 unsigned StackTop; // The current top of the FP stack.
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000155
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000156 enum {
Akira Hatanaka35166692014-08-01 22:19:41 +0000157 NumFPRegs = 8 // Including scratch pseudo-registers.
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000158 };
159
Jakob Stoklund Olesenff653a22011-06-27 04:08:36 +0000160 // For each live FP<n> register, point to its Stack[] entry.
161 // The first entries correspond to FP0-FP6, the rest are scratch registers
162 // used when we need slightly different live registers than what the
163 // register allocator thinks.
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000164 unsigned RegMap[NumFPRegs];
165
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000166 // Set up our stack model to match the incoming registers to MBB.
167 void setupBlockStack();
168
169 // Shuffle live registers to match the expectations of successor blocks.
170 void finishBlockStack();
171
Aaron Ballman615eb472017-10-15 14:32:27 +0000172#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000173 void dumpStack() const {
David Greened85fd002010-01-05 01:29:34 +0000174 dbgs() << "Stack contents:";
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000175 for (unsigned i = 0; i != StackTop; ++i) {
David Greened85fd002010-01-05 01:29:34 +0000176 dbgs() << " FP" << Stack[i];
Misha Brukmanc88330a2005-04-21 23:38:14 +0000177 assert(RegMap[Stack[i]] == i && "Stack[] doesn't match RegMap[]!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000178 }
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000179 }
Manman Ren742534c2012-09-06 19:06:06 +0000180#endif
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000181
Chris Lattner8f440bb2010-07-17 17:40:51 +0000182 /// getSlot - Return the stack slot number a particular register number is
183 /// in.
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000184 unsigned getSlot(unsigned RegNo) const {
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000185 assert(RegNo < NumFPRegs && "Regno out of range!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000186 return RegMap[RegNo];
187 }
188
Chris Lattner8f440bb2010-07-17 17:40:51 +0000189 /// isLive - Is RegNo currently live in the stack?
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000190 bool isLive(unsigned RegNo) const {
191 unsigned Slot = getSlot(RegNo);
192 return Slot < StackTop && Stack[Slot] == RegNo;
193 }
194
Chris Lattner8f440bb2010-07-17 17:40:51 +0000195 /// getStackEntry - Return the X86::FP<n> register in register ST(i).
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000196 unsigned getStackEntry(unsigned STi) const {
Evan Chengd565b442010-10-12 23:19:28 +0000197 if (STi >= StackTop)
198 report_fatal_error("Access past stack top!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000199 return Stack[StackTop-1-STi];
200 }
201
Chris Lattner8f440bb2010-07-17 17:40:51 +0000202 /// getSTReg - Return the X86::ST(i) register which contains the specified
203 /// FP<RegNo> register.
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000204 unsigned getSTReg(unsigned RegNo) const {
Craig Topperf6e7e122012-03-27 07:21:54 +0000205 return StackTop - 1 - getSlot(RegNo) + X86::ST0;
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000206 }
207
Chris Lattner1bd44362008-03-11 03:23:40 +0000208 // pushReg - Push the specified FP<n> register onto the stack.
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000209 void pushReg(unsigned Reg) {
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000210 assert(Reg < NumFPRegs && "Register number out of range!");
Evan Chengd565b442010-10-12 23:19:28 +0000211 if (StackTop >= 8)
212 report_fatal_error("Stack overflow!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000213 Stack[StackTop] = Reg;
214 RegMap[Reg] = StackTop++;
215 }
216
Oren Ben Simhonc0f073b2016-11-20 11:06:07 +0000217 // popReg - Pop a register from the stack.
218 void popReg() {
219 if (StackTop == 0)
220 report_fatal_error("Cannot pop empty stack!");
221 RegMap[Stack[--StackTop]] = ~0; // Update state
222 }
223
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000224 bool isAtTop(unsigned RegNo) const { return getSlot(RegNo) == StackTop-1; }
Chris Lattner1bd44362008-03-11 03:23:40 +0000225 void moveToTop(unsigned RegNo, MachineBasicBlock::iterator I) {
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000226 DebugLoc dl = I == MBB->end() ? DebugLoc() : I->getDebugLoc();
Chris Lattner1bd44362008-03-11 03:23:40 +0000227 if (isAtTop(RegNo)) return;
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000228
Chris Lattner1bd44362008-03-11 03:23:40 +0000229 unsigned STReg = getSTReg(RegNo);
230 unsigned RegOnTop = getStackEntry(0);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000231
Chris Lattner1bd44362008-03-11 03:23:40 +0000232 // Swap the slots the regs are in.
233 std::swap(RegMap[RegNo], RegMap[RegOnTop]);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000234
Chris Lattner1bd44362008-03-11 03:23:40 +0000235 // Swap stack slot contents.
Evan Chengd565b442010-10-12 23:19:28 +0000236 if (RegMap[RegOnTop] >= StackTop)
237 report_fatal_error("Access past stack top!");
Chris Lattner1bd44362008-03-11 03:23:40 +0000238 std::swap(Stack[RegMap[RegOnTop]], Stack[StackTop-1]);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000239
Chris Lattner1bd44362008-03-11 03:23:40 +0000240 // Emit an fxch to update the runtime processors version of the state.
Dale Johannesen9bba9022009-02-13 02:33:27 +0000241 BuildMI(*MBB, I, dl, TII->get(X86::XCH_F)).addReg(STReg);
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000242 ++NumFXCH;
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000243 }
244
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000245 void duplicateToTop(unsigned RegNo, unsigned AsReg,
246 MachineBasicBlock::iterator I) {
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000247 DebugLoc dl = I == MBB->end() ? DebugLoc() : I->getDebugLoc();
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000248 unsigned STReg = getSTReg(RegNo);
249 pushReg(AsReg); // New register on top of stack
250
Dale Johannesen9bba9022009-02-13 02:33:27 +0000251 BuildMI(*MBB, I, dl, TII->get(X86::LD_Frr)).addReg(STReg);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000252 }
253
Chris Lattner8f440bb2010-07-17 17:40:51 +0000254 /// popStackAfter - Pop the current value off of the top of the FP stack
255 /// after the specified instruction.
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000256 void popStackAfter(MachineBasicBlock::iterator &I);
257
Chris Lattner8f440bb2010-07-17 17:40:51 +0000258 /// freeStackSlotAfter - Free the specified register from the register
259 /// stack, so that it is no longer in a register. If the register is
260 /// currently at the top of the stack, we just pop the current instruction,
261 /// otherwise we store the current top-of-stack into the specified slot,
262 /// then pop the top of stack.
Chris Lattnerbc7e35b2004-04-01 04:06:09 +0000263 void freeStackSlotAfter(MachineBasicBlock::iterator &I, unsigned Reg);
264
Chris Lattner8f440bb2010-07-17 17:40:51 +0000265 /// freeStackSlotBefore - Just the pop, no folding. Return the inserted
266 /// instruction.
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000267 MachineBasicBlock::iterator
268 freeStackSlotBefore(MachineBasicBlock::iterator I, unsigned FPRegNo);
269
Chris Lattner8f440bb2010-07-17 17:40:51 +0000270 /// Adjust the live registers to be the set in Mask.
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000271 void adjustLiveRegs(unsigned Mask, MachineBasicBlock::iterator I);
272
Jakob Stoklund Olesenff653a22011-06-27 04:08:36 +0000273 /// Shuffle the top FixCount stack entries such that FP reg FixStack[0] is
Chris Lattner8f440bb2010-07-17 17:40:51 +0000274 /// st(0), FP reg FixStack[1] is st(1) etc.
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000275 void shuffleStackTop(const unsigned char *FixStack, unsigned FixCount,
276 MachineBasicBlock::iterator I);
277
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000278 bool processBasicBlock(MachineFunction &MF, MachineBasicBlock &MBB);
279
Akira Hatanaka35166692014-08-01 22:19:41 +0000280 void handleCall(MachineBasicBlock::iterator &I);
David L Kreitzer14f00772016-03-10 15:14:02 +0000281 void handleReturn(MachineBasicBlock::iterator &I);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000282 void handleZeroArgFP(MachineBasicBlock::iterator &I);
283 void handleOneArgFP(MachineBasicBlock::iterator &I);
Chris Lattner7af8ad62004-02-02 19:23:15 +0000284 void handleOneArgFPRW(MachineBasicBlock::iterator &I);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000285 void handleTwoArgFP(MachineBasicBlock::iterator &I);
Chris Lattner94ff2c32004-06-11 04:25:06 +0000286 void handleCompareFP(MachineBasicBlock::iterator &I);
Chris Lattnerc07c9582004-03-31 22:02:36 +0000287 void handleCondMovFP(MachineBasicBlock::iterator &I);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000288 void handleSpecialFP(MachineBasicBlock::iterator &I);
Jakob Stoklund Olesen63a622b2010-07-08 19:46:30 +0000289
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000290 // Check if a COPY instruction is using FP registers.
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000291 static bool isFPCopy(MachineInstr &MI) {
292 unsigned DstReg = MI.getOperand(0).getReg();
293 unsigned SrcReg = MI.getOperand(1).getReg();
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000294
295 return X86::RFP80RegClass.contains(DstReg) ||
296 X86::RFP80RegClass.contains(SrcReg);
297 }
Akira Hatanaka35166692014-08-01 22:19:41 +0000298
299 void setKillFlags(MachineBasicBlock &MBB) const;
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000300 };
Devang Patel8c78a0b2007-05-03 01:11:54 +0000301 char FPS::ID = 0;
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000302}
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000303
Chris Lattnerd46cd682003-12-20 09:58:55 +0000304FunctionPass *llvm::createX86FloatingPointStackifierPass() { return new FPS(); }
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000305
Chris Lattner3c43efc2008-01-14 06:41:29 +0000306/// getFPReg - Return the X86::FPx register number for the specified operand.
307/// For example, this returns 3 for X86::FP3.
308static unsigned getFPReg(const MachineOperand &MO) {
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000309 assert(MO.isReg() && "Expected an FP register!");
Chris Lattner3c43efc2008-01-14 06:41:29 +0000310 unsigned Reg = MO.getReg();
311 assert(Reg >= X86::FP0 && Reg <= X86::FP6 && "Expected FP register!");
312 return Reg - X86::FP0;
313}
314
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000315/// runOnMachineFunction - Loop over all of the basic blocks, transforming FP
316/// register references into FP stack references.
317///
318bool FPS::runOnMachineFunction(MachineFunction &MF) {
Chris Lattnerdebae1e2005-01-23 23:13:59 +0000319 // We only need to run this pass if there are any FP registers used in this
320 // function. If it is all integer, there is nothing for us to do!
Chris Lattnerdebae1e2005-01-23 23:13:59 +0000321 bool FPIsUsed = false;
322
Gabor Horvathfee04342015-03-16 09:53:42 +0000323 static_assert(X86::FP6 == X86::FP0+6, "Register enums aren't sorted right!");
Matthias Braun9912bb82015-07-14 17:52:07 +0000324 const MachineRegisterInfo &MRI = MF.getRegInfo();
Chris Lattnerdebae1e2005-01-23 23:13:59 +0000325 for (unsigned i = 0; i <= 6; ++i)
Matthias Braun9912bb82015-07-14 17:52:07 +0000326 if (!MRI.reg_nodbg_empty(X86::FP0 + i)) {
Chris Lattnerdebae1e2005-01-23 23:13:59 +0000327 FPIsUsed = true;
328 break;
329 }
330
331 // Early exit.
332 if (!FPIsUsed) return false;
333
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000334 Bundles = &getAnalysis<EdgeBundles>();
Eric Christopherfc6de422014-08-05 02:39:49 +0000335 TII = MF.getSubtarget().getInstrInfo();
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000336
337 // Prepare cross-MBB liveness.
Matthias Braunac4becc2017-05-31 20:30:22 +0000338 bundleCFGRecomputeKillFlags(MF);
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000339
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000340 StackTop = 0;
341
Chris Lattner11290272004-01-30 22:25:18 +0000342 // Process the function in depth first order so that we process at least one
343 // of the predecessors for every reachable block in the function.
David Callahanc1051ab2016-10-05 21:36:16 +0000344 df_iterator_default_set<MachineBasicBlock*> Processed;
Duncan P. N. Exon Smithd77de642015-10-19 21:48:29 +0000345 MachineBasicBlock *Entry = &MF.front();
Chris Lattner11290272004-01-30 22:25:18 +0000346
Oren Ben Simhonc0f073b2016-11-20 11:06:07 +0000347 LiveBundle &Bundle =
348 LiveBundles[Bundles->getBundle(Entry->getNumber(), false)];
349
350 // In regcall convention, some FP registers may not be passed through
351 // the stack, so they will need to be assigned to the stack first
Matthias Braunf1caa282017-12-15 22:22:58 +0000352 if ((Entry->getParent()->getFunction().getCallingConv() ==
Oren Ben Simhonc0f073b2016-11-20 11:06:07 +0000353 CallingConv::X86_RegCall) && (Bundle.Mask && !Bundle.FixCount)) {
354 // In the register calling convention, up to one FP argument could be
355 // saved in the first FP register.
356 // If bundle.mask is non-zero and Bundle.FixCount is zero, it means
357 // that the FP registers contain arguments.
358 // The actual value is passed in FP0.
359 // Here we fix the stack and mark FP0 as pre-assigned register.
360 assert((Bundle.Mask & 0xFE) == 0 &&
361 "Only FP0 could be passed as an argument");
362 Bundle.FixCount = 1;
363 Bundle.FixStack[0] = 0;
364 }
365
Chris Lattner11290272004-01-30 22:25:18 +0000366 bool Changed = false;
Craig Topper46276792014-08-24 23:23:06 +0000367 for (MachineBasicBlock *BB : depth_first_ext(Entry, Processed))
368 Changed |= processBasicBlock(MF, *BB);
Chris Lattner11290272004-01-30 22:25:18 +0000369
Chris Lattnerb2fcd072009-09-08 04:55:44 +0000370 // Process any unreachable blocks in arbitrary order now.
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000371 if (MF.size() != Processed.size())
Duncan P. N. Exon Smithd77de642015-10-19 21:48:29 +0000372 for (MachineBasicBlock &BB : MF)
373 if (Processed.insert(&BB).second)
374 Changed |= processBasicBlock(MF, BB);
Chris Lattnerb2fcd072009-09-08 04:55:44 +0000375
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000376 LiveBundles.clear();
377
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000378 return Changed;
379}
380
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000381/// bundleCFG - Scan all the basic blocks to determine consistent live-in and
382/// live-out sets for the FP registers. Consistent means that the set of
383/// registers live-out from a block is identical to the live-in set of all
384/// successors. This is not enforced by the normal live-in lists since
385/// registers may be implicitly defined, or not used by all successors.
Matthias Braunac4becc2017-05-31 20:30:22 +0000386void FPS::bundleCFGRecomputeKillFlags(MachineFunction &MF) {
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000387 assert(LiveBundles.empty() && "Stale data in LiveBundles");
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000388 LiveBundles.resize(Bundles->getNumBundles());
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000389
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000390 // Gather the actual live-in masks for all MBBs.
Duncan P. N. Exon Smithd77de642015-10-19 21:48:29 +0000391 for (MachineBasicBlock &MBB : MF) {
Matthias Braunac4becc2017-05-31 20:30:22 +0000392 setKillFlags(MBB);
393
394 const unsigned Mask = calcLiveInMask(&MBB, false);
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000395 if (!Mask)
396 continue;
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000397 // Update MBB ingoing bundle mask.
Duncan P. N. Exon Smithd77de642015-10-19 21:48:29 +0000398 LiveBundles[Bundles->getBundle(MBB.getNumber(), false)].Mask |= Mask;
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000399 }
400}
401
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000402/// processBasicBlock - Loop over all of the instructions in the basic block,
403/// transforming FP instructions into their stack form.
404///
405bool FPS::processBasicBlock(MachineFunction &MF, MachineBasicBlock &BB) {
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000406 bool Changed = false;
407 MBB = &BB;
Misha Brukmanc88330a2005-04-21 23:38:14 +0000408
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000409 setupBlockStack();
410
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000411 for (MachineBasicBlock::iterator I = BB.begin(); I != BB.end(); ++I) {
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000412 MachineInstr &MI = *I;
413 uint64_t Flags = MI.getDesc().TSFlags;
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000414
Chris Lattner8abed802008-03-11 19:50:13 +0000415 unsigned FPInstClass = Flags & X86II::FPTypeMask;
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000416 if (MI.isInlineAsm())
Chris Lattner8abed802008-03-11 19:50:13 +0000417 FPInstClass = X86II::SpecialFP;
Jakob Stoklund Olesen63a622b2010-07-08 19:46:30 +0000418
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000419 if (MI.isCopy() && isFPCopy(MI))
Jakob Stoklund Olesen63a622b2010-07-08 19:46:30 +0000420 FPInstClass = X86II::SpecialFP;
421
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000422 if (MI.isImplicitDef() &&
423 X86::RFP80RegClass.contains(MI.getOperand(0).getReg()))
Jakob Stoklund Olesenda618422011-08-03 16:33:19 +0000424 FPInstClass = X86II::SpecialFP;
425
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000426 if (MI.isCall())
Akira Hatanaka35166692014-08-01 22:19:41 +0000427 FPInstClass = X86II::SpecialFP;
428
Chris Lattner8abed802008-03-11 19:50:13 +0000429 if (FPInstClass == X86II::NotFP)
Chris Lattner11290272004-01-30 22:25:18 +0000430 continue; // Efficiently ignore non-fp insts!
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000431
Craig Topper062a2ba2014-04-25 05:30:21 +0000432 MachineInstr *PrevMI = nullptr;
Alkis Evlogimenos5a922402004-02-14 01:18:34 +0000433 if (I != BB.begin())
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000434 PrevMI = &*std::prev(I);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000435
436 ++NumFP; // Keep track of # of pseudo instrs
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000437 DEBUG(dbgs() << "\nFPInst:\t" << MI);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000438
439 // Get dead variables list now because the MI pointer may be deleted as part
440 // of processing!
Evan Chengbbbcac32006-11-15 20:56:39 +0000441 SmallVector<unsigned, 8> DeadRegs;
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000442 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
443 const MachineOperand &MO = MI.getOperand(i);
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000444 if (MO.isReg() && MO.isDead())
Evan Chengbbbcac32006-11-15 20:56:39 +0000445 DeadRegs.push_back(MO.getReg());
446 }
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000447
Chris Lattner8abed802008-03-11 19:50:13 +0000448 switch (FPInstClass) {
Chris Lattner7af8ad62004-02-02 19:23:15 +0000449 case X86II::ZeroArgFP: handleZeroArgFP(I); break;
Chris Lattnerc07c9582004-03-31 22:02:36 +0000450 case X86II::OneArgFP: handleOneArgFP(I); break; // fstp ST(0)
Chris Lattner7af8ad62004-02-02 19:23:15 +0000451 case X86II::OneArgFPRW: handleOneArgFPRW(I); break; // ST(0) = fsqrt(ST(0))
Evan Chengdb04c952006-11-11 10:21:44 +0000452 case X86II::TwoArgFP: handleTwoArgFP(I); break;
Chris Lattner0876edf2004-06-11 04:41:24 +0000453 case X86II::CompareFP: handleCompareFP(I); break;
Chris Lattnerc07c9582004-03-31 22:02:36 +0000454 case X86II::CondMovFP: handleCondMovFP(I); break;
Chris Lattner7af8ad62004-02-02 19:23:15 +0000455 case X86II::SpecialFP: handleSpecialFP(I); break;
Torok Edwinfbcc6632009-07-14 16:55:14 +0000456 default: llvm_unreachable("Unknown FP Type!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000457 }
458
459 // Check to see if any of the values defined by this instruction are dead
460 // after definition. If so, pop them.
Evan Chengbbbcac32006-11-15 20:56:39 +0000461 for (unsigned i = 0, e = DeadRegs.size(); i != e; ++i) {
462 unsigned Reg = DeadRegs[i];
Akira Hatanaka35166692014-08-01 22:19:41 +0000463 // Check if Reg is live on the stack. An inline-asm register operand that
464 // is in the clobber list and marked dead might not be live on the stack.
Matthias Braun43692a22017-05-31 20:30:17 +0000465 static_assert(X86::FP7 - X86::FP0 == 7, "sequential FP regnumbers");
Akira Hatanaka35166692014-08-01 22:19:41 +0000466 if (Reg >= X86::FP0 && Reg <= X86::FP6 && isLive(Reg-X86::FP0)) {
David Greened85fd002010-01-05 01:29:34 +0000467 DEBUG(dbgs() << "Register FP#" << Reg-X86::FP0 << " is dead!\n");
Chris Lattner94ff2c32004-06-11 04:25:06 +0000468 freeStackSlotAfter(I, Reg-X86::FP0);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000469 }
470 }
Misha Brukmanc88330a2005-04-21 23:38:14 +0000471
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000472 // Print out all of the instructions expanded to if -debug
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000473 DEBUG({
474 MachineBasicBlock::iterator PrevI = PrevMI;
Alkis Evlogimenos636e19d2004-02-15 00:46:41 +0000475 if (I == PrevI) {
David Greened85fd002010-01-05 01:29:34 +0000476 dbgs() << "Just deleted pseudo instruction\n";
Alkis Evlogimenos636e19d2004-02-15 00:46:41 +0000477 } else {
478 MachineBasicBlock::iterator Start = I;
479 // Rewind to first instruction newly inserted.
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000480 while (Start != BB.begin() && std::prev(Start) != PrevI)
481 --Start;
David Greened85fd002010-01-05 01:29:34 +0000482 dbgs() << "Inserted instructions:\n\t";
Eric Christopher1cdefae2015-02-27 00:11:34 +0000483 Start->print(dbgs());
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000484 while (++Start != std::next(I)) {
485 }
Alkis Evlogimenos636e19d2004-02-15 00:46:41 +0000486 }
487 dumpStack();
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000488 });
Duncan Sandsa41634e2011-08-12 14:54:45 +0000489 (void)PrevMI;
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000490
491 Changed = true;
492 }
493
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000494 finishBlockStack();
495
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000496 return Changed;
497}
498
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000499/// setupBlockStack - Use the live bundles to set up our model of the stack
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000500/// to match predecessors' live out stack.
501void FPS::setupBlockStack() {
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000502 DEBUG(dbgs() << "\nSetting up live-ins for " << printMBBReference(*MBB)
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000503 << " derived from " << MBB->getName() << ".\n");
504 StackTop = 0;
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000505 // Get the live-in bundle for MBB.
506 const LiveBundle &Bundle =
507 LiveBundles[Bundles->getBundle(MBB->getNumber(), false)];
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000508
509 if (!Bundle.Mask) {
510 DEBUG(dbgs() << "Block has no FP live-ins.\n");
511 return;
512 }
513
514 // Depth-first iteration should ensure that we always have an assigned stack.
515 assert(Bundle.isFixed() && "Reached block before any predecessors");
516
517 // Push the fixed live-in registers.
518 for (unsigned i = Bundle.FixCount; i > 0; --i) {
Francis Visoiu Mistrih9d7bb0c2017-11-28 17:15:09 +0000519 DEBUG(dbgs() << "Live-in st(" << (i-1) << "): %fp"
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000520 << unsigned(Bundle.FixStack[i-1]) << '\n');
521 pushReg(Bundle.FixStack[i-1]);
522 }
523
524 // Kill off unwanted live-ins. This can happen with a critical edge.
525 // FIXME: We could keep these live registers around as zombies. They may need
526 // to be revived at the end of a short block. It might save a few instrs.
Matthias Braunac4becc2017-05-31 20:30:22 +0000527 unsigned Mask = calcLiveInMask(MBB, /*RemoveFPs=*/true);
528 adjustLiveRegs(Mask, MBB->begin());
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000529 DEBUG(MBB->dump());
530}
531
532/// finishBlockStack - Revive live-outs that are implicitly defined out of
533/// MBB. Shuffle live registers to match the expected fixed stack of any
534/// predecessors, and ensure that all predecessors are expecting the same
535/// stack.
536void FPS::finishBlockStack() {
537 // The RET handling below takes care of return blocks for us.
538 if (MBB->succ_empty())
539 return;
540
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +0000541 DEBUG(dbgs() << "Setting up live-outs for " << printMBBReference(*MBB)
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000542 << " derived from " << MBB->getName() << ".\n");
543
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000544 // Get MBB's live-out bundle.
545 unsigned BundleIdx = Bundles->getBundle(MBB->getNumber(), true);
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000546 LiveBundle &Bundle = LiveBundles[BundleIdx];
547
548 // We may need to kill and define some registers to match successors.
549 // FIXME: This can probably be combined with the shuffle below.
550 MachineBasicBlock::iterator Term = MBB->getFirstTerminator();
551 adjustLiveRegs(Bundle.Mask, Term);
552
553 if (!Bundle.Mask) {
554 DEBUG(dbgs() << "No live-outs.\n");
555 return;
556 }
557
558 // Has the stack order been fixed yet?
559 DEBUG(dbgs() << "LB#" << BundleIdx << ": ");
560 if (Bundle.isFixed()) {
561 DEBUG(dbgs() << "Shuffling stack to match.\n");
562 shuffleStackTop(Bundle.FixStack, Bundle.FixCount, Term);
563 } else {
564 // Not fixed yet, we get to choose.
565 DEBUG(dbgs() << "Fixing stack order now.\n");
566 Bundle.FixCount = StackTop;
567 for (unsigned i = 0; i < StackTop; ++i)
568 Bundle.FixStack[i] = getStackEntry(i);
569 }
570}
571
572
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000573//===----------------------------------------------------------------------===//
574// Efficient Lookup Table Support
575//===----------------------------------------------------------------------===//
576
Chris Lattnerd46cd682003-12-20 09:58:55 +0000577namespace {
578 struct TableEntry {
Craig Topper2dac9622012-03-09 07:45:21 +0000579 uint16_t from;
580 uint16_t to;
Chris Lattnerd46cd682003-12-20 09:58:55 +0000581 bool operator<(const TableEntry &TE) const { return from < TE.from; }
Jeff Cohen15a8c152006-01-26 20:41:32 +0000582 friend bool operator<(const TableEntry &TE, unsigned V) {
583 return TE.from < V;
584 }
Benjamin Kramer0d874f72012-09-17 16:46:22 +0000585 friend bool LLVM_ATTRIBUTE_UNUSED operator<(unsigned V,
586 const TableEntry &TE) {
Jakob Stoklund Olesen2cd00732010-08-16 18:24:54 +0000587 return V < TE.from;
588 }
Chris Lattnerd46cd682003-12-20 09:58:55 +0000589 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000590}
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000591
Craig Topper9ff9bf42015-10-17 16:37:13 +0000592static int Lookup(ArrayRef<TableEntry> Table, unsigned Opcode) {
593 const TableEntry *I = std::lower_bound(Table.begin(), Table.end(), Opcode);
594 if (I != Table.end() && I->from == Opcode)
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000595 return I->to;
596 return -1;
597}
598
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000599#ifdef NDEBUG
600#define ASSERT_SORTED(TABLE)
601#else
602#define ASSERT_SORTED(TABLE) \
603 { static bool TABLE##Checked = false; \
Jim Laskey181fb1c2006-07-19 19:33:08 +0000604 if (!TABLE##Checked) { \
Craig Topper9ff9bf42015-10-17 16:37:13 +0000605 assert(std::is_sorted(std::begin(TABLE), std::end(TABLE)) && \
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000606 "All lookup tables must be sorted for efficient access!"); \
Jim Laskey181fb1c2006-07-19 19:33:08 +0000607 TABLE##Checked = true; \
608 } \
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000609 }
610#endif
611
Chris Lattnerf431ad42005-12-21 07:47:04 +0000612//===----------------------------------------------------------------------===//
613// Register File -> Register Stack Mapping Methods
614//===----------------------------------------------------------------------===//
615
616// OpcodeTable - Sorted map of register instructions to their stack version.
617// The first element is an register file pseudo instruction, the second is the
618// concrete X86 instruction which uses the register stack.
619//
620static const TableEntry OpcodeTable[] = {
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000621 { X86::ABS_Fp32 , X86::ABS_F },
622 { X86::ABS_Fp64 , X86::ABS_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000623 { X86::ABS_Fp80 , X86::ABS_F },
Dale Johannesen68471d22007-07-10 21:53:30 +0000624 { X86::ADD_Fp32m , X86::ADD_F32m },
625 { X86::ADD_Fp64m , X86::ADD_F64m },
626 { X86::ADD_Fp64m32 , X86::ADD_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000627 { X86::ADD_Fp80m32 , X86::ADD_F32m },
628 { X86::ADD_Fp80m64 , X86::ADD_F64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000629 { X86::ADD_FpI16m32 , X86::ADD_FI16m },
630 { X86::ADD_FpI16m64 , X86::ADD_FI16m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000631 { X86::ADD_FpI16m80 , X86::ADD_FI16m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000632 { X86::ADD_FpI32m32 , X86::ADD_FI32m },
633 { X86::ADD_FpI32m64 , X86::ADD_FI32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000634 { X86::ADD_FpI32m80 , X86::ADD_FI32m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000635 { X86::CHS_Fp32 , X86::CHS_F },
636 { X86::CHS_Fp64 , X86::CHS_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000637 { X86::CHS_Fp80 , X86::CHS_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000638 { X86::CMOVBE_Fp32 , X86::CMOVBE_F },
639 { X86::CMOVBE_Fp64 , X86::CMOVBE_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000640 { X86::CMOVBE_Fp80 , X86::CMOVBE_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000641 { X86::CMOVB_Fp32 , X86::CMOVB_F },
642 { X86::CMOVB_Fp64 , X86::CMOVB_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000643 { X86::CMOVB_Fp80 , X86::CMOVB_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000644 { X86::CMOVE_Fp32 , X86::CMOVE_F },
645 { X86::CMOVE_Fp64 , X86::CMOVE_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000646 { X86::CMOVE_Fp80 , X86::CMOVE_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000647 { X86::CMOVNBE_Fp32 , X86::CMOVNBE_F },
648 { X86::CMOVNBE_Fp64 , X86::CMOVNBE_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000649 { X86::CMOVNBE_Fp80 , X86::CMOVNBE_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000650 { X86::CMOVNB_Fp32 , X86::CMOVNB_F },
651 { X86::CMOVNB_Fp64 , X86::CMOVNB_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000652 { X86::CMOVNB_Fp80 , X86::CMOVNB_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000653 { X86::CMOVNE_Fp32 , X86::CMOVNE_F },
654 { X86::CMOVNE_Fp64 , X86::CMOVNE_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000655 { X86::CMOVNE_Fp80 , X86::CMOVNE_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000656 { X86::CMOVNP_Fp32 , X86::CMOVNP_F },
657 { X86::CMOVNP_Fp64 , X86::CMOVNP_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000658 { X86::CMOVNP_Fp80 , X86::CMOVNP_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000659 { X86::CMOVP_Fp32 , X86::CMOVP_F },
660 { X86::CMOVP_Fp64 , X86::CMOVP_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000661 { X86::CMOVP_Fp80 , X86::CMOVP_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000662 { X86::COS_Fp32 , X86::COS_F },
663 { X86::COS_Fp64 , X86::COS_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000664 { X86::COS_Fp80 , X86::COS_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000665 { X86::DIVR_Fp32m , X86::DIVR_F32m },
666 { X86::DIVR_Fp64m , X86::DIVR_F64m },
Dale Johannesen68471d22007-07-10 21:53:30 +0000667 { X86::DIVR_Fp64m32 , X86::DIVR_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000668 { X86::DIVR_Fp80m32 , X86::DIVR_F32m },
669 { X86::DIVR_Fp80m64 , X86::DIVR_F64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000670 { X86::DIVR_FpI16m32, X86::DIVR_FI16m},
671 { X86::DIVR_FpI16m64, X86::DIVR_FI16m},
Dale Johannesenb1888e72007-08-05 18:49:15 +0000672 { X86::DIVR_FpI16m80, X86::DIVR_FI16m},
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000673 { X86::DIVR_FpI32m32, X86::DIVR_FI32m},
674 { X86::DIVR_FpI32m64, X86::DIVR_FI32m},
Dale Johannesenb1888e72007-08-05 18:49:15 +0000675 { X86::DIVR_FpI32m80, X86::DIVR_FI32m},
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000676 { X86::DIV_Fp32m , X86::DIV_F32m },
677 { X86::DIV_Fp64m , X86::DIV_F64m },
Dale Johannesen68471d22007-07-10 21:53:30 +0000678 { X86::DIV_Fp64m32 , X86::DIV_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000679 { X86::DIV_Fp80m32 , X86::DIV_F32m },
680 { X86::DIV_Fp80m64 , X86::DIV_F64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000681 { X86::DIV_FpI16m32 , X86::DIV_FI16m },
682 { X86::DIV_FpI16m64 , X86::DIV_FI16m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000683 { X86::DIV_FpI16m80 , X86::DIV_FI16m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000684 { X86::DIV_FpI32m32 , X86::DIV_FI32m },
685 { X86::DIV_FpI32m64 , X86::DIV_FI32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000686 { X86::DIV_FpI32m80 , X86::DIV_FI32m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000687 { X86::ILD_Fp16m32 , X86::ILD_F16m },
688 { X86::ILD_Fp16m64 , X86::ILD_F16m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000689 { X86::ILD_Fp16m80 , X86::ILD_F16m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000690 { X86::ILD_Fp32m32 , X86::ILD_F32m },
691 { X86::ILD_Fp32m64 , X86::ILD_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000692 { X86::ILD_Fp32m80 , X86::ILD_F32m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000693 { X86::ILD_Fp64m32 , X86::ILD_F64m },
694 { X86::ILD_Fp64m64 , X86::ILD_F64m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000695 { X86::ILD_Fp64m80 , X86::ILD_F64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000696 { X86::ISTT_Fp16m32 , X86::ISTT_FP16m},
697 { X86::ISTT_Fp16m64 , X86::ISTT_FP16m},
Dale Johannesen57c6ac5f2007-08-07 01:17:37 +0000698 { X86::ISTT_Fp16m80 , X86::ISTT_FP16m},
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000699 { X86::ISTT_Fp32m32 , X86::ISTT_FP32m},
700 { X86::ISTT_Fp32m64 , X86::ISTT_FP32m},
Dale Johannesen57c6ac5f2007-08-07 01:17:37 +0000701 { X86::ISTT_Fp32m80 , X86::ISTT_FP32m},
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000702 { X86::ISTT_Fp64m32 , X86::ISTT_FP64m},
703 { X86::ISTT_Fp64m64 , X86::ISTT_FP64m},
Dale Johannesen57c6ac5f2007-08-07 01:17:37 +0000704 { X86::ISTT_Fp64m80 , X86::ISTT_FP64m},
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000705 { X86::IST_Fp16m32 , X86::IST_F16m },
706 { X86::IST_Fp16m64 , X86::IST_F16m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000707 { X86::IST_Fp16m80 , X86::IST_F16m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000708 { X86::IST_Fp32m32 , X86::IST_F32m },
709 { X86::IST_Fp32m64 , X86::IST_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000710 { X86::IST_Fp32m80 , X86::IST_F32m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000711 { X86::IST_Fp64m32 , X86::IST_FP64m },
712 { X86::IST_Fp64m64 , X86::IST_FP64m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000713 { X86::IST_Fp64m80 , X86::IST_FP64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000714 { X86::LD_Fp032 , X86::LD_F0 },
715 { X86::LD_Fp064 , X86::LD_F0 },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000716 { X86::LD_Fp080 , X86::LD_F0 },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000717 { X86::LD_Fp132 , X86::LD_F1 },
718 { X86::LD_Fp164 , X86::LD_F1 },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000719 { X86::LD_Fp180 , X86::LD_F1 },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000720 { X86::LD_Fp32m , X86::LD_F32m },
Dale Johannesena47f7d72007-08-07 20:29:26 +0000721 { X86::LD_Fp32m64 , X86::LD_F32m },
722 { X86::LD_Fp32m80 , X86::LD_F32m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000723 { X86::LD_Fp64m , X86::LD_F64m },
Dale Johannesena47f7d72007-08-07 20:29:26 +0000724 { X86::LD_Fp64m80 , X86::LD_F64m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000725 { X86::LD_Fp80m , X86::LD_F80m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000726 { X86::MUL_Fp32m , X86::MUL_F32m },
727 { X86::MUL_Fp64m , X86::MUL_F64m },
Dale Johannesen68471d22007-07-10 21:53:30 +0000728 { X86::MUL_Fp64m32 , X86::MUL_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000729 { X86::MUL_Fp80m32 , X86::MUL_F32m },
730 { X86::MUL_Fp80m64 , X86::MUL_F64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000731 { X86::MUL_FpI16m32 , X86::MUL_FI16m },
732 { X86::MUL_FpI16m64 , X86::MUL_FI16m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000733 { X86::MUL_FpI16m80 , X86::MUL_FI16m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000734 { X86::MUL_FpI32m32 , X86::MUL_FI32m },
735 { X86::MUL_FpI32m64 , X86::MUL_FI32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000736 { X86::MUL_FpI32m80 , X86::MUL_FI32m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000737 { X86::SIN_Fp32 , X86::SIN_F },
738 { X86::SIN_Fp64 , X86::SIN_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000739 { X86::SIN_Fp80 , X86::SIN_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000740 { X86::SQRT_Fp32 , X86::SQRT_F },
741 { X86::SQRT_Fp64 , X86::SQRT_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000742 { X86::SQRT_Fp80 , X86::SQRT_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000743 { X86::ST_Fp32m , X86::ST_F32m },
744 { X86::ST_Fp64m , X86::ST_F64m },
745 { X86::ST_Fp64m32 , X86::ST_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000746 { X86::ST_Fp80m32 , X86::ST_F32m },
747 { X86::ST_Fp80m64 , X86::ST_F64m },
748 { X86::ST_FpP80m , X86::ST_FP80m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000749 { X86::SUBR_Fp32m , X86::SUBR_F32m },
750 { X86::SUBR_Fp64m , X86::SUBR_F64m },
Dale Johannesen68471d22007-07-10 21:53:30 +0000751 { X86::SUBR_Fp64m32 , X86::SUBR_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000752 { X86::SUBR_Fp80m32 , X86::SUBR_F32m },
753 { X86::SUBR_Fp80m64 , X86::SUBR_F64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000754 { X86::SUBR_FpI16m32, X86::SUBR_FI16m},
755 { X86::SUBR_FpI16m64, X86::SUBR_FI16m},
Dale Johannesenb1888e72007-08-05 18:49:15 +0000756 { X86::SUBR_FpI16m80, X86::SUBR_FI16m},
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000757 { X86::SUBR_FpI32m32, X86::SUBR_FI32m},
758 { X86::SUBR_FpI32m64, X86::SUBR_FI32m},
Dale Johannesenb1888e72007-08-05 18:49:15 +0000759 { X86::SUBR_FpI32m80, X86::SUBR_FI32m},
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000760 { X86::SUB_Fp32m , X86::SUB_F32m },
761 { X86::SUB_Fp64m , X86::SUB_F64m },
Dale Johannesen68471d22007-07-10 21:53:30 +0000762 { X86::SUB_Fp64m32 , X86::SUB_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000763 { X86::SUB_Fp80m32 , X86::SUB_F32m },
764 { X86::SUB_Fp80m64 , X86::SUB_F64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000765 { X86::SUB_FpI16m32 , X86::SUB_FI16m },
766 { X86::SUB_FpI16m64 , X86::SUB_FI16m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000767 { X86::SUB_FpI16m80 , X86::SUB_FI16m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000768 { X86::SUB_FpI32m32 , X86::SUB_FI32m },
769 { X86::SUB_FpI32m64 , X86::SUB_FI32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000770 { X86::SUB_FpI32m80 , X86::SUB_FI32m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000771 { X86::TST_Fp32 , X86::TST_F },
772 { X86::TST_Fp64 , X86::TST_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000773 { X86::TST_Fp80 , X86::TST_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000774 { X86::UCOM_FpIr32 , X86::UCOM_FIr },
775 { X86::UCOM_FpIr64 , X86::UCOM_FIr },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000776 { X86::UCOM_FpIr80 , X86::UCOM_FIr },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000777 { X86::UCOM_Fpr32 , X86::UCOM_Fr },
778 { X86::UCOM_Fpr64 , X86::UCOM_Fr },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000779 { X86::UCOM_Fpr80 , X86::UCOM_Fr },
Chris Lattnerf431ad42005-12-21 07:47:04 +0000780};
781
782static unsigned getConcreteOpcode(unsigned Opcode) {
783 ASSERT_SORTED(OpcodeTable);
Craig Topper9ff9bf42015-10-17 16:37:13 +0000784 int Opc = Lookup(OpcodeTable, Opcode);
Chris Lattnerf431ad42005-12-21 07:47:04 +0000785 assert(Opc != -1 && "FP Stack instruction not in OpcodeTable!");
786 return Opc;
787}
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000788
789//===----------------------------------------------------------------------===//
790// Helper Methods
791//===----------------------------------------------------------------------===//
792
793// PopTable - Sorted map of instructions to their popping version. The first
794// element is an instruction, the second is the version which pops.
795//
796static const TableEntry PopTable[] = {
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000797 { X86::ADD_FrST0 , X86::ADD_FPrST0 },
Chris Lattner637eebb2003-08-03 21:56:36 +0000798
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000799 { X86::DIVR_FrST0, X86::DIVR_FPrST0 },
800 { X86::DIV_FrST0 , X86::DIV_FPrST0 },
Chris Lattner637eebb2003-08-03 21:56:36 +0000801
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000802 { X86::IST_F16m , X86::IST_FP16m },
803 { X86::IST_F32m , X86::IST_FP32m },
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000804
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000805 { X86::MUL_FrST0 , X86::MUL_FPrST0 },
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000806
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000807 { X86::ST_F32m , X86::ST_FP32m },
808 { X86::ST_F64m , X86::ST_FP64m },
809 { X86::ST_Frr , X86::ST_FPrr },
Chris Lattner637eebb2003-08-03 21:56:36 +0000810
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000811 { X86::SUBR_FrST0, X86::SUBR_FPrST0 },
812 { X86::SUB_FrST0 , X86::SUB_FPrST0 },
Chris Lattner637eebb2003-08-03 21:56:36 +0000813
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000814 { X86::UCOM_FIr , X86::UCOM_FIPr },
Chris Lattnerd1c75452004-04-12 01:39:15 +0000815
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000816 { X86::UCOM_FPr , X86::UCOM_FPPr },
817 { X86::UCOM_Fr , X86::UCOM_FPr },
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000818};
819
820/// popStackAfter - Pop the current value off of the top of the FP stack after
821/// the specified instruction. This attempts to be sneaky and combine the pop
822/// into the instruction itself if possible. The iterator is left pointing to
823/// the last instruction, be it a new pop instruction inserted, or the old
824/// instruction if it was modified in place.
825///
826void FPS::popStackAfter(MachineBasicBlock::iterator &I) {
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000827 MachineInstr &MI = *I;
828 const DebugLoc &dl = MI.getDebugLoc();
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000829 ASSERT_SORTED(PopTable);
Oren Ben Simhonc0f073b2016-11-20 11:06:07 +0000830
831 popReg();
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000832
833 // Check to see if there is a popping version of this instruction...
Craig Topper9ff9bf42015-10-17 16:37:13 +0000834 int Opcode = Lookup(PopTable, I->getOpcode());
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000835 if (Opcode != -1) {
Chris Lattner59687512008-01-11 18:10:50 +0000836 I->setDesc(TII->get(Opcode));
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000837 if (Opcode == X86::UCOM_FPPr)
Alkis Evlogimenos80da8652004-02-12 02:27:10 +0000838 I->RemoveOperand(0);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000839 } else { // Insert an explicit pop
Dale Johannesen9bba9022009-02-13 02:33:27 +0000840 I = BuildMI(*MBB, ++I, dl, TII->get(X86::ST_FPrr)).addReg(X86::ST0);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000841 }
842}
843
Chris Lattnerbc7e35b2004-04-01 04:06:09 +0000844/// freeStackSlotAfter - Free the specified register from the register stack, so
845/// that it is no longer in a register. If the register is currently at the top
846/// of the stack, we just pop the current instruction, otherwise we store the
847/// current top-of-stack into the specified slot, then pop the top of stack.
848void FPS::freeStackSlotAfter(MachineBasicBlock::iterator &I, unsigned FPRegNo) {
849 if (getStackEntry(0) == FPRegNo) { // already at the top of stack? easy.
850 popStackAfter(I);
851 return;
852 }
853
854 // Otherwise, store the top of stack into the dead slot, killing the operand
855 // without having to add in an explicit xchg then pop.
856 //
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000857 I = freeStackSlotBefore(++I, FPRegNo);
858}
859
860/// freeStackSlotBefore - Free the specified register without trying any
861/// folding.
862MachineBasicBlock::iterator
863FPS::freeStackSlotBefore(MachineBasicBlock::iterator I, unsigned FPRegNo) {
Chris Lattnerbc7e35b2004-04-01 04:06:09 +0000864 unsigned STReg = getSTReg(FPRegNo);
865 unsigned OldSlot = getSlot(FPRegNo);
866 unsigned TopReg = Stack[StackTop-1];
867 Stack[OldSlot] = TopReg;
868 RegMap[TopReg] = OldSlot;
869 RegMap[FPRegNo] = ~0;
870 Stack[--StackTop] = ~0;
Reid Klecknerda00cf52014-10-31 23:19:46 +0000871 return BuildMI(*MBB, I, DebugLoc(), TII->get(X86::ST_FPrr))
872 .addReg(STReg)
873 .getInstr();
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000874}
875
876/// adjustLiveRegs - Kill and revive registers such that exactly the FP
877/// registers with a bit in Mask are live.
878void FPS::adjustLiveRegs(unsigned Mask, MachineBasicBlock::iterator I) {
879 unsigned Defs = Mask;
880 unsigned Kills = 0;
881 for (unsigned i = 0; i < StackTop; ++i) {
882 unsigned RegNo = Stack[i];
883 if (!(Defs & (1 << RegNo)))
884 // This register is live, but we don't want it.
885 Kills |= (1 << RegNo);
886 else
887 // We don't need to imp-def this live register.
888 Defs &= ~(1 << RegNo);
889 }
890 assert((Kills & Defs) == 0 && "Register needs killing and def'ing?");
891
892 // Produce implicit-defs for free by using killed registers.
893 while (Kills && Defs) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000894 unsigned KReg = countTrailingZeros(Kills);
895 unsigned DReg = countTrailingZeros(Defs);
Francis Visoiu Mistrih9d7bb0c2017-11-28 17:15:09 +0000896 DEBUG(dbgs() << "Renaming %fp" << KReg << " as imp %fp" << DReg << "\n");
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000897 std::swap(Stack[getSlot(KReg)], Stack[getSlot(DReg)]);
898 std::swap(RegMap[KReg], RegMap[DReg]);
899 Kills &= ~(1 << KReg);
900 Defs &= ~(1 << DReg);
901 }
902
903 // Kill registers by popping.
904 if (Kills && I != MBB->begin()) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000905 MachineBasicBlock::iterator I2 = std::prev(I);
Jakob Stoklund Olesen25a404e2011-07-02 03:53:34 +0000906 while (StackTop) {
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000907 unsigned KReg = getStackEntry(0);
908 if (!(Kills & (1 << KReg)))
909 break;
Francis Visoiu Mistrih9d7bb0c2017-11-28 17:15:09 +0000910 DEBUG(dbgs() << "Popping %fp" << KReg << "\n");
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000911 popStackAfter(I2);
912 Kills &= ~(1 << KReg);
913 }
914 }
915
916 // Manually kill the rest.
917 while (Kills) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000918 unsigned KReg = countTrailingZeros(Kills);
Francis Visoiu Mistrih9d7bb0c2017-11-28 17:15:09 +0000919 DEBUG(dbgs() << "Killing %fp" << KReg << "\n");
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000920 freeStackSlotBefore(I, KReg);
921 Kills &= ~(1 << KReg);
922 }
923
924 // Load zeros for all the imp-defs.
925 while(Defs) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000926 unsigned DReg = countTrailingZeros(Defs);
Francis Visoiu Mistrih9d7bb0c2017-11-28 17:15:09 +0000927 DEBUG(dbgs() << "Defining %fp" << DReg << " as 0\n");
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000928 BuildMI(*MBB, I, DebugLoc(), TII->get(X86::LD_F0));
929 pushReg(DReg);
930 Defs &= ~(1 << DReg);
931 }
932
933 // Now we should have the correct registers live.
934 DEBUG(dumpStack());
Benjamin Kramer5f6a9072015-02-12 15:35:40 +0000935 assert(StackTop == countPopulation(Mask) && "Live count mismatch");
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000936}
937
938/// shuffleStackTop - emit fxch instructions before I to shuffle the top
939/// FixCount entries into the order given by FixStack.
940/// FIXME: Is there a better algorithm than insertion sort?
941void FPS::shuffleStackTop(const unsigned char *FixStack,
942 unsigned FixCount,
943 MachineBasicBlock::iterator I) {
944 // Move items into place, starting from the desired stack bottom.
945 while (FixCount--) {
946 // Old register at position FixCount.
947 unsigned OldReg = getStackEntry(FixCount);
948 // Desired register at position FixCount.
949 unsigned Reg = FixStack[FixCount];
950 if (Reg == OldReg)
951 continue;
952 // (Reg st0) (OldReg st0) = (Reg OldReg st0)
953 moveToTop(Reg, I);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000954 if (FixCount > 0)
955 moveToTop(OldReg, I);
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000956 }
957 DEBUG(dumpStack());
Chris Lattnerbc7e35b2004-04-01 04:06:09 +0000958}
959
960
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000961//===----------------------------------------------------------------------===//
962// Instruction transformation implementation
963//===----------------------------------------------------------------------===//
964
Akira Hatanaka35166692014-08-01 22:19:41 +0000965void FPS::handleCall(MachineBasicBlock::iterator &I) {
966 unsigned STReturns = 0;
Oren Ben Simhonc0f073b2016-11-20 11:06:07 +0000967 const MachineFunction* MF = I->getParent()->getParent();
Akira Hatanaka35166692014-08-01 22:19:41 +0000968
969 for (const auto &MO : I->operands()) {
970 if (!MO.isReg())
971 continue;
972
973 unsigned R = MO.getReg() - X86::FP0;
974
975 if (R < 8) {
Matthias Braunf1caa282017-12-15 22:22:58 +0000976 if (MF->getFunction().getCallingConv() != CallingConv::X86_RegCall) {
Oren Ben Simhonc0f073b2016-11-20 11:06:07 +0000977 assert(MO.isDef() && MO.isImplicit());
978 }
979
Akira Hatanaka35166692014-08-01 22:19:41 +0000980 STReturns |= 1 << R;
981 }
982 }
983
Benjamin Kramer5f6a9072015-02-12 15:35:40 +0000984 unsigned N = countTrailingOnes(STReturns);
Akira Hatanaka35166692014-08-01 22:19:41 +0000985
986 // FP registers used for function return must be consecutive starting at
Oren Ben Simhonc0f073b2016-11-20 11:06:07 +0000987 // FP0
Akira Hatanakae457f3e2014-08-04 17:23:38 +0000988 assert(STReturns == 0 || (isMask_32(STReturns) && N <= 2));
Akira Hatanaka35166692014-08-01 22:19:41 +0000989
Oren Ben Simhonc0f073b2016-11-20 11:06:07 +0000990 // Reset the FP Stack - It is required because of possible leftovers from
991 // passed arguments. The caller should assume that the FP stack is
992 // returned empty (unless the callee returns values on FP stack).
993 while (StackTop > 0)
994 popReg();
995
Akira Hatanaka35166692014-08-01 22:19:41 +0000996 for (unsigned I = 0; I < N; ++I)
997 pushReg(N - I - 1);
998}
999
David L Kreitzer14f00772016-03-10 15:14:02 +00001000/// If RET has an FP register use operand, pass the first one in ST(0) and
1001/// the second one in ST(1).
1002void FPS::handleReturn(MachineBasicBlock::iterator &I) {
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001003 MachineInstr &MI = *I;
David L Kreitzer14f00772016-03-10 15:14:02 +00001004
1005 // Find the register operands.
1006 unsigned FirstFPRegOp = ~0U, SecondFPRegOp = ~0U;
1007 unsigned LiveMask = 0;
1008
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001009 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
1010 MachineOperand &Op = MI.getOperand(i);
David L Kreitzer14f00772016-03-10 15:14:02 +00001011 if (!Op.isReg() || Op.getReg() < X86::FP0 || Op.getReg() > X86::FP6)
1012 continue;
1013 // FP Register uses must be kills unless there are two uses of the same
1014 // register, in which case only one will be a kill.
1015 assert(Op.isUse() &&
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001016 (Op.isKill() || // Marked kill.
1017 getFPReg(Op) == FirstFPRegOp || // Second instance.
1018 MI.killsRegister(Op.getReg())) && // Later use is marked kill.
David L Kreitzer14f00772016-03-10 15:14:02 +00001019 "Ret only defs operands, and values aren't live beyond it");
1020
1021 if (FirstFPRegOp == ~0U)
1022 FirstFPRegOp = getFPReg(Op);
1023 else {
1024 assert(SecondFPRegOp == ~0U && "More than two fp operands!");
1025 SecondFPRegOp = getFPReg(Op);
1026 }
1027 LiveMask |= (1 << getFPReg(Op));
1028
1029 // Remove the operand so that later passes don't see it.
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001030 MI.RemoveOperand(i);
David L Kreitzer14f00772016-03-10 15:14:02 +00001031 --i;
1032 --e;
1033 }
1034
1035 // We may have been carrying spurious live-ins, so make sure only the
1036 // returned registers are left live.
1037 adjustLiveRegs(LiveMask, MI);
1038 if (!LiveMask) return; // Quick check to see if any are possible.
1039
1040 // There are only four possibilities here:
1041 // 1) we are returning a single FP value. In this case, it has to be in
1042 // ST(0) already, so just declare success by removing the value from the
1043 // FP Stack.
1044 if (SecondFPRegOp == ~0U) {
1045 // Assert that the top of stack contains the right FP register.
1046 assert(StackTop == 1 && FirstFPRegOp == getStackEntry(0) &&
1047 "Top of stack not the right register for RET!");
1048
1049 // Ok, everything is good, mark the value as not being on the stack
1050 // anymore so that our assertion about the stack being empty at end of
1051 // block doesn't fire.
1052 StackTop = 0;
1053 return;
1054 }
1055
1056 // Otherwise, we are returning two values:
1057 // 2) If returning the same value for both, we only have one thing in the FP
1058 // stack. Consider: RET FP1, FP1
1059 if (StackTop == 1) {
1060 assert(FirstFPRegOp == SecondFPRegOp && FirstFPRegOp == getStackEntry(0)&&
1061 "Stack misconfiguration for RET!");
1062
1063 // Duplicate the TOS so that we return it twice. Just pick some other FPx
1064 // register to hold it.
1065 unsigned NewReg = ScratchFPReg;
1066 duplicateToTop(FirstFPRegOp, NewReg, MI);
1067 FirstFPRegOp = NewReg;
1068 }
1069
1070 /// Okay we know we have two different FPx operands now:
1071 assert(StackTop == 2 && "Must have two values live!");
1072
1073 /// 3) If SecondFPRegOp is currently in ST(0) and FirstFPRegOp is currently
1074 /// in ST(1). In this case, emit an fxch.
1075 if (getStackEntry(0) == SecondFPRegOp) {
1076 assert(getStackEntry(1) == FirstFPRegOp && "Unknown regs live");
1077 moveToTop(FirstFPRegOp, MI);
1078 }
1079
1080 /// 4) Finally, FirstFPRegOp must be in ST(0) and SecondFPRegOp must be in
1081 /// ST(1). Just remove both from our understanding of the stack and return.
1082 assert(getStackEntry(0) == FirstFPRegOp && "Unknown regs live");
1083 assert(getStackEntry(1) == SecondFPRegOp && "Unknown regs live");
1084 StackTop = 0;
1085}
1086
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001087/// handleZeroArgFP - ST(0) = fld0 ST(0) = flds <mem>
Chris Lattner7af8ad62004-02-02 19:23:15 +00001088///
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001089void FPS::handleZeroArgFP(MachineBasicBlock::iterator &I) {
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001090 MachineInstr &MI = *I;
1091 unsigned DestReg = getFPReg(MI.getOperand(0));
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001092
Chris Lattnerf431ad42005-12-21 07:47:04 +00001093 // Change from the pseudo instruction to the concrete instruction.
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001094 MI.RemoveOperand(0); // Remove the explicit ST(0) operand
1095 MI.setDesc(TII->get(getConcreteOpcode(MI.getOpcode())));
Chad Rosier24c19d22012-08-01 18:39:17 +00001096
Chris Lattnerf431ad42005-12-21 07:47:04 +00001097 // Result gets pushed on the stack.
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001098 pushReg(DestReg);
1099}
1100
Chris Lattner7af8ad62004-02-02 19:23:15 +00001101/// handleOneArgFP - fst <mem>, ST(0)
1102///
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001103void FPS::handleOneArgFP(MachineBasicBlock::iterator &I) {
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001104 MachineInstr &MI = *I;
1105 unsigned NumOps = MI.getDesc().getNumOperands();
Chris Lattnerec536272010-07-08 22:41:28 +00001106 assert((NumOps == X86::AddrNumOperands + 1 || NumOps == 1) &&
Chris Lattner81613062004-02-03 07:27:34 +00001107 "Can only handle fst* & ftst instructions!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001108
Chris Lattner7af8ad62004-02-02 19:23:15 +00001109 // Is this the last use of the source register?
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001110 unsigned Reg = getFPReg(MI.getOperand(NumOps - 1));
1111 bool KillsSrc = MI.killsRegister(X86::FP0 + Reg);
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001112
Evan Cheng70af6202006-02-18 02:36:28 +00001113 // FISTP64m is strange because there isn't a non-popping versions.
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001114 // If we have one _and_ we don't want to pop the operand, duplicate the value
1115 // on the stack instead of moving it. This ensure that popping the value is
1116 // always ok.
Dale Johannesenff7e4432007-09-17 20:15:38 +00001117 // Ditto FISTTP16m, FISTTP32m, FISTTP64m, ST_FpP80m.
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001118 //
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001119 if (!KillsSrc && (MI.getOpcode() == X86::IST_Fp64m32 ||
1120 MI.getOpcode() == X86::ISTT_Fp16m32 ||
1121 MI.getOpcode() == X86::ISTT_Fp32m32 ||
1122 MI.getOpcode() == X86::ISTT_Fp64m32 ||
1123 MI.getOpcode() == X86::IST_Fp64m64 ||
1124 MI.getOpcode() == X86::ISTT_Fp16m64 ||
1125 MI.getOpcode() == X86::ISTT_Fp32m64 ||
1126 MI.getOpcode() == X86::ISTT_Fp64m64 ||
1127 MI.getOpcode() == X86::IST_Fp64m80 ||
1128 MI.getOpcode() == X86::ISTT_Fp16m80 ||
1129 MI.getOpcode() == X86::ISTT_Fp32m80 ||
1130 MI.getOpcode() == X86::ISTT_Fp64m80 ||
1131 MI.getOpcode() == X86::ST_FpP80m)) {
Akira Hatanaka35166692014-08-01 22:19:41 +00001132 duplicateToTop(Reg, ScratchFPReg, I);
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001133 } else {
1134 moveToTop(Reg, I); // Move to the top of the stack...
1135 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001136
Chris Lattnerf431ad42005-12-21 07:47:04 +00001137 // Convert from the pseudo instruction to the concrete instruction.
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001138 MI.RemoveOperand(NumOps - 1); // Remove explicit ST(0) operand
1139 MI.setDesc(TII->get(getConcreteOpcode(MI.getOpcode())));
Misha Brukmanc88330a2005-04-21 23:38:14 +00001140
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001141 if (MI.getOpcode() == X86::IST_FP64m || MI.getOpcode() == X86::ISTT_FP16m ||
1142 MI.getOpcode() == X86::ISTT_FP32m || MI.getOpcode() == X86::ISTT_FP64m ||
1143 MI.getOpcode() == X86::ST_FP80m) {
Evan Chengd565b442010-10-12 23:19:28 +00001144 if (StackTop == 0)
1145 report_fatal_error("Stack empty??");
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001146 --StackTop;
1147 } else if (KillsSrc) { // Last use of operand?
1148 popStackAfter(I);
1149 }
1150}
1151
Chris Lattner7af8ad62004-02-02 19:23:15 +00001152
Chris Lattner5b444722004-04-11 20:21:06 +00001153/// handleOneArgFPRW: Handle instructions that read from the top of stack and
1154/// replace the value with a newly computed value. These instructions may have
1155/// non-fp operands after their FP operands.
1156///
1157/// Examples:
1158/// R1 = fchs R2
1159/// R1 = fadd R2, [mem]
Chris Lattner7af8ad62004-02-02 19:23:15 +00001160///
1161void FPS::handleOneArgFPRW(MachineBasicBlock::iterator &I) {
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001162 MachineInstr &MI = *I;
Evan Chengfa374ca2008-07-21 20:02:45 +00001163#ifndef NDEBUG
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001164 unsigned NumOps = MI.getDesc().getNumOperands();
Evan Cheng14140052006-11-10 01:28:43 +00001165 assert(NumOps >= 2 && "FPRW instructions must have 2 ops!!");
Evan Chengfa374ca2008-07-21 20:02:45 +00001166#endif
Chris Lattner7af8ad62004-02-02 19:23:15 +00001167
1168 // Is this the last use of the source register?
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001169 unsigned Reg = getFPReg(MI.getOperand(1));
1170 bool KillsSrc = MI.killsRegister(X86::FP0 + Reg);
Chris Lattner7af8ad62004-02-02 19:23:15 +00001171
1172 if (KillsSrc) {
1173 // If this is the last use of the source register, just make sure it's on
1174 // the top of the stack.
1175 moveToTop(Reg, I);
Evan Chengd565b442010-10-12 23:19:28 +00001176 if (StackTop == 0)
1177 report_fatal_error("Stack cannot be empty!");
Chris Lattner7af8ad62004-02-02 19:23:15 +00001178 --StackTop;
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001179 pushReg(getFPReg(MI.getOperand(0)));
Chris Lattner7af8ad62004-02-02 19:23:15 +00001180 } else {
1181 // If this is not the last use of the source register, _copy_ it to the top
1182 // of the stack.
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001183 duplicateToTop(Reg, getFPReg(MI.getOperand(0)), I);
Chris Lattner7af8ad62004-02-02 19:23:15 +00001184 }
1185
Chris Lattnerf431ad42005-12-21 07:47:04 +00001186 // Change from the pseudo instruction to the concrete instruction.
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001187 MI.RemoveOperand(1); // Drop the source operand.
1188 MI.RemoveOperand(0); // Drop the destination operand.
1189 MI.setDesc(TII->get(getConcreteOpcode(MI.getOpcode())));
Chris Lattner7af8ad62004-02-02 19:23:15 +00001190}
1191
1192
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001193//===----------------------------------------------------------------------===//
1194// Define tables of various ways to map pseudo instructions
1195//
1196
1197// ForwardST0Table - Map: A = B op C into: ST(0) = ST(0) op ST(i)
1198static const TableEntry ForwardST0Table[] = {
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001199 { X86::ADD_Fp32 , X86::ADD_FST0r },
1200 { X86::ADD_Fp64 , X86::ADD_FST0r },
Dale Johannesen75169a82007-08-06 21:31:06 +00001201 { X86::ADD_Fp80 , X86::ADD_FST0r },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001202 { X86::DIV_Fp32 , X86::DIV_FST0r },
1203 { X86::DIV_Fp64 , X86::DIV_FST0r },
Dale Johannesen75169a82007-08-06 21:31:06 +00001204 { X86::DIV_Fp80 , X86::DIV_FST0r },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001205 { X86::MUL_Fp32 , X86::MUL_FST0r },
1206 { X86::MUL_Fp64 , X86::MUL_FST0r },
Dale Johannesen75169a82007-08-06 21:31:06 +00001207 { X86::MUL_Fp80 , X86::MUL_FST0r },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001208 { X86::SUB_Fp32 , X86::SUB_FST0r },
1209 { X86::SUB_Fp64 , X86::SUB_FST0r },
Dale Johannesen75169a82007-08-06 21:31:06 +00001210 { X86::SUB_Fp80 , X86::SUB_FST0r },
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001211};
1212
1213// ReverseST0Table - Map: A = B op C into: ST(0) = ST(i) op ST(0)
1214static const TableEntry ReverseST0Table[] = {
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001215 { X86::ADD_Fp32 , X86::ADD_FST0r }, // commutative
1216 { X86::ADD_Fp64 , X86::ADD_FST0r }, // commutative
Dale Johannesen75169a82007-08-06 21:31:06 +00001217 { X86::ADD_Fp80 , X86::ADD_FST0r }, // commutative
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001218 { X86::DIV_Fp32 , X86::DIVR_FST0r },
1219 { X86::DIV_Fp64 , X86::DIVR_FST0r },
Dale Johannesen75169a82007-08-06 21:31:06 +00001220 { X86::DIV_Fp80 , X86::DIVR_FST0r },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001221 { X86::MUL_Fp32 , X86::MUL_FST0r }, // commutative
1222 { X86::MUL_Fp64 , X86::MUL_FST0r }, // commutative
Dale Johannesen75169a82007-08-06 21:31:06 +00001223 { X86::MUL_Fp80 , X86::MUL_FST0r }, // commutative
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001224 { X86::SUB_Fp32 , X86::SUBR_FST0r },
1225 { X86::SUB_Fp64 , X86::SUBR_FST0r },
Dale Johannesen75169a82007-08-06 21:31:06 +00001226 { X86::SUB_Fp80 , X86::SUBR_FST0r },
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001227};
1228
1229// ForwardSTiTable - Map: A = B op C into: ST(i) = ST(0) op ST(i)
1230static const TableEntry ForwardSTiTable[] = {
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001231 { X86::ADD_Fp32 , X86::ADD_FrST0 }, // commutative
1232 { X86::ADD_Fp64 , X86::ADD_FrST0 }, // commutative
Dale Johannesen75169a82007-08-06 21:31:06 +00001233 { X86::ADD_Fp80 , X86::ADD_FrST0 }, // commutative
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001234 { X86::DIV_Fp32 , X86::DIVR_FrST0 },
1235 { X86::DIV_Fp64 , X86::DIVR_FrST0 },
Dale Johannesen75169a82007-08-06 21:31:06 +00001236 { X86::DIV_Fp80 , X86::DIVR_FrST0 },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001237 { X86::MUL_Fp32 , X86::MUL_FrST0 }, // commutative
1238 { X86::MUL_Fp64 , X86::MUL_FrST0 }, // commutative
Dale Johannesen75169a82007-08-06 21:31:06 +00001239 { X86::MUL_Fp80 , X86::MUL_FrST0 }, // commutative
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001240 { X86::SUB_Fp32 , X86::SUBR_FrST0 },
1241 { X86::SUB_Fp64 , X86::SUBR_FrST0 },
Dale Johannesen75169a82007-08-06 21:31:06 +00001242 { X86::SUB_Fp80 , X86::SUBR_FrST0 },
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001243};
1244
1245// ReverseSTiTable - Map: A = B op C into: ST(i) = ST(i) op ST(0)
1246static const TableEntry ReverseSTiTable[] = {
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001247 { X86::ADD_Fp32 , X86::ADD_FrST0 },
1248 { X86::ADD_Fp64 , X86::ADD_FrST0 },
Dale Johannesen75169a82007-08-06 21:31:06 +00001249 { X86::ADD_Fp80 , X86::ADD_FrST0 },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001250 { X86::DIV_Fp32 , X86::DIV_FrST0 },
1251 { X86::DIV_Fp64 , X86::DIV_FrST0 },
Dale Johannesen75169a82007-08-06 21:31:06 +00001252 { X86::DIV_Fp80 , X86::DIV_FrST0 },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001253 { X86::MUL_Fp32 , X86::MUL_FrST0 },
1254 { X86::MUL_Fp64 , X86::MUL_FrST0 },
Dale Johannesen75169a82007-08-06 21:31:06 +00001255 { X86::MUL_Fp80 , X86::MUL_FrST0 },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001256 { X86::SUB_Fp32 , X86::SUB_FrST0 },
1257 { X86::SUB_Fp64 , X86::SUB_FrST0 },
Dale Johannesen75169a82007-08-06 21:31:06 +00001258 { X86::SUB_Fp80 , X86::SUB_FrST0 },
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001259};
1260
1261
1262/// handleTwoArgFP - Handle instructions like FADD and friends which are virtual
1263/// instructions which need to be simplified and possibly transformed.
1264///
1265/// Result: ST(0) = fsub ST(0), ST(i)
1266/// ST(i) = fsub ST(0), ST(i)
1267/// ST(0) = fsubr ST(0), ST(i)
1268/// ST(i) = fsubr ST(0), ST(i)
Misha Brukmanc88330a2005-04-21 23:38:14 +00001269///
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001270void FPS::handleTwoArgFP(MachineBasicBlock::iterator &I) {
1271 ASSERT_SORTED(ForwardST0Table); ASSERT_SORTED(ReverseST0Table);
1272 ASSERT_SORTED(ForwardSTiTable); ASSERT_SORTED(ReverseSTiTable);
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001273 MachineInstr &MI = *I;
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001274
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001275 unsigned NumOperands = MI.getDesc().getNumOperands();
Chris Lattner94ff2c32004-06-11 04:25:06 +00001276 assert(NumOperands == 3 && "Illegal TwoArgFP instruction!");
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001277 unsigned Dest = getFPReg(MI.getOperand(0));
1278 unsigned Op0 = getFPReg(MI.getOperand(NumOperands - 2));
1279 unsigned Op1 = getFPReg(MI.getOperand(NumOperands - 1));
1280 bool KillsOp0 = MI.killsRegister(X86::FP0 + Op0);
1281 bool KillsOp1 = MI.killsRegister(X86::FP0 + Op1);
1282 DebugLoc dl = MI.getDebugLoc();
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001283
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001284 unsigned TOS = getStackEntry(0);
1285
1286 // One of our operands must be on the top of the stack. If neither is yet, we
1287 // need to move one.
1288 if (Op0 != TOS && Op1 != TOS) { // No operand at TOS?
1289 // We can choose to move either operand to the top of the stack. If one of
1290 // the operands is killed by this instruction, we want that one so that we
1291 // can update right on top of the old version.
1292 if (KillsOp0) {
1293 moveToTop(Op0, I); // Move dead operand to TOS.
1294 TOS = Op0;
1295 } else if (KillsOp1) {
1296 moveToTop(Op1, I);
1297 TOS = Op1;
1298 } else {
1299 // All of the operands are live after this instruction executes, so we
1300 // cannot update on top of any operand. Because of this, we must
1301 // duplicate one of the stack elements to the top. It doesn't matter
1302 // which one we pick.
1303 //
1304 duplicateToTop(Op0, Dest, I);
1305 Op0 = TOS = Dest;
1306 KillsOp0 = true;
1307 }
Chris Lattner94ff2c32004-06-11 04:25:06 +00001308 } else if (!KillsOp0 && !KillsOp1) {
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001309 // If we DO have one of our operands at the top of the stack, but we don't
1310 // have a dead operand, we must duplicate one of the operands to a new slot
1311 // on the stack.
1312 duplicateToTop(Op0, Dest, I);
1313 Op0 = TOS = Dest;
1314 KillsOp0 = true;
1315 }
1316
1317 // Now we know that one of our operands is on the top of the stack, and at
1318 // least one of our operands is killed by this instruction.
Misha Brukmanc88330a2005-04-21 23:38:14 +00001319 assert((TOS == Op0 || TOS == Op1) && (KillsOp0 || KillsOp1) &&
1320 "Stack conditions not set up right!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001321
1322 // We decide which form to use based on what is on the top of the stack, and
1323 // which operand is killed by this instruction.
Craig Topper9ff9bf42015-10-17 16:37:13 +00001324 ArrayRef<TableEntry> InstTable;
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001325 bool isForward = TOS == Op0;
1326 bool updateST0 = (TOS == Op0 && !KillsOp1) || (TOS == Op1 && !KillsOp0);
1327 if (updateST0) {
1328 if (isForward)
1329 InstTable = ForwardST0Table;
1330 else
1331 InstTable = ReverseST0Table;
1332 } else {
1333 if (isForward)
1334 InstTable = ForwardSTiTable;
1335 else
1336 InstTable = ReverseSTiTable;
1337 }
Misha Brukmanc88330a2005-04-21 23:38:14 +00001338
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001339 int Opcode = Lookup(InstTable, MI.getOpcode());
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001340 assert(Opcode != -1 && "Unknown TwoArgFP pseudo instruction!");
1341
1342 // NotTOS - The register which is not on the top of stack...
1343 unsigned NotTOS = (TOS == Op0) ? Op1 : Op0;
1344
1345 // Replace the old instruction with a new instruction
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001346 MBB->remove(&*I++);
Dale Johannesen9bba9022009-02-13 02:33:27 +00001347 I = BuildMI(*MBB, I, dl, TII->get(Opcode)).addReg(getSTReg(NotTOS));
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001348
1349 // If both operands are killed, pop one off of the stack in addition to
1350 // overwriting the other one.
1351 if (KillsOp0 && KillsOp1 && Op0 != Op1) {
1352 assert(!updateST0 && "Should have updated other operand!");
1353 popStackAfter(I); // Pop the top of stack
1354 }
1355
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001356 // Update stack information so that we know the destination register is now on
1357 // the stack.
Chris Lattner94ff2c32004-06-11 04:25:06 +00001358 unsigned UpdatedSlot = getSlot(updateST0 ? TOS : NotTOS);
1359 assert(UpdatedSlot < StackTop && Dest < 7);
1360 Stack[UpdatedSlot] = Dest;
1361 RegMap[Dest] = UpdatedSlot;
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001362 MBB->getParent()->DeleteMachineInstr(&MI); // Remove the old instruction
Chris Lattner94ff2c32004-06-11 04:25:06 +00001363}
1364
Chris Lattnerb35f4762004-06-11 04:49:02 +00001365/// handleCompareFP - Handle FUCOM and FUCOMI instructions, which have two FP
Chris Lattner94ff2c32004-06-11 04:25:06 +00001366/// register arguments and no explicit destinations.
Misha Brukmanc88330a2005-04-21 23:38:14 +00001367///
Chris Lattner94ff2c32004-06-11 04:25:06 +00001368void FPS::handleCompareFP(MachineBasicBlock::iterator &I) {
1369 ASSERT_SORTED(ForwardST0Table); ASSERT_SORTED(ReverseST0Table);
1370 ASSERT_SORTED(ForwardSTiTable); ASSERT_SORTED(ReverseSTiTable);
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001371 MachineInstr &MI = *I;
Chris Lattner94ff2c32004-06-11 04:25:06 +00001372
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001373 unsigned NumOperands = MI.getDesc().getNumOperands();
Chris Lattnerb35f4762004-06-11 04:49:02 +00001374 assert(NumOperands == 2 && "Illegal FUCOM* instruction!");
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001375 unsigned Op0 = getFPReg(MI.getOperand(NumOperands - 2));
1376 unsigned Op1 = getFPReg(MI.getOperand(NumOperands - 1));
1377 bool KillsOp0 = MI.killsRegister(X86::FP0 + Op0);
1378 bool KillsOp1 = MI.killsRegister(X86::FP0 + Op1);
Chris Lattner94ff2c32004-06-11 04:25:06 +00001379
1380 // Make sure the first operand is on the top of stack, the other one can be
1381 // anywhere.
1382 moveToTop(Op0, I);
1383
Chris Lattnerf431ad42005-12-21 07:47:04 +00001384 // Change from the pseudo instruction to the concrete instruction.
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001385 MI.getOperand(0).setReg(getSTReg(Op1));
1386 MI.RemoveOperand(1);
1387 MI.setDesc(TII->get(getConcreteOpcode(MI.getOpcode())));
Chris Lattner71186e22004-06-11 05:22:44 +00001388
Chris Lattner94ff2c32004-06-11 04:25:06 +00001389 // If any of the operands are killed by this instruction, free them.
1390 if (KillsOp0) freeStackSlotAfter(I, Op0);
1391 if (KillsOp1 && Op0 != Op1) freeStackSlotAfter(I, Op1);
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001392}
1393
Chris Lattnerc07c9582004-03-31 22:02:36 +00001394/// handleCondMovFP - Handle two address conditional move instructions. These
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001395/// instructions move a st(i) register to st(0) iff a condition is true. These
Chris Lattnerc07c9582004-03-31 22:02:36 +00001396/// instructions require that the first operand is at the top of the stack, but
1397/// otherwise don't modify the stack at all.
1398void FPS::handleCondMovFP(MachineBasicBlock::iterator &I) {
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001399 MachineInstr &MI = *I;
Chris Lattnerc07c9582004-03-31 22:02:36 +00001400
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001401 unsigned Op0 = getFPReg(MI.getOperand(0));
1402 unsigned Op1 = getFPReg(MI.getOperand(2));
1403 bool KillsOp1 = MI.killsRegister(X86::FP0 + Op1);
Chris Lattnerc07c9582004-03-31 22:02:36 +00001404
1405 // The first operand *must* be on the top of the stack.
1406 moveToTop(Op0, I);
1407
1408 // Change the second operand to the stack register that the operand is in.
Chris Lattnerf431ad42005-12-21 07:47:04 +00001409 // Change from the pseudo instruction to the concrete instruction.
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001410 MI.RemoveOperand(0);
1411 MI.RemoveOperand(1);
1412 MI.getOperand(0).setReg(getSTReg(Op1));
1413 MI.setDesc(TII->get(getConcreteOpcode(MI.getOpcode())));
Chad Rosier24c19d22012-08-01 18:39:17 +00001414
Chris Lattnerc07c9582004-03-31 22:02:36 +00001415 // If we kill the second operand, make sure to pop it from the stack.
Evan Chengbbbcac32006-11-15 20:56:39 +00001416 if (Op0 != Op1 && KillsOp1) {
Chris Lattner7c1c6e02005-08-23 22:49:55 +00001417 // Get this value off of the register stack.
1418 freeStackSlotAfter(I, Op1);
1419 }
Chris Lattnerc07c9582004-03-31 22:02:36 +00001420}
1421
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001422
1423/// handleSpecialFP - Handle special instructions which behave unlike other
Misha Brukman8b2bd4e2003-10-10 17:57:28 +00001424/// floating point instructions. This is primarily intended for use by pseudo
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001425/// instructions.
1426///
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001427void FPS::handleSpecialFP(MachineBasicBlock::iterator &Inst) {
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001428 MachineInstr &MI = *Inst;
Akira Hatanaka35166692014-08-01 22:19:41 +00001429
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001430 if (MI.isCall()) {
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001431 handleCall(Inst);
Akira Hatanaka35166692014-08-01 22:19:41 +00001432 return;
1433 }
1434
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001435 if (MI.isReturn()) {
David L Kreitzer14f00772016-03-10 15:14:02 +00001436 handleReturn(Inst);
1437 return;
1438 }
1439
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001440 switch (MI.getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001441 default: llvm_unreachable("Unknown SpecialFP instruction!");
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001442 case TargetOpcode::COPY: {
1443 // We handle three kinds of copies: FP <- FP, FP <- ST, and ST <- FP.
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001444 const MachineOperand &MO1 = MI.getOperand(1);
1445 const MachineOperand &MO0 = MI.getOperand(0);
1446 bool KillsSrc = MI.killsRegister(MO1.getReg());
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001447
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001448 // FP <- FP copy.
1449 unsigned DstFP = getFPReg(MO0);
1450 unsigned SrcFP = getFPReg(MO1);
1451 assert(isLive(SrcFP) && "Cannot copy dead register");
1452 if (KillsSrc) {
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001453 // If the input operand is killed, we can just change the owner of the
1454 // incoming stack slot into the result.
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001455 unsigned Slot = getSlot(SrcFP);
1456 Stack[Slot] = DstFP;
1457 RegMap[DstFP] = Slot;
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001458 } else {
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001459 // For COPY we just duplicate the specified value to a new stack slot.
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001460 // This could be made better, but would require substantial changes.
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001461 duplicateToTop(SrcFP, DstFP, Inst);
Nick Lewyckya3860a22008-03-11 05:56:09 +00001462 }
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001463 break;
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001464 }
1465
Jakob Stoklund Olesenda618422011-08-03 16:33:19 +00001466 case TargetOpcode::IMPLICIT_DEF: {
1467 // All FP registers must be explicitly defined, so load a 0 instead.
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001468 unsigned Reg = MI.getOperand(0).getReg() - X86::FP0;
Jakob Stoklund Olesenda618422011-08-03 16:33:19 +00001469 DEBUG(dbgs() << "Emitting LD_F0 for implicit FP" << Reg << '\n');
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001470 BuildMI(*MBB, Inst, MI.getDebugLoc(), TII->get(X86::LD_F0));
Jakob Stoklund Olesenda618422011-08-03 16:33:19 +00001471 pushReg(Reg);
1472 break;
1473 }
1474
Chris Lattnerb06015a2010-02-09 19:54:29 +00001475 case TargetOpcode::INLINEASM: {
Chris Lattner8abed802008-03-11 19:50:13 +00001476 // The inline asm MachineInstr currently only *uses* FP registers for the
1477 // 'f' constraint. These should be turned into the current ST(x) register
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001478 // in the machine instr.
1479 //
1480 // There are special rules for x87 inline assembly. The compiler must know
1481 // exactly how many registers are popped and pushed implicitly by the asm.
1482 // Otherwise it is not possible to restore the stack state after the inline
1483 // asm.
1484 //
1485 // There are 3 kinds of input operands:
1486 //
1487 // 1. Popped inputs. These must appear at the stack top in ST0-STn. A
1488 // popped input operand must be in a fixed stack slot, and it is either
1489 // tied to an output operand, or in the clobber list. The MI has ST use
1490 // and def operands for these inputs.
1491 //
1492 // 2. Fixed inputs. These inputs appear in fixed stack slots, but are
1493 // preserved by the inline asm. The fixed stack slots must be STn-STm
1494 // following the popped inputs. A fixed input operand cannot be tied to
1495 // an output or appear in the clobber list. The MI has ST use operands
1496 // and no defs for these inputs.
1497 //
1498 // 3. Preserved inputs. These inputs use the "f" constraint which is
1499 // represented as an FP register. The inline asm won't change these
1500 // stack slots.
1501 //
1502 // Outputs must be in ST registers, FP outputs are not allowed. Clobbered
1503 // registers do not count as output operands. The inline asm changes the
1504 // stack as if it popped all the popped inputs and then pushed all the
1505 // output operands.
1506
1507 // Scan the assembly for ST registers used, defined and clobbered. We can
1508 // only tell clobbers from defs by looking at the asm descriptor.
1509 unsigned STUses = 0, STDefs = 0, STClobbers = 0, STDeadDefs = 0;
1510 unsigned NumOps = 0;
Akira Hatanaka35166692014-08-01 22:19:41 +00001511 SmallSet<unsigned, 1> FRegIdx;
1512 unsigned RCID;
1513
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001514 for (unsigned i = InlineAsm::MIOp_FirstOperand, e = MI.getNumOperands();
1515 i != e && MI.getOperand(i).isImm(); i += 1 + NumOps) {
1516 unsigned Flags = MI.getOperand(i).getImm();
Akira Hatanaka35166692014-08-01 22:19:41 +00001517
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001518 NumOps = InlineAsm::getNumOperandRegisters(Flags);
1519 if (NumOps != 1)
1520 continue;
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001521 const MachineOperand &MO = MI.getOperand(i + 1);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001522 if (!MO.isReg())
1523 continue;
Akira Hatanaka35166692014-08-01 22:19:41 +00001524 unsigned STReg = MO.getReg() - X86::FP0;
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001525 if (STReg >= 8)
1526 continue;
1527
Akira Hatanaka35166692014-08-01 22:19:41 +00001528 // If the flag has a register class constraint, this must be an operand
1529 // with constraint "f". Record its index and continue.
1530 if (InlineAsm::hasRegClassConstraint(Flags, RCID)) {
1531 FRegIdx.insert(i + 1);
1532 continue;
1533 }
1534
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001535 switch (InlineAsm::getKind(Flags)) {
1536 case InlineAsm::Kind_RegUse:
1537 STUses |= (1u << STReg);
1538 break;
1539 case InlineAsm::Kind_RegDef:
1540 case InlineAsm::Kind_RegDefEarlyClobber:
1541 STDefs |= (1u << STReg);
1542 if (MO.isDead())
1543 STDeadDefs |= (1u << STReg);
1544 break;
1545 case InlineAsm::Kind_Clobber:
1546 STClobbers |= (1u << STReg);
1547 break;
1548 default:
1549 break;
1550 }
1551 }
1552
1553 if (STUses && !isMask_32(STUses))
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001554 MI.emitError("fixed input regs must be last on the x87 stack");
Benjamin Kramer5f6a9072015-02-12 15:35:40 +00001555 unsigned NumSTUses = countTrailingOnes(STUses);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001556
1557 // Defs must be contiguous from the stack top. ST0-STn.
Jakob Stoklund Olesen25a404e2011-07-02 03:53:34 +00001558 if (STDefs && !isMask_32(STDefs)) {
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001559 MI.emitError("output regs must be last on the x87 stack");
Jakob Stoklund Olesen25a404e2011-07-02 03:53:34 +00001560 STDefs = NextPowerOf2(STDefs) - 1;
1561 }
Benjamin Kramer5f6a9072015-02-12 15:35:40 +00001562 unsigned NumSTDefs = countTrailingOnes(STDefs);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001563
1564 // So must the clobbered stack slots. ST0-STm, m >= n.
1565 if (STClobbers && !isMask_32(STDefs | STClobbers))
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001566 MI.emitError("clobbers must be last on the x87 stack");
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001567
1568 // Popped inputs are the ones that are also clobbered or defined.
1569 unsigned STPopped = STUses & (STDefs | STClobbers);
1570 if (STPopped && !isMask_32(STPopped))
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001571 MI.emitError("implicitly popped regs must be last on the x87 stack");
Benjamin Kramer5f6a9072015-02-12 15:35:40 +00001572 unsigned NumSTPopped = countTrailingOnes(STPopped);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001573
1574 DEBUG(dbgs() << "Asm uses " << NumSTUses << " fixed regs, pops "
1575 << NumSTPopped << ", and defines " << NumSTDefs << " regs.\n");
1576
Akira Hatanaka35166692014-08-01 22:19:41 +00001577#ifndef NDEBUG
1578 // If any input operand uses constraint "f", all output register
1579 // constraints must be early-clobber defs.
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001580 for (unsigned I = 0, E = MI.getNumOperands(); I < E; ++I)
Akira Hatanaka35166692014-08-01 22:19:41 +00001581 if (FRegIdx.count(I)) {
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001582 assert((1 << getFPReg(MI.getOperand(I)) & STDefs) == 0 &&
Akira Hatanaka35166692014-08-01 22:19:41 +00001583 "Operands with constraint \"f\" cannot overlap with defs");
1584 }
1585#endif
1586
1587 // Collect all FP registers (register operands with constraints "t", "u",
1588 // and "f") to kill afer the instruction.
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001589 unsigned FPKills = ((1u << NumFPRegs) - 1) & ~0xff;
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001590 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
1591 MachineOperand &Op = MI.getOperand(i);
Dan Gohman0d1e9a82008-10-03 15:45:36 +00001592 if (!Op.isReg() || Op.getReg() < X86::FP0 || Op.getReg() > X86::FP6)
Chris Lattner8abed802008-03-11 19:50:13 +00001593 continue;
Chris Lattner8abed802008-03-11 19:50:13 +00001594 unsigned FPReg = getFPReg(Op);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001595
Chris Lattner8abed802008-03-11 19:50:13 +00001596 // If we kill this operand, make sure to pop it from the stack after the
1597 // asm. We just remember it for now, and pop them all off at the end in
1598 // a batch.
Akira Hatanaka35166692014-08-01 22:19:41 +00001599 if (Op.isUse() && Op.isKill())
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001600 FPKills |= 1U << FPReg;
Chris Lattner8abed802008-03-11 19:50:13 +00001601 }
1602
Akira Hatanaka35166692014-08-01 22:19:41 +00001603 // Do not include registers that are implicitly popped by defs/clobbers.
1604 FPKills &= ~(STDefs | STClobbers);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001605
1606 // Now we can rearrange the live registers to match what was requested.
Akira Hatanaka35166692014-08-01 22:19:41 +00001607 unsigned char STUsesArray[8];
1608
1609 for (unsigned I = 0; I < NumSTUses; ++I)
1610 STUsesArray[I] = I;
1611
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001612 shuffleStackTop(STUsesArray, NumSTUses, Inst);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001613 DEBUG({dbgs() << "Before asm: "; dumpStack();});
1614
1615 // With the stack layout fixed, rewrite the FP registers.
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +00001616 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
1617 MachineOperand &Op = MI.getOperand(i);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001618 if (!Op.isReg() || Op.getReg() < X86::FP0 || Op.getReg() > X86::FP6)
1619 continue;
Akira Hatanaka35166692014-08-01 22:19:41 +00001620
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001621 unsigned FPReg = getFPReg(Op);
Akira Hatanaka35166692014-08-01 22:19:41 +00001622
1623 if (FRegIdx.count(i))
1624 // Operand with constraint "f".
1625 Op.setReg(getSTReg(FPReg));
1626 else
1627 // Operand with a single register class constraint ("t" or "u").
1628 Op.setReg(X86::ST0 + FPReg);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001629 }
1630
1631 // Simulate the inline asm popping its inputs and pushing its outputs.
1632 StackTop -= NumSTPopped;
1633
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001634 for (unsigned i = 0; i < NumSTDefs; ++i)
Akira Hatanaka35166692014-08-01 22:19:41 +00001635 pushReg(NumSTDefs - i - 1);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001636
Chris Lattner8abed802008-03-11 19:50:13 +00001637 // If this asm kills any FP registers (is the last use of them) we must
1638 // explicitly emit pop instructions for them. Do this now after the asm has
1639 // executed so that the ST(x) numbers are not off (which would happen if we
1640 // did this inline with operand rewriting).
1641 //
1642 // Note: this might be a non-optimal pop sequence. We might be able to do
1643 // better by trying to pop in stack order or something.
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001644 while (FPKills) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00001645 unsigned FPReg = countTrailingZeros(FPKills);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001646 if (isLive(FPReg))
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001647 freeStackSlotAfter(Inst, FPReg);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001648 FPKills &= ~(1U << FPReg);
Jakob Stoklund Olesen96fad312010-04-28 18:28:37 +00001649 }
Akira Hatanaka35166692014-08-01 22:19:41 +00001650
Chris Lattner8abed802008-03-11 19:50:13 +00001651 // Don't delete the inline asm!
1652 return;
1653 }
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001654 }
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001655
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001656 Inst = MBB->erase(Inst); // Remove the pseudo instruction
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +00001657
1658 // We want to leave I pointing to the previous instruction, but what if we
1659 // just erased the first instruction?
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001660 if (Inst == MBB->begin()) {
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +00001661 DEBUG(dbgs() << "Inserting dummy KILL\n");
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001662 Inst = BuildMI(*MBB, Inst, DebugLoc(), TII->get(TargetOpcode::KILL));
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +00001663 } else
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001664 --Inst;
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001665}
Akira Hatanaka35166692014-08-01 22:19:41 +00001666
1667void FPS::setKillFlags(MachineBasicBlock &MBB) const {
Matthias Braunac4307c2017-05-26 21:51:00 +00001668 const TargetRegisterInfo &TRI =
1669 *MBB.getParent()->getSubtarget().getRegisterInfo();
Akira Hatanaka35166692014-08-01 22:19:41 +00001670 LivePhysRegs LPR(TRI);
1671
Matthias Braund1aabb22016-05-03 00:24:32 +00001672 LPR.addLiveOuts(MBB);
Akira Hatanaka35166692014-08-01 22:19:41 +00001673
1674 for (MachineBasicBlock::reverse_iterator I = MBB.rbegin(), E = MBB.rend();
1675 I != E; ++I) {
Akira Hatanaka452ea662014-08-19 02:09:57 +00001676 if (I->isDebugValue())
1677 continue;
1678
Benjamin Kramer9e5b4a52014-09-11 15:58:39 +00001679 std::bitset<8> Defs;
Akira Hatanaka35166692014-08-01 22:19:41 +00001680 SmallVector<MachineOperand *, 2> Uses;
1681 MachineInstr &MI = *I;
1682
1683 for (auto &MO : I->operands()) {
1684 if (!MO.isReg())
1685 continue;
1686
1687 unsigned Reg = MO.getReg() - X86::FP0;
1688
1689 if (Reg >= 8)
1690 continue;
1691
1692 if (MO.isDef()) {
1693 Defs.set(Reg);
1694 if (!LPR.contains(MO.getReg()))
1695 MO.setIsDead();
1696 } else
1697 Uses.push_back(&MO);
1698 }
1699
1700 for (auto *MO : Uses)
1701 if (Defs.test(getFPReg(*MO)) || !LPR.contains(MO->getReg()))
1702 MO->setIsKill();
1703
1704 LPR.stepBackward(MI);
1705 }
1706}