blob: 9aafa896e873731c6614cca310a432261bb82542 [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"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000040#include "llvm/IR/InlineAsm.h"
Bill Wendling6eecd562009-08-03 00:11:34 +000041#include "llvm/Support/Debug.h"
42#include "llvm/Support/ErrorHandling.h"
43#include "llvm/Support/raw_ostream.h"
44#include "llvm/Target/TargetInstrInfo.h"
45#include "llvm/Target/TargetMachine.h"
Eric Christopherd9134482014-08-04 21:25:23 +000046#include "llvm/Target/TargetSubtargetInfo.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(
81 MachineFunctionProperties::Property::AllVRegsAllocated);
82 }
83
Craig Topper2d9361e2014-03-09 07:44:38 +000084 const char *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.
Jakub Staszak59deec02012-11-21 00:59:34 +0000126 static unsigned calcLiveInMask(MachineBasicBlock *MBB) {
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000127 unsigned Mask = 0;
Matthias Braund9da1622015-09-09 18:08:03 +0000128 for (const auto &LI : MBB->liveins()) {
129 if (LI.PhysReg < X86::FP0 || LI.PhysReg > X86::FP6)
Chad Rosieree740c42013-06-28 18:57:01 +0000130 continue;
Matthias Braund9da1622015-09-09 18:08:03 +0000131 Mask |= 1 << (LI.PhysReg - X86::FP0);
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000132 }
133 return Mask;
134 }
135
136 // Partition all the CFG edges into LiveBundles.
137 void bundleCFG(MachineFunction &MF);
138
Evan Cheng845bd6e2006-12-01 10:11:51 +0000139 MachineBasicBlock *MBB; // Current basic block
Jakob Stoklund Olesenff653a22011-06-27 04:08:36 +0000140
141 // The hardware keeps track of how many FP registers are live, so we have
142 // to model that exactly. Usually, each live register corresponds to an
143 // FP<n> register, but when dealing with calls, returns, and inline
Benjamin Kramerbde91762012-06-02 10:20:22 +0000144 // assembly, it is sometimes necessary to have live scratch registers.
Evan Cheng845bd6e2006-12-01 10:11:51 +0000145 unsigned Stack[8]; // FP<n> Registers in each stack slot...
Evan Cheng845bd6e2006-12-01 10:11:51 +0000146 unsigned StackTop; // The current top of the FP stack.
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000147
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000148 enum {
Akira Hatanaka35166692014-08-01 22:19:41 +0000149 NumFPRegs = 8 // Including scratch pseudo-registers.
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000150 };
151
Jakob Stoklund Olesenff653a22011-06-27 04:08:36 +0000152 // For each live FP<n> register, point to its Stack[] entry.
153 // The first entries correspond to FP0-FP6, the rest are scratch registers
154 // used when we need slightly different live registers than what the
155 // register allocator thinks.
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000156 unsigned RegMap[NumFPRegs];
157
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000158 // Set up our stack model to match the incoming registers to MBB.
159 void setupBlockStack();
160
161 // Shuffle live registers to match the expectations of successor blocks.
162 void finishBlockStack();
163
Manman Ren19f49ac2012-09-11 22:23:19 +0000164#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000165 void dumpStack() const {
David Greened85fd002010-01-05 01:29:34 +0000166 dbgs() << "Stack contents:";
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000167 for (unsigned i = 0; i != StackTop; ++i) {
David Greened85fd002010-01-05 01:29:34 +0000168 dbgs() << " FP" << Stack[i];
Misha Brukmanc88330a2005-04-21 23:38:14 +0000169 assert(RegMap[Stack[i]] == i && "Stack[] doesn't match RegMap[]!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000170 }
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000171 }
Manman Ren742534c2012-09-06 19:06:06 +0000172#endif
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000173
Chris Lattner8f440bb2010-07-17 17:40:51 +0000174 /// getSlot - Return the stack slot number a particular register number is
175 /// in.
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000176 unsigned getSlot(unsigned RegNo) const {
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000177 assert(RegNo < NumFPRegs && "Regno out of range!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000178 return RegMap[RegNo];
179 }
180
Chris Lattner8f440bb2010-07-17 17:40:51 +0000181 /// isLive - Is RegNo currently live in the stack?
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000182 bool isLive(unsigned RegNo) const {
183 unsigned Slot = getSlot(RegNo);
184 return Slot < StackTop && Stack[Slot] == RegNo;
185 }
186
Chris Lattner8f440bb2010-07-17 17:40:51 +0000187 /// getStackEntry - Return the X86::FP<n> register in register ST(i).
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000188 unsigned getStackEntry(unsigned STi) const {
Evan Chengd565b442010-10-12 23:19:28 +0000189 if (STi >= StackTop)
190 report_fatal_error("Access past stack top!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000191 return Stack[StackTop-1-STi];
192 }
193
Chris Lattner8f440bb2010-07-17 17:40:51 +0000194 /// getSTReg - Return the X86::ST(i) register which contains the specified
195 /// FP<RegNo> register.
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000196 unsigned getSTReg(unsigned RegNo) const {
Craig Topperf6e7e122012-03-27 07:21:54 +0000197 return StackTop - 1 - getSlot(RegNo) + X86::ST0;
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000198 }
199
Chris Lattner1bd44362008-03-11 03:23:40 +0000200 // pushReg - Push the specified FP<n> register onto the stack.
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000201 void pushReg(unsigned Reg) {
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000202 assert(Reg < NumFPRegs && "Register number out of range!");
Evan Chengd565b442010-10-12 23:19:28 +0000203 if (StackTop >= 8)
204 report_fatal_error("Stack overflow!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000205 Stack[StackTop] = Reg;
206 RegMap[Reg] = StackTop++;
207 }
208
209 bool isAtTop(unsigned RegNo) const { return getSlot(RegNo) == StackTop-1; }
Chris Lattner1bd44362008-03-11 03:23:40 +0000210 void moveToTop(unsigned RegNo, MachineBasicBlock::iterator I) {
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000211 DebugLoc dl = I == MBB->end() ? DebugLoc() : I->getDebugLoc();
Chris Lattner1bd44362008-03-11 03:23:40 +0000212 if (isAtTop(RegNo)) return;
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000213
Chris Lattner1bd44362008-03-11 03:23:40 +0000214 unsigned STReg = getSTReg(RegNo);
215 unsigned RegOnTop = getStackEntry(0);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000216
Chris Lattner1bd44362008-03-11 03:23:40 +0000217 // Swap the slots the regs are in.
218 std::swap(RegMap[RegNo], RegMap[RegOnTop]);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000219
Chris Lattner1bd44362008-03-11 03:23:40 +0000220 // Swap stack slot contents.
Evan Chengd565b442010-10-12 23:19:28 +0000221 if (RegMap[RegOnTop] >= StackTop)
222 report_fatal_error("Access past stack top!");
Chris Lattner1bd44362008-03-11 03:23:40 +0000223 std::swap(Stack[RegMap[RegOnTop]], Stack[StackTop-1]);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000224
Chris Lattner1bd44362008-03-11 03:23:40 +0000225 // Emit an fxch to update the runtime processors version of the state.
Dale Johannesen9bba9022009-02-13 02:33:27 +0000226 BuildMI(*MBB, I, dl, TII->get(X86::XCH_F)).addReg(STReg);
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000227 ++NumFXCH;
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000228 }
229
Chris Lattnerbc7e35b2004-04-01 04:06:09 +0000230 void duplicateToTop(unsigned RegNo, unsigned AsReg, MachineInstr *I) {
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000231 DebugLoc dl = I == MBB->end() ? DebugLoc() : I->getDebugLoc();
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000232 unsigned STReg = getSTReg(RegNo);
233 pushReg(AsReg); // New register on top of stack
234
Dale Johannesen9bba9022009-02-13 02:33:27 +0000235 BuildMI(*MBB, I, dl, TII->get(X86::LD_Frr)).addReg(STReg);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000236 }
237
Chris Lattner8f440bb2010-07-17 17:40:51 +0000238 /// popStackAfter - Pop the current value off of the top of the FP stack
239 /// after the specified instruction.
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000240 void popStackAfter(MachineBasicBlock::iterator &I);
241
Chris Lattner8f440bb2010-07-17 17:40:51 +0000242 /// freeStackSlotAfter - Free the specified register from the register
243 /// stack, so that it is no longer in a register. If the register is
244 /// currently at the top of the stack, we just pop the current instruction,
245 /// otherwise we store the current top-of-stack into the specified slot,
246 /// then pop the top of stack.
Chris Lattnerbc7e35b2004-04-01 04:06:09 +0000247 void freeStackSlotAfter(MachineBasicBlock::iterator &I, unsigned Reg);
248
Chris Lattner8f440bb2010-07-17 17:40:51 +0000249 /// freeStackSlotBefore - Just the pop, no folding. Return the inserted
250 /// instruction.
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000251 MachineBasicBlock::iterator
252 freeStackSlotBefore(MachineBasicBlock::iterator I, unsigned FPRegNo);
253
Chris Lattner8f440bb2010-07-17 17:40:51 +0000254 /// Adjust the live registers to be the set in Mask.
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000255 void adjustLiveRegs(unsigned Mask, MachineBasicBlock::iterator I);
256
Jakob Stoklund Olesenff653a22011-06-27 04:08:36 +0000257 /// Shuffle the top FixCount stack entries such that FP reg FixStack[0] is
Chris Lattner8f440bb2010-07-17 17:40:51 +0000258 /// st(0), FP reg FixStack[1] is st(1) etc.
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000259 void shuffleStackTop(const unsigned char *FixStack, unsigned FixCount,
260 MachineBasicBlock::iterator I);
261
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000262 bool processBasicBlock(MachineFunction &MF, MachineBasicBlock &MBB);
263
Akira Hatanaka35166692014-08-01 22:19:41 +0000264 void handleCall(MachineBasicBlock::iterator &I);
David L Kreitzer14f00772016-03-10 15:14:02 +0000265 void handleReturn(MachineBasicBlock::iterator &I);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000266 void handleZeroArgFP(MachineBasicBlock::iterator &I);
267 void handleOneArgFP(MachineBasicBlock::iterator &I);
Chris Lattner7af8ad62004-02-02 19:23:15 +0000268 void handleOneArgFPRW(MachineBasicBlock::iterator &I);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000269 void handleTwoArgFP(MachineBasicBlock::iterator &I);
Chris Lattner94ff2c32004-06-11 04:25:06 +0000270 void handleCompareFP(MachineBasicBlock::iterator &I);
Chris Lattnerc07c9582004-03-31 22:02:36 +0000271 void handleCondMovFP(MachineBasicBlock::iterator &I);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000272 void handleSpecialFP(MachineBasicBlock::iterator &I);
Jakob Stoklund Olesen63a622b2010-07-08 19:46:30 +0000273
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000274 // Check if a COPY instruction is using FP registers.
Jakub Staszak6f58ce12012-11-21 00:50:57 +0000275 static bool isFPCopy(MachineInstr *MI) {
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000276 unsigned DstReg = MI->getOperand(0).getReg();
277 unsigned SrcReg = MI->getOperand(1).getReg();
278
279 return X86::RFP80RegClass.contains(DstReg) ||
280 X86::RFP80RegClass.contains(SrcReg);
281 }
Akira Hatanaka35166692014-08-01 22:19:41 +0000282
283 void setKillFlags(MachineBasicBlock &MBB) const;
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000284 };
Devang Patel8c78a0b2007-05-03 01:11:54 +0000285 char FPS::ID = 0;
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000286}
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000287
Chris Lattnerd46cd682003-12-20 09:58:55 +0000288FunctionPass *llvm::createX86FloatingPointStackifierPass() { return new FPS(); }
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000289
Chris Lattner3c43efc2008-01-14 06:41:29 +0000290/// getFPReg - Return the X86::FPx register number for the specified operand.
291/// For example, this returns 3 for X86::FP3.
292static unsigned getFPReg(const MachineOperand &MO) {
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000293 assert(MO.isReg() && "Expected an FP register!");
Chris Lattner3c43efc2008-01-14 06:41:29 +0000294 unsigned Reg = MO.getReg();
295 assert(Reg >= X86::FP0 && Reg <= X86::FP6 && "Expected FP register!");
296 return Reg - X86::FP0;
297}
298
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000299/// runOnMachineFunction - Loop over all of the basic blocks, transforming FP
300/// register references into FP stack references.
301///
302bool FPS::runOnMachineFunction(MachineFunction &MF) {
Chris Lattnerdebae1e2005-01-23 23:13:59 +0000303 // We only need to run this pass if there are any FP registers used in this
304 // function. If it is all integer, there is nothing for us to do!
Chris Lattnerdebae1e2005-01-23 23:13:59 +0000305 bool FPIsUsed = false;
306
Gabor Horvathfee04342015-03-16 09:53:42 +0000307 static_assert(X86::FP6 == X86::FP0+6, "Register enums aren't sorted right!");
Matthias Braun9912bb82015-07-14 17:52:07 +0000308 const MachineRegisterInfo &MRI = MF.getRegInfo();
Chris Lattnerdebae1e2005-01-23 23:13:59 +0000309 for (unsigned i = 0; i <= 6; ++i)
Matthias Braun9912bb82015-07-14 17:52:07 +0000310 if (!MRI.reg_nodbg_empty(X86::FP0 + i)) {
Chris Lattnerdebae1e2005-01-23 23:13:59 +0000311 FPIsUsed = true;
312 break;
313 }
314
315 // Early exit.
316 if (!FPIsUsed) return false;
317
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000318 Bundles = &getAnalysis<EdgeBundles>();
Eric Christopherfc6de422014-08-05 02:39:49 +0000319 TII = MF.getSubtarget().getInstrInfo();
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000320
321 // Prepare cross-MBB liveness.
322 bundleCFG(MF);
323
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000324 StackTop = 0;
325
Chris Lattner11290272004-01-30 22:25:18 +0000326 // Process the function in depth first order so that we process at least one
327 // of the predecessors for every reachable block in the function.
Owen Anderson1b351d42008-08-14 21:01:00 +0000328 SmallPtrSet<MachineBasicBlock*, 8> Processed;
Duncan P. N. Exon Smithd77de642015-10-19 21:48:29 +0000329 MachineBasicBlock *Entry = &MF.front();
Chris Lattner11290272004-01-30 22:25:18 +0000330
331 bool Changed = false;
Craig Topper46276792014-08-24 23:23:06 +0000332 for (MachineBasicBlock *BB : depth_first_ext(Entry, Processed))
333 Changed |= processBasicBlock(MF, *BB);
Chris Lattner11290272004-01-30 22:25:18 +0000334
Chris Lattnerb2fcd072009-09-08 04:55:44 +0000335 // Process any unreachable blocks in arbitrary order now.
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000336 if (MF.size() != Processed.size())
Duncan P. N. Exon Smithd77de642015-10-19 21:48:29 +0000337 for (MachineBasicBlock &BB : MF)
338 if (Processed.insert(&BB).second)
339 Changed |= processBasicBlock(MF, BB);
Chris Lattnerb2fcd072009-09-08 04:55:44 +0000340
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000341 LiveBundles.clear();
342
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000343 return Changed;
344}
345
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000346/// bundleCFG - Scan all the basic blocks to determine consistent live-in and
347/// live-out sets for the FP registers. Consistent means that the set of
348/// registers live-out from a block is identical to the live-in set of all
349/// successors. This is not enforced by the normal live-in lists since
350/// registers may be implicitly defined, or not used by all successors.
351void FPS::bundleCFG(MachineFunction &MF) {
352 assert(LiveBundles.empty() && "Stale data in LiveBundles");
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000353 LiveBundles.resize(Bundles->getNumBundles());
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000354
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000355 // Gather the actual live-in masks for all MBBs.
Duncan P. N. Exon Smithd77de642015-10-19 21:48:29 +0000356 for (MachineBasicBlock &MBB : MF) {
357 const unsigned Mask = calcLiveInMask(&MBB);
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000358 if (!Mask)
359 continue;
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000360 // Update MBB ingoing bundle mask.
Duncan P. N. Exon Smithd77de642015-10-19 21:48:29 +0000361 LiveBundles[Bundles->getBundle(MBB.getNumber(), false)].Mask |= Mask;
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000362 }
363}
364
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000365/// processBasicBlock - Loop over all of the instructions in the basic block,
366/// transforming FP instructions into their stack form.
367///
368bool FPS::processBasicBlock(MachineFunction &MF, MachineBasicBlock &BB) {
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000369 bool Changed = false;
370 MBB = &BB;
Misha Brukmanc88330a2005-04-21 23:38:14 +0000371
Akira Hatanaka35166692014-08-01 22:19:41 +0000372 setKillFlags(BB);
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000373 setupBlockStack();
374
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000375 for (MachineBasicBlock::iterator I = BB.begin(); I != BB.end(); ++I) {
Alkis Evlogimenos80da8652004-02-12 02:27:10 +0000376 MachineInstr *MI = I;
Bruno Cardoso Lopesc2f87b72010-06-08 22:51:23 +0000377 uint64_t Flags = MI->getDesc().TSFlags;
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000378
Chris Lattner8abed802008-03-11 19:50:13 +0000379 unsigned FPInstClass = Flags & X86II::FPTypeMask;
Chris Lattnerb06015a2010-02-09 19:54:29 +0000380 if (MI->isInlineAsm())
Chris Lattner8abed802008-03-11 19:50:13 +0000381 FPInstClass = X86II::SpecialFP;
Jakob Stoklund Olesen63a622b2010-07-08 19:46:30 +0000382
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000383 if (MI->isCopy() && isFPCopy(MI))
Jakob Stoklund Olesen63a622b2010-07-08 19:46:30 +0000384 FPInstClass = X86II::SpecialFP;
385
Jakob Stoklund Olesenda618422011-08-03 16:33:19 +0000386 if (MI->isImplicitDef() &&
387 X86::RFP80RegClass.contains(MI->getOperand(0).getReg()))
388 FPInstClass = X86II::SpecialFP;
389
Akira Hatanaka35166692014-08-01 22:19:41 +0000390 if (MI->isCall())
391 FPInstClass = X86II::SpecialFP;
392
Chris Lattner8abed802008-03-11 19:50:13 +0000393 if (FPInstClass == X86II::NotFP)
Chris Lattner11290272004-01-30 22:25:18 +0000394 continue; // Efficiently ignore non-fp insts!
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000395
Craig Topper062a2ba2014-04-25 05:30:21 +0000396 MachineInstr *PrevMI = nullptr;
Alkis Evlogimenos5a922402004-02-14 01:18:34 +0000397 if (I != BB.begin())
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000398 PrevMI = std::prev(I);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000399
400 ++NumFP; // Keep track of # of pseudo instrs
David Greened85fd002010-01-05 01:29:34 +0000401 DEBUG(dbgs() << "\nFPInst:\t" << *MI);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000402
403 // Get dead variables list now because the MI pointer may be deleted as part
404 // of processing!
Evan Chengbbbcac32006-11-15 20:56:39 +0000405 SmallVector<unsigned, 8> DeadRegs;
406 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
407 const MachineOperand &MO = MI->getOperand(i);
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000408 if (MO.isReg() && MO.isDead())
Evan Chengbbbcac32006-11-15 20:56:39 +0000409 DeadRegs.push_back(MO.getReg());
410 }
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000411
Chris Lattner8abed802008-03-11 19:50:13 +0000412 switch (FPInstClass) {
Chris Lattner7af8ad62004-02-02 19:23:15 +0000413 case X86II::ZeroArgFP: handleZeroArgFP(I); break;
Chris Lattnerc07c9582004-03-31 22:02:36 +0000414 case X86II::OneArgFP: handleOneArgFP(I); break; // fstp ST(0)
Chris Lattner7af8ad62004-02-02 19:23:15 +0000415 case X86II::OneArgFPRW: handleOneArgFPRW(I); break; // ST(0) = fsqrt(ST(0))
Evan Chengdb04c952006-11-11 10:21:44 +0000416 case X86II::TwoArgFP: handleTwoArgFP(I); break;
Chris Lattner0876edf2004-06-11 04:41:24 +0000417 case X86II::CompareFP: handleCompareFP(I); break;
Chris Lattnerc07c9582004-03-31 22:02:36 +0000418 case X86II::CondMovFP: handleCondMovFP(I); break;
Chris Lattner7af8ad62004-02-02 19:23:15 +0000419 case X86II::SpecialFP: handleSpecialFP(I); break;
Torok Edwinfbcc6632009-07-14 16:55:14 +0000420 default: llvm_unreachable("Unknown FP Type!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000421 }
422
423 // Check to see if any of the values defined by this instruction are dead
424 // after definition. If so, pop them.
Evan Chengbbbcac32006-11-15 20:56:39 +0000425 for (unsigned i = 0, e = DeadRegs.size(); i != e; ++i) {
426 unsigned Reg = DeadRegs[i];
Akira Hatanaka35166692014-08-01 22:19:41 +0000427 // Check if Reg is live on the stack. An inline-asm register operand that
428 // is in the clobber list and marked dead might not be live on the stack.
429 if (Reg >= X86::FP0 && Reg <= X86::FP6 && isLive(Reg-X86::FP0)) {
David Greened85fd002010-01-05 01:29:34 +0000430 DEBUG(dbgs() << "Register FP#" << Reg-X86::FP0 << " is dead!\n");
Chris Lattner94ff2c32004-06-11 04:25:06 +0000431 freeStackSlotAfter(I, Reg-X86::FP0);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000432 }
433 }
Misha Brukmanc88330a2005-04-21 23:38:14 +0000434
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000435 // Print out all of the instructions expanded to if -debug
Alkis Evlogimenos636e19d2004-02-15 00:46:41 +0000436 DEBUG(
437 MachineBasicBlock::iterator PrevI(PrevMI);
438 if (I == PrevI) {
David Greened85fd002010-01-05 01:29:34 +0000439 dbgs() << "Just deleted pseudo instruction\n";
Alkis Evlogimenos636e19d2004-02-15 00:46:41 +0000440 } else {
441 MachineBasicBlock::iterator Start = I;
442 // Rewind to first instruction newly inserted.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000443 while (Start != BB.begin() && std::prev(Start) != PrevI) --Start;
David Greened85fd002010-01-05 01:29:34 +0000444 dbgs() << "Inserted instructions:\n\t";
Eric Christopher1cdefae2015-02-27 00:11:34 +0000445 Start->print(dbgs());
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000446 while (++Start != std::next(I)) {}
Alkis Evlogimenos636e19d2004-02-15 00:46:41 +0000447 }
448 dumpStack();
449 );
Duncan Sandsa41634e2011-08-12 14:54:45 +0000450 (void)PrevMI;
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000451
452 Changed = true;
453 }
454
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000455 finishBlockStack();
456
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000457 return Changed;
458}
459
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000460/// setupBlockStack - Use the live bundles to set up our model of the stack
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000461/// to match predecessors' live out stack.
462void FPS::setupBlockStack() {
463 DEBUG(dbgs() << "\nSetting up live-ins for BB#" << MBB->getNumber()
464 << " derived from " << MBB->getName() << ".\n");
465 StackTop = 0;
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000466 // Get the live-in bundle for MBB.
467 const LiveBundle &Bundle =
468 LiveBundles[Bundles->getBundle(MBB->getNumber(), false)];
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000469
470 if (!Bundle.Mask) {
471 DEBUG(dbgs() << "Block has no FP live-ins.\n");
472 return;
473 }
474
475 // Depth-first iteration should ensure that we always have an assigned stack.
476 assert(Bundle.isFixed() && "Reached block before any predecessors");
477
478 // Push the fixed live-in registers.
479 for (unsigned i = Bundle.FixCount; i > 0; --i) {
480 MBB->addLiveIn(X86::ST0+i-1);
481 DEBUG(dbgs() << "Live-in st(" << (i-1) << "): %FP"
482 << unsigned(Bundle.FixStack[i-1]) << '\n');
483 pushReg(Bundle.FixStack[i-1]);
484 }
485
486 // Kill off unwanted live-ins. This can happen with a critical edge.
487 // FIXME: We could keep these live registers around as zombies. They may need
488 // to be revived at the end of a short block. It might save a few instrs.
489 adjustLiveRegs(calcLiveInMask(MBB), MBB->begin());
490 DEBUG(MBB->dump());
491}
492
493/// finishBlockStack - Revive live-outs that are implicitly defined out of
494/// MBB. Shuffle live registers to match the expected fixed stack of any
495/// predecessors, and ensure that all predecessors are expecting the same
496/// stack.
497void FPS::finishBlockStack() {
498 // The RET handling below takes care of return blocks for us.
499 if (MBB->succ_empty())
500 return;
501
502 DEBUG(dbgs() << "Setting up live-outs for BB#" << MBB->getNumber()
503 << " derived from " << MBB->getName() << ".\n");
504
Jakob Stoklund Olesen01d4d862011-01-04 21:10:11 +0000505 // Get MBB's live-out bundle.
506 unsigned BundleIdx = Bundles->getBundle(MBB->getNumber(), true);
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000507 LiveBundle &Bundle = LiveBundles[BundleIdx];
508
509 // We may need to kill and define some registers to match successors.
510 // FIXME: This can probably be combined with the shuffle below.
511 MachineBasicBlock::iterator Term = MBB->getFirstTerminator();
512 adjustLiveRegs(Bundle.Mask, Term);
513
514 if (!Bundle.Mask) {
515 DEBUG(dbgs() << "No live-outs.\n");
516 return;
517 }
518
519 // Has the stack order been fixed yet?
520 DEBUG(dbgs() << "LB#" << BundleIdx << ": ");
521 if (Bundle.isFixed()) {
522 DEBUG(dbgs() << "Shuffling stack to match.\n");
523 shuffleStackTop(Bundle.FixStack, Bundle.FixCount, Term);
524 } else {
525 // Not fixed yet, we get to choose.
526 DEBUG(dbgs() << "Fixing stack order now.\n");
527 Bundle.FixCount = StackTop;
528 for (unsigned i = 0; i < StackTop; ++i)
529 Bundle.FixStack[i] = getStackEntry(i);
530 }
531}
532
533
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000534//===----------------------------------------------------------------------===//
535// Efficient Lookup Table Support
536//===----------------------------------------------------------------------===//
537
Chris Lattnerd46cd682003-12-20 09:58:55 +0000538namespace {
539 struct TableEntry {
Craig Topper2dac9622012-03-09 07:45:21 +0000540 uint16_t from;
541 uint16_t to;
Chris Lattnerd46cd682003-12-20 09:58:55 +0000542 bool operator<(const TableEntry &TE) const { return from < TE.from; }
Jeff Cohen15a8c152006-01-26 20:41:32 +0000543 friend bool operator<(const TableEntry &TE, unsigned V) {
544 return TE.from < V;
545 }
Benjamin Kramer0d874f72012-09-17 16:46:22 +0000546 friend bool LLVM_ATTRIBUTE_UNUSED operator<(unsigned V,
547 const TableEntry &TE) {
Jakob Stoklund Olesen2cd00732010-08-16 18:24:54 +0000548 return V < TE.from;
549 }
Chris Lattnerd46cd682003-12-20 09:58:55 +0000550 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000551}
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000552
Craig Topper9ff9bf42015-10-17 16:37:13 +0000553static int Lookup(ArrayRef<TableEntry> Table, unsigned Opcode) {
554 const TableEntry *I = std::lower_bound(Table.begin(), Table.end(), Opcode);
555 if (I != Table.end() && I->from == Opcode)
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000556 return I->to;
557 return -1;
558}
559
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000560#ifdef NDEBUG
561#define ASSERT_SORTED(TABLE)
562#else
563#define ASSERT_SORTED(TABLE) \
564 { static bool TABLE##Checked = false; \
Jim Laskey181fb1c2006-07-19 19:33:08 +0000565 if (!TABLE##Checked) { \
Craig Topper9ff9bf42015-10-17 16:37:13 +0000566 assert(std::is_sorted(std::begin(TABLE), std::end(TABLE)) && \
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000567 "All lookup tables must be sorted for efficient access!"); \
Jim Laskey181fb1c2006-07-19 19:33:08 +0000568 TABLE##Checked = true; \
569 } \
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000570 }
571#endif
572
Chris Lattnerf431ad42005-12-21 07:47:04 +0000573//===----------------------------------------------------------------------===//
574// Register File -> Register Stack Mapping Methods
575//===----------------------------------------------------------------------===//
576
577// OpcodeTable - Sorted map of register instructions to their stack version.
578// The first element is an register file pseudo instruction, the second is the
579// concrete X86 instruction which uses the register stack.
580//
581static const TableEntry OpcodeTable[] = {
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000582 { X86::ABS_Fp32 , X86::ABS_F },
583 { X86::ABS_Fp64 , X86::ABS_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000584 { X86::ABS_Fp80 , X86::ABS_F },
Dale Johannesen68471d22007-07-10 21:53:30 +0000585 { X86::ADD_Fp32m , X86::ADD_F32m },
586 { X86::ADD_Fp64m , X86::ADD_F64m },
587 { X86::ADD_Fp64m32 , X86::ADD_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000588 { X86::ADD_Fp80m32 , X86::ADD_F32m },
589 { X86::ADD_Fp80m64 , X86::ADD_F64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000590 { X86::ADD_FpI16m32 , X86::ADD_FI16m },
591 { X86::ADD_FpI16m64 , X86::ADD_FI16m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000592 { X86::ADD_FpI16m80 , X86::ADD_FI16m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000593 { X86::ADD_FpI32m32 , X86::ADD_FI32m },
594 { X86::ADD_FpI32m64 , X86::ADD_FI32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000595 { X86::ADD_FpI32m80 , X86::ADD_FI32m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000596 { X86::CHS_Fp32 , X86::CHS_F },
597 { X86::CHS_Fp64 , X86::CHS_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000598 { X86::CHS_Fp80 , X86::CHS_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000599 { X86::CMOVBE_Fp32 , X86::CMOVBE_F },
600 { X86::CMOVBE_Fp64 , X86::CMOVBE_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000601 { X86::CMOVBE_Fp80 , X86::CMOVBE_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000602 { X86::CMOVB_Fp32 , X86::CMOVB_F },
603 { X86::CMOVB_Fp64 , X86::CMOVB_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000604 { X86::CMOVB_Fp80 , X86::CMOVB_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000605 { X86::CMOVE_Fp32 , X86::CMOVE_F },
606 { X86::CMOVE_Fp64 , X86::CMOVE_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000607 { X86::CMOVE_Fp80 , X86::CMOVE_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000608 { X86::CMOVNBE_Fp32 , X86::CMOVNBE_F },
609 { X86::CMOVNBE_Fp64 , X86::CMOVNBE_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000610 { X86::CMOVNBE_Fp80 , X86::CMOVNBE_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000611 { X86::CMOVNB_Fp32 , X86::CMOVNB_F },
612 { X86::CMOVNB_Fp64 , X86::CMOVNB_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000613 { X86::CMOVNB_Fp80 , X86::CMOVNB_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000614 { X86::CMOVNE_Fp32 , X86::CMOVNE_F },
615 { X86::CMOVNE_Fp64 , X86::CMOVNE_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000616 { X86::CMOVNE_Fp80 , X86::CMOVNE_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000617 { X86::CMOVNP_Fp32 , X86::CMOVNP_F },
618 { X86::CMOVNP_Fp64 , X86::CMOVNP_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000619 { X86::CMOVNP_Fp80 , X86::CMOVNP_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000620 { X86::CMOVP_Fp32 , X86::CMOVP_F },
621 { X86::CMOVP_Fp64 , X86::CMOVP_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000622 { X86::CMOVP_Fp80 , X86::CMOVP_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000623 { X86::COS_Fp32 , X86::COS_F },
624 { X86::COS_Fp64 , X86::COS_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000625 { X86::COS_Fp80 , X86::COS_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000626 { X86::DIVR_Fp32m , X86::DIVR_F32m },
627 { X86::DIVR_Fp64m , X86::DIVR_F64m },
Dale Johannesen68471d22007-07-10 21:53:30 +0000628 { X86::DIVR_Fp64m32 , X86::DIVR_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000629 { X86::DIVR_Fp80m32 , X86::DIVR_F32m },
630 { X86::DIVR_Fp80m64 , X86::DIVR_F64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000631 { X86::DIVR_FpI16m32, X86::DIVR_FI16m},
632 { X86::DIVR_FpI16m64, X86::DIVR_FI16m},
Dale Johannesenb1888e72007-08-05 18:49:15 +0000633 { X86::DIVR_FpI16m80, X86::DIVR_FI16m},
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000634 { X86::DIVR_FpI32m32, X86::DIVR_FI32m},
635 { X86::DIVR_FpI32m64, X86::DIVR_FI32m},
Dale Johannesenb1888e72007-08-05 18:49:15 +0000636 { X86::DIVR_FpI32m80, X86::DIVR_FI32m},
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000637 { X86::DIV_Fp32m , X86::DIV_F32m },
638 { X86::DIV_Fp64m , X86::DIV_F64m },
Dale Johannesen68471d22007-07-10 21:53:30 +0000639 { X86::DIV_Fp64m32 , X86::DIV_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000640 { X86::DIV_Fp80m32 , X86::DIV_F32m },
641 { X86::DIV_Fp80m64 , X86::DIV_F64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000642 { X86::DIV_FpI16m32 , X86::DIV_FI16m },
643 { X86::DIV_FpI16m64 , X86::DIV_FI16m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000644 { X86::DIV_FpI16m80 , X86::DIV_FI16m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000645 { X86::DIV_FpI32m32 , X86::DIV_FI32m },
646 { X86::DIV_FpI32m64 , X86::DIV_FI32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000647 { X86::DIV_FpI32m80 , X86::DIV_FI32m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000648 { X86::ILD_Fp16m32 , X86::ILD_F16m },
649 { X86::ILD_Fp16m64 , X86::ILD_F16m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000650 { X86::ILD_Fp16m80 , X86::ILD_F16m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000651 { X86::ILD_Fp32m32 , X86::ILD_F32m },
652 { X86::ILD_Fp32m64 , X86::ILD_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000653 { X86::ILD_Fp32m80 , X86::ILD_F32m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000654 { X86::ILD_Fp64m32 , X86::ILD_F64m },
655 { X86::ILD_Fp64m64 , X86::ILD_F64m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000656 { X86::ILD_Fp64m80 , X86::ILD_F64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000657 { X86::ISTT_Fp16m32 , X86::ISTT_FP16m},
658 { X86::ISTT_Fp16m64 , X86::ISTT_FP16m},
Dale Johannesen57c6ac5f2007-08-07 01:17:37 +0000659 { X86::ISTT_Fp16m80 , X86::ISTT_FP16m},
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000660 { X86::ISTT_Fp32m32 , X86::ISTT_FP32m},
661 { X86::ISTT_Fp32m64 , X86::ISTT_FP32m},
Dale Johannesen57c6ac5f2007-08-07 01:17:37 +0000662 { X86::ISTT_Fp32m80 , X86::ISTT_FP32m},
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000663 { X86::ISTT_Fp64m32 , X86::ISTT_FP64m},
664 { X86::ISTT_Fp64m64 , X86::ISTT_FP64m},
Dale Johannesen57c6ac5f2007-08-07 01:17:37 +0000665 { X86::ISTT_Fp64m80 , X86::ISTT_FP64m},
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000666 { X86::IST_Fp16m32 , X86::IST_F16m },
667 { X86::IST_Fp16m64 , X86::IST_F16m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000668 { X86::IST_Fp16m80 , X86::IST_F16m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000669 { X86::IST_Fp32m32 , X86::IST_F32m },
670 { X86::IST_Fp32m64 , X86::IST_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000671 { X86::IST_Fp32m80 , X86::IST_F32m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000672 { X86::IST_Fp64m32 , X86::IST_FP64m },
673 { X86::IST_Fp64m64 , X86::IST_FP64m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000674 { X86::IST_Fp64m80 , X86::IST_FP64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000675 { X86::LD_Fp032 , X86::LD_F0 },
676 { X86::LD_Fp064 , X86::LD_F0 },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000677 { X86::LD_Fp080 , X86::LD_F0 },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000678 { X86::LD_Fp132 , X86::LD_F1 },
679 { X86::LD_Fp164 , X86::LD_F1 },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000680 { X86::LD_Fp180 , X86::LD_F1 },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000681 { X86::LD_Fp32m , X86::LD_F32m },
Dale Johannesena47f7d72007-08-07 20:29:26 +0000682 { X86::LD_Fp32m64 , X86::LD_F32m },
683 { X86::LD_Fp32m80 , X86::LD_F32m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000684 { X86::LD_Fp64m , X86::LD_F64m },
Dale Johannesena47f7d72007-08-07 20:29:26 +0000685 { X86::LD_Fp64m80 , X86::LD_F64m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000686 { X86::LD_Fp80m , X86::LD_F80m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000687 { X86::MUL_Fp32m , X86::MUL_F32m },
688 { X86::MUL_Fp64m , X86::MUL_F64m },
Dale Johannesen68471d22007-07-10 21:53:30 +0000689 { X86::MUL_Fp64m32 , X86::MUL_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000690 { X86::MUL_Fp80m32 , X86::MUL_F32m },
691 { X86::MUL_Fp80m64 , X86::MUL_F64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000692 { X86::MUL_FpI16m32 , X86::MUL_FI16m },
693 { X86::MUL_FpI16m64 , X86::MUL_FI16m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000694 { X86::MUL_FpI16m80 , X86::MUL_FI16m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000695 { X86::MUL_FpI32m32 , X86::MUL_FI32m },
696 { X86::MUL_FpI32m64 , X86::MUL_FI32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000697 { X86::MUL_FpI32m80 , X86::MUL_FI32m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000698 { X86::SIN_Fp32 , X86::SIN_F },
699 { X86::SIN_Fp64 , X86::SIN_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000700 { X86::SIN_Fp80 , X86::SIN_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000701 { X86::SQRT_Fp32 , X86::SQRT_F },
702 { X86::SQRT_Fp64 , X86::SQRT_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000703 { X86::SQRT_Fp80 , X86::SQRT_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000704 { X86::ST_Fp32m , X86::ST_F32m },
705 { X86::ST_Fp64m , X86::ST_F64m },
706 { X86::ST_Fp64m32 , X86::ST_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000707 { X86::ST_Fp80m32 , X86::ST_F32m },
708 { X86::ST_Fp80m64 , X86::ST_F64m },
709 { X86::ST_FpP80m , X86::ST_FP80m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000710 { X86::SUBR_Fp32m , X86::SUBR_F32m },
711 { X86::SUBR_Fp64m , X86::SUBR_F64m },
Dale Johannesen68471d22007-07-10 21:53:30 +0000712 { X86::SUBR_Fp64m32 , X86::SUBR_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000713 { X86::SUBR_Fp80m32 , X86::SUBR_F32m },
714 { X86::SUBR_Fp80m64 , X86::SUBR_F64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000715 { X86::SUBR_FpI16m32, X86::SUBR_FI16m},
716 { X86::SUBR_FpI16m64, X86::SUBR_FI16m},
Dale Johannesenb1888e72007-08-05 18:49:15 +0000717 { X86::SUBR_FpI16m80, X86::SUBR_FI16m},
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000718 { X86::SUBR_FpI32m32, X86::SUBR_FI32m},
719 { X86::SUBR_FpI32m64, X86::SUBR_FI32m},
Dale Johannesenb1888e72007-08-05 18:49:15 +0000720 { X86::SUBR_FpI32m80, X86::SUBR_FI32m},
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000721 { X86::SUB_Fp32m , X86::SUB_F32m },
722 { X86::SUB_Fp64m , X86::SUB_F64m },
Dale Johannesen68471d22007-07-10 21:53:30 +0000723 { X86::SUB_Fp64m32 , X86::SUB_F32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000724 { X86::SUB_Fp80m32 , X86::SUB_F32m },
725 { X86::SUB_Fp80m64 , X86::SUB_F64m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000726 { X86::SUB_FpI16m32 , X86::SUB_FI16m },
727 { X86::SUB_FpI16m64 , X86::SUB_FI16m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000728 { X86::SUB_FpI16m80 , X86::SUB_FI16m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000729 { X86::SUB_FpI32m32 , X86::SUB_FI32m },
730 { X86::SUB_FpI32m64 , X86::SUB_FI32m },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000731 { X86::SUB_FpI32m80 , X86::SUB_FI32m },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000732 { X86::TST_Fp32 , X86::TST_F },
733 { X86::TST_Fp64 , X86::TST_F },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000734 { X86::TST_Fp80 , X86::TST_F },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000735 { X86::UCOM_FpIr32 , X86::UCOM_FIr },
736 { X86::UCOM_FpIr64 , X86::UCOM_FIr },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000737 { X86::UCOM_FpIr80 , X86::UCOM_FIr },
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000738 { X86::UCOM_Fpr32 , X86::UCOM_Fr },
739 { X86::UCOM_Fpr64 , X86::UCOM_Fr },
Dale Johannesenb1888e72007-08-05 18:49:15 +0000740 { X86::UCOM_Fpr80 , X86::UCOM_Fr },
Chris Lattnerf431ad42005-12-21 07:47:04 +0000741};
742
743static unsigned getConcreteOpcode(unsigned Opcode) {
744 ASSERT_SORTED(OpcodeTable);
Craig Topper9ff9bf42015-10-17 16:37:13 +0000745 int Opc = Lookup(OpcodeTable, Opcode);
Chris Lattnerf431ad42005-12-21 07:47:04 +0000746 assert(Opc != -1 && "FP Stack instruction not in OpcodeTable!");
747 return Opc;
748}
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000749
750//===----------------------------------------------------------------------===//
751// Helper Methods
752//===----------------------------------------------------------------------===//
753
754// PopTable - Sorted map of instructions to their popping version. The first
755// element is an instruction, the second is the version which pops.
756//
757static const TableEntry PopTable[] = {
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000758 { X86::ADD_FrST0 , X86::ADD_FPrST0 },
Chris Lattner637eebb2003-08-03 21:56:36 +0000759
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000760 { X86::DIVR_FrST0, X86::DIVR_FPrST0 },
761 { X86::DIV_FrST0 , X86::DIV_FPrST0 },
Chris Lattner637eebb2003-08-03 21:56:36 +0000762
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000763 { X86::IST_F16m , X86::IST_FP16m },
764 { X86::IST_F32m , X86::IST_FP32m },
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000765
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000766 { X86::MUL_FrST0 , X86::MUL_FPrST0 },
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000767
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000768 { X86::ST_F32m , X86::ST_FP32m },
769 { X86::ST_F64m , X86::ST_FP64m },
770 { X86::ST_Frr , X86::ST_FPrr },
Chris Lattner637eebb2003-08-03 21:56:36 +0000771
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000772 { X86::SUBR_FrST0, X86::SUBR_FPrST0 },
773 { X86::SUB_FrST0 , X86::SUB_FPrST0 },
Chris Lattner637eebb2003-08-03 21:56:36 +0000774
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000775 { X86::UCOM_FIr , X86::UCOM_FIPr },
Chris Lattnerd1c75452004-04-12 01:39:15 +0000776
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000777 { X86::UCOM_FPr , X86::UCOM_FPPr },
778 { X86::UCOM_Fr , X86::UCOM_FPr },
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000779};
780
781/// popStackAfter - Pop the current value off of the top of the FP stack after
782/// the specified instruction. This attempts to be sneaky and combine the pop
783/// into the instruction itself if possible. The iterator is left pointing to
784/// the last instruction, be it a new pop instruction inserted, or the old
785/// instruction if it was modified in place.
786///
787void FPS::popStackAfter(MachineBasicBlock::iterator &I) {
Dale Johannesen9bba9022009-02-13 02:33:27 +0000788 MachineInstr* MI = I;
789 DebugLoc dl = MI->getDebugLoc();
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000790 ASSERT_SORTED(PopTable);
Evan Chengd565b442010-10-12 23:19:28 +0000791 if (StackTop == 0)
792 report_fatal_error("Cannot pop empty stack!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000793 RegMap[Stack[--StackTop]] = ~0; // Update state
794
795 // Check to see if there is a popping version of this instruction...
Craig Topper9ff9bf42015-10-17 16:37:13 +0000796 int Opcode = Lookup(PopTable, I->getOpcode());
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000797 if (Opcode != -1) {
Chris Lattner59687512008-01-11 18:10:50 +0000798 I->setDesc(TII->get(Opcode));
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000799 if (Opcode == X86::UCOM_FPPr)
Alkis Evlogimenos80da8652004-02-12 02:27:10 +0000800 I->RemoveOperand(0);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000801 } else { // Insert an explicit pop
Dale Johannesen9bba9022009-02-13 02:33:27 +0000802 I = BuildMI(*MBB, ++I, dl, TII->get(X86::ST_FPrr)).addReg(X86::ST0);
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000803 }
804}
805
Chris Lattnerbc7e35b2004-04-01 04:06:09 +0000806/// freeStackSlotAfter - Free the specified register from the register stack, so
807/// that it is no longer in a register. If the register is currently at the top
808/// of the stack, we just pop the current instruction, otherwise we store the
809/// current top-of-stack into the specified slot, then pop the top of stack.
810void FPS::freeStackSlotAfter(MachineBasicBlock::iterator &I, unsigned FPRegNo) {
811 if (getStackEntry(0) == FPRegNo) { // already at the top of stack? easy.
812 popStackAfter(I);
813 return;
814 }
815
816 // Otherwise, store the top of stack into the dead slot, killing the operand
817 // without having to add in an explicit xchg then pop.
818 //
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000819 I = freeStackSlotBefore(++I, FPRegNo);
820}
821
822/// freeStackSlotBefore - Free the specified register without trying any
823/// folding.
824MachineBasicBlock::iterator
825FPS::freeStackSlotBefore(MachineBasicBlock::iterator I, unsigned FPRegNo) {
Chris Lattnerbc7e35b2004-04-01 04:06:09 +0000826 unsigned STReg = getSTReg(FPRegNo);
827 unsigned OldSlot = getSlot(FPRegNo);
828 unsigned TopReg = Stack[StackTop-1];
829 Stack[OldSlot] = TopReg;
830 RegMap[TopReg] = OldSlot;
831 RegMap[FPRegNo] = ~0;
832 Stack[--StackTop] = ~0;
Reid Klecknerda00cf52014-10-31 23:19:46 +0000833 return BuildMI(*MBB, I, DebugLoc(), TII->get(X86::ST_FPrr))
834 .addReg(STReg)
835 .getInstr();
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000836}
837
838/// adjustLiveRegs - Kill and revive registers such that exactly the FP
839/// registers with a bit in Mask are live.
840void FPS::adjustLiveRegs(unsigned Mask, MachineBasicBlock::iterator I) {
841 unsigned Defs = Mask;
842 unsigned Kills = 0;
843 for (unsigned i = 0; i < StackTop; ++i) {
844 unsigned RegNo = Stack[i];
845 if (!(Defs & (1 << RegNo)))
846 // This register is live, but we don't want it.
847 Kills |= (1 << RegNo);
848 else
849 // We don't need to imp-def this live register.
850 Defs &= ~(1 << RegNo);
851 }
852 assert((Kills & Defs) == 0 && "Register needs killing and def'ing?");
853
854 // Produce implicit-defs for free by using killed registers.
855 while (Kills && Defs) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000856 unsigned KReg = countTrailingZeros(Kills);
857 unsigned DReg = countTrailingZeros(Defs);
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000858 DEBUG(dbgs() << "Renaming %FP" << KReg << " as imp %FP" << DReg << "\n");
859 std::swap(Stack[getSlot(KReg)], Stack[getSlot(DReg)]);
860 std::swap(RegMap[KReg], RegMap[DReg]);
861 Kills &= ~(1 << KReg);
862 Defs &= ~(1 << DReg);
863 }
864
865 // Kill registers by popping.
866 if (Kills && I != MBB->begin()) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000867 MachineBasicBlock::iterator I2 = std::prev(I);
Jakob Stoklund Olesen25a404e2011-07-02 03:53:34 +0000868 while (StackTop) {
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000869 unsigned KReg = getStackEntry(0);
870 if (!(Kills & (1 << KReg)))
871 break;
872 DEBUG(dbgs() << "Popping %FP" << KReg << "\n");
873 popStackAfter(I2);
874 Kills &= ~(1 << KReg);
875 }
876 }
877
878 // Manually kill the rest.
879 while (Kills) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000880 unsigned KReg = countTrailingZeros(Kills);
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000881 DEBUG(dbgs() << "Killing %FP" << KReg << "\n");
882 freeStackSlotBefore(I, KReg);
883 Kills &= ~(1 << KReg);
884 }
885
886 // Load zeros for all the imp-defs.
887 while(Defs) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000888 unsigned DReg = countTrailingZeros(Defs);
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000889 DEBUG(dbgs() << "Defining %FP" << DReg << " as 0\n");
890 BuildMI(*MBB, I, DebugLoc(), TII->get(X86::LD_F0));
891 pushReg(DReg);
892 Defs &= ~(1 << DReg);
893 }
894
895 // Now we should have the correct registers live.
896 DEBUG(dumpStack());
Benjamin Kramer5f6a9072015-02-12 15:35:40 +0000897 assert(StackTop == countPopulation(Mask) && "Live count mismatch");
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000898}
899
900/// shuffleStackTop - emit fxch instructions before I to shuffle the top
901/// FixCount entries into the order given by FixStack.
902/// FIXME: Is there a better algorithm than insertion sort?
903void FPS::shuffleStackTop(const unsigned char *FixStack,
904 unsigned FixCount,
905 MachineBasicBlock::iterator I) {
906 // Move items into place, starting from the desired stack bottom.
907 while (FixCount--) {
908 // Old register at position FixCount.
909 unsigned OldReg = getStackEntry(FixCount);
910 // Desired register at position FixCount.
911 unsigned Reg = FixStack[FixCount];
912 if (Reg == OldReg)
913 continue;
914 // (Reg st0) (OldReg st0) = (Reg OldReg st0)
915 moveToTop(Reg, I);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +0000916 if (FixCount > 0)
917 moveToTop(OldReg, I);
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +0000918 }
919 DEBUG(dumpStack());
Chris Lattnerbc7e35b2004-04-01 04:06:09 +0000920}
921
922
Chris Lattnercf53bcf2003-01-13 01:01:59 +0000923//===----------------------------------------------------------------------===//
924// Instruction transformation implementation
925//===----------------------------------------------------------------------===//
926
Akira Hatanaka35166692014-08-01 22:19:41 +0000927void FPS::handleCall(MachineBasicBlock::iterator &I) {
928 unsigned STReturns = 0;
929
930 for (const auto &MO : I->operands()) {
931 if (!MO.isReg())
932 continue;
933
934 unsigned R = MO.getReg() - X86::FP0;
935
936 if (R < 8) {
937 assert(MO.isDef() && MO.isImplicit());
938 STReturns |= 1 << R;
939 }
940 }
941
Benjamin Kramer5f6a9072015-02-12 15:35:40 +0000942 unsigned N = countTrailingOnes(STReturns);
Akira Hatanaka35166692014-08-01 22:19:41 +0000943
944 // FP registers used for function return must be consecutive starting at
945 // FP0.
Akira Hatanakae457f3e2014-08-04 17:23:38 +0000946 assert(STReturns == 0 || (isMask_32(STReturns) && N <= 2));
Akira Hatanaka35166692014-08-01 22:19:41 +0000947
948 for (unsigned I = 0; I < N; ++I)
949 pushReg(N - I - 1);
950}
951
David L Kreitzer14f00772016-03-10 15:14:02 +0000952/// If RET has an FP register use operand, pass the first one in ST(0) and
953/// the second one in ST(1).
954void FPS::handleReturn(MachineBasicBlock::iterator &I) {
955 MachineInstr *MI = I;
956
957 // Find the register operands.
958 unsigned FirstFPRegOp = ~0U, SecondFPRegOp = ~0U;
959 unsigned LiveMask = 0;
960
961 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
962 MachineOperand &Op = MI->getOperand(i);
963 if (!Op.isReg() || Op.getReg() < X86::FP0 || Op.getReg() > X86::FP6)
964 continue;
965 // FP Register uses must be kills unless there are two uses of the same
966 // register, in which case only one will be a kill.
967 assert(Op.isUse() &&
968 (Op.isKill() || // Marked kill.
969 getFPReg(Op) == FirstFPRegOp || // Second instance.
970 MI->killsRegister(Op.getReg())) && // Later use is marked kill.
971 "Ret only defs operands, and values aren't live beyond it");
972
973 if (FirstFPRegOp == ~0U)
974 FirstFPRegOp = getFPReg(Op);
975 else {
976 assert(SecondFPRegOp == ~0U && "More than two fp operands!");
977 SecondFPRegOp = getFPReg(Op);
978 }
979 LiveMask |= (1 << getFPReg(Op));
980
981 // Remove the operand so that later passes don't see it.
982 MI->RemoveOperand(i);
983 --i;
984 --e;
985 }
986
987 // We may have been carrying spurious live-ins, so make sure only the
988 // returned registers are left live.
989 adjustLiveRegs(LiveMask, MI);
990 if (!LiveMask) return; // Quick check to see if any are possible.
991
992 // There are only four possibilities here:
993 // 1) we are returning a single FP value. In this case, it has to be in
994 // ST(0) already, so just declare success by removing the value from the
995 // FP Stack.
996 if (SecondFPRegOp == ~0U) {
997 // Assert that the top of stack contains the right FP register.
998 assert(StackTop == 1 && FirstFPRegOp == getStackEntry(0) &&
999 "Top of stack not the right register for RET!");
1000
1001 // Ok, everything is good, mark the value as not being on the stack
1002 // anymore so that our assertion about the stack being empty at end of
1003 // block doesn't fire.
1004 StackTop = 0;
1005 return;
1006 }
1007
1008 // Otherwise, we are returning two values:
1009 // 2) If returning the same value for both, we only have one thing in the FP
1010 // stack. Consider: RET FP1, FP1
1011 if (StackTop == 1) {
1012 assert(FirstFPRegOp == SecondFPRegOp && FirstFPRegOp == getStackEntry(0)&&
1013 "Stack misconfiguration for RET!");
1014
1015 // Duplicate the TOS so that we return it twice. Just pick some other FPx
1016 // register to hold it.
1017 unsigned NewReg = ScratchFPReg;
1018 duplicateToTop(FirstFPRegOp, NewReg, MI);
1019 FirstFPRegOp = NewReg;
1020 }
1021
1022 /// Okay we know we have two different FPx operands now:
1023 assert(StackTop == 2 && "Must have two values live!");
1024
1025 /// 3) If SecondFPRegOp is currently in ST(0) and FirstFPRegOp is currently
1026 /// in ST(1). In this case, emit an fxch.
1027 if (getStackEntry(0) == SecondFPRegOp) {
1028 assert(getStackEntry(1) == FirstFPRegOp && "Unknown regs live");
1029 moveToTop(FirstFPRegOp, MI);
1030 }
1031
1032 /// 4) Finally, FirstFPRegOp must be in ST(0) and SecondFPRegOp must be in
1033 /// ST(1). Just remove both from our understanding of the stack and return.
1034 assert(getStackEntry(0) == FirstFPRegOp && "Unknown regs live");
1035 assert(getStackEntry(1) == SecondFPRegOp && "Unknown regs live");
1036 StackTop = 0;
1037}
1038
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001039/// handleZeroArgFP - ST(0) = fld0 ST(0) = flds <mem>
Chris Lattner7af8ad62004-02-02 19:23:15 +00001040///
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001041void FPS::handleZeroArgFP(MachineBasicBlock::iterator &I) {
Alkis Evlogimenos80da8652004-02-12 02:27:10 +00001042 MachineInstr *MI = I;
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001043 unsigned DestReg = getFPReg(MI->getOperand(0));
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001044
Chris Lattnerf431ad42005-12-21 07:47:04 +00001045 // Change from the pseudo instruction to the concrete instruction.
1046 MI->RemoveOperand(0); // Remove the explicit ST(0) operand
Chris Lattner59687512008-01-11 18:10:50 +00001047 MI->setDesc(TII->get(getConcreteOpcode(MI->getOpcode())));
Chad Rosier24c19d22012-08-01 18:39:17 +00001048
Chris Lattnerf431ad42005-12-21 07:47:04 +00001049 // Result gets pushed on the stack.
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001050 pushReg(DestReg);
1051}
1052
Chris Lattner7af8ad62004-02-02 19:23:15 +00001053/// handleOneArgFP - fst <mem>, ST(0)
1054///
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001055void FPS::handleOneArgFP(MachineBasicBlock::iterator &I) {
Alkis Evlogimenos80da8652004-02-12 02:27:10 +00001056 MachineInstr *MI = I;
Chris Lattner03ad8852008-01-07 07:27:27 +00001057 unsigned NumOps = MI->getDesc().getNumOperands();
Chris Lattnerec536272010-07-08 22:41:28 +00001058 assert((NumOps == X86::AddrNumOperands + 1 || NumOps == 1) &&
Chris Lattner81613062004-02-03 07:27:34 +00001059 "Can only handle fst* & ftst instructions!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001060
Chris Lattner7af8ad62004-02-02 19:23:15 +00001061 // Is this the last use of the source register?
Evan Cheng14140052006-11-10 01:28:43 +00001062 unsigned Reg = getFPReg(MI->getOperand(NumOps-1));
Evan Cheng63254462008-03-05 00:59:57 +00001063 bool KillsSrc = MI->killsRegister(X86::FP0+Reg);
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001064
Evan Cheng70af6202006-02-18 02:36:28 +00001065 // FISTP64m is strange because there isn't a non-popping versions.
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001066 // If we have one _and_ we don't want to pop the operand, duplicate the value
1067 // on the stack instead of moving it. This ensure that popping the value is
1068 // always ok.
Dale Johannesenff7e4432007-09-17 20:15:38 +00001069 // Ditto FISTTP16m, FISTTP32m, FISTTP64m, ST_FpP80m.
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001070 //
Evan Cheng70af6202006-02-18 02:36:28 +00001071 if (!KillsSrc &&
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001072 (MI->getOpcode() == X86::IST_Fp64m32 ||
1073 MI->getOpcode() == X86::ISTT_Fp16m32 ||
1074 MI->getOpcode() == X86::ISTT_Fp32m32 ||
1075 MI->getOpcode() == X86::ISTT_Fp64m32 ||
1076 MI->getOpcode() == X86::IST_Fp64m64 ||
1077 MI->getOpcode() == X86::ISTT_Fp16m64 ||
1078 MI->getOpcode() == X86::ISTT_Fp32m64 ||
Dale Johannesenb1888e72007-08-05 18:49:15 +00001079 MI->getOpcode() == X86::ISTT_Fp64m64 ||
Dale Johannesen95be0372007-09-20 01:27:54 +00001080 MI->getOpcode() == X86::IST_Fp64m80 ||
Dale Johannesen57c6ac5f2007-08-07 01:17:37 +00001081 MI->getOpcode() == X86::ISTT_Fp16m80 ||
1082 MI->getOpcode() == X86::ISTT_Fp32m80 ||
1083 MI->getOpcode() == X86::ISTT_Fp64m80 ||
Dale Johannesenb1888e72007-08-05 18:49:15 +00001084 MI->getOpcode() == X86::ST_FpP80m)) {
Akira Hatanaka35166692014-08-01 22:19:41 +00001085 duplicateToTop(Reg, ScratchFPReg, I);
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001086 } else {
1087 moveToTop(Reg, I); // Move to the top of the stack...
1088 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001089
Chris Lattnerf431ad42005-12-21 07:47:04 +00001090 // Convert from the pseudo instruction to the concrete instruction.
Evan Cheng14140052006-11-10 01:28:43 +00001091 MI->RemoveOperand(NumOps-1); // Remove explicit ST(0) operand
Chris Lattner59687512008-01-11 18:10:50 +00001092 MI->setDesc(TII->get(getConcreteOpcode(MI->getOpcode())));
Misha Brukmanc88330a2005-04-21 23:38:14 +00001093
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001094 if (MI->getOpcode() == X86::IST_FP64m ||
1095 MI->getOpcode() == X86::ISTT_FP16m ||
1096 MI->getOpcode() == X86::ISTT_FP32m ||
Dale Johannesene279fd62007-08-06 19:50:32 +00001097 MI->getOpcode() == X86::ISTT_FP64m ||
1098 MI->getOpcode() == X86::ST_FP80m) {
Evan Chengd565b442010-10-12 23:19:28 +00001099 if (StackTop == 0)
1100 report_fatal_error("Stack empty??");
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001101 --StackTop;
1102 } else if (KillsSrc) { // Last use of operand?
1103 popStackAfter(I);
1104 }
1105}
1106
Chris Lattner7af8ad62004-02-02 19:23:15 +00001107
Chris Lattner5b444722004-04-11 20:21:06 +00001108/// handleOneArgFPRW: Handle instructions that read from the top of stack and
1109/// replace the value with a newly computed value. These instructions may have
1110/// non-fp operands after their FP operands.
1111///
1112/// Examples:
1113/// R1 = fchs R2
1114/// R1 = fadd R2, [mem]
Chris Lattner7af8ad62004-02-02 19:23:15 +00001115///
1116void FPS::handleOneArgFPRW(MachineBasicBlock::iterator &I) {
Alkis Evlogimenos80da8652004-02-12 02:27:10 +00001117 MachineInstr *MI = I;
Evan Chengfa374ca2008-07-21 20:02:45 +00001118#ifndef NDEBUG
Chris Lattner03ad8852008-01-07 07:27:27 +00001119 unsigned NumOps = MI->getDesc().getNumOperands();
Evan Cheng14140052006-11-10 01:28:43 +00001120 assert(NumOps >= 2 && "FPRW instructions must have 2 ops!!");
Evan Chengfa374ca2008-07-21 20:02:45 +00001121#endif
Chris Lattner7af8ad62004-02-02 19:23:15 +00001122
1123 // Is this the last use of the source register?
1124 unsigned Reg = getFPReg(MI->getOperand(1));
Evan Cheng63254462008-03-05 00:59:57 +00001125 bool KillsSrc = MI->killsRegister(X86::FP0+Reg);
Chris Lattner7af8ad62004-02-02 19:23:15 +00001126
1127 if (KillsSrc) {
1128 // If this is the last use of the source register, just make sure it's on
1129 // the top of the stack.
1130 moveToTop(Reg, I);
Evan Chengd565b442010-10-12 23:19:28 +00001131 if (StackTop == 0)
1132 report_fatal_error("Stack cannot be empty!");
Chris Lattner7af8ad62004-02-02 19:23:15 +00001133 --StackTop;
1134 pushReg(getFPReg(MI->getOperand(0)));
1135 } else {
1136 // If this is not the last use of the source register, _copy_ it to the top
1137 // of the stack.
1138 duplicateToTop(Reg, getFPReg(MI->getOperand(0)), I);
1139 }
1140
Chris Lattnerf431ad42005-12-21 07:47:04 +00001141 // Change from the pseudo instruction to the concrete instruction.
Chris Lattner7af8ad62004-02-02 19:23:15 +00001142 MI->RemoveOperand(1); // Drop the source operand.
1143 MI->RemoveOperand(0); // Drop the destination operand.
Chris Lattner59687512008-01-11 18:10:50 +00001144 MI->setDesc(TII->get(getConcreteOpcode(MI->getOpcode())));
Chris Lattner7af8ad62004-02-02 19:23:15 +00001145}
1146
1147
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001148//===----------------------------------------------------------------------===//
1149// Define tables of various ways to map pseudo instructions
1150//
1151
1152// ForwardST0Table - Map: A = B op C into: ST(0) = ST(0) op ST(i)
1153static const TableEntry ForwardST0Table[] = {
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001154 { X86::ADD_Fp32 , X86::ADD_FST0r },
1155 { X86::ADD_Fp64 , X86::ADD_FST0r },
Dale Johannesen75169a82007-08-06 21:31:06 +00001156 { X86::ADD_Fp80 , X86::ADD_FST0r },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001157 { X86::DIV_Fp32 , X86::DIV_FST0r },
1158 { X86::DIV_Fp64 , X86::DIV_FST0r },
Dale Johannesen75169a82007-08-06 21:31:06 +00001159 { X86::DIV_Fp80 , X86::DIV_FST0r },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001160 { X86::MUL_Fp32 , X86::MUL_FST0r },
1161 { X86::MUL_Fp64 , X86::MUL_FST0r },
Dale Johannesen75169a82007-08-06 21:31:06 +00001162 { X86::MUL_Fp80 , X86::MUL_FST0r },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001163 { X86::SUB_Fp32 , X86::SUB_FST0r },
1164 { X86::SUB_Fp64 , X86::SUB_FST0r },
Dale Johannesen75169a82007-08-06 21:31:06 +00001165 { X86::SUB_Fp80 , X86::SUB_FST0r },
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001166};
1167
1168// ReverseST0Table - Map: A = B op C into: ST(0) = ST(i) op ST(0)
1169static const TableEntry ReverseST0Table[] = {
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001170 { X86::ADD_Fp32 , X86::ADD_FST0r }, // commutative
1171 { X86::ADD_Fp64 , X86::ADD_FST0r }, // commutative
Dale Johannesen75169a82007-08-06 21:31:06 +00001172 { X86::ADD_Fp80 , X86::ADD_FST0r }, // commutative
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001173 { X86::DIV_Fp32 , X86::DIVR_FST0r },
1174 { X86::DIV_Fp64 , X86::DIVR_FST0r },
Dale Johannesen75169a82007-08-06 21:31:06 +00001175 { X86::DIV_Fp80 , X86::DIVR_FST0r },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001176 { X86::MUL_Fp32 , X86::MUL_FST0r }, // commutative
1177 { X86::MUL_Fp64 , X86::MUL_FST0r }, // commutative
Dale Johannesen75169a82007-08-06 21:31:06 +00001178 { X86::MUL_Fp80 , X86::MUL_FST0r }, // commutative
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001179 { X86::SUB_Fp32 , X86::SUBR_FST0r },
1180 { X86::SUB_Fp64 , X86::SUBR_FST0r },
Dale Johannesen75169a82007-08-06 21:31:06 +00001181 { X86::SUB_Fp80 , X86::SUBR_FST0r },
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001182};
1183
1184// ForwardSTiTable - Map: A = B op C into: ST(i) = ST(0) op ST(i)
1185static const TableEntry ForwardSTiTable[] = {
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001186 { X86::ADD_Fp32 , X86::ADD_FrST0 }, // commutative
1187 { X86::ADD_Fp64 , X86::ADD_FrST0 }, // commutative
Dale Johannesen75169a82007-08-06 21:31:06 +00001188 { X86::ADD_Fp80 , X86::ADD_FrST0 }, // commutative
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001189 { X86::DIV_Fp32 , X86::DIVR_FrST0 },
1190 { X86::DIV_Fp64 , X86::DIVR_FrST0 },
Dale Johannesen75169a82007-08-06 21:31:06 +00001191 { X86::DIV_Fp80 , X86::DIVR_FrST0 },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001192 { X86::MUL_Fp32 , X86::MUL_FrST0 }, // commutative
1193 { X86::MUL_Fp64 , X86::MUL_FrST0 }, // commutative
Dale Johannesen75169a82007-08-06 21:31:06 +00001194 { X86::MUL_Fp80 , X86::MUL_FrST0 }, // commutative
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001195 { X86::SUB_Fp32 , X86::SUBR_FrST0 },
1196 { X86::SUB_Fp64 , X86::SUBR_FrST0 },
Dale Johannesen75169a82007-08-06 21:31:06 +00001197 { X86::SUB_Fp80 , X86::SUBR_FrST0 },
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001198};
1199
1200// ReverseSTiTable - Map: A = B op C into: ST(i) = ST(i) op ST(0)
1201static const TableEntry ReverseSTiTable[] = {
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001202 { X86::ADD_Fp32 , X86::ADD_FrST0 },
1203 { X86::ADD_Fp64 , X86::ADD_FrST0 },
Dale Johannesen75169a82007-08-06 21:31:06 +00001204 { X86::ADD_Fp80 , X86::ADD_FrST0 },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001205 { X86::DIV_Fp32 , X86::DIV_FrST0 },
1206 { X86::DIV_Fp64 , X86::DIV_FrST0 },
Dale Johannesen75169a82007-08-06 21:31:06 +00001207 { X86::DIV_Fp80 , X86::DIV_FrST0 },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001208 { X86::MUL_Fp32 , X86::MUL_FrST0 },
1209 { X86::MUL_Fp64 , X86::MUL_FrST0 },
Dale Johannesen75169a82007-08-06 21:31:06 +00001210 { X86::MUL_Fp80 , X86::MUL_FrST0 },
Dale Johannesen3d7008c2007-07-04 21:07:47 +00001211 { X86::SUB_Fp32 , X86::SUB_FrST0 },
1212 { X86::SUB_Fp64 , X86::SUB_FrST0 },
Dale Johannesen75169a82007-08-06 21:31:06 +00001213 { X86::SUB_Fp80 , X86::SUB_FrST0 },
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001214};
1215
1216
1217/// handleTwoArgFP - Handle instructions like FADD and friends which are virtual
1218/// instructions which need to be simplified and possibly transformed.
1219///
1220/// Result: ST(0) = fsub ST(0), ST(i)
1221/// ST(i) = fsub ST(0), ST(i)
1222/// ST(0) = fsubr ST(0), ST(i)
1223/// ST(i) = fsubr ST(0), ST(i)
Misha Brukmanc88330a2005-04-21 23:38:14 +00001224///
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001225void FPS::handleTwoArgFP(MachineBasicBlock::iterator &I) {
1226 ASSERT_SORTED(ForwardST0Table); ASSERT_SORTED(ReverseST0Table);
1227 ASSERT_SORTED(ForwardSTiTable); ASSERT_SORTED(ReverseSTiTable);
Alkis Evlogimenos80da8652004-02-12 02:27:10 +00001228 MachineInstr *MI = I;
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001229
Chris Lattner03ad8852008-01-07 07:27:27 +00001230 unsigned NumOperands = MI->getDesc().getNumOperands();
Chris Lattner94ff2c32004-06-11 04:25:06 +00001231 assert(NumOperands == 3 && "Illegal TwoArgFP instruction!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001232 unsigned Dest = getFPReg(MI->getOperand(0));
1233 unsigned Op0 = getFPReg(MI->getOperand(NumOperands-2));
1234 unsigned Op1 = getFPReg(MI->getOperand(NumOperands-1));
Evan Cheng63254462008-03-05 00:59:57 +00001235 bool KillsOp0 = MI->killsRegister(X86::FP0+Op0);
1236 bool KillsOp1 = MI->killsRegister(X86::FP0+Op1);
Dale Johannesen9bba9022009-02-13 02:33:27 +00001237 DebugLoc dl = MI->getDebugLoc();
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001238
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001239 unsigned TOS = getStackEntry(0);
1240
1241 // One of our operands must be on the top of the stack. If neither is yet, we
1242 // need to move one.
1243 if (Op0 != TOS && Op1 != TOS) { // No operand at TOS?
1244 // We can choose to move either operand to the top of the stack. If one of
1245 // the operands is killed by this instruction, we want that one so that we
1246 // can update right on top of the old version.
1247 if (KillsOp0) {
1248 moveToTop(Op0, I); // Move dead operand to TOS.
1249 TOS = Op0;
1250 } else if (KillsOp1) {
1251 moveToTop(Op1, I);
1252 TOS = Op1;
1253 } else {
1254 // All of the operands are live after this instruction executes, so we
1255 // cannot update on top of any operand. Because of this, we must
1256 // duplicate one of the stack elements to the top. It doesn't matter
1257 // which one we pick.
1258 //
1259 duplicateToTop(Op0, Dest, I);
1260 Op0 = TOS = Dest;
1261 KillsOp0 = true;
1262 }
Chris Lattner94ff2c32004-06-11 04:25:06 +00001263 } else if (!KillsOp0 && !KillsOp1) {
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001264 // If we DO have one of our operands at the top of the stack, but we don't
1265 // have a dead operand, we must duplicate one of the operands to a new slot
1266 // on the stack.
1267 duplicateToTop(Op0, Dest, I);
1268 Op0 = TOS = Dest;
1269 KillsOp0 = true;
1270 }
1271
1272 // Now we know that one of our operands is on the top of the stack, and at
1273 // least one of our operands is killed by this instruction.
Misha Brukmanc88330a2005-04-21 23:38:14 +00001274 assert((TOS == Op0 || TOS == Op1) && (KillsOp0 || KillsOp1) &&
1275 "Stack conditions not set up right!");
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001276
1277 // We decide which form to use based on what is on the top of the stack, and
1278 // which operand is killed by this instruction.
Craig Topper9ff9bf42015-10-17 16:37:13 +00001279 ArrayRef<TableEntry> InstTable;
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001280 bool isForward = TOS == Op0;
1281 bool updateST0 = (TOS == Op0 && !KillsOp1) || (TOS == Op1 && !KillsOp0);
1282 if (updateST0) {
1283 if (isForward)
1284 InstTable = ForwardST0Table;
1285 else
1286 InstTable = ReverseST0Table;
1287 } else {
1288 if (isForward)
1289 InstTable = ForwardSTiTable;
1290 else
1291 InstTable = ReverseSTiTable;
1292 }
Misha Brukmanc88330a2005-04-21 23:38:14 +00001293
Craig Topper9ff9bf42015-10-17 16:37:13 +00001294 int Opcode = Lookup(InstTable, MI->getOpcode());
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001295 assert(Opcode != -1 && "Unknown TwoArgFP pseudo instruction!");
1296
1297 // NotTOS - The register which is not on the top of stack...
1298 unsigned NotTOS = (TOS == Op0) ? Op1 : Op0;
1299
1300 // Replace the old instruction with a new instruction
Chris Lattnerc07c9582004-03-31 22:02:36 +00001301 MBB->remove(I++);
Dale Johannesen9bba9022009-02-13 02:33:27 +00001302 I = BuildMI(*MBB, I, dl, TII->get(Opcode)).addReg(getSTReg(NotTOS));
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001303
1304 // If both operands are killed, pop one off of the stack in addition to
1305 // overwriting the other one.
1306 if (KillsOp0 && KillsOp1 && Op0 != Op1) {
1307 assert(!updateST0 && "Should have updated other operand!");
1308 popStackAfter(I); // Pop the top of stack
1309 }
1310
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001311 // Update stack information so that we know the destination register is now on
1312 // the stack.
Chris Lattner94ff2c32004-06-11 04:25:06 +00001313 unsigned UpdatedSlot = getSlot(updateST0 ? TOS : NotTOS);
1314 assert(UpdatedSlot < StackTop && Dest < 7);
1315 Stack[UpdatedSlot] = Dest;
1316 RegMap[Dest] = UpdatedSlot;
Dan Gohman3b460302008-07-07 23:14:23 +00001317 MBB->getParent()->DeleteMachineInstr(MI); // Remove the old instruction
Chris Lattner94ff2c32004-06-11 04:25:06 +00001318}
1319
Chris Lattnerb35f4762004-06-11 04:49:02 +00001320/// handleCompareFP - Handle FUCOM and FUCOMI instructions, which have two FP
Chris Lattner94ff2c32004-06-11 04:25:06 +00001321/// register arguments and no explicit destinations.
Misha Brukmanc88330a2005-04-21 23:38:14 +00001322///
Chris Lattner94ff2c32004-06-11 04:25:06 +00001323void FPS::handleCompareFP(MachineBasicBlock::iterator &I) {
1324 ASSERT_SORTED(ForwardST0Table); ASSERT_SORTED(ReverseST0Table);
1325 ASSERT_SORTED(ForwardSTiTable); ASSERT_SORTED(ReverseSTiTable);
1326 MachineInstr *MI = I;
1327
Chris Lattner03ad8852008-01-07 07:27:27 +00001328 unsigned NumOperands = MI->getDesc().getNumOperands();
Chris Lattnerb35f4762004-06-11 04:49:02 +00001329 assert(NumOperands == 2 && "Illegal FUCOM* instruction!");
Chris Lattner94ff2c32004-06-11 04:25:06 +00001330 unsigned Op0 = getFPReg(MI->getOperand(NumOperands-2));
1331 unsigned Op1 = getFPReg(MI->getOperand(NumOperands-1));
Evan Cheng63254462008-03-05 00:59:57 +00001332 bool KillsOp0 = MI->killsRegister(X86::FP0+Op0);
1333 bool KillsOp1 = MI->killsRegister(X86::FP0+Op1);
Chris Lattner94ff2c32004-06-11 04:25:06 +00001334
1335 // Make sure the first operand is on the top of stack, the other one can be
1336 // anywhere.
1337 moveToTop(Op0, I);
1338
Chris Lattnerf431ad42005-12-21 07:47:04 +00001339 // Change from the pseudo instruction to the concrete instruction.
Chris Lattner71186e22004-06-11 05:22:44 +00001340 MI->getOperand(0).setReg(getSTReg(Op1));
1341 MI->RemoveOperand(1);
Chris Lattner59687512008-01-11 18:10:50 +00001342 MI->setDesc(TII->get(getConcreteOpcode(MI->getOpcode())));
Chris Lattner71186e22004-06-11 05:22:44 +00001343
Chris Lattner94ff2c32004-06-11 04:25:06 +00001344 // If any of the operands are killed by this instruction, free them.
1345 if (KillsOp0) freeStackSlotAfter(I, Op0);
1346 if (KillsOp1 && Op0 != Op1) freeStackSlotAfter(I, Op1);
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001347}
1348
Chris Lattnerc07c9582004-03-31 22:02:36 +00001349/// handleCondMovFP - Handle two address conditional move instructions. These
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001350/// instructions move a st(i) register to st(0) iff a condition is true. These
Chris Lattnerc07c9582004-03-31 22:02:36 +00001351/// instructions require that the first operand is at the top of the stack, but
1352/// otherwise don't modify the stack at all.
1353void FPS::handleCondMovFP(MachineBasicBlock::iterator &I) {
1354 MachineInstr *MI = I;
1355
1356 unsigned Op0 = getFPReg(MI->getOperand(0));
Chris Lattner26569322006-09-05 20:27:32 +00001357 unsigned Op1 = getFPReg(MI->getOperand(2));
Evan Cheng63254462008-03-05 00:59:57 +00001358 bool KillsOp1 = MI->killsRegister(X86::FP0+Op1);
Chris Lattnerc07c9582004-03-31 22:02:36 +00001359
1360 // The first operand *must* be on the top of the stack.
1361 moveToTop(Op0, I);
1362
1363 // Change the second operand to the stack register that the operand is in.
Chris Lattnerf431ad42005-12-21 07:47:04 +00001364 // Change from the pseudo instruction to the concrete instruction.
Chris Lattnerc07c9582004-03-31 22:02:36 +00001365 MI->RemoveOperand(0);
Chris Lattner26569322006-09-05 20:27:32 +00001366 MI->RemoveOperand(1);
Chris Lattnerc07c9582004-03-31 22:02:36 +00001367 MI->getOperand(0).setReg(getSTReg(Op1));
Chris Lattner59687512008-01-11 18:10:50 +00001368 MI->setDesc(TII->get(getConcreteOpcode(MI->getOpcode())));
Chad Rosier24c19d22012-08-01 18:39:17 +00001369
Chris Lattnerc07c9582004-03-31 22:02:36 +00001370 // If we kill the second operand, make sure to pop it from the stack.
Evan Chengbbbcac32006-11-15 20:56:39 +00001371 if (Op0 != Op1 && KillsOp1) {
Chris Lattner7c1c6e02005-08-23 22:49:55 +00001372 // Get this value off of the register stack.
1373 freeStackSlotAfter(I, Op1);
1374 }
Chris Lattnerc07c9582004-03-31 22:02:36 +00001375}
1376
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001377
1378/// handleSpecialFP - Handle special instructions which behave unlike other
Misha Brukman8b2bd4e2003-10-10 17:57:28 +00001379/// floating point instructions. This is primarily intended for use by pseudo
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001380/// instructions.
1381///
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001382void FPS::handleSpecialFP(MachineBasicBlock::iterator &Inst) {
1383 MachineInstr *MI = Inst;
Akira Hatanaka35166692014-08-01 22:19:41 +00001384
1385 if (MI->isCall()) {
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001386 handleCall(Inst);
Akira Hatanaka35166692014-08-01 22:19:41 +00001387 return;
1388 }
1389
David L Kreitzer14f00772016-03-10 15:14:02 +00001390 if (MI->isReturn()) {
1391 handleReturn(Inst);
1392 return;
1393 }
1394
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001395 switch (MI->getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001396 default: llvm_unreachable("Unknown SpecialFP instruction!");
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001397 case TargetOpcode::COPY: {
1398 // We handle three kinds of copies: FP <- FP, FP <- ST, and ST <- FP.
Evan Cheng968c3b02009-03-23 08:01:15 +00001399 const MachineOperand &MO1 = MI->getOperand(1);
Evan Cheng968c3b02009-03-23 08:01:15 +00001400 const MachineOperand &MO0 = MI->getOperand(0);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001401 bool KillsSrc = MI->killsRegister(MO1.getReg());
1402
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001403 // FP <- FP copy.
1404 unsigned DstFP = getFPReg(MO0);
1405 unsigned SrcFP = getFPReg(MO1);
1406 assert(isLive(SrcFP) && "Cannot copy dead register");
1407 if (KillsSrc) {
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001408 // If the input operand is killed, we can just change the owner of the
1409 // incoming stack slot into the result.
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001410 unsigned Slot = getSlot(SrcFP);
1411 Stack[Slot] = DstFP;
1412 RegMap[DstFP] = Slot;
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001413 } else {
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001414 // For COPY we just duplicate the specified value to a new stack slot.
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001415 // This could be made better, but would require substantial changes.
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001416 duplicateToTop(SrcFP, DstFP, Inst);
Nick Lewyckya3860a22008-03-11 05:56:09 +00001417 }
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001418 break;
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001419 }
1420
Jakob Stoklund Olesenda618422011-08-03 16:33:19 +00001421 case TargetOpcode::IMPLICIT_DEF: {
1422 // All FP registers must be explicitly defined, so load a 0 instead.
1423 unsigned Reg = MI->getOperand(0).getReg() - X86::FP0;
1424 DEBUG(dbgs() << "Emitting LD_F0 for implicit FP" << Reg << '\n');
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001425 BuildMI(*MBB, Inst, MI->getDebugLoc(), TII->get(X86::LD_F0));
Jakob Stoklund Olesenda618422011-08-03 16:33:19 +00001426 pushReg(Reg);
1427 break;
1428 }
1429
Chris Lattnerb06015a2010-02-09 19:54:29 +00001430 case TargetOpcode::INLINEASM: {
Chris Lattner8abed802008-03-11 19:50:13 +00001431 // The inline asm MachineInstr currently only *uses* FP registers for the
1432 // 'f' constraint. These should be turned into the current ST(x) register
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001433 // in the machine instr.
1434 //
1435 // There are special rules for x87 inline assembly. The compiler must know
1436 // exactly how many registers are popped and pushed implicitly by the asm.
1437 // Otherwise it is not possible to restore the stack state after the inline
1438 // asm.
1439 //
1440 // There are 3 kinds of input operands:
1441 //
1442 // 1. Popped inputs. These must appear at the stack top in ST0-STn. A
1443 // popped input operand must be in a fixed stack slot, and it is either
1444 // tied to an output operand, or in the clobber list. The MI has ST use
1445 // and def operands for these inputs.
1446 //
1447 // 2. Fixed inputs. These inputs appear in fixed stack slots, but are
1448 // preserved by the inline asm. The fixed stack slots must be STn-STm
1449 // following the popped inputs. A fixed input operand cannot be tied to
1450 // an output or appear in the clobber list. The MI has ST use operands
1451 // and no defs for these inputs.
1452 //
1453 // 3. Preserved inputs. These inputs use the "f" constraint which is
1454 // represented as an FP register. The inline asm won't change these
1455 // stack slots.
1456 //
1457 // Outputs must be in ST registers, FP outputs are not allowed. Clobbered
1458 // registers do not count as output operands. The inline asm changes the
1459 // stack as if it popped all the popped inputs and then pushed all the
1460 // output operands.
1461
1462 // Scan the assembly for ST registers used, defined and clobbered. We can
1463 // only tell clobbers from defs by looking at the asm descriptor.
1464 unsigned STUses = 0, STDefs = 0, STClobbers = 0, STDeadDefs = 0;
1465 unsigned NumOps = 0;
Akira Hatanaka35166692014-08-01 22:19:41 +00001466 SmallSet<unsigned, 1> FRegIdx;
1467 unsigned RCID;
1468
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001469 for (unsigned i = InlineAsm::MIOp_FirstOperand, e = MI->getNumOperands();
1470 i != e && MI->getOperand(i).isImm(); i += 1 + NumOps) {
1471 unsigned Flags = MI->getOperand(i).getImm();
Akira Hatanaka35166692014-08-01 22:19:41 +00001472
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001473 NumOps = InlineAsm::getNumOperandRegisters(Flags);
1474 if (NumOps != 1)
1475 continue;
1476 const MachineOperand &MO = MI->getOperand(i + 1);
1477 if (!MO.isReg())
1478 continue;
Akira Hatanaka35166692014-08-01 22:19:41 +00001479 unsigned STReg = MO.getReg() - X86::FP0;
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001480 if (STReg >= 8)
1481 continue;
1482
Akira Hatanaka35166692014-08-01 22:19:41 +00001483 // If the flag has a register class constraint, this must be an operand
1484 // with constraint "f". Record its index and continue.
1485 if (InlineAsm::hasRegClassConstraint(Flags, RCID)) {
1486 FRegIdx.insert(i + 1);
1487 continue;
1488 }
1489
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001490 switch (InlineAsm::getKind(Flags)) {
1491 case InlineAsm::Kind_RegUse:
1492 STUses |= (1u << STReg);
1493 break;
1494 case InlineAsm::Kind_RegDef:
1495 case InlineAsm::Kind_RegDefEarlyClobber:
1496 STDefs |= (1u << STReg);
1497 if (MO.isDead())
1498 STDeadDefs |= (1u << STReg);
1499 break;
1500 case InlineAsm::Kind_Clobber:
1501 STClobbers |= (1u << STReg);
1502 break;
1503 default:
1504 break;
1505 }
1506 }
1507
1508 if (STUses && !isMask_32(STUses))
Jakob Stoklund Olesene925f222011-07-02 07:23:40 +00001509 MI->emitError("fixed input regs must be last on the x87 stack");
Benjamin Kramer5f6a9072015-02-12 15:35:40 +00001510 unsigned NumSTUses = countTrailingOnes(STUses);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001511
1512 // Defs must be contiguous from the stack top. ST0-STn.
Jakob Stoklund Olesen25a404e2011-07-02 03:53:34 +00001513 if (STDefs && !isMask_32(STDefs)) {
Jakob Stoklund Olesene925f222011-07-02 07:23:40 +00001514 MI->emitError("output regs must be last on the x87 stack");
Jakob Stoklund Olesen25a404e2011-07-02 03:53:34 +00001515 STDefs = NextPowerOf2(STDefs) - 1;
1516 }
Benjamin Kramer5f6a9072015-02-12 15:35:40 +00001517 unsigned NumSTDefs = countTrailingOnes(STDefs);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001518
1519 // So must the clobbered stack slots. ST0-STm, m >= n.
1520 if (STClobbers && !isMask_32(STDefs | STClobbers))
Jakob Stoklund Olesene925f222011-07-02 07:23:40 +00001521 MI->emitError("clobbers must be last on the x87 stack");
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001522
1523 // Popped inputs are the ones that are also clobbered or defined.
1524 unsigned STPopped = STUses & (STDefs | STClobbers);
1525 if (STPopped && !isMask_32(STPopped))
Jakob Stoklund Olesene925f222011-07-02 07:23:40 +00001526 MI->emitError("implicitly popped regs must be last on the x87 stack");
Benjamin Kramer5f6a9072015-02-12 15:35:40 +00001527 unsigned NumSTPopped = countTrailingOnes(STPopped);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001528
1529 DEBUG(dbgs() << "Asm uses " << NumSTUses << " fixed regs, pops "
1530 << NumSTPopped << ", and defines " << NumSTDefs << " regs.\n");
1531
Akira Hatanaka35166692014-08-01 22:19:41 +00001532#ifndef NDEBUG
1533 // If any input operand uses constraint "f", all output register
1534 // constraints must be early-clobber defs.
1535 for (unsigned I = 0, E = MI->getNumOperands(); I < E; ++I)
1536 if (FRegIdx.count(I)) {
1537 assert((1 << getFPReg(MI->getOperand(I)) & STDefs) == 0 &&
1538 "Operands with constraint \"f\" cannot overlap with defs");
1539 }
1540#endif
1541
1542 // Collect all FP registers (register operands with constraints "t", "u",
1543 // and "f") to kill afer the instruction.
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001544 unsigned FPKills = ((1u << NumFPRegs) - 1) & ~0xff;
Chris Lattner8abed802008-03-11 19:50:13 +00001545 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1546 MachineOperand &Op = MI->getOperand(i);
Dan Gohman0d1e9a82008-10-03 15:45:36 +00001547 if (!Op.isReg() || Op.getReg() < X86::FP0 || Op.getReg() > X86::FP6)
Chris Lattner8abed802008-03-11 19:50:13 +00001548 continue;
Chris Lattner8abed802008-03-11 19:50:13 +00001549 unsigned FPReg = getFPReg(Op);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001550
Chris Lattner8abed802008-03-11 19:50:13 +00001551 // If we kill this operand, make sure to pop it from the stack after the
1552 // asm. We just remember it for now, and pop them all off at the end in
1553 // a batch.
Akira Hatanaka35166692014-08-01 22:19:41 +00001554 if (Op.isUse() && Op.isKill())
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001555 FPKills |= 1U << FPReg;
Chris Lattner8abed802008-03-11 19:50:13 +00001556 }
1557
Akira Hatanaka35166692014-08-01 22:19:41 +00001558 // Do not include registers that are implicitly popped by defs/clobbers.
1559 FPKills &= ~(STDefs | STClobbers);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001560
1561 // Now we can rearrange the live registers to match what was requested.
Akira Hatanaka35166692014-08-01 22:19:41 +00001562 unsigned char STUsesArray[8];
1563
1564 for (unsigned I = 0; I < NumSTUses; ++I)
1565 STUsesArray[I] = I;
1566
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001567 shuffleStackTop(STUsesArray, NumSTUses, Inst);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001568 DEBUG({dbgs() << "Before asm: "; dumpStack();});
1569
1570 // With the stack layout fixed, rewrite the FP registers.
1571 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1572 MachineOperand &Op = MI->getOperand(i);
1573 if (!Op.isReg() || Op.getReg() < X86::FP0 || Op.getReg() > X86::FP6)
1574 continue;
Akira Hatanaka35166692014-08-01 22:19:41 +00001575
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001576 unsigned FPReg = getFPReg(Op);
Akira Hatanaka35166692014-08-01 22:19:41 +00001577
1578 if (FRegIdx.count(i))
1579 // Operand with constraint "f".
1580 Op.setReg(getSTReg(FPReg));
1581 else
1582 // Operand with a single register class constraint ("t" or "u").
1583 Op.setReg(X86::ST0 + FPReg);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001584 }
1585
1586 // Simulate the inline asm popping its inputs and pushing its outputs.
1587 StackTop -= NumSTPopped;
1588
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001589 for (unsigned i = 0; i < NumSTDefs; ++i)
Akira Hatanaka35166692014-08-01 22:19:41 +00001590 pushReg(NumSTDefs - i - 1);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001591
Chris Lattner8abed802008-03-11 19:50:13 +00001592 // If this asm kills any FP registers (is the last use of them) we must
1593 // explicitly emit pop instructions for them. Do this now after the asm has
1594 // executed so that the ST(x) numbers are not off (which would happen if we
1595 // did this inline with operand rewriting).
1596 //
1597 // Note: this might be a non-optimal pop sequence. We might be able to do
1598 // better by trying to pop in stack order or something.
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001599 while (FPKills) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00001600 unsigned FPReg = countTrailingZeros(FPKills);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001601 if (isLive(FPReg))
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001602 freeStackSlotAfter(Inst, FPReg);
Jakob Stoklund Olesen7297e7e2011-06-28 18:32:28 +00001603 FPKills &= ~(1U << FPReg);
Jakob Stoklund Olesen96fad312010-04-28 18:28:37 +00001604 }
Akira Hatanaka35166692014-08-01 22:19:41 +00001605
Chris Lattner8abed802008-03-11 19:50:13 +00001606 // Don't delete the inline asm!
1607 return;
1608 }
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001609 }
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001610
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001611 Inst = MBB->erase(Inst); // Remove the pseudo instruction
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +00001612
1613 // We want to leave I pointing to the previous instruction, but what if we
1614 // just erased the first instruction?
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001615 if (Inst == MBB->begin()) {
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +00001616 DEBUG(dbgs() << "Inserting dummy KILL\n");
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001617 Inst = BuildMI(*MBB, Inst, DebugLoc(), TII->get(TargetOpcode::KILL));
Jakob Stoklund Olesen0e5fb022010-07-16 16:38:12 +00001618 } else
Aaron Ballmanc36c6ab2014-08-04 13:51:27 +00001619 --Inst;
Chris Lattnercf53bcf2003-01-13 01:01:59 +00001620}
Akira Hatanaka35166692014-08-01 22:19:41 +00001621
1622void FPS::setKillFlags(MachineBasicBlock &MBB) const {
Eric Christopherd9134482014-08-04 21:25:23 +00001623 const TargetRegisterInfo *TRI =
Eric Christopherfc6de422014-08-05 02:39:49 +00001624 MBB.getParent()->getSubtarget().getRegisterInfo();
Akira Hatanaka35166692014-08-01 22:19:41 +00001625 LivePhysRegs LPR(TRI);
1626
Matthias Braund1aabb22016-05-03 00:24:32 +00001627 LPR.addLiveOuts(MBB);
Akira Hatanaka35166692014-08-01 22:19:41 +00001628
1629 for (MachineBasicBlock::reverse_iterator I = MBB.rbegin(), E = MBB.rend();
1630 I != E; ++I) {
Akira Hatanaka452ea662014-08-19 02:09:57 +00001631 if (I->isDebugValue())
1632 continue;
1633
Benjamin Kramer9e5b4a52014-09-11 15:58:39 +00001634 std::bitset<8> Defs;
Akira Hatanaka35166692014-08-01 22:19:41 +00001635 SmallVector<MachineOperand *, 2> Uses;
1636 MachineInstr &MI = *I;
1637
1638 for (auto &MO : I->operands()) {
1639 if (!MO.isReg())
1640 continue;
1641
1642 unsigned Reg = MO.getReg() - X86::FP0;
1643
1644 if (Reg >= 8)
1645 continue;
1646
1647 if (MO.isDef()) {
1648 Defs.set(Reg);
1649 if (!LPR.contains(MO.getReg()))
1650 MO.setIsDead();
1651 } else
1652 Uses.push_back(&MO);
1653 }
1654
1655 for (auto *MO : Uses)
1656 if (Defs.test(getFPReg(*MO)) || !LPR.contains(MO->getReg()))
1657 MO->setIsKill();
1658
1659 LPR.stepBackward(MI);
1660 }
1661}