Misha Brukman | cf7d3af | 2004-07-26 18:45:48 +0000 | [diff] [blame] | 1 | //===-- X86FloatingPoint.cpp - Floating point Reg -> Stack converter ------===// |
Misha Brukman | c88330a | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | c88330a | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file defines the pass which converts floating point instructions from |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 11 | // pseudo registers into register stack instructions. This pass uses live |
Chris Lattner | 1129027 | 2004-01-30 22:25:18 +0000 | [diff] [blame] | 12 | // variable information to indicate where the FPn registers are used and their |
| 13 | // lifetimes. |
| 14 | // |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 15 | // 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 Lattner | 1129027 | 2004-01-30 22:25:18 +0000 | [diff] [blame] | 20 | // |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 21 | // This approach avoids splitting critical edges at the potential cost of more |
| 22 | // live register shuffling instructions when critical edges are present. |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 23 | // |
| 24 | //===----------------------------------------------------------------------===// |
| 25 | |
| 26 | #include "X86.h" |
| 27 | #include "X86InstrInfo.h" |
Reid Spencer | 7c16caa | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/DepthFirstIterator.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/STLExtras.h" |
Owen Anderson | 1b351d4 | 2008-08-14 21:01:00 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/SmallPtrSet.h" |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/SmallSet.h" |
Evan Cheng | bbbcac3 | 2006-11-15 20:56:39 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/SmallVector.h" |
Reid Spencer | 7c16caa | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/Statistic.h" |
Jakob Stoklund Olesen | f96ae68 | 2011-01-04 21:10:05 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/EdgeBundles.h" |
Benjamin Kramer | 799003b | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 35 | #include "llvm/CodeGen/LivePhysRegs.h" |
Bill Wendling | 6eecd56 | 2009-08-03 00:11:34 +0000 | [diff] [blame] | 36 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 37 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 38 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 39 | #include "llvm/CodeGen/Passes.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 40 | #include "llvm/IR/InlineAsm.h" |
Bill Wendling | 6eecd56 | 2009-08-03 00:11:34 +0000 | [diff] [blame] | 41 | #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 Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 46 | #include "llvm/Target/TargetSubtargetInfo.h" |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 47 | #include <algorithm> |
Benjamin Kramer | 9e5b4a5 | 2014-09-11 15:58:39 +0000 | [diff] [blame] | 48 | #include <bitset> |
Chris Lattner | d46cd68 | 2003-12-20 09:58:55 +0000 | [diff] [blame] | 49 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 50 | |
Chandler Carruth | 84e68b2 | 2014-04-22 02:41:26 +0000 | [diff] [blame] | 51 | #define DEBUG_TYPE "x86-codegen" |
| 52 | |
Chris Lattner | 1ef9cd4 | 2006-12-19 22:59:26 +0000 | [diff] [blame] | 53 | STATISTIC(NumFXCH, "Number of fxch instructions inserted"); |
| 54 | STATISTIC(NumFP , "Number of floating point instructions"); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 1ef9cd4 | 2006-12-19 22:59:26 +0000 | [diff] [blame] | 56 | namespace { |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 57 | const unsigned ScratchFPReg = 7; |
| 58 | |
Nick Lewycky | 02d5f77 | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 59 | struct FPS : public MachineFunctionPass { |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 60 | static char ID; |
Owen Anderson | a7aed18 | 2010-08-06 18:33:48 +0000 | [diff] [blame] | 61 | FPS() : MachineFunctionPass(ID) { |
Jakob Stoklund Olesen | f96ae68 | 2011-01-04 21:10:05 +0000 | [diff] [blame] | 62 | initializeEdgeBundlesPass(*PassRegistry::getPassRegistry()); |
Jakob Stoklund Olesen | 8d51149 | 2010-07-16 22:00:33 +0000 | [diff] [blame] | 63 | // 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 Patel | 09f162c | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 68 | |
Craig Topper | 2d9361e | 2014-03-09 07:44:38 +0000 | [diff] [blame] | 69 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Dan Gohman | 6735e10 | 2009-08-01 00:26:16 +0000 | [diff] [blame] | 70 | AU.setPreservesCFG(); |
Jakob Stoklund Olesen | f96ae68 | 2011-01-04 21:10:05 +0000 | [diff] [blame] | 71 | AU.addRequired<EdgeBundles>(); |
Evan Cheng | 962c2cf | 2008-09-22 22:21:38 +0000 | [diff] [blame] | 72 | AU.addPreservedID(MachineLoopInfoID); |
| 73 | AU.addPreservedID(MachineDominatorsID); |
Evan Cheng | 168f8f3 | 2008-09-22 20:58:04 +0000 | [diff] [blame] | 74 | MachineFunctionPass::getAnalysisUsage(AU); |
| 75 | } |
| 76 | |
Craig Topper | 2d9361e | 2014-03-09 07:44:38 +0000 | [diff] [blame] | 77 | bool runOnMachineFunction(MachineFunction &MF) override; |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 78 | |
Craig Topper | 2d9361e | 2014-03-09 07:44:38 +0000 | [diff] [blame] | 79 | const char *getPassName() const override { return "X86 FP Stackifier"; } |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 80 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 81 | private: |
Evan Cheng | 845bd6e | 2006-12-01 10:11:51 +0000 | [diff] [blame] | 82 | const TargetInstrInfo *TII; // Machine instruction info. |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 83 | |
| 84 | // Two CFG edges are related if they leave the same block, or enter the same |
| 85 | // block. The transitive closure of an edge under this relation is a |
| 86 | // LiveBundle. It represents a set of CFG edges where the live FP stack |
| 87 | // registers must be allocated identically in the x87 stack. |
| 88 | // |
| 89 | // A LiveBundle is usually all the edges leaving a block, or all the edges |
| 90 | // entering a block, but it can contain more edges if critical edges are |
| 91 | // present. |
| 92 | // |
| 93 | // The set of live FP registers in a LiveBundle is calculated by bundleCFG, |
| 94 | // but the exact mapping of FP registers to stack slots is fixed later. |
| 95 | struct LiveBundle { |
| 96 | // Bit mask of live FP registers. Bit 0 = FP0, bit 1 = FP1, &c. |
| 97 | unsigned Mask; |
| 98 | |
| 99 | // Number of pre-assigned live registers in FixStack. This is 0 when the |
| 100 | // stack order has not yet been fixed. |
| 101 | unsigned FixCount; |
| 102 | |
| 103 | // Assigned stack order for live-in registers. |
| 104 | // FixStack[i] == getStackEntry(i) for all i < FixCount. |
| 105 | unsigned char FixStack[8]; |
| 106 | |
Jakob Stoklund Olesen | 01d4d86 | 2011-01-04 21:10:11 +0000 | [diff] [blame] | 107 | LiveBundle() : Mask(0), FixCount(0) {} |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 108 | |
| 109 | // Have the live registers been assigned a stack order yet? |
| 110 | bool isFixed() const { return !Mask || FixCount; } |
| 111 | }; |
| 112 | |
| 113 | // Numbered LiveBundle structs. LiveBundles[0] is used for all CFG edges |
| 114 | // with no live FP registers. |
| 115 | SmallVector<LiveBundle, 8> LiveBundles; |
| 116 | |
Jakob Stoklund Olesen | 01d4d86 | 2011-01-04 21:10:11 +0000 | [diff] [blame] | 117 | // The edge bundle analysis provides indices into the LiveBundles vector. |
| 118 | EdgeBundles *Bundles; |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 119 | |
| 120 | // Return a bitmask of FP registers in block's live-in list. |
Jakub Staszak | 59deec0 | 2012-11-21 00:59:34 +0000 | [diff] [blame] | 121 | static unsigned calcLiveInMask(MachineBasicBlock *MBB) { |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 122 | unsigned Mask = 0; |
Matthias Braun | d9da162 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 123 | for (const auto &LI : MBB->liveins()) { |
| 124 | if (LI.PhysReg < X86::FP0 || LI.PhysReg > X86::FP6) |
Chad Rosier | ee740c4 | 2013-06-28 18:57:01 +0000 | [diff] [blame] | 125 | continue; |
Matthias Braun | d9da162 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 126 | Mask |= 1 << (LI.PhysReg - X86::FP0); |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 127 | } |
| 128 | return Mask; |
| 129 | } |
| 130 | |
| 131 | // Partition all the CFG edges into LiveBundles. |
| 132 | void bundleCFG(MachineFunction &MF); |
| 133 | |
Evan Cheng | 845bd6e | 2006-12-01 10:11:51 +0000 | [diff] [blame] | 134 | MachineBasicBlock *MBB; // Current basic block |
Jakob Stoklund Olesen | ff653a2 | 2011-06-27 04:08:36 +0000 | [diff] [blame] | 135 | |
| 136 | // The hardware keeps track of how many FP registers are live, so we have |
| 137 | // to model that exactly. Usually, each live register corresponds to an |
| 138 | // FP<n> register, but when dealing with calls, returns, and inline |
Benjamin Kramer | bde9176 | 2012-06-02 10:20:22 +0000 | [diff] [blame] | 139 | // assembly, it is sometimes necessary to have live scratch registers. |
Evan Cheng | 845bd6e | 2006-12-01 10:11:51 +0000 | [diff] [blame] | 140 | unsigned Stack[8]; // FP<n> Registers in each stack slot... |
Evan Cheng | 845bd6e | 2006-12-01 10:11:51 +0000 | [diff] [blame] | 141 | unsigned StackTop; // The current top of the FP stack. |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 142 | |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 143 | enum { |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 144 | NumFPRegs = 8 // Including scratch pseudo-registers. |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 145 | }; |
| 146 | |
Jakob Stoklund Olesen | ff653a2 | 2011-06-27 04:08:36 +0000 | [diff] [blame] | 147 | // For each live FP<n> register, point to its Stack[] entry. |
| 148 | // The first entries correspond to FP0-FP6, the rest are scratch registers |
| 149 | // used when we need slightly different live registers than what the |
| 150 | // register allocator thinks. |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 151 | unsigned RegMap[NumFPRegs]; |
| 152 | |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 153 | // Set up our stack model to match the incoming registers to MBB. |
| 154 | void setupBlockStack(); |
| 155 | |
| 156 | // Shuffle live registers to match the expectations of successor blocks. |
| 157 | void finishBlockStack(); |
| 158 | |
Manman Ren | 19f49ac | 2012-09-11 22:23:19 +0000 | [diff] [blame] | 159 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 160 | void dumpStack() const { |
David Greene | d85fd00 | 2010-01-05 01:29:34 +0000 | [diff] [blame] | 161 | dbgs() << "Stack contents:"; |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 162 | for (unsigned i = 0; i != StackTop; ++i) { |
David Greene | d85fd00 | 2010-01-05 01:29:34 +0000 | [diff] [blame] | 163 | dbgs() << " FP" << Stack[i]; |
Misha Brukman | c88330a | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 164 | assert(RegMap[Stack[i]] == i && "Stack[] doesn't match RegMap[]!"); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 165 | } |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 166 | } |
Manman Ren | 742534c | 2012-09-06 19:06:06 +0000 | [diff] [blame] | 167 | #endif |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 168 | |
Chris Lattner | 8f440bb | 2010-07-17 17:40:51 +0000 | [diff] [blame] | 169 | /// getSlot - Return the stack slot number a particular register number is |
| 170 | /// in. |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 171 | unsigned getSlot(unsigned RegNo) const { |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 172 | assert(RegNo < NumFPRegs && "Regno out of range!"); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 173 | return RegMap[RegNo]; |
| 174 | } |
| 175 | |
Chris Lattner | 8f440bb | 2010-07-17 17:40:51 +0000 | [diff] [blame] | 176 | /// isLive - Is RegNo currently live in the stack? |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 177 | bool isLive(unsigned RegNo) const { |
| 178 | unsigned Slot = getSlot(RegNo); |
| 179 | return Slot < StackTop && Stack[Slot] == RegNo; |
| 180 | } |
| 181 | |
Chris Lattner | 8f440bb | 2010-07-17 17:40:51 +0000 | [diff] [blame] | 182 | /// getStackEntry - Return the X86::FP<n> register in register ST(i). |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 183 | unsigned getStackEntry(unsigned STi) const { |
Evan Cheng | d565b44 | 2010-10-12 23:19:28 +0000 | [diff] [blame] | 184 | if (STi >= StackTop) |
| 185 | report_fatal_error("Access past stack top!"); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 186 | return Stack[StackTop-1-STi]; |
| 187 | } |
| 188 | |
Chris Lattner | 8f440bb | 2010-07-17 17:40:51 +0000 | [diff] [blame] | 189 | /// getSTReg - Return the X86::ST(i) register which contains the specified |
| 190 | /// FP<RegNo> register. |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 191 | unsigned getSTReg(unsigned RegNo) const { |
Craig Topper | f6e7e12 | 2012-03-27 07:21:54 +0000 | [diff] [blame] | 192 | return StackTop - 1 - getSlot(RegNo) + X86::ST0; |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 193 | } |
| 194 | |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 195 | // pushReg - Push the specified FP<n> register onto the stack. |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 196 | void pushReg(unsigned Reg) { |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 197 | assert(Reg < NumFPRegs && "Register number out of range!"); |
Evan Cheng | d565b44 | 2010-10-12 23:19:28 +0000 | [diff] [blame] | 198 | if (StackTop >= 8) |
| 199 | report_fatal_error("Stack overflow!"); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 200 | Stack[StackTop] = Reg; |
| 201 | RegMap[Reg] = StackTop++; |
| 202 | } |
| 203 | |
| 204 | bool isAtTop(unsigned RegNo) const { return getSlot(RegNo) == StackTop-1; } |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 205 | void moveToTop(unsigned RegNo, MachineBasicBlock::iterator I) { |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 206 | DebugLoc dl = I == MBB->end() ? DebugLoc() : I->getDebugLoc(); |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 207 | if (isAtTop(RegNo)) return; |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 208 | |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 209 | unsigned STReg = getSTReg(RegNo); |
| 210 | unsigned RegOnTop = getStackEntry(0); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 211 | |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 212 | // Swap the slots the regs are in. |
| 213 | std::swap(RegMap[RegNo], RegMap[RegOnTop]); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 214 | |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 215 | // Swap stack slot contents. |
Evan Cheng | d565b44 | 2010-10-12 23:19:28 +0000 | [diff] [blame] | 216 | if (RegMap[RegOnTop] >= StackTop) |
| 217 | report_fatal_error("Access past stack top!"); |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 218 | std::swap(Stack[RegMap[RegOnTop]], Stack[StackTop-1]); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 219 | |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 220 | // Emit an fxch to update the runtime processors version of the state. |
Dale Johannesen | 9bba902 | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 221 | BuildMI(*MBB, I, dl, TII->get(X86::XCH_F)).addReg(STReg); |
Dan Gohman | d2d1ae1 | 2010-06-22 15:08:57 +0000 | [diff] [blame] | 222 | ++NumFXCH; |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 223 | } |
| 224 | |
Chris Lattner | bc7e35b | 2004-04-01 04:06:09 +0000 | [diff] [blame] | 225 | void duplicateToTop(unsigned RegNo, unsigned AsReg, MachineInstr *I) { |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 226 | DebugLoc dl = I == MBB->end() ? DebugLoc() : I->getDebugLoc(); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 227 | unsigned STReg = getSTReg(RegNo); |
| 228 | pushReg(AsReg); // New register on top of stack |
| 229 | |
Dale Johannesen | 9bba902 | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 230 | BuildMI(*MBB, I, dl, TII->get(X86::LD_Frr)).addReg(STReg); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 231 | } |
| 232 | |
Chris Lattner | 8f440bb | 2010-07-17 17:40:51 +0000 | [diff] [blame] | 233 | /// popStackAfter - Pop the current value off of the top of the FP stack |
| 234 | /// after the specified instruction. |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 235 | void popStackAfter(MachineBasicBlock::iterator &I); |
| 236 | |
Chris Lattner | 8f440bb | 2010-07-17 17:40:51 +0000 | [diff] [blame] | 237 | /// freeStackSlotAfter - Free the specified register from the register |
| 238 | /// stack, so that it is no longer in a register. If the register is |
| 239 | /// currently at the top of the stack, we just pop the current instruction, |
| 240 | /// otherwise we store the current top-of-stack into the specified slot, |
| 241 | /// then pop the top of stack. |
Chris Lattner | bc7e35b | 2004-04-01 04:06:09 +0000 | [diff] [blame] | 242 | void freeStackSlotAfter(MachineBasicBlock::iterator &I, unsigned Reg); |
| 243 | |
Chris Lattner | 8f440bb | 2010-07-17 17:40:51 +0000 | [diff] [blame] | 244 | /// freeStackSlotBefore - Just the pop, no folding. Return the inserted |
| 245 | /// instruction. |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 246 | MachineBasicBlock::iterator |
| 247 | freeStackSlotBefore(MachineBasicBlock::iterator I, unsigned FPRegNo); |
| 248 | |
Chris Lattner | 8f440bb | 2010-07-17 17:40:51 +0000 | [diff] [blame] | 249 | /// Adjust the live registers to be the set in Mask. |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 250 | void adjustLiveRegs(unsigned Mask, MachineBasicBlock::iterator I); |
| 251 | |
Jakob Stoklund Olesen | ff653a2 | 2011-06-27 04:08:36 +0000 | [diff] [blame] | 252 | /// Shuffle the top FixCount stack entries such that FP reg FixStack[0] is |
Chris Lattner | 8f440bb | 2010-07-17 17:40:51 +0000 | [diff] [blame] | 253 | /// st(0), FP reg FixStack[1] is st(1) etc. |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 254 | void shuffleStackTop(const unsigned char *FixStack, unsigned FixCount, |
| 255 | MachineBasicBlock::iterator I); |
| 256 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 257 | bool processBasicBlock(MachineFunction &MF, MachineBasicBlock &MBB); |
| 258 | |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 259 | void handleCall(MachineBasicBlock::iterator &I); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 260 | void handleZeroArgFP(MachineBasicBlock::iterator &I); |
| 261 | void handleOneArgFP(MachineBasicBlock::iterator &I); |
Chris Lattner | 7af8ad6 | 2004-02-02 19:23:15 +0000 | [diff] [blame] | 262 | void handleOneArgFPRW(MachineBasicBlock::iterator &I); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 263 | void handleTwoArgFP(MachineBasicBlock::iterator &I); |
Chris Lattner | 94ff2c3 | 2004-06-11 04:25:06 +0000 | [diff] [blame] | 264 | void handleCompareFP(MachineBasicBlock::iterator &I); |
Chris Lattner | c07c958 | 2004-03-31 22:02:36 +0000 | [diff] [blame] | 265 | void handleCondMovFP(MachineBasicBlock::iterator &I); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 266 | void handleSpecialFP(MachineBasicBlock::iterator &I); |
Jakob Stoklund Olesen | 63a622b | 2010-07-08 19:46:30 +0000 | [diff] [blame] | 267 | |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 268 | // Check if a COPY instruction is using FP registers. |
Jakub Staszak | 6f58ce1 | 2012-11-21 00:50:57 +0000 | [diff] [blame] | 269 | static bool isFPCopy(MachineInstr *MI) { |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 270 | unsigned DstReg = MI->getOperand(0).getReg(); |
| 271 | unsigned SrcReg = MI->getOperand(1).getReg(); |
| 272 | |
| 273 | return X86::RFP80RegClass.contains(DstReg) || |
| 274 | X86::RFP80RegClass.contains(SrcReg); |
| 275 | } |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 276 | |
| 277 | void setKillFlags(MachineBasicBlock &MBB) const; |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 278 | }; |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 279 | char FPS::ID = 0; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 280 | } |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 281 | |
Chris Lattner | d46cd68 | 2003-12-20 09:58:55 +0000 | [diff] [blame] | 282 | FunctionPass *llvm::createX86FloatingPointStackifierPass() { return new FPS(); } |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 283 | |
Chris Lattner | 3c43efc | 2008-01-14 06:41:29 +0000 | [diff] [blame] | 284 | /// getFPReg - Return the X86::FPx register number for the specified operand. |
| 285 | /// For example, this returns 3 for X86::FP3. |
| 286 | static unsigned getFPReg(const MachineOperand &MO) { |
Dan Gohman | 0d1e9a8 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 287 | assert(MO.isReg() && "Expected an FP register!"); |
Chris Lattner | 3c43efc | 2008-01-14 06:41:29 +0000 | [diff] [blame] | 288 | unsigned Reg = MO.getReg(); |
| 289 | assert(Reg >= X86::FP0 && Reg <= X86::FP6 && "Expected FP register!"); |
| 290 | return Reg - X86::FP0; |
| 291 | } |
| 292 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 293 | /// runOnMachineFunction - Loop over all of the basic blocks, transforming FP |
| 294 | /// register references into FP stack references. |
| 295 | /// |
| 296 | bool FPS::runOnMachineFunction(MachineFunction &MF) { |
Chris Lattner | debae1e | 2005-01-23 23:13:59 +0000 | [diff] [blame] | 297 | // We only need to run this pass if there are any FP registers used in this |
| 298 | // function. If it is all integer, there is nothing for us to do! |
Chris Lattner | debae1e | 2005-01-23 23:13:59 +0000 | [diff] [blame] | 299 | bool FPIsUsed = false; |
| 300 | |
Gabor Horvath | fee0434 | 2015-03-16 09:53:42 +0000 | [diff] [blame] | 301 | static_assert(X86::FP6 == X86::FP0+6, "Register enums aren't sorted right!"); |
Matthias Braun | 9912bb8 | 2015-07-14 17:52:07 +0000 | [diff] [blame] | 302 | const MachineRegisterInfo &MRI = MF.getRegInfo(); |
Chris Lattner | debae1e | 2005-01-23 23:13:59 +0000 | [diff] [blame] | 303 | for (unsigned i = 0; i <= 6; ++i) |
Matthias Braun | 9912bb8 | 2015-07-14 17:52:07 +0000 | [diff] [blame] | 304 | if (!MRI.reg_nodbg_empty(X86::FP0 + i)) { |
Chris Lattner | debae1e | 2005-01-23 23:13:59 +0000 | [diff] [blame] | 305 | FPIsUsed = true; |
| 306 | break; |
| 307 | } |
| 308 | |
| 309 | // Early exit. |
| 310 | if (!FPIsUsed) return false; |
| 311 | |
Jakob Stoklund Olesen | 01d4d86 | 2011-01-04 21:10:11 +0000 | [diff] [blame] | 312 | Bundles = &getAnalysis<EdgeBundles>(); |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 313 | TII = MF.getSubtarget().getInstrInfo(); |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 314 | |
| 315 | // Prepare cross-MBB liveness. |
| 316 | bundleCFG(MF); |
| 317 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 318 | StackTop = 0; |
| 319 | |
Chris Lattner | 1129027 | 2004-01-30 22:25:18 +0000 | [diff] [blame] | 320 | // Process the function in depth first order so that we process at least one |
| 321 | // of the predecessors for every reachable block in the function. |
Owen Anderson | 1b351d4 | 2008-08-14 21:01:00 +0000 | [diff] [blame] | 322 | SmallPtrSet<MachineBasicBlock*, 8> Processed; |
Chris Lattner | acbf0c8 | 2004-05-01 21:27:53 +0000 | [diff] [blame] | 323 | MachineBasicBlock *Entry = MF.begin(); |
Chris Lattner | 1129027 | 2004-01-30 22:25:18 +0000 | [diff] [blame] | 324 | |
| 325 | bool Changed = false; |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 326 | for (MachineBasicBlock *BB : depth_first_ext(Entry, Processed)) |
| 327 | Changed |= processBasicBlock(MF, *BB); |
Chris Lattner | 1129027 | 2004-01-30 22:25:18 +0000 | [diff] [blame] | 328 | |
Chris Lattner | b2fcd07 | 2009-09-08 04:55:44 +0000 | [diff] [blame] | 329 | // Process any unreachable blocks in arbitrary order now. |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 330 | if (MF.size() != Processed.size()) |
| 331 | for (MachineFunction::iterator BB = MF.begin(), E = MF.end(); BB != E; ++BB) |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 332 | if (Processed.insert(BB).second) |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 333 | Changed |= processBasicBlock(MF, *BB); |
Chris Lattner | b2fcd07 | 2009-09-08 04:55:44 +0000 | [diff] [blame] | 334 | |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 335 | LiveBundles.clear(); |
| 336 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 337 | return Changed; |
| 338 | } |
| 339 | |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 340 | /// bundleCFG - Scan all the basic blocks to determine consistent live-in and |
| 341 | /// live-out sets for the FP registers. Consistent means that the set of |
| 342 | /// registers live-out from a block is identical to the live-in set of all |
| 343 | /// successors. This is not enforced by the normal live-in lists since |
| 344 | /// registers may be implicitly defined, or not used by all successors. |
| 345 | void FPS::bundleCFG(MachineFunction &MF) { |
| 346 | assert(LiveBundles.empty() && "Stale data in LiveBundles"); |
Jakob Stoklund Olesen | 01d4d86 | 2011-01-04 21:10:11 +0000 | [diff] [blame] | 347 | LiveBundles.resize(Bundles->getNumBundles()); |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 348 | |
Jakob Stoklund Olesen | 01d4d86 | 2011-01-04 21:10:11 +0000 | [diff] [blame] | 349 | // Gather the actual live-in masks for all MBBs. |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 350 | for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I) { |
| 351 | MachineBasicBlock *MBB = I; |
| 352 | const unsigned Mask = calcLiveInMask(MBB); |
| 353 | if (!Mask) |
| 354 | continue; |
Jakob Stoklund Olesen | 01d4d86 | 2011-01-04 21:10:11 +0000 | [diff] [blame] | 355 | // Update MBB ingoing bundle mask. |
| 356 | LiveBundles[Bundles->getBundle(MBB->getNumber(), false)].Mask |= Mask; |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 357 | } |
| 358 | } |
| 359 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 360 | /// processBasicBlock - Loop over all of the instructions in the basic block, |
| 361 | /// transforming FP instructions into their stack form. |
| 362 | /// |
| 363 | bool FPS::processBasicBlock(MachineFunction &MF, MachineBasicBlock &BB) { |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 364 | bool Changed = false; |
| 365 | MBB = &BB; |
Misha Brukman | c88330a | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 366 | |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 367 | setKillFlags(BB); |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 368 | setupBlockStack(); |
| 369 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 370 | for (MachineBasicBlock::iterator I = BB.begin(); I != BB.end(); ++I) { |
Alkis Evlogimenos | 80da865 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 371 | MachineInstr *MI = I; |
Bruno Cardoso Lopes | c2f87b7 | 2010-06-08 22:51:23 +0000 | [diff] [blame] | 372 | uint64_t Flags = MI->getDesc().TSFlags; |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 373 | |
Chris Lattner | 8abed80 | 2008-03-11 19:50:13 +0000 | [diff] [blame] | 374 | unsigned FPInstClass = Flags & X86II::FPTypeMask; |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 375 | if (MI->isInlineAsm()) |
Chris Lattner | 8abed80 | 2008-03-11 19:50:13 +0000 | [diff] [blame] | 376 | FPInstClass = X86II::SpecialFP; |
Jakob Stoklund Olesen | 63a622b | 2010-07-08 19:46:30 +0000 | [diff] [blame] | 377 | |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 378 | if (MI->isCopy() && isFPCopy(MI)) |
Jakob Stoklund Olesen | 63a622b | 2010-07-08 19:46:30 +0000 | [diff] [blame] | 379 | FPInstClass = X86II::SpecialFP; |
| 380 | |
Jakob Stoklund Olesen | da61842 | 2011-08-03 16:33:19 +0000 | [diff] [blame] | 381 | if (MI->isImplicitDef() && |
| 382 | X86::RFP80RegClass.contains(MI->getOperand(0).getReg())) |
| 383 | FPInstClass = X86II::SpecialFP; |
| 384 | |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 385 | if (MI->isCall()) |
| 386 | FPInstClass = X86II::SpecialFP; |
| 387 | |
Chris Lattner | 8abed80 | 2008-03-11 19:50:13 +0000 | [diff] [blame] | 388 | if (FPInstClass == X86II::NotFP) |
Chris Lattner | 1129027 | 2004-01-30 22:25:18 +0000 | [diff] [blame] | 389 | continue; // Efficiently ignore non-fp insts! |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 390 | |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 391 | MachineInstr *PrevMI = nullptr; |
Alkis Evlogimenos | 5a92240 | 2004-02-14 01:18:34 +0000 | [diff] [blame] | 392 | if (I != BB.begin()) |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 393 | PrevMI = std::prev(I); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 394 | |
| 395 | ++NumFP; // Keep track of # of pseudo instrs |
David Greene | d85fd00 | 2010-01-05 01:29:34 +0000 | [diff] [blame] | 396 | DEBUG(dbgs() << "\nFPInst:\t" << *MI); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 397 | |
| 398 | // Get dead variables list now because the MI pointer may be deleted as part |
| 399 | // of processing! |
Evan Cheng | bbbcac3 | 2006-11-15 20:56:39 +0000 | [diff] [blame] | 400 | SmallVector<unsigned, 8> DeadRegs; |
| 401 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 402 | const MachineOperand &MO = MI->getOperand(i); |
Dan Gohman | 0d1e9a8 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 403 | if (MO.isReg() && MO.isDead()) |
Evan Cheng | bbbcac3 | 2006-11-15 20:56:39 +0000 | [diff] [blame] | 404 | DeadRegs.push_back(MO.getReg()); |
| 405 | } |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 406 | |
Chris Lattner | 8abed80 | 2008-03-11 19:50:13 +0000 | [diff] [blame] | 407 | switch (FPInstClass) { |
Chris Lattner | 7af8ad6 | 2004-02-02 19:23:15 +0000 | [diff] [blame] | 408 | case X86II::ZeroArgFP: handleZeroArgFP(I); break; |
Chris Lattner | c07c958 | 2004-03-31 22:02:36 +0000 | [diff] [blame] | 409 | case X86II::OneArgFP: handleOneArgFP(I); break; // fstp ST(0) |
Chris Lattner | 7af8ad6 | 2004-02-02 19:23:15 +0000 | [diff] [blame] | 410 | case X86II::OneArgFPRW: handleOneArgFPRW(I); break; // ST(0) = fsqrt(ST(0)) |
Evan Cheng | db04c95 | 2006-11-11 10:21:44 +0000 | [diff] [blame] | 411 | case X86II::TwoArgFP: handleTwoArgFP(I); break; |
Chris Lattner | 0876edf | 2004-06-11 04:41:24 +0000 | [diff] [blame] | 412 | case X86II::CompareFP: handleCompareFP(I); break; |
Chris Lattner | c07c958 | 2004-03-31 22:02:36 +0000 | [diff] [blame] | 413 | case X86II::CondMovFP: handleCondMovFP(I); break; |
Chris Lattner | 7af8ad6 | 2004-02-02 19:23:15 +0000 | [diff] [blame] | 414 | case X86II::SpecialFP: handleSpecialFP(I); break; |
Torok Edwin | fbcc663 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 415 | default: llvm_unreachable("Unknown FP Type!"); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 416 | } |
| 417 | |
| 418 | // Check to see if any of the values defined by this instruction are dead |
| 419 | // after definition. If so, pop them. |
Evan Cheng | bbbcac3 | 2006-11-15 20:56:39 +0000 | [diff] [blame] | 420 | for (unsigned i = 0, e = DeadRegs.size(); i != e; ++i) { |
| 421 | unsigned Reg = DeadRegs[i]; |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 422 | // Check if Reg is live on the stack. An inline-asm register operand that |
| 423 | // is in the clobber list and marked dead might not be live on the stack. |
| 424 | if (Reg >= X86::FP0 && Reg <= X86::FP6 && isLive(Reg-X86::FP0)) { |
David Greene | d85fd00 | 2010-01-05 01:29:34 +0000 | [diff] [blame] | 425 | DEBUG(dbgs() << "Register FP#" << Reg-X86::FP0 << " is dead!\n"); |
Chris Lattner | 94ff2c3 | 2004-06-11 04:25:06 +0000 | [diff] [blame] | 426 | freeStackSlotAfter(I, Reg-X86::FP0); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 427 | } |
| 428 | } |
Misha Brukman | c88330a | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 429 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 430 | // Print out all of the instructions expanded to if -debug |
Alkis Evlogimenos | 636e19d | 2004-02-15 00:46:41 +0000 | [diff] [blame] | 431 | DEBUG( |
| 432 | MachineBasicBlock::iterator PrevI(PrevMI); |
| 433 | if (I == PrevI) { |
David Greene | d85fd00 | 2010-01-05 01:29:34 +0000 | [diff] [blame] | 434 | dbgs() << "Just deleted pseudo instruction\n"; |
Alkis Evlogimenos | 636e19d | 2004-02-15 00:46:41 +0000 | [diff] [blame] | 435 | } else { |
| 436 | MachineBasicBlock::iterator Start = I; |
| 437 | // Rewind to first instruction newly inserted. |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 438 | while (Start != BB.begin() && std::prev(Start) != PrevI) --Start; |
David Greene | d85fd00 | 2010-01-05 01:29:34 +0000 | [diff] [blame] | 439 | dbgs() << "Inserted instructions:\n\t"; |
Eric Christopher | 1cdefae | 2015-02-27 00:11:34 +0000 | [diff] [blame] | 440 | Start->print(dbgs()); |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 441 | while (++Start != std::next(I)) {} |
Alkis Evlogimenos | 636e19d | 2004-02-15 00:46:41 +0000 | [diff] [blame] | 442 | } |
| 443 | dumpStack(); |
| 444 | ); |
Duncan Sands | a41634e | 2011-08-12 14:54:45 +0000 | [diff] [blame] | 445 | (void)PrevMI; |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 446 | |
| 447 | Changed = true; |
| 448 | } |
| 449 | |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 450 | finishBlockStack(); |
| 451 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 452 | return Changed; |
| 453 | } |
| 454 | |
Jakob Stoklund Olesen | 01d4d86 | 2011-01-04 21:10:11 +0000 | [diff] [blame] | 455 | /// setupBlockStack - Use the live bundles to set up our model of the stack |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 456 | /// to match predecessors' live out stack. |
| 457 | void FPS::setupBlockStack() { |
| 458 | DEBUG(dbgs() << "\nSetting up live-ins for BB#" << MBB->getNumber() |
| 459 | << " derived from " << MBB->getName() << ".\n"); |
| 460 | StackTop = 0; |
Jakob Stoklund Olesen | 01d4d86 | 2011-01-04 21:10:11 +0000 | [diff] [blame] | 461 | // Get the live-in bundle for MBB. |
| 462 | const LiveBundle &Bundle = |
| 463 | LiveBundles[Bundles->getBundle(MBB->getNumber(), false)]; |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 464 | |
| 465 | if (!Bundle.Mask) { |
| 466 | DEBUG(dbgs() << "Block has no FP live-ins.\n"); |
| 467 | return; |
| 468 | } |
| 469 | |
| 470 | // Depth-first iteration should ensure that we always have an assigned stack. |
| 471 | assert(Bundle.isFixed() && "Reached block before any predecessors"); |
| 472 | |
| 473 | // Push the fixed live-in registers. |
| 474 | for (unsigned i = Bundle.FixCount; i > 0; --i) { |
| 475 | MBB->addLiveIn(X86::ST0+i-1); |
| 476 | DEBUG(dbgs() << "Live-in st(" << (i-1) << "): %FP" |
| 477 | << unsigned(Bundle.FixStack[i-1]) << '\n'); |
| 478 | pushReg(Bundle.FixStack[i-1]); |
| 479 | } |
| 480 | |
| 481 | // Kill off unwanted live-ins. This can happen with a critical edge. |
| 482 | // FIXME: We could keep these live registers around as zombies. They may need |
| 483 | // to be revived at the end of a short block. It might save a few instrs. |
| 484 | adjustLiveRegs(calcLiveInMask(MBB), MBB->begin()); |
| 485 | DEBUG(MBB->dump()); |
| 486 | } |
| 487 | |
| 488 | /// finishBlockStack - Revive live-outs that are implicitly defined out of |
| 489 | /// MBB. Shuffle live registers to match the expected fixed stack of any |
| 490 | /// predecessors, and ensure that all predecessors are expecting the same |
| 491 | /// stack. |
| 492 | void FPS::finishBlockStack() { |
| 493 | // The RET handling below takes care of return blocks for us. |
| 494 | if (MBB->succ_empty()) |
| 495 | return; |
| 496 | |
| 497 | DEBUG(dbgs() << "Setting up live-outs for BB#" << MBB->getNumber() |
| 498 | << " derived from " << MBB->getName() << ".\n"); |
| 499 | |
Jakob Stoklund Olesen | 01d4d86 | 2011-01-04 21:10:11 +0000 | [diff] [blame] | 500 | // Get MBB's live-out bundle. |
| 501 | unsigned BundleIdx = Bundles->getBundle(MBB->getNumber(), true); |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 502 | LiveBundle &Bundle = LiveBundles[BundleIdx]; |
| 503 | |
| 504 | // We may need to kill and define some registers to match successors. |
| 505 | // FIXME: This can probably be combined with the shuffle below. |
| 506 | MachineBasicBlock::iterator Term = MBB->getFirstTerminator(); |
| 507 | adjustLiveRegs(Bundle.Mask, Term); |
| 508 | |
| 509 | if (!Bundle.Mask) { |
| 510 | DEBUG(dbgs() << "No live-outs.\n"); |
| 511 | return; |
| 512 | } |
| 513 | |
| 514 | // Has the stack order been fixed yet? |
| 515 | DEBUG(dbgs() << "LB#" << BundleIdx << ": "); |
| 516 | if (Bundle.isFixed()) { |
| 517 | DEBUG(dbgs() << "Shuffling stack to match.\n"); |
| 518 | shuffleStackTop(Bundle.FixStack, Bundle.FixCount, Term); |
| 519 | } else { |
| 520 | // Not fixed yet, we get to choose. |
| 521 | DEBUG(dbgs() << "Fixing stack order now.\n"); |
| 522 | Bundle.FixCount = StackTop; |
| 523 | for (unsigned i = 0; i < StackTop; ++i) |
| 524 | Bundle.FixStack[i] = getStackEntry(i); |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 529 | //===----------------------------------------------------------------------===// |
| 530 | // Efficient Lookup Table Support |
| 531 | //===----------------------------------------------------------------------===// |
| 532 | |
Chris Lattner | d46cd68 | 2003-12-20 09:58:55 +0000 | [diff] [blame] | 533 | namespace { |
| 534 | struct TableEntry { |
Craig Topper | 2dac962 | 2012-03-09 07:45:21 +0000 | [diff] [blame] | 535 | uint16_t from; |
| 536 | uint16_t to; |
Chris Lattner | d46cd68 | 2003-12-20 09:58:55 +0000 | [diff] [blame] | 537 | bool operator<(const TableEntry &TE) const { return from < TE.from; } |
Jeff Cohen | 15a8c15 | 2006-01-26 20:41:32 +0000 | [diff] [blame] | 538 | friend bool operator<(const TableEntry &TE, unsigned V) { |
| 539 | return TE.from < V; |
| 540 | } |
Benjamin Kramer | 0d874f7 | 2012-09-17 16:46:22 +0000 | [diff] [blame] | 541 | friend bool LLVM_ATTRIBUTE_UNUSED operator<(unsigned V, |
| 542 | const TableEntry &TE) { |
Jakob Stoklund Olesen | 2cd0073 | 2010-08-16 18:24:54 +0000 | [diff] [blame] | 543 | return V < TE.from; |
| 544 | } |
Chris Lattner | d46cd68 | 2003-12-20 09:58:55 +0000 | [diff] [blame] | 545 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 546 | } |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 547 | |
Evan Cheng | fa374ca | 2008-07-21 20:02:45 +0000 | [diff] [blame] | 548 | #ifndef NDEBUG |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 549 | static bool TableIsSorted(const TableEntry *Table, unsigned NumEntries) { |
| 550 | for (unsigned i = 0; i != NumEntries-1; ++i) |
| 551 | if (!(Table[i] < Table[i+1])) return false; |
| 552 | return true; |
| 553 | } |
Evan Cheng | fa374ca | 2008-07-21 20:02:45 +0000 | [diff] [blame] | 554 | #endif |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 555 | |
| 556 | static int Lookup(const TableEntry *Table, unsigned N, unsigned Opcode) { |
| 557 | const TableEntry *I = std::lower_bound(Table, Table+N, Opcode); |
| 558 | if (I != Table+N && I->from == Opcode) |
| 559 | return I->to; |
| 560 | return -1; |
| 561 | } |
| 562 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 563 | #ifdef NDEBUG |
| 564 | #define ASSERT_SORTED(TABLE) |
| 565 | #else |
| 566 | #define ASSERT_SORTED(TABLE) \ |
| 567 | { static bool TABLE##Checked = false; \ |
Jim Laskey | 181fb1c | 2006-07-19 19:33:08 +0000 | [diff] [blame] | 568 | if (!TABLE##Checked) { \ |
Owen Anderson | e2f23a3 | 2007-09-07 04:06:50 +0000 | [diff] [blame] | 569 | assert(TableIsSorted(TABLE, array_lengthof(TABLE)) && \ |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 570 | "All lookup tables must be sorted for efficient access!"); \ |
Jim Laskey | 181fb1c | 2006-07-19 19:33:08 +0000 | [diff] [blame] | 571 | TABLE##Checked = true; \ |
| 572 | } \ |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 573 | } |
| 574 | #endif |
| 575 | |
Chris Lattner | f431ad4 | 2005-12-21 07:47:04 +0000 | [diff] [blame] | 576 | //===----------------------------------------------------------------------===// |
| 577 | // Register File -> Register Stack Mapping Methods |
| 578 | //===----------------------------------------------------------------------===// |
| 579 | |
| 580 | // OpcodeTable - Sorted map of register instructions to their stack version. |
| 581 | // The first element is an register file pseudo instruction, the second is the |
| 582 | // concrete X86 instruction which uses the register stack. |
| 583 | // |
| 584 | static const TableEntry OpcodeTable[] = { |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 585 | { X86::ABS_Fp32 , X86::ABS_F }, |
| 586 | { X86::ABS_Fp64 , X86::ABS_F }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 587 | { X86::ABS_Fp80 , X86::ABS_F }, |
Dale Johannesen | 68471d2 | 2007-07-10 21:53:30 +0000 | [diff] [blame] | 588 | { X86::ADD_Fp32m , X86::ADD_F32m }, |
| 589 | { X86::ADD_Fp64m , X86::ADD_F64m }, |
| 590 | { X86::ADD_Fp64m32 , X86::ADD_F32m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 591 | { X86::ADD_Fp80m32 , X86::ADD_F32m }, |
| 592 | { X86::ADD_Fp80m64 , X86::ADD_F64m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 593 | { X86::ADD_FpI16m32 , X86::ADD_FI16m }, |
| 594 | { X86::ADD_FpI16m64 , X86::ADD_FI16m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 595 | { X86::ADD_FpI16m80 , X86::ADD_FI16m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 596 | { X86::ADD_FpI32m32 , X86::ADD_FI32m }, |
| 597 | { X86::ADD_FpI32m64 , X86::ADD_FI32m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 598 | { X86::ADD_FpI32m80 , X86::ADD_FI32m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 599 | { X86::CHS_Fp32 , X86::CHS_F }, |
| 600 | { X86::CHS_Fp64 , X86::CHS_F }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 601 | { X86::CHS_Fp80 , X86::CHS_F }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 602 | { X86::CMOVBE_Fp32 , X86::CMOVBE_F }, |
| 603 | { X86::CMOVBE_Fp64 , X86::CMOVBE_F }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 604 | { X86::CMOVBE_Fp80 , X86::CMOVBE_F }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 605 | { X86::CMOVB_Fp32 , X86::CMOVB_F }, |
| 606 | { X86::CMOVB_Fp64 , X86::CMOVB_F }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 607 | { X86::CMOVB_Fp80 , X86::CMOVB_F }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 608 | { X86::CMOVE_Fp32 , X86::CMOVE_F }, |
| 609 | { X86::CMOVE_Fp64 , X86::CMOVE_F }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 610 | { X86::CMOVE_Fp80 , X86::CMOVE_F }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 611 | { X86::CMOVNBE_Fp32 , X86::CMOVNBE_F }, |
| 612 | { X86::CMOVNBE_Fp64 , X86::CMOVNBE_F }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 613 | { X86::CMOVNBE_Fp80 , X86::CMOVNBE_F }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 614 | { X86::CMOVNB_Fp32 , X86::CMOVNB_F }, |
| 615 | { X86::CMOVNB_Fp64 , X86::CMOVNB_F }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 616 | { X86::CMOVNB_Fp80 , X86::CMOVNB_F }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 617 | { X86::CMOVNE_Fp32 , X86::CMOVNE_F }, |
| 618 | { X86::CMOVNE_Fp64 , X86::CMOVNE_F }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 619 | { X86::CMOVNE_Fp80 , X86::CMOVNE_F }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 620 | { X86::CMOVNP_Fp32 , X86::CMOVNP_F }, |
| 621 | { X86::CMOVNP_Fp64 , X86::CMOVNP_F }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 622 | { X86::CMOVNP_Fp80 , X86::CMOVNP_F }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 623 | { X86::CMOVP_Fp32 , X86::CMOVP_F }, |
| 624 | { X86::CMOVP_Fp64 , X86::CMOVP_F }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 625 | { X86::CMOVP_Fp80 , X86::CMOVP_F }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 626 | { X86::COS_Fp32 , X86::COS_F }, |
| 627 | { X86::COS_Fp64 , X86::COS_F }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 628 | { X86::COS_Fp80 , X86::COS_F }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 629 | { X86::DIVR_Fp32m , X86::DIVR_F32m }, |
| 630 | { X86::DIVR_Fp64m , X86::DIVR_F64m }, |
Dale Johannesen | 68471d2 | 2007-07-10 21:53:30 +0000 | [diff] [blame] | 631 | { X86::DIVR_Fp64m32 , X86::DIVR_F32m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 632 | { X86::DIVR_Fp80m32 , X86::DIVR_F32m }, |
| 633 | { X86::DIVR_Fp80m64 , X86::DIVR_F64m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 634 | { X86::DIVR_FpI16m32, X86::DIVR_FI16m}, |
| 635 | { X86::DIVR_FpI16m64, X86::DIVR_FI16m}, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 636 | { X86::DIVR_FpI16m80, X86::DIVR_FI16m}, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 637 | { X86::DIVR_FpI32m32, X86::DIVR_FI32m}, |
| 638 | { X86::DIVR_FpI32m64, X86::DIVR_FI32m}, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 639 | { X86::DIVR_FpI32m80, X86::DIVR_FI32m}, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 640 | { X86::DIV_Fp32m , X86::DIV_F32m }, |
| 641 | { X86::DIV_Fp64m , X86::DIV_F64m }, |
Dale Johannesen | 68471d2 | 2007-07-10 21:53:30 +0000 | [diff] [blame] | 642 | { X86::DIV_Fp64m32 , X86::DIV_F32m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 643 | { X86::DIV_Fp80m32 , X86::DIV_F32m }, |
| 644 | { X86::DIV_Fp80m64 , X86::DIV_F64m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 645 | { X86::DIV_FpI16m32 , X86::DIV_FI16m }, |
| 646 | { X86::DIV_FpI16m64 , X86::DIV_FI16m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 647 | { X86::DIV_FpI16m80 , X86::DIV_FI16m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 648 | { X86::DIV_FpI32m32 , X86::DIV_FI32m }, |
| 649 | { X86::DIV_FpI32m64 , X86::DIV_FI32m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 650 | { X86::DIV_FpI32m80 , X86::DIV_FI32m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 651 | { X86::ILD_Fp16m32 , X86::ILD_F16m }, |
| 652 | { X86::ILD_Fp16m64 , X86::ILD_F16m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 653 | { X86::ILD_Fp16m80 , X86::ILD_F16m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 654 | { X86::ILD_Fp32m32 , X86::ILD_F32m }, |
| 655 | { X86::ILD_Fp32m64 , X86::ILD_F32m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 656 | { X86::ILD_Fp32m80 , X86::ILD_F32m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 657 | { X86::ILD_Fp64m32 , X86::ILD_F64m }, |
| 658 | { X86::ILD_Fp64m64 , X86::ILD_F64m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 659 | { X86::ILD_Fp64m80 , X86::ILD_F64m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 660 | { X86::ISTT_Fp16m32 , X86::ISTT_FP16m}, |
| 661 | { X86::ISTT_Fp16m64 , X86::ISTT_FP16m}, |
Dale Johannesen | 57c6ac5f | 2007-08-07 01:17:37 +0000 | [diff] [blame] | 662 | { X86::ISTT_Fp16m80 , X86::ISTT_FP16m}, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 663 | { X86::ISTT_Fp32m32 , X86::ISTT_FP32m}, |
| 664 | { X86::ISTT_Fp32m64 , X86::ISTT_FP32m}, |
Dale Johannesen | 57c6ac5f | 2007-08-07 01:17:37 +0000 | [diff] [blame] | 665 | { X86::ISTT_Fp32m80 , X86::ISTT_FP32m}, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 666 | { X86::ISTT_Fp64m32 , X86::ISTT_FP64m}, |
| 667 | { X86::ISTT_Fp64m64 , X86::ISTT_FP64m}, |
Dale Johannesen | 57c6ac5f | 2007-08-07 01:17:37 +0000 | [diff] [blame] | 668 | { X86::ISTT_Fp64m80 , X86::ISTT_FP64m}, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 669 | { X86::IST_Fp16m32 , X86::IST_F16m }, |
| 670 | { X86::IST_Fp16m64 , X86::IST_F16m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 671 | { X86::IST_Fp16m80 , X86::IST_F16m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 672 | { X86::IST_Fp32m32 , X86::IST_F32m }, |
| 673 | { X86::IST_Fp32m64 , X86::IST_F32m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 674 | { X86::IST_Fp32m80 , X86::IST_F32m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 675 | { X86::IST_Fp64m32 , X86::IST_FP64m }, |
| 676 | { X86::IST_Fp64m64 , X86::IST_FP64m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 677 | { X86::IST_Fp64m80 , X86::IST_FP64m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 678 | { X86::LD_Fp032 , X86::LD_F0 }, |
| 679 | { X86::LD_Fp064 , X86::LD_F0 }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 680 | { X86::LD_Fp080 , X86::LD_F0 }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 681 | { X86::LD_Fp132 , X86::LD_F1 }, |
| 682 | { X86::LD_Fp164 , X86::LD_F1 }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 683 | { X86::LD_Fp180 , X86::LD_F1 }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 684 | { X86::LD_Fp32m , X86::LD_F32m }, |
Dale Johannesen | a47f7d7 | 2007-08-07 20:29:26 +0000 | [diff] [blame] | 685 | { X86::LD_Fp32m64 , X86::LD_F32m }, |
| 686 | { X86::LD_Fp32m80 , X86::LD_F32m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 687 | { X86::LD_Fp64m , X86::LD_F64m }, |
Dale Johannesen | a47f7d7 | 2007-08-07 20:29:26 +0000 | [diff] [blame] | 688 | { X86::LD_Fp64m80 , X86::LD_F64m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 689 | { X86::LD_Fp80m , X86::LD_F80m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 690 | { X86::MUL_Fp32m , X86::MUL_F32m }, |
| 691 | { X86::MUL_Fp64m , X86::MUL_F64m }, |
Dale Johannesen | 68471d2 | 2007-07-10 21:53:30 +0000 | [diff] [blame] | 692 | { X86::MUL_Fp64m32 , X86::MUL_F32m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 693 | { X86::MUL_Fp80m32 , X86::MUL_F32m }, |
| 694 | { X86::MUL_Fp80m64 , X86::MUL_F64m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 695 | { X86::MUL_FpI16m32 , X86::MUL_FI16m }, |
| 696 | { X86::MUL_FpI16m64 , X86::MUL_FI16m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 697 | { X86::MUL_FpI16m80 , X86::MUL_FI16m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 698 | { X86::MUL_FpI32m32 , X86::MUL_FI32m }, |
| 699 | { X86::MUL_FpI32m64 , X86::MUL_FI32m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 700 | { X86::MUL_FpI32m80 , X86::MUL_FI32m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 701 | { X86::SIN_Fp32 , X86::SIN_F }, |
| 702 | { X86::SIN_Fp64 , X86::SIN_F }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 703 | { X86::SIN_Fp80 , X86::SIN_F }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 704 | { X86::SQRT_Fp32 , X86::SQRT_F }, |
| 705 | { X86::SQRT_Fp64 , X86::SQRT_F }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 706 | { X86::SQRT_Fp80 , X86::SQRT_F }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 707 | { X86::ST_Fp32m , X86::ST_F32m }, |
| 708 | { X86::ST_Fp64m , X86::ST_F64m }, |
| 709 | { X86::ST_Fp64m32 , X86::ST_F32m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 710 | { X86::ST_Fp80m32 , X86::ST_F32m }, |
| 711 | { X86::ST_Fp80m64 , X86::ST_F64m }, |
| 712 | { X86::ST_FpP80m , X86::ST_FP80m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 713 | { X86::SUBR_Fp32m , X86::SUBR_F32m }, |
| 714 | { X86::SUBR_Fp64m , X86::SUBR_F64m }, |
Dale Johannesen | 68471d2 | 2007-07-10 21:53:30 +0000 | [diff] [blame] | 715 | { X86::SUBR_Fp64m32 , X86::SUBR_F32m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 716 | { X86::SUBR_Fp80m32 , X86::SUBR_F32m }, |
| 717 | { X86::SUBR_Fp80m64 , X86::SUBR_F64m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 718 | { X86::SUBR_FpI16m32, X86::SUBR_FI16m}, |
| 719 | { X86::SUBR_FpI16m64, X86::SUBR_FI16m}, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 720 | { X86::SUBR_FpI16m80, X86::SUBR_FI16m}, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 721 | { X86::SUBR_FpI32m32, X86::SUBR_FI32m}, |
| 722 | { X86::SUBR_FpI32m64, X86::SUBR_FI32m}, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 723 | { X86::SUBR_FpI32m80, X86::SUBR_FI32m}, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 724 | { X86::SUB_Fp32m , X86::SUB_F32m }, |
| 725 | { X86::SUB_Fp64m , X86::SUB_F64m }, |
Dale Johannesen | 68471d2 | 2007-07-10 21:53:30 +0000 | [diff] [blame] | 726 | { X86::SUB_Fp64m32 , X86::SUB_F32m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 727 | { X86::SUB_Fp80m32 , X86::SUB_F32m }, |
| 728 | { X86::SUB_Fp80m64 , X86::SUB_F64m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 729 | { X86::SUB_FpI16m32 , X86::SUB_FI16m }, |
| 730 | { X86::SUB_FpI16m64 , X86::SUB_FI16m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 731 | { X86::SUB_FpI16m80 , X86::SUB_FI16m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 732 | { X86::SUB_FpI32m32 , X86::SUB_FI32m }, |
| 733 | { X86::SUB_FpI32m64 , X86::SUB_FI32m }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 734 | { X86::SUB_FpI32m80 , X86::SUB_FI32m }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 735 | { X86::TST_Fp32 , X86::TST_F }, |
| 736 | { X86::TST_Fp64 , X86::TST_F }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 737 | { X86::TST_Fp80 , X86::TST_F }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 738 | { X86::UCOM_FpIr32 , X86::UCOM_FIr }, |
| 739 | { X86::UCOM_FpIr64 , X86::UCOM_FIr }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 740 | { X86::UCOM_FpIr80 , X86::UCOM_FIr }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 741 | { X86::UCOM_Fpr32 , X86::UCOM_Fr }, |
| 742 | { X86::UCOM_Fpr64 , X86::UCOM_Fr }, |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 743 | { X86::UCOM_Fpr80 , X86::UCOM_Fr }, |
Chris Lattner | f431ad4 | 2005-12-21 07:47:04 +0000 | [diff] [blame] | 744 | }; |
| 745 | |
| 746 | static unsigned getConcreteOpcode(unsigned Opcode) { |
| 747 | ASSERT_SORTED(OpcodeTable); |
Owen Anderson | e2f23a3 | 2007-09-07 04:06:50 +0000 | [diff] [blame] | 748 | int Opc = Lookup(OpcodeTable, array_lengthof(OpcodeTable), Opcode); |
Chris Lattner | f431ad4 | 2005-12-21 07:47:04 +0000 | [diff] [blame] | 749 | assert(Opc != -1 && "FP Stack instruction not in OpcodeTable!"); |
| 750 | return Opc; |
| 751 | } |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 752 | |
| 753 | //===----------------------------------------------------------------------===// |
| 754 | // Helper Methods |
| 755 | //===----------------------------------------------------------------------===// |
| 756 | |
| 757 | // PopTable - Sorted map of instructions to their popping version. The first |
| 758 | // element is an instruction, the second is the version which pops. |
| 759 | // |
| 760 | static const TableEntry PopTable[] = { |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 761 | { X86::ADD_FrST0 , X86::ADD_FPrST0 }, |
Chris Lattner | 637eebb | 2003-08-03 21:56:36 +0000 | [diff] [blame] | 762 | |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 763 | { X86::DIVR_FrST0, X86::DIVR_FPrST0 }, |
| 764 | { X86::DIV_FrST0 , X86::DIV_FPrST0 }, |
Chris Lattner | 637eebb | 2003-08-03 21:56:36 +0000 | [diff] [blame] | 765 | |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 766 | { X86::IST_F16m , X86::IST_FP16m }, |
| 767 | { X86::IST_F32m , X86::IST_FP32m }, |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 768 | |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 769 | { X86::MUL_FrST0 , X86::MUL_FPrST0 }, |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 770 | |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 771 | { X86::ST_F32m , X86::ST_FP32m }, |
| 772 | { X86::ST_F64m , X86::ST_FP64m }, |
| 773 | { X86::ST_Frr , X86::ST_FPrr }, |
Chris Lattner | 637eebb | 2003-08-03 21:56:36 +0000 | [diff] [blame] | 774 | |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 775 | { X86::SUBR_FrST0, X86::SUBR_FPrST0 }, |
| 776 | { X86::SUB_FrST0 , X86::SUB_FPrST0 }, |
Chris Lattner | 637eebb | 2003-08-03 21:56:36 +0000 | [diff] [blame] | 777 | |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 778 | { X86::UCOM_FIr , X86::UCOM_FIPr }, |
Chris Lattner | d1c7545 | 2004-04-12 01:39:15 +0000 | [diff] [blame] | 779 | |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 780 | { X86::UCOM_FPr , X86::UCOM_FPPr }, |
| 781 | { X86::UCOM_Fr , X86::UCOM_FPr }, |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 782 | }; |
| 783 | |
| 784 | /// popStackAfter - Pop the current value off of the top of the FP stack after |
| 785 | /// the specified instruction. This attempts to be sneaky and combine the pop |
| 786 | /// into the instruction itself if possible. The iterator is left pointing to |
| 787 | /// the last instruction, be it a new pop instruction inserted, or the old |
| 788 | /// instruction if it was modified in place. |
| 789 | /// |
| 790 | void FPS::popStackAfter(MachineBasicBlock::iterator &I) { |
Dale Johannesen | 9bba902 | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 791 | MachineInstr* MI = I; |
| 792 | DebugLoc dl = MI->getDebugLoc(); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 793 | ASSERT_SORTED(PopTable); |
Evan Cheng | d565b44 | 2010-10-12 23:19:28 +0000 | [diff] [blame] | 794 | if (StackTop == 0) |
| 795 | report_fatal_error("Cannot pop empty stack!"); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 796 | RegMap[Stack[--StackTop]] = ~0; // Update state |
| 797 | |
| 798 | // Check to see if there is a popping version of this instruction... |
Owen Anderson | e2f23a3 | 2007-09-07 04:06:50 +0000 | [diff] [blame] | 799 | int Opcode = Lookup(PopTable, array_lengthof(PopTable), I->getOpcode()); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 800 | if (Opcode != -1) { |
Chris Lattner | 5968751 | 2008-01-11 18:10:50 +0000 | [diff] [blame] | 801 | I->setDesc(TII->get(Opcode)); |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 802 | if (Opcode == X86::UCOM_FPPr) |
Alkis Evlogimenos | 80da865 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 803 | I->RemoveOperand(0); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 804 | } else { // Insert an explicit pop |
Dale Johannesen | 9bba902 | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 805 | I = BuildMI(*MBB, ++I, dl, TII->get(X86::ST_FPrr)).addReg(X86::ST0); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 806 | } |
| 807 | } |
| 808 | |
Chris Lattner | bc7e35b | 2004-04-01 04:06:09 +0000 | [diff] [blame] | 809 | /// freeStackSlotAfter - Free the specified register from the register stack, so |
| 810 | /// that it is no longer in a register. If the register is currently at the top |
| 811 | /// of the stack, we just pop the current instruction, otherwise we store the |
| 812 | /// current top-of-stack into the specified slot, then pop the top of stack. |
| 813 | void FPS::freeStackSlotAfter(MachineBasicBlock::iterator &I, unsigned FPRegNo) { |
| 814 | if (getStackEntry(0) == FPRegNo) { // already at the top of stack? easy. |
| 815 | popStackAfter(I); |
| 816 | return; |
| 817 | } |
| 818 | |
| 819 | // Otherwise, store the top of stack into the dead slot, killing the operand |
| 820 | // without having to add in an explicit xchg then pop. |
| 821 | // |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 822 | I = freeStackSlotBefore(++I, FPRegNo); |
| 823 | } |
| 824 | |
| 825 | /// freeStackSlotBefore - Free the specified register without trying any |
| 826 | /// folding. |
| 827 | MachineBasicBlock::iterator |
| 828 | FPS::freeStackSlotBefore(MachineBasicBlock::iterator I, unsigned FPRegNo) { |
Chris Lattner | bc7e35b | 2004-04-01 04:06:09 +0000 | [diff] [blame] | 829 | unsigned STReg = getSTReg(FPRegNo); |
| 830 | unsigned OldSlot = getSlot(FPRegNo); |
| 831 | unsigned TopReg = Stack[StackTop-1]; |
| 832 | Stack[OldSlot] = TopReg; |
| 833 | RegMap[TopReg] = OldSlot; |
| 834 | RegMap[FPRegNo] = ~0; |
| 835 | Stack[--StackTop] = ~0; |
Reid Kleckner | da00cf5 | 2014-10-31 23:19:46 +0000 | [diff] [blame] | 836 | return BuildMI(*MBB, I, DebugLoc(), TII->get(X86::ST_FPrr)) |
| 837 | .addReg(STReg) |
| 838 | .getInstr(); |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 839 | } |
| 840 | |
| 841 | /// adjustLiveRegs - Kill and revive registers such that exactly the FP |
| 842 | /// registers with a bit in Mask are live. |
| 843 | void FPS::adjustLiveRegs(unsigned Mask, MachineBasicBlock::iterator I) { |
| 844 | unsigned Defs = Mask; |
| 845 | unsigned Kills = 0; |
| 846 | for (unsigned i = 0; i < StackTop; ++i) { |
| 847 | unsigned RegNo = Stack[i]; |
| 848 | if (!(Defs & (1 << RegNo))) |
| 849 | // This register is live, but we don't want it. |
| 850 | Kills |= (1 << RegNo); |
| 851 | else |
| 852 | // We don't need to imp-def this live register. |
| 853 | Defs &= ~(1 << RegNo); |
| 854 | } |
| 855 | assert((Kills & Defs) == 0 && "Register needs killing and def'ing?"); |
| 856 | |
| 857 | // Produce implicit-defs for free by using killed registers. |
| 858 | while (Kills && Defs) { |
Michael J. Spencer | df1ecbd7 | 2013-05-24 22:23:49 +0000 | [diff] [blame] | 859 | unsigned KReg = countTrailingZeros(Kills); |
| 860 | unsigned DReg = countTrailingZeros(Defs); |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 861 | DEBUG(dbgs() << "Renaming %FP" << KReg << " as imp %FP" << DReg << "\n"); |
| 862 | std::swap(Stack[getSlot(KReg)], Stack[getSlot(DReg)]); |
| 863 | std::swap(RegMap[KReg], RegMap[DReg]); |
| 864 | Kills &= ~(1 << KReg); |
| 865 | Defs &= ~(1 << DReg); |
| 866 | } |
| 867 | |
| 868 | // Kill registers by popping. |
| 869 | if (Kills && I != MBB->begin()) { |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 870 | MachineBasicBlock::iterator I2 = std::prev(I); |
Jakob Stoklund Olesen | 25a404e | 2011-07-02 03:53:34 +0000 | [diff] [blame] | 871 | while (StackTop) { |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 872 | unsigned KReg = getStackEntry(0); |
| 873 | if (!(Kills & (1 << KReg))) |
| 874 | break; |
| 875 | DEBUG(dbgs() << "Popping %FP" << KReg << "\n"); |
| 876 | popStackAfter(I2); |
| 877 | Kills &= ~(1 << KReg); |
| 878 | } |
| 879 | } |
| 880 | |
| 881 | // Manually kill the rest. |
| 882 | while (Kills) { |
Michael J. Spencer | df1ecbd7 | 2013-05-24 22:23:49 +0000 | [diff] [blame] | 883 | unsigned KReg = countTrailingZeros(Kills); |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 884 | DEBUG(dbgs() << "Killing %FP" << KReg << "\n"); |
| 885 | freeStackSlotBefore(I, KReg); |
| 886 | Kills &= ~(1 << KReg); |
| 887 | } |
| 888 | |
| 889 | // Load zeros for all the imp-defs. |
| 890 | while(Defs) { |
Michael J. Spencer | df1ecbd7 | 2013-05-24 22:23:49 +0000 | [diff] [blame] | 891 | unsigned DReg = countTrailingZeros(Defs); |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 892 | DEBUG(dbgs() << "Defining %FP" << DReg << " as 0\n"); |
| 893 | BuildMI(*MBB, I, DebugLoc(), TII->get(X86::LD_F0)); |
| 894 | pushReg(DReg); |
| 895 | Defs &= ~(1 << DReg); |
| 896 | } |
| 897 | |
| 898 | // Now we should have the correct registers live. |
| 899 | DEBUG(dumpStack()); |
Benjamin Kramer | 5f6a907 | 2015-02-12 15:35:40 +0000 | [diff] [blame] | 900 | assert(StackTop == countPopulation(Mask) && "Live count mismatch"); |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 901 | } |
| 902 | |
| 903 | /// shuffleStackTop - emit fxch instructions before I to shuffle the top |
| 904 | /// FixCount entries into the order given by FixStack. |
| 905 | /// FIXME: Is there a better algorithm than insertion sort? |
| 906 | void FPS::shuffleStackTop(const unsigned char *FixStack, |
| 907 | unsigned FixCount, |
| 908 | MachineBasicBlock::iterator I) { |
| 909 | // Move items into place, starting from the desired stack bottom. |
| 910 | while (FixCount--) { |
| 911 | // Old register at position FixCount. |
| 912 | unsigned OldReg = getStackEntry(FixCount); |
| 913 | // Desired register at position FixCount. |
| 914 | unsigned Reg = FixStack[FixCount]; |
| 915 | if (Reg == OldReg) |
| 916 | continue; |
| 917 | // (Reg st0) (OldReg st0) = (Reg OldReg st0) |
| 918 | moveToTop(Reg, I); |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 919 | if (FixCount > 0) |
| 920 | moveToTop(OldReg, I); |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 921 | } |
| 922 | DEBUG(dumpStack()); |
Chris Lattner | bc7e35b | 2004-04-01 04:06:09 +0000 | [diff] [blame] | 923 | } |
| 924 | |
| 925 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 926 | //===----------------------------------------------------------------------===// |
| 927 | // Instruction transformation implementation |
| 928 | //===----------------------------------------------------------------------===// |
| 929 | |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 930 | void FPS::handleCall(MachineBasicBlock::iterator &I) { |
| 931 | unsigned STReturns = 0; |
| 932 | |
| 933 | for (const auto &MO : I->operands()) { |
| 934 | if (!MO.isReg()) |
| 935 | continue; |
| 936 | |
| 937 | unsigned R = MO.getReg() - X86::FP0; |
| 938 | |
| 939 | if (R < 8) { |
| 940 | assert(MO.isDef() && MO.isImplicit()); |
| 941 | STReturns |= 1 << R; |
| 942 | } |
| 943 | } |
| 944 | |
Benjamin Kramer | 5f6a907 | 2015-02-12 15:35:40 +0000 | [diff] [blame] | 945 | unsigned N = countTrailingOnes(STReturns); |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 946 | |
| 947 | // FP registers used for function return must be consecutive starting at |
| 948 | // FP0. |
Akira Hatanaka | e457f3e | 2014-08-04 17:23:38 +0000 | [diff] [blame] | 949 | assert(STReturns == 0 || (isMask_32(STReturns) && N <= 2)); |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 950 | |
| 951 | for (unsigned I = 0; I < N; ++I) |
| 952 | pushReg(N - I - 1); |
| 953 | } |
| 954 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 955 | /// handleZeroArgFP - ST(0) = fld0 ST(0) = flds <mem> |
Chris Lattner | 7af8ad6 | 2004-02-02 19:23:15 +0000 | [diff] [blame] | 956 | /// |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 957 | void FPS::handleZeroArgFP(MachineBasicBlock::iterator &I) { |
Alkis Evlogimenos | 80da865 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 958 | MachineInstr *MI = I; |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 959 | unsigned DestReg = getFPReg(MI->getOperand(0)); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 960 | |
Chris Lattner | f431ad4 | 2005-12-21 07:47:04 +0000 | [diff] [blame] | 961 | // Change from the pseudo instruction to the concrete instruction. |
| 962 | MI->RemoveOperand(0); // Remove the explicit ST(0) operand |
Chris Lattner | 5968751 | 2008-01-11 18:10:50 +0000 | [diff] [blame] | 963 | MI->setDesc(TII->get(getConcreteOpcode(MI->getOpcode()))); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 964 | |
Chris Lattner | f431ad4 | 2005-12-21 07:47:04 +0000 | [diff] [blame] | 965 | // Result gets pushed on the stack. |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 966 | pushReg(DestReg); |
| 967 | } |
| 968 | |
Chris Lattner | 7af8ad6 | 2004-02-02 19:23:15 +0000 | [diff] [blame] | 969 | /// handleOneArgFP - fst <mem>, ST(0) |
| 970 | /// |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 971 | void FPS::handleOneArgFP(MachineBasicBlock::iterator &I) { |
Alkis Evlogimenos | 80da865 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 972 | MachineInstr *MI = I; |
Chris Lattner | 03ad885 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 973 | unsigned NumOps = MI->getDesc().getNumOperands(); |
Chris Lattner | ec53627 | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 974 | assert((NumOps == X86::AddrNumOperands + 1 || NumOps == 1) && |
Chris Lattner | 8161306 | 2004-02-03 07:27:34 +0000 | [diff] [blame] | 975 | "Can only handle fst* & ftst instructions!"); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 976 | |
Chris Lattner | 7af8ad6 | 2004-02-02 19:23:15 +0000 | [diff] [blame] | 977 | // Is this the last use of the source register? |
Evan Cheng | 1414005 | 2006-11-10 01:28:43 +0000 | [diff] [blame] | 978 | unsigned Reg = getFPReg(MI->getOperand(NumOps-1)); |
Evan Cheng | 6325446 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 979 | bool KillsSrc = MI->killsRegister(X86::FP0+Reg); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 980 | |
Evan Cheng | 70af620 | 2006-02-18 02:36:28 +0000 | [diff] [blame] | 981 | // FISTP64m is strange because there isn't a non-popping versions. |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 982 | // If we have one _and_ we don't want to pop the operand, duplicate the value |
| 983 | // on the stack instead of moving it. This ensure that popping the value is |
| 984 | // always ok. |
Dale Johannesen | ff7e443 | 2007-09-17 20:15:38 +0000 | [diff] [blame] | 985 | // Ditto FISTTP16m, FISTTP32m, FISTTP64m, ST_FpP80m. |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 986 | // |
Evan Cheng | 70af620 | 2006-02-18 02:36:28 +0000 | [diff] [blame] | 987 | if (!KillsSrc && |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 988 | (MI->getOpcode() == X86::IST_Fp64m32 || |
| 989 | MI->getOpcode() == X86::ISTT_Fp16m32 || |
| 990 | MI->getOpcode() == X86::ISTT_Fp32m32 || |
| 991 | MI->getOpcode() == X86::ISTT_Fp64m32 || |
| 992 | MI->getOpcode() == X86::IST_Fp64m64 || |
| 993 | MI->getOpcode() == X86::ISTT_Fp16m64 || |
| 994 | MI->getOpcode() == X86::ISTT_Fp32m64 || |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 995 | MI->getOpcode() == X86::ISTT_Fp64m64 || |
Dale Johannesen | 95be037 | 2007-09-20 01:27:54 +0000 | [diff] [blame] | 996 | MI->getOpcode() == X86::IST_Fp64m80 || |
Dale Johannesen | 57c6ac5f | 2007-08-07 01:17:37 +0000 | [diff] [blame] | 997 | MI->getOpcode() == X86::ISTT_Fp16m80 || |
| 998 | MI->getOpcode() == X86::ISTT_Fp32m80 || |
| 999 | MI->getOpcode() == X86::ISTT_Fp64m80 || |
Dale Johannesen | b1888e7 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 1000 | MI->getOpcode() == X86::ST_FpP80m)) { |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1001 | duplicateToTop(Reg, ScratchFPReg, I); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1002 | } else { |
| 1003 | moveToTop(Reg, I); // Move to the top of the stack... |
| 1004 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1005 | |
Chris Lattner | f431ad4 | 2005-12-21 07:47:04 +0000 | [diff] [blame] | 1006 | // Convert from the pseudo instruction to the concrete instruction. |
Evan Cheng | 1414005 | 2006-11-10 01:28:43 +0000 | [diff] [blame] | 1007 | MI->RemoveOperand(NumOps-1); // Remove explicit ST(0) operand |
Chris Lattner | 5968751 | 2008-01-11 18:10:50 +0000 | [diff] [blame] | 1008 | MI->setDesc(TII->get(getConcreteOpcode(MI->getOpcode()))); |
Misha Brukman | c88330a | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 1009 | |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1010 | if (MI->getOpcode() == X86::IST_FP64m || |
| 1011 | MI->getOpcode() == X86::ISTT_FP16m || |
| 1012 | MI->getOpcode() == X86::ISTT_FP32m || |
Dale Johannesen | e279fd6 | 2007-08-06 19:50:32 +0000 | [diff] [blame] | 1013 | MI->getOpcode() == X86::ISTT_FP64m || |
| 1014 | MI->getOpcode() == X86::ST_FP80m) { |
Evan Cheng | d565b44 | 2010-10-12 23:19:28 +0000 | [diff] [blame] | 1015 | if (StackTop == 0) |
| 1016 | report_fatal_error("Stack empty??"); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1017 | --StackTop; |
| 1018 | } else if (KillsSrc) { // Last use of operand? |
| 1019 | popStackAfter(I); |
| 1020 | } |
| 1021 | } |
| 1022 | |
Chris Lattner | 7af8ad6 | 2004-02-02 19:23:15 +0000 | [diff] [blame] | 1023 | |
Chris Lattner | 5b44472 | 2004-04-11 20:21:06 +0000 | [diff] [blame] | 1024 | /// handleOneArgFPRW: Handle instructions that read from the top of stack and |
| 1025 | /// replace the value with a newly computed value. These instructions may have |
| 1026 | /// non-fp operands after their FP operands. |
| 1027 | /// |
| 1028 | /// Examples: |
| 1029 | /// R1 = fchs R2 |
| 1030 | /// R1 = fadd R2, [mem] |
Chris Lattner | 7af8ad6 | 2004-02-02 19:23:15 +0000 | [diff] [blame] | 1031 | /// |
| 1032 | void FPS::handleOneArgFPRW(MachineBasicBlock::iterator &I) { |
Alkis Evlogimenos | 80da865 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 1033 | MachineInstr *MI = I; |
Evan Cheng | fa374ca | 2008-07-21 20:02:45 +0000 | [diff] [blame] | 1034 | #ifndef NDEBUG |
Chris Lattner | 03ad885 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 1035 | unsigned NumOps = MI->getDesc().getNumOperands(); |
Evan Cheng | 1414005 | 2006-11-10 01:28:43 +0000 | [diff] [blame] | 1036 | assert(NumOps >= 2 && "FPRW instructions must have 2 ops!!"); |
Evan Cheng | fa374ca | 2008-07-21 20:02:45 +0000 | [diff] [blame] | 1037 | #endif |
Chris Lattner | 7af8ad6 | 2004-02-02 19:23:15 +0000 | [diff] [blame] | 1038 | |
| 1039 | // Is this the last use of the source register? |
| 1040 | unsigned Reg = getFPReg(MI->getOperand(1)); |
Evan Cheng | 6325446 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 1041 | bool KillsSrc = MI->killsRegister(X86::FP0+Reg); |
Chris Lattner | 7af8ad6 | 2004-02-02 19:23:15 +0000 | [diff] [blame] | 1042 | |
| 1043 | if (KillsSrc) { |
| 1044 | // If this is the last use of the source register, just make sure it's on |
| 1045 | // the top of the stack. |
| 1046 | moveToTop(Reg, I); |
Evan Cheng | d565b44 | 2010-10-12 23:19:28 +0000 | [diff] [blame] | 1047 | if (StackTop == 0) |
| 1048 | report_fatal_error("Stack cannot be empty!"); |
Chris Lattner | 7af8ad6 | 2004-02-02 19:23:15 +0000 | [diff] [blame] | 1049 | --StackTop; |
| 1050 | pushReg(getFPReg(MI->getOperand(0))); |
| 1051 | } else { |
| 1052 | // If this is not the last use of the source register, _copy_ it to the top |
| 1053 | // of the stack. |
| 1054 | duplicateToTop(Reg, getFPReg(MI->getOperand(0)), I); |
| 1055 | } |
| 1056 | |
Chris Lattner | f431ad4 | 2005-12-21 07:47:04 +0000 | [diff] [blame] | 1057 | // Change from the pseudo instruction to the concrete instruction. |
Chris Lattner | 7af8ad6 | 2004-02-02 19:23:15 +0000 | [diff] [blame] | 1058 | MI->RemoveOperand(1); // Drop the source operand. |
| 1059 | MI->RemoveOperand(0); // Drop the destination operand. |
Chris Lattner | 5968751 | 2008-01-11 18:10:50 +0000 | [diff] [blame] | 1060 | MI->setDesc(TII->get(getConcreteOpcode(MI->getOpcode()))); |
Chris Lattner | 7af8ad6 | 2004-02-02 19:23:15 +0000 | [diff] [blame] | 1061 | } |
| 1062 | |
| 1063 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1064 | //===----------------------------------------------------------------------===// |
| 1065 | // Define tables of various ways to map pseudo instructions |
| 1066 | // |
| 1067 | |
| 1068 | // ForwardST0Table - Map: A = B op C into: ST(0) = ST(0) op ST(i) |
| 1069 | static const TableEntry ForwardST0Table[] = { |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1070 | { X86::ADD_Fp32 , X86::ADD_FST0r }, |
| 1071 | { X86::ADD_Fp64 , X86::ADD_FST0r }, |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1072 | { X86::ADD_Fp80 , X86::ADD_FST0r }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1073 | { X86::DIV_Fp32 , X86::DIV_FST0r }, |
| 1074 | { X86::DIV_Fp64 , X86::DIV_FST0r }, |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1075 | { X86::DIV_Fp80 , X86::DIV_FST0r }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1076 | { X86::MUL_Fp32 , X86::MUL_FST0r }, |
| 1077 | { X86::MUL_Fp64 , X86::MUL_FST0r }, |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1078 | { X86::MUL_Fp80 , X86::MUL_FST0r }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1079 | { X86::SUB_Fp32 , X86::SUB_FST0r }, |
| 1080 | { X86::SUB_Fp64 , X86::SUB_FST0r }, |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1081 | { X86::SUB_Fp80 , X86::SUB_FST0r }, |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1082 | }; |
| 1083 | |
| 1084 | // ReverseST0Table - Map: A = B op C into: ST(0) = ST(i) op ST(0) |
| 1085 | static const TableEntry ReverseST0Table[] = { |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1086 | { X86::ADD_Fp32 , X86::ADD_FST0r }, // commutative |
| 1087 | { X86::ADD_Fp64 , X86::ADD_FST0r }, // commutative |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1088 | { X86::ADD_Fp80 , X86::ADD_FST0r }, // commutative |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1089 | { X86::DIV_Fp32 , X86::DIVR_FST0r }, |
| 1090 | { X86::DIV_Fp64 , X86::DIVR_FST0r }, |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1091 | { X86::DIV_Fp80 , X86::DIVR_FST0r }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1092 | { X86::MUL_Fp32 , X86::MUL_FST0r }, // commutative |
| 1093 | { X86::MUL_Fp64 , X86::MUL_FST0r }, // commutative |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1094 | { X86::MUL_Fp80 , X86::MUL_FST0r }, // commutative |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1095 | { X86::SUB_Fp32 , X86::SUBR_FST0r }, |
| 1096 | { X86::SUB_Fp64 , X86::SUBR_FST0r }, |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1097 | { X86::SUB_Fp80 , X86::SUBR_FST0r }, |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1098 | }; |
| 1099 | |
| 1100 | // ForwardSTiTable - Map: A = B op C into: ST(i) = ST(0) op ST(i) |
| 1101 | static const TableEntry ForwardSTiTable[] = { |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1102 | { X86::ADD_Fp32 , X86::ADD_FrST0 }, // commutative |
| 1103 | { X86::ADD_Fp64 , X86::ADD_FrST0 }, // commutative |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1104 | { X86::ADD_Fp80 , X86::ADD_FrST0 }, // commutative |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1105 | { X86::DIV_Fp32 , X86::DIVR_FrST0 }, |
| 1106 | { X86::DIV_Fp64 , X86::DIVR_FrST0 }, |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1107 | { X86::DIV_Fp80 , X86::DIVR_FrST0 }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1108 | { X86::MUL_Fp32 , X86::MUL_FrST0 }, // commutative |
| 1109 | { X86::MUL_Fp64 , X86::MUL_FrST0 }, // commutative |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1110 | { X86::MUL_Fp80 , X86::MUL_FrST0 }, // commutative |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1111 | { X86::SUB_Fp32 , X86::SUBR_FrST0 }, |
| 1112 | { X86::SUB_Fp64 , X86::SUBR_FrST0 }, |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1113 | { X86::SUB_Fp80 , X86::SUBR_FrST0 }, |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1114 | }; |
| 1115 | |
| 1116 | // ReverseSTiTable - Map: A = B op C into: ST(i) = ST(i) op ST(0) |
| 1117 | static const TableEntry ReverseSTiTable[] = { |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1118 | { X86::ADD_Fp32 , X86::ADD_FrST0 }, |
| 1119 | { X86::ADD_Fp64 , X86::ADD_FrST0 }, |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1120 | { X86::ADD_Fp80 , X86::ADD_FrST0 }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1121 | { X86::DIV_Fp32 , X86::DIV_FrST0 }, |
| 1122 | { X86::DIV_Fp64 , X86::DIV_FrST0 }, |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1123 | { X86::DIV_Fp80 , X86::DIV_FrST0 }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1124 | { X86::MUL_Fp32 , X86::MUL_FrST0 }, |
| 1125 | { X86::MUL_Fp64 , X86::MUL_FrST0 }, |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1126 | { X86::MUL_Fp80 , X86::MUL_FrST0 }, |
Dale Johannesen | 3d7008c | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 1127 | { X86::SUB_Fp32 , X86::SUB_FrST0 }, |
| 1128 | { X86::SUB_Fp64 , X86::SUB_FrST0 }, |
Dale Johannesen | 75169a8 | 2007-08-06 21:31:06 +0000 | [diff] [blame] | 1129 | { X86::SUB_Fp80 , X86::SUB_FrST0 }, |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1130 | }; |
| 1131 | |
| 1132 | |
| 1133 | /// handleTwoArgFP - Handle instructions like FADD and friends which are virtual |
| 1134 | /// instructions which need to be simplified and possibly transformed. |
| 1135 | /// |
| 1136 | /// Result: ST(0) = fsub ST(0), ST(i) |
| 1137 | /// ST(i) = fsub ST(0), ST(i) |
| 1138 | /// ST(0) = fsubr ST(0), ST(i) |
| 1139 | /// ST(i) = fsubr ST(0), ST(i) |
Misha Brukman | c88330a | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 1140 | /// |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1141 | void FPS::handleTwoArgFP(MachineBasicBlock::iterator &I) { |
| 1142 | ASSERT_SORTED(ForwardST0Table); ASSERT_SORTED(ReverseST0Table); |
| 1143 | ASSERT_SORTED(ForwardSTiTable); ASSERT_SORTED(ReverseSTiTable); |
Alkis Evlogimenos | 80da865 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 1144 | MachineInstr *MI = I; |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1145 | |
Chris Lattner | 03ad885 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 1146 | unsigned NumOperands = MI->getDesc().getNumOperands(); |
Chris Lattner | 94ff2c3 | 2004-06-11 04:25:06 +0000 | [diff] [blame] | 1147 | assert(NumOperands == 3 && "Illegal TwoArgFP instruction!"); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1148 | unsigned Dest = getFPReg(MI->getOperand(0)); |
| 1149 | unsigned Op0 = getFPReg(MI->getOperand(NumOperands-2)); |
| 1150 | unsigned Op1 = getFPReg(MI->getOperand(NumOperands-1)); |
Evan Cheng | 6325446 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 1151 | bool KillsOp0 = MI->killsRegister(X86::FP0+Op0); |
| 1152 | bool KillsOp1 = MI->killsRegister(X86::FP0+Op1); |
Dale Johannesen | 9bba902 | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1153 | DebugLoc dl = MI->getDebugLoc(); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1154 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1155 | unsigned TOS = getStackEntry(0); |
| 1156 | |
| 1157 | // One of our operands must be on the top of the stack. If neither is yet, we |
| 1158 | // need to move one. |
| 1159 | if (Op0 != TOS && Op1 != TOS) { // No operand at TOS? |
| 1160 | // We can choose to move either operand to the top of the stack. If one of |
| 1161 | // the operands is killed by this instruction, we want that one so that we |
| 1162 | // can update right on top of the old version. |
| 1163 | if (KillsOp0) { |
| 1164 | moveToTop(Op0, I); // Move dead operand to TOS. |
| 1165 | TOS = Op0; |
| 1166 | } else if (KillsOp1) { |
| 1167 | moveToTop(Op1, I); |
| 1168 | TOS = Op1; |
| 1169 | } else { |
| 1170 | // All of the operands are live after this instruction executes, so we |
| 1171 | // cannot update on top of any operand. Because of this, we must |
| 1172 | // duplicate one of the stack elements to the top. It doesn't matter |
| 1173 | // which one we pick. |
| 1174 | // |
| 1175 | duplicateToTop(Op0, Dest, I); |
| 1176 | Op0 = TOS = Dest; |
| 1177 | KillsOp0 = true; |
| 1178 | } |
Chris Lattner | 94ff2c3 | 2004-06-11 04:25:06 +0000 | [diff] [blame] | 1179 | } else if (!KillsOp0 && !KillsOp1) { |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1180 | // If we DO have one of our operands at the top of the stack, but we don't |
| 1181 | // have a dead operand, we must duplicate one of the operands to a new slot |
| 1182 | // on the stack. |
| 1183 | duplicateToTop(Op0, Dest, I); |
| 1184 | Op0 = TOS = Dest; |
| 1185 | KillsOp0 = true; |
| 1186 | } |
| 1187 | |
| 1188 | // Now we know that one of our operands is on the top of the stack, and at |
| 1189 | // least one of our operands is killed by this instruction. |
Misha Brukman | c88330a | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 1190 | assert((TOS == Op0 || TOS == Op1) && (KillsOp0 || KillsOp1) && |
| 1191 | "Stack conditions not set up right!"); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1192 | |
| 1193 | // We decide which form to use based on what is on the top of the stack, and |
| 1194 | // which operand is killed by this instruction. |
| 1195 | const TableEntry *InstTable; |
| 1196 | bool isForward = TOS == Op0; |
| 1197 | bool updateST0 = (TOS == Op0 && !KillsOp1) || (TOS == Op1 && !KillsOp0); |
| 1198 | if (updateST0) { |
| 1199 | if (isForward) |
| 1200 | InstTable = ForwardST0Table; |
| 1201 | else |
| 1202 | InstTable = ReverseST0Table; |
| 1203 | } else { |
| 1204 | if (isForward) |
| 1205 | InstTable = ForwardSTiTable; |
| 1206 | else |
| 1207 | InstTable = ReverseSTiTable; |
| 1208 | } |
Misha Brukman | c88330a | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 1209 | |
Owen Anderson | e2f23a3 | 2007-09-07 04:06:50 +0000 | [diff] [blame] | 1210 | int Opcode = Lookup(InstTable, array_lengthof(ForwardST0Table), |
| 1211 | MI->getOpcode()); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1212 | assert(Opcode != -1 && "Unknown TwoArgFP pseudo instruction!"); |
| 1213 | |
| 1214 | // NotTOS - The register which is not on the top of stack... |
| 1215 | unsigned NotTOS = (TOS == Op0) ? Op1 : Op0; |
| 1216 | |
| 1217 | // Replace the old instruction with a new instruction |
Chris Lattner | c07c958 | 2004-03-31 22:02:36 +0000 | [diff] [blame] | 1218 | MBB->remove(I++); |
Dale Johannesen | 9bba902 | 2009-02-13 02:33:27 +0000 | [diff] [blame] | 1219 | I = BuildMI(*MBB, I, dl, TII->get(Opcode)).addReg(getSTReg(NotTOS)); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1220 | |
| 1221 | // If both operands are killed, pop one off of the stack in addition to |
| 1222 | // overwriting the other one. |
| 1223 | if (KillsOp0 && KillsOp1 && Op0 != Op1) { |
| 1224 | assert(!updateST0 && "Should have updated other operand!"); |
| 1225 | popStackAfter(I); // Pop the top of stack |
| 1226 | } |
| 1227 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1228 | // Update stack information so that we know the destination register is now on |
| 1229 | // the stack. |
Chris Lattner | 94ff2c3 | 2004-06-11 04:25:06 +0000 | [diff] [blame] | 1230 | unsigned UpdatedSlot = getSlot(updateST0 ? TOS : NotTOS); |
| 1231 | assert(UpdatedSlot < StackTop && Dest < 7); |
| 1232 | Stack[UpdatedSlot] = Dest; |
| 1233 | RegMap[Dest] = UpdatedSlot; |
Dan Gohman | 3b46030 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 1234 | MBB->getParent()->DeleteMachineInstr(MI); // Remove the old instruction |
Chris Lattner | 94ff2c3 | 2004-06-11 04:25:06 +0000 | [diff] [blame] | 1235 | } |
| 1236 | |
Chris Lattner | b35f476 | 2004-06-11 04:49:02 +0000 | [diff] [blame] | 1237 | /// handleCompareFP - Handle FUCOM and FUCOMI instructions, which have two FP |
Chris Lattner | 94ff2c3 | 2004-06-11 04:25:06 +0000 | [diff] [blame] | 1238 | /// register arguments and no explicit destinations. |
Misha Brukman | c88330a | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 1239 | /// |
Chris Lattner | 94ff2c3 | 2004-06-11 04:25:06 +0000 | [diff] [blame] | 1240 | void FPS::handleCompareFP(MachineBasicBlock::iterator &I) { |
| 1241 | ASSERT_SORTED(ForwardST0Table); ASSERT_SORTED(ReverseST0Table); |
| 1242 | ASSERT_SORTED(ForwardSTiTable); ASSERT_SORTED(ReverseSTiTable); |
| 1243 | MachineInstr *MI = I; |
| 1244 | |
Chris Lattner | 03ad885 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 1245 | unsigned NumOperands = MI->getDesc().getNumOperands(); |
Chris Lattner | b35f476 | 2004-06-11 04:49:02 +0000 | [diff] [blame] | 1246 | assert(NumOperands == 2 && "Illegal FUCOM* instruction!"); |
Chris Lattner | 94ff2c3 | 2004-06-11 04:25:06 +0000 | [diff] [blame] | 1247 | unsigned Op0 = getFPReg(MI->getOperand(NumOperands-2)); |
| 1248 | unsigned Op1 = getFPReg(MI->getOperand(NumOperands-1)); |
Evan Cheng | 6325446 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 1249 | bool KillsOp0 = MI->killsRegister(X86::FP0+Op0); |
| 1250 | bool KillsOp1 = MI->killsRegister(X86::FP0+Op1); |
Chris Lattner | 94ff2c3 | 2004-06-11 04:25:06 +0000 | [diff] [blame] | 1251 | |
| 1252 | // Make sure the first operand is on the top of stack, the other one can be |
| 1253 | // anywhere. |
| 1254 | moveToTop(Op0, I); |
| 1255 | |
Chris Lattner | f431ad4 | 2005-12-21 07:47:04 +0000 | [diff] [blame] | 1256 | // Change from the pseudo instruction to the concrete instruction. |
Chris Lattner | 71186e2 | 2004-06-11 05:22:44 +0000 | [diff] [blame] | 1257 | MI->getOperand(0).setReg(getSTReg(Op1)); |
| 1258 | MI->RemoveOperand(1); |
Chris Lattner | 5968751 | 2008-01-11 18:10:50 +0000 | [diff] [blame] | 1259 | MI->setDesc(TII->get(getConcreteOpcode(MI->getOpcode()))); |
Chris Lattner | 71186e2 | 2004-06-11 05:22:44 +0000 | [diff] [blame] | 1260 | |
Chris Lattner | 94ff2c3 | 2004-06-11 04:25:06 +0000 | [diff] [blame] | 1261 | // If any of the operands are killed by this instruction, free them. |
| 1262 | if (KillsOp0) freeStackSlotAfter(I, Op0); |
| 1263 | if (KillsOp1 && Op0 != Op1) freeStackSlotAfter(I, Op1); |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1264 | } |
| 1265 | |
Chris Lattner | c07c958 | 2004-03-31 22:02:36 +0000 | [diff] [blame] | 1266 | /// handleCondMovFP - Handle two address conditional move instructions. These |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1267 | /// instructions move a st(i) register to st(0) iff a condition is true. These |
Chris Lattner | c07c958 | 2004-03-31 22:02:36 +0000 | [diff] [blame] | 1268 | /// instructions require that the first operand is at the top of the stack, but |
| 1269 | /// otherwise don't modify the stack at all. |
| 1270 | void FPS::handleCondMovFP(MachineBasicBlock::iterator &I) { |
| 1271 | MachineInstr *MI = I; |
| 1272 | |
| 1273 | unsigned Op0 = getFPReg(MI->getOperand(0)); |
Chris Lattner | 2656932 | 2006-09-05 20:27:32 +0000 | [diff] [blame] | 1274 | unsigned Op1 = getFPReg(MI->getOperand(2)); |
Evan Cheng | 6325446 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 1275 | bool KillsOp1 = MI->killsRegister(X86::FP0+Op1); |
Chris Lattner | c07c958 | 2004-03-31 22:02:36 +0000 | [diff] [blame] | 1276 | |
| 1277 | // The first operand *must* be on the top of the stack. |
| 1278 | moveToTop(Op0, I); |
| 1279 | |
| 1280 | // Change the second operand to the stack register that the operand is in. |
Chris Lattner | f431ad4 | 2005-12-21 07:47:04 +0000 | [diff] [blame] | 1281 | // Change from the pseudo instruction to the concrete instruction. |
Chris Lattner | c07c958 | 2004-03-31 22:02:36 +0000 | [diff] [blame] | 1282 | MI->RemoveOperand(0); |
Chris Lattner | 2656932 | 2006-09-05 20:27:32 +0000 | [diff] [blame] | 1283 | MI->RemoveOperand(1); |
Chris Lattner | c07c958 | 2004-03-31 22:02:36 +0000 | [diff] [blame] | 1284 | MI->getOperand(0).setReg(getSTReg(Op1)); |
Chris Lattner | 5968751 | 2008-01-11 18:10:50 +0000 | [diff] [blame] | 1285 | MI->setDesc(TII->get(getConcreteOpcode(MI->getOpcode()))); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1286 | |
Chris Lattner | c07c958 | 2004-03-31 22:02:36 +0000 | [diff] [blame] | 1287 | // If we kill the second operand, make sure to pop it from the stack. |
Evan Cheng | bbbcac3 | 2006-11-15 20:56:39 +0000 | [diff] [blame] | 1288 | if (Op0 != Op1 && KillsOp1) { |
Chris Lattner | 7c1c6e0 | 2005-08-23 22:49:55 +0000 | [diff] [blame] | 1289 | // Get this value off of the register stack. |
| 1290 | freeStackSlotAfter(I, Op1); |
| 1291 | } |
Chris Lattner | c07c958 | 2004-03-31 22:02:36 +0000 | [diff] [blame] | 1292 | } |
| 1293 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1294 | |
| 1295 | /// handleSpecialFP - Handle special instructions which behave unlike other |
Misha Brukman | 8b2bd4e | 2003-10-10 17:57:28 +0000 | [diff] [blame] | 1296 | /// floating point instructions. This is primarily intended for use by pseudo |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1297 | /// instructions. |
| 1298 | /// |
Aaron Ballman | c36c6ab | 2014-08-04 13:51:27 +0000 | [diff] [blame] | 1299 | void FPS::handleSpecialFP(MachineBasicBlock::iterator &Inst) { |
| 1300 | MachineInstr *MI = Inst; |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1301 | |
| 1302 | if (MI->isCall()) { |
Aaron Ballman | c36c6ab | 2014-08-04 13:51:27 +0000 | [diff] [blame] | 1303 | handleCall(Inst); |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1304 | return; |
| 1305 | } |
| 1306 | |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1307 | switch (MI->getOpcode()) { |
Torok Edwin | fbcc663 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1308 | default: llvm_unreachable("Unknown SpecialFP instruction!"); |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1309 | case TargetOpcode::COPY: { |
| 1310 | // We handle three kinds of copies: FP <- FP, FP <- ST, and ST <- FP. |
Evan Cheng | 968c3b0 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 1311 | const MachineOperand &MO1 = MI->getOperand(1); |
Evan Cheng | 968c3b0 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 1312 | const MachineOperand &MO0 = MI->getOperand(0); |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1313 | bool KillsSrc = MI->killsRegister(MO1.getReg()); |
| 1314 | |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1315 | // FP <- FP copy. |
| 1316 | unsigned DstFP = getFPReg(MO0); |
| 1317 | unsigned SrcFP = getFPReg(MO1); |
| 1318 | assert(isLive(SrcFP) && "Cannot copy dead register"); |
| 1319 | if (KillsSrc) { |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1320 | // If the input operand is killed, we can just change the owner of the |
| 1321 | // incoming stack slot into the result. |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1322 | unsigned Slot = getSlot(SrcFP); |
| 1323 | Stack[Slot] = DstFP; |
| 1324 | RegMap[DstFP] = Slot; |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1325 | } else { |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1326 | // For COPY we just duplicate the specified value to a new stack slot. |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1327 | // This could be made better, but would require substantial changes. |
Aaron Ballman | c36c6ab | 2014-08-04 13:51:27 +0000 | [diff] [blame] | 1328 | duplicateToTop(SrcFP, DstFP, Inst); |
Nick Lewycky | a3860a2 | 2008-03-11 05:56:09 +0000 | [diff] [blame] | 1329 | } |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1330 | break; |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1331 | } |
| 1332 | |
Jakob Stoklund Olesen | da61842 | 2011-08-03 16:33:19 +0000 | [diff] [blame] | 1333 | case TargetOpcode::IMPLICIT_DEF: { |
| 1334 | // All FP registers must be explicitly defined, so load a 0 instead. |
| 1335 | unsigned Reg = MI->getOperand(0).getReg() - X86::FP0; |
| 1336 | DEBUG(dbgs() << "Emitting LD_F0 for implicit FP" << Reg << '\n'); |
Aaron Ballman | c36c6ab | 2014-08-04 13:51:27 +0000 | [diff] [blame] | 1337 | BuildMI(*MBB, Inst, MI->getDebugLoc(), TII->get(X86::LD_F0)); |
Jakob Stoklund Olesen | da61842 | 2011-08-03 16:33:19 +0000 | [diff] [blame] | 1338 | pushReg(Reg); |
| 1339 | break; |
| 1340 | } |
| 1341 | |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 1342 | case TargetOpcode::INLINEASM: { |
Chris Lattner | 8abed80 | 2008-03-11 19:50:13 +0000 | [diff] [blame] | 1343 | // The inline asm MachineInstr currently only *uses* FP registers for the |
| 1344 | // 'f' constraint. These should be turned into the current ST(x) register |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1345 | // in the machine instr. |
| 1346 | // |
| 1347 | // There are special rules for x87 inline assembly. The compiler must know |
| 1348 | // exactly how many registers are popped and pushed implicitly by the asm. |
| 1349 | // Otherwise it is not possible to restore the stack state after the inline |
| 1350 | // asm. |
| 1351 | // |
| 1352 | // There are 3 kinds of input operands: |
| 1353 | // |
| 1354 | // 1. Popped inputs. These must appear at the stack top in ST0-STn. A |
| 1355 | // popped input operand must be in a fixed stack slot, and it is either |
| 1356 | // tied to an output operand, or in the clobber list. The MI has ST use |
| 1357 | // and def operands for these inputs. |
| 1358 | // |
| 1359 | // 2. Fixed inputs. These inputs appear in fixed stack slots, but are |
| 1360 | // preserved by the inline asm. The fixed stack slots must be STn-STm |
| 1361 | // following the popped inputs. A fixed input operand cannot be tied to |
| 1362 | // an output or appear in the clobber list. The MI has ST use operands |
| 1363 | // and no defs for these inputs. |
| 1364 | // |
| 1365 | // 3. Preserved inputs. These inputs use the "f" constraint which is |
| 1366 | // represented as an FP register. The inline asm won't change these |
| 1367 | // stack slots. |
| 1368 | // |
| 1369 | // Outputs must be in ST registers, FP outputs are not allowed. Clobbered |
| 1370 | // registers do not count as output operands. The inline asm changes the |
| 1371 | // stack as if it popped all the popped inputs and then pushed all the |
| 1372 | // output operands. |
| 1373 | |
| 1374 | // Scan the assembly for ST registers used, defined and clobbered. We can |
| 1375 | // only tell clobbers from defs by looking at the asm descriptor. |
| 1376 | unsigned STUses = 0, STDefs = 0, STClobbers = 0, STDeadDefs = 0; |
| 1377 | unsigned NumOps = 0; |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1378 | SmallSet<unsigned, 1> FRegIdx; |
| 1379 | unsigned RCID; |
| 1380 | |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1381 | for (unsigned i = InlineAsm::MIOp_FirstOperand, e = MI->getNumOperands(); |
| 1382 | i != e && MI->getOperand(i).isImm(); i += 1 + NumOps) { |
| 1383 | unsigned Flags = MI->getOperand(i).getImm(); |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1384 | |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1385 | NumOps = InlineAsm::getNumOperandRegisters(Flags); |
| 1386 | if (NumOps != 1) |
| 1387 | continue; |
| 1388 | const MachineOperand &MO = MI->getOperand(i + 1); |
| 1389 | if (!MO.isReg()) |
| 1390 | continue; |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1391 | unsigned STReg = MO.getReg() - X86::FP0; |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1392 | if (STReg >= 8) |
| 1393 | continue; |
| 1394 | |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1395 | // If the flag has a register class constraint, this must be an operand |
| 1396 | // with constraint "f". Record its index and continue. |
| 1397 | if (InlineAsm::hasRegClassConstraint(Flags, RCID)) { |
| 1398 | FRegIdx.insert(i + 1); |
| 1399 | continue; |
| 1400 | } |
| 1401 | |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1402 | switch (InlineAsm::getKind(Flags)) { |
| 1403 | case InlineAsm::Kind_RegUse: |
| 1404 | STUses |= (1u << STReg); |
| 1405 | break; |
| 1406 | case InlineAsm::Kind_RegDef: |
| 1407 | case InlineAsm::Kind_RegDefEarlyClobber: |
| 1408 | STDefs |= (1u << STReg); |
| 1409 | if (MO.isDead()) |
| 1410 | STDeadDefs |= (1u << STReg); |
| 1411 | break; |
| 1412 | case InlineAsm::Kind_Clobber: |
| 1413 | STClobbers |= (1u << STReg); |
| 1414 | break; |
| 1415 | default: |
| 1416 | break; |
| 1417 | } |
| 1418 | } |
| 1419 | |
| 1420 | if (STUses && !isMask_32(STUses)) |
Jakob Stoklund Olesen | e925f22 | 2011-07-02 07:23:40 +0000 | [diff] [blame] | 1421 | MI->emitError("fixed input regs must be last on the x87 stack"); |
Benjamin Kramer | 5f6a907 | 2015-02-12 15:35:40 +0000 | [diff] [blame] | 1422 | unsigned NumSTUses = countTrailingOnes(STUses); |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1423 | |
| 1424 | // Defs must be contiguous from the stack top. ST0-STn. |
Jakob Stoklund Olesen | 25a404e | 2011-07-02 03:53:34 +0000 | [diff] [blame] | 1425 | if (STDefs && !isMask_32(STDefs)) { |
Jakob Stoklund Olesen | e925f22 | 2011-07-02 07:23:40 +0000 | [diff] [blame] | 1426 | MI->emitError("output regs must be last on the x87 stack"); |
Jakob Stoklund Olesen | 25a404e | 2011-07-02 03:53:34 +0000 | [diff] [blame] | 1427 | STDefs = NextPowerOf2(STDefs) - 1; |
| 1428 | } |
Benjamin Kramer | 5f6a907 | 2015-02-12 15:35:40 +0000 | [diff] [blame] | 1429 | unsigned NumSTDefs = countTrailingOnes(STDefs); |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1430 | |
| 1431 | // So must the clobbered stack slots. ST0-STm, m >= n. |
| 1432 | if (STClobbers && !isMask_32(STDefs | STClobbers)) |
Jakob Stoklund Olesen | e925f22 | 2011-07-02 07:23:40 +0000 | [diff] [blame] | 1433 | MI->emitError("clobbers must be last on the x87 stack"); |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1434 | |
| 1435 | // Popped inputs are the ones that are also clobbered or defined. |
| 1436 | unsigned STPopped = STUses & (STDefs | STClobbers); |
| 1437 | if (STPopped && !isMask_32(STPopped)) |
Jakob Stoklund Olesen | e925f22 | 2011-07-02 07:23:40 +0000 | [diff] [blame] | 1438 | MI->emitError("implicitly popped regs must be last on the x87 stack"); |
Benjamin Kramer | 5f6a907 | 2015-02-12 15:35:40 +0000 | [diff] [blame] | 1439 | unsigned NumSTPopped = countTrailingOnes(STPopped); |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1440 | |
| 1441 | DEBUG(dbgs() << "Asm uses " << NumSTUses << " fixed regs, pops " |
| 1442 | << NumSTPopped << ", and defines " << NumSTDefs << " regs.\n"); |
| 1443 | |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1444 | #ifndef NDEBUG |
| 1445 | // If any input operand uses constraint "f", all output register |
| 1446 | // constraints must be early-clobber defs. |
| 1447 | for (unsigned I = 0, E = MI->getNumOperands(); I < E; ++I) |
| 1448 | if (FRegIdx.count(I)) { |
| 1449 | assert((1 << getFPReg(MI->getOperand(I)) & STDefs) == 0 && |
| 1450 | "Operands with constraint \"f\" cannot overlap with defs"); |
| 1451 | } |
| 1452 | #endif |
| 1453 | |
| 1454 | // Collect all FP registers (register operands with constraints "t", "u", |
| 1455 | // and "f") to kill afer the instruction. |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1456 | unsigned FPKills = ((1u << NumFPRegs) - 1) & ~0xff; |
Chris Lattner | 8abed80 | 2008-03-11 19:50:13 +0000 | [diff] [blame] | 1457 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 1458 | MachineOperand &Op = MI->getOperand(i); |
Dan Gohman | 0d1e9a8 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 1459 | if (!Op.isReg() || Op.getReg() < X86::FP0 || Op.getReg() > X86::FP6) |
Chris Lattner | 8abed80 | 2008-03-11 19:50:13 +0000 | [diff] [blame] | 1460 | continue; |
Chris Lattner | 8abed80 | 2008-03-11 19:50:13 +0000 | [diff] [blame] | 1461 | unsigned FPReg = getFPReg(Op); |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1462 | |
Chris Lattner | 8abed80 | 2008-03-11 19:50:13 +0000 | [diff] [blame] | 1463 | // If we kill this operand, make sure to pop it from the stack after the |
| 1464 | // asm. We just remember it for now, and pop them all off at the end in |
| 1465 | // a batch. |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1466 | if (Op.isUse() && Op.isKill()) |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1467 | FPKills |= 1U << FPReg; |
Chris Lattner | 8abed80 | 2008-03-11 19:50:13 +0000 | [diff] [blame] | 1468 | } |
| 1469 | |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1470 | // Do not include registers that are implicitly popped by defs/clobbers. |
| 1471 | FPKills &= ~(STDefs | STClobbers); |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1472 | |
| 1473 | // Now we can rearrange the live registers to match what was requested. |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1474 | unsigned char STUsesArray[8]; |
| 1475 | |
| 1476 | for (unsigned I = 0; I < NumSTUses; ++I) |
| 1477 | STUsesArray[I] = I; |
| 1478 | |
Aaron Ballman | c36c6ab | 2014-08-04 13:51:27 +0000 | [diff] [blame] | 1479 | shuffleStackTop(STUsesArray, NumSTUses, Inst); |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1480 | DEBUG({dbgs() << "Before asm: "; dumpStack();}); |
| 1481 | |
| 1482 | // With the stack layout fixed, rewrite the FP registers. |
| 1483 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 1484 | MachineOperand &Op = MI->getOperand(i); |
| 1485 | if (!Op.isReg() || Op.getReg() < X86::FP0 || Op.getReg() > X86::FP6) |
| 1486 | continue; |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1487 | |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1488 | unsigned FPReg = getFPReg(Op); |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1489 | |
| 1490 | if (FRegIdx.count(i)) |
| 1491 | // Operand with constraint "f". |
| 1492 | Op.setReg(getSTReg(FPReg)); |
| 1493 | else |
| 1494 | // Operand with a single register class constraint ("t" or "u"). |
| 1495 | Op.setReg(X86::ST0 + FPReg); |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1496 | } |
| 1497 | |
| 1498 | // Simulate the inline asm popping its inputs and pushing its outputs. |
| 1499 | StackTop -= NumSTPopped; |
| 1500 | |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1501 | for (unsigned i = 0; i < NumSTDefs; ++i) |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1502 | pushReg(NumSTDefs - i - 1); |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1503 | |
Chris Lattner | 8abed80 | 2008-03-11 19:50:13 +0000 | [diff] [blame] | 1504 | // If this asm kills any FP registers (is the last use of them) we must |
| 1505 | // explicitly emit pop instructions for them. Do this now after the asm has |
| 1506 | // executed so that the ST(x) numbers are not off (which would happen if we |
| 1507 | // did this inline with operand rewriting). |
| 1508 | // |
| 1509 | // Note: this might be a non-optimal pop sequence. We might be able to do |
| 1510 | // better by trying to pop in stack order or something. |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1511 | while (FPKills) { |
Michael J. Spencer | df1ecbd7 | 2013-05-24 22:23:49 +0000 | [diff] [blame] | 1512 | unsigned FPReg = countTrailingZeros(FPKills); |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1513 | if (isLive(FPReg)) |
Aaron Ballman | c36c6ab | 2014-08-04 13:51:27 +0000 | [diff] [blame] | 1514 | freeStackSlotAfter(Inst, FPReg); |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1515 | FPKills &= ~(1U << FPReg); |
Jakob Stoklund Olesen | 96fad31 | 2010-04-28 18:28:37 +0000 | [diff] [blame] | 1516 | } |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1517 | |
Chris Lattner | 8abed80 | 2008-03-11 19:50:13 +0000 | [diff] [blame] | 1518 | // Don't delete the inline asm! |
| 1519 | return; |
| 1520 | } |
Jakob Stoklund Olesen | 7297e7e | 2011-06-28 18:32:28 +0000 | [diff] [blame] | 1521 | |
David Woodhouse | 79dd505 | 2014-01-08 12:58:07 +0000 | [diff] [blame] | 1522 | case X86::RETQ: |
| 1523 | case X86::RETL: |
David Woodhouse | 4e033b0 | 2014-01-13 14:05:59 +0000 | [diff] [blame] | 1524 | case X86::RETIL: |
| 1525 | case X86::RETIQ: |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1526 | // If RET has an FP register use operand, pass the first one in ST(0) and |
| 1527 | // the second one in ST(1). |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 1528 | |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1529 | // Find the register operands. |
| 1530 | unsigned FirstFPRegOp = ~0U, SecondFPRegOp = ~0U; |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 1531 | unsigned LiveMask = 0; |
| 1532 | |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1533 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 1534 | MachineOperand &Op = MI->getOperand(i); |
Dan Gohman | 0d1e9a8 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 1535 | if (!Op.isReg() || Op.getReg() < X86::FP0 || Op.getReg() > X86::FP6) |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1536 | continue; |
Chris Lattner | c55b444 | 2008-03-21 20:41:27 +0000 | [diff] [blame] | 1537 | // FP Register uses must be kills unless there are two uses of the same |
| 1538 | // register, in which case only one will be a kill. |
| 1539 | assert(Op.isUse() && |
| 1540 | (Op.isKill() || // Marked kill. |
| 1541 | getFPReg(Op) == FirstFPRegOp || // Second instance. |
| 1542 | MI->killsRegister(Op.getReg())) && // Later use is marked kill. |
| 1543 | "Ret only defs operands, and values aren't live beyond it"); |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1544 | |
| 1545 | if (FirstFPRegOp == ~0U) |
| 1546 | FirstFPRegOp = getFPReg(Op); |
| 1547 | else { |
| 1548 | assert(SecondFPRegOp == ~0U && "More than two fp operands!"); |
| 1549 | SecondFPRegOp = getFPReg(Op); |
| 1550 | } |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 1551 | LiveMask |= (1 << getFPReg(Op)); |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1552 | |
| 1553 | // Remove the operand so that later passes don't see it. |
| 1554 | MI->RemoveOperand(i); |
| 1555 | --i, --e; |
| 1556 | } |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 1557 | |
| 1558 | // We may have been carrying spurious live-ins, so make sure only the returned |
| 1559 | // registers are left live. |
| 1560 | adjustLiveRegs(LiveMask, MI); |
| 1561 | if (!LiveMask) return; // Quick check to see if any are possible. |
| 1562 | |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1563 | // There are only four possibilities here: |
| 1564 | // 1) we are returning a single FP value. In this case, it has to be in |
| 1565 | // ST(0) already, so just declare success by removing the value from the |
| 1566 | // FP Stack. |
| 1567 | if (SecondFPRegOp == ~0U) { |
| 1568 | // Assert that the top of stack contains the right FP register. |
| 1569 | assert(StackTop == 1 && FirstFPRegOp == getStackEntry(0) && |
| 1570 | "Top of stack not the right register for RET!"); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1571 | |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1572 | // Ok, everything is good, mark the value as not being on the stack |
| 1573 | // anymore so that our assertion about the stack being empty at end of |
| 1574 | // block doesn't fire. |
| 1575 | StackTop = 0; |
| 1576 | return; |
| 1577 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1578 | |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1579 | // Otherwise, we are returning two values: |
| 1580 | // 2) If returning the same value for both, we only have one thing in the FP |
| 1581 | // stack. Consider: RET FP1, FP1 |
| 1582 | if (StackTop == 1) { |
| 1583 | assert(FirstFPRegOp == SecondFPRegOp && FirstFPRegOp == getStackEntry(0)&& |
| 1584 | "Stack misconfiguration for RET!"); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1585 | |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1586 | // Duplicate the TOS so that we return it twice. Just pick some other FPx |
| 1587 | // register to hold it. |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1588 | unsigned NewReg = ScratchFPReg; |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1589 | duplicateToTop(FirstFPRegOp, NewReg, MI); |
| 1590 | FirstFPRegOp = NewReg; |
| 1591 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1592 | |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1593 | /// Okay we know we have two different FPx operands now: |
| 1594 | assert(StackTop == 2 && "Must have two values live!"); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1595 | |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1596 | /// 3) If SecondFPRegOp is currently in ST(0) and FirstFPRegOp is currently |
| 1597 | /// in ST(1). In this case, emit an fxch. |
| 1598 | if (getStackEntry(0) == SecondFPRegOp) { |
| 1599 | assert(getStackEntry(1) == FirstFPRegOp && "Unknown regs live"); |
| 1600 | moveToTop(FirstFPRegOp, MI); |
| 1601 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1602 | |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1603 | /// 4) Finally, FirstFPRegOp must be in ST(0) and SecondFPRegOp must be in |
| 1604 | /// ST(1). Just remove both from our understanding of the stack and return. |
| 1605 | assert(getStackEntry(0) == FirstFPRegOp && "Unknown regs live"); |
Chris Lattner | b6f04a3 | 2008-03-21 05:57:20 +0000 | [diff] [blame] | 1606 | assert(getStackEntry(1) == SecondFPRegOp && "Unknown regs live"); |
Chris Lattner | 1bd4436 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1607 | StackTop = 0; |
| 1608 | return; |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1609 | } |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1610 | |
Aaron Ballman | c36c6ab | 2014-08-04 13:51:27 +0000 | [diff] [blame] | 1611 | Inst = MBB->erase(Inst); // Remove the pseudo instruction |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 1612 | |
| 1613 | // We want to leave I pointing to the previous instruction, but what if we |
| 1614 | // just erased the first instruction? |
Aaron Ballman | c36c6ab | 2014-08-04 13:51:27 +0000 | [diff] [blame] | 1615 | if (Inst == MBB->begin()) { |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 1616 | DEBUG(dbgs() << "Inserting dummy KILL\n"); |
Aaron Ballman | c36c6ab | 2014-08-04 13:51:27 +0000 | [diff] [blame] | 1617 | Inst = BuildMI(*MBB, Inst, DebugLoc(), TII->get(TargetOpcode::KILL)); |
Jakob Stoklund Olesen | 0e5fb02 | 2010-07-16 16:38:12 +0000 | [diff] [blame] | 1618 | } else |
Aaron Ballman | c36c6ab | 2014-08-04 13:51:27 +0000 | [diff] [blame] | 1619 | --Inst; |
Chris Lattner | cf53bcf | 2003-01-13 01:01:59 +0000 | [diff] [blame] | 1620 | } |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1621 | |
| 1622 | void FPS::setKillFlags(MachineBasicBlock &MBB) const { |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 1623 | const TargetRegisterInfo *TRI = |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 1624 | MBB.getParent()->getSubtarget().getRegisterInfo(); |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1625 | LivePhysRegs LPR(TRI); |
| 1626 | |
| 1627 | LPR.addLiveOuts(&MBB); |
| 1628 | |
| 1629 | for (MachineBasicBlock::reverse_iterator I = MBB.rbegin(), E = MBB.rend(); |
| 1630 | I != E; ++I) { |
Akira Hatanaka | 452ea66 | 2014-08-19 02:09:57 +0000 | [diff] [blame] | 1631 | if (I->isDebugValue()) |
| 1632 | continue; |
| 1633 | |
Benjamin Kramer | 9e5b4a5 | 2014-09-11 15:58:39 +0000 | [diff] [blame] | 1634 | std::bitset<8> Defs; |
Akira Hatanaka | 3516669 | 2014-08-01 22:19:41 +0000 | [diff] [blame] | 1635 | 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 | } |