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