Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 1 | //==--- InstrEmitter.cpp - Emit MachineInstrs for the SelectionDAG class ---==// |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 10 | // This implements the Emit routines for the SelectionDAG class, which creates |
| 11 | // MachineInstrs based on the decisions of the SelectionDAG instruction |
| 12 | // selection. |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 16 | #define DEBUG_TYPE "instr-emitter" |
| 17 | #include "InstrEmitter.h" |
Evan Cheng | a8efe28 | 2010-03-14 19:56:39 +0000 | [diff] [blame] | 18 | #include "SDNodeDbgValue.h" |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/MachineConstantPool.h" |
| 20 | #include "llvm/CodeGen/MachineFunction.h" |
| 21 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 22 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 23 | #include "llvm/Target/TargetData.h" |
| 24 | #include "llvm/Target/TargetMachine.h" |
| 25 | #include "llvm/Target/TargetInstrInfo.h" |
| 26 | #include "llvm/Target/TargetLowering.h" |
| 27 | #include "llvm/ADT/Statistic.h" |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 28 | #include "llvm/Support/Debug.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 29 | #include "llvm/Support/ErrorHandling.h" |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 30 | #include "llvm/Support/MathExtras.h" |
| 31 | using namespace llvm; |
| 32 | |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 33 | /// CountResults - The results of target nodes have register or immediate |
| 34 | /// operands first, then an optional chain, and optional flag operands (which do |
| 35 | /// not go into the resulting MachineInstr). |
| 36 | unsigned InstrEmitter::CountResults(SDNode *Node) { |
| 37 | unsigned N = Node->getNumValues(); |
| 38 | while (N && Node->getValueType(N - 1) == MVT::Flag) |
| 39 | --N; |
| 40 | if (N && Node->getValueType(N - 1) == MVT::Other) |
| 41 | --N; // Skip over chain result. |
| 42 | return N; |
| 43 | } |
| 44 | |
| 45 | /// CountOperands - The inputs to target nodes have any actual inputs first, |
| 46 | /// followed by an optional chain operand, then an optional flag operand. |
| 47 | /// Compute the number of actual operands that will go into the resulting |
| 48 | /// MachineInstr. |
| 49 | unsigned InstrEmitter::CountOperands(SDNode *Node) { |
| 50 | unsigned N = Node->getNumOperands(); |
| 51 | while (N && Node->getOperand(N - 1).getValueType() == MVT::Flag) |
| 52 | --N; |
| 53 | if (N && Node->getOperand(N - 1).getValueType() == MVT::Other) |
| 54 | --N; // Ignore chain if it exists. |
| 55 | return N; |
| 56 | } |
| 57 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 58 | /// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an |
| 59 | /// implicit physical register output. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 60 | void InstrEmitter:: |
Chris Lattner | 5202312 | 2009-06-26 05:39:02 +0000 | [diff] [blame] | 61 | EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned, |
| 62 | unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 63 | unsigned VRBase = 0; |
| 64 | if (TargetRegisterInfo::isVirtualRegister(SrcReg)) { |
| 65 | // Just use the input register directly! |
| 66 | SDValue Op(Node, ResNo); |
| 67 | if (IsClone) |
| 68 | VRBaseMap.erase(Op); |
| 69 | bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; |
| 70 | isNew = isNew; // Silence compiler warning. |
| 71 | assert(isNew && "Node emitted out of order - early"); |
| 72 | return; |
| 73 | } |
| 74 | |
| 75 | // If the node is only used by a CopyToReg and the dest reg is a vreg, use |
| 76 | // the CopyToReg'd destination register instead of creating a new vreg. |
| 77 | bool MatchReg = true; |
Evan Cheng | 1cd3327 | 2008-09-16 23:12:11 +0000 | [diff] [blame] | 78 | const TargetRegisterClass *UseRC = NULL; |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 79 | if (!IsClone && !IsCloned) |
| 80 | for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end(); |
| 81 | UI != E; ++UI) { |
| 82 | SDNode *User = *UI; |
| 83 | bool Match = true; |
| 84 | if (User->getOpcode() == ISD::CopyToReg && |
| 85 | User->getOperand(2).getNode() == Node && |
| 86 | User->getOperand(2).getResNo() == ResNo) { |
| 87 | unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); |
| 88 | if (TargetRegisterInfo::isVirtualRegister(DestReg)) { |
| 89 | VRBase = DestReg; |
| 90 | Match = false; |
| 91 | } else if (DestReg != SrcReg) |
| 92 | Match = false; |
| 93 | } else { |
| 94 | for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) { |
| 95 | SDValue Op = User->getOperand(i); |
| 96 | if (Op.getNode() != Node || Op.getResNo() != ResNo) |
| 97 | continue; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 98 | EVT VT = Node->getValueType(Op.getResNo()); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 99 | if (VT == MVT::Other || VT == MVT::Flag) |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 100 | continue; |
| 101 | Match = false; |
| 102 | if (User->isMachineOpcode()) { |
| 103 | const TargetInstrDesc &II = TII->get(User->getMachineOpcode()); |
Chris Lattner | 2a38688 | 2009-07-29 21:36:49 +0000 | [diff] [blame] | 104 | const TargetRegisterClass *RC = 0; |
| 105 | if (i+II.getNumDefs() < II.getNumOperands()) |
| 106 | RC = II.OpInfo[i+II.getNumDefs()].getRegClass(TRI); |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 107 | if (!UseRC) |
| 108 | UseRC = RC; |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 109 | else if (RC) { |
Jakob Stoklund Olesen | f7e8af9 | 2009-08-16 17:40:59 +0000 | [diff] [blame] | 110 | const TargetRegisterClass *ComRC = getCommonSubClass(UseRC, RC); |
| 111 | // If multiple uses expect disjoint register classes, we emit |
| 112 | // copies in AddRegisterOperand. |
| 113 | if (ComRC) |
| 114 | UseRC = ComRC; |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 115 | } |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 116 | } |
Evan Cheng | 1cd3327 | 2008-09-16 23:12:11 +0000 | [diff] [blame] | 117 | } |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 118 | } |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 119 | MatchReg &= Match; |
| 120 | if (VRBase) |
| 121 | break; |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 122 | } |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 123 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 124 | EVT VT = Node->getValueType(ResNo); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 125 | const TargetRegisterClass *SrcRC = 0, *DstRC = 0; |
Rafael Espindola | d31f972 | 2010-06-29 14:02:34 +0000 | [diff] [blame] | 126 | SrcRC = TRI->getMinimalPhysRegClass(SrcReg, VT); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 127 | |
| 128 | // Figure out the register class to create for the destreg. |
| 129 | if (VRBase) { |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 130 | DstRC = MRI->getRegClass(VRBase); |
Evan Cheng | 1cd3327 | 2008-09-16 23:12:11 +0000 | [diff] [blame] | 131 | } else if (UseRC) { |
| 132 | assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!"); |
| 133 | DstRC = UseRC; |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 134 | } else { |
Evan Cheng | 1cd3327 | 2008-09-16 23:12:11 +0000 | [diff] [blame] | 135 | DstRC = TLI->getRegClassFor(VT); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | // If all uses are reading from the src physical register and copying the |
| 139 | // register is either impossible or very expensive, then don't create a copy. |
| 140 | if (MatchReg && SrcRC->getCopyCost() < 0) { |
| 141 | VRBase = SrcReg; |
| 142 | } else { |
| 143 | // Create the reg, emit the copy. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 144 | VRBase = MRI->createVirtualRegister(DstRC); |
| 145 | bool Emitted = TII->copyRegToReg(*MBB, InsertPos, VRBase, SrcReg, |
Dan Gohman | 34dcc6f | 2010-05-06 20:33:48 +0000 | [diff] [blame] | 146 | DstRC, SrcRC, Node->getDebugLoc()); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 147 | |
| 148 | assert(Emitted && "Unable to issue a copy instruction!\n"); |
Daniel Dunbar | 8c562e2 | 2009-05-18 16:43:04 +0000 | [diff] [blame] | 149 | (void) Emitted; |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | SDValue Op(Node, ResNo); |
| 153 | if (IsClone) |
| 154 | VRBaseMap.erase(Op); |
| 155 | bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; |
| 156 | isNew = isNew; // Silence compiler warning. |
| 157 | assert(isNew && "Node emitted out of order - early"); |
| 158 | } |
| 159 | |
| 160 | /// getDstOfCopyToRegUse - If the only use of the specified result number of |
| 161 | /// node is a CopyToReg, return its destination register. Return 0 otherwise. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 162 | unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node, |
| 163 | unsigned ResNo) const { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 164 | if (!Node->hasOneUse()) |
| 165 | return 0; |
| 166 | |
| 167 | SDNode *User = *Node->use_begin(); |
| 168 | if (User->getOpcode() == ISD::CopyToReg && |
| 169 | User->getOperand(2).getNode() == Node && |
| 170 | User->getOperand(2).getResNo() == ResNo) { |
| 171 | unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); |
| 172 | if (TargetRegisterInfo::isVirtualRegister(Reg)) |
| 173 | return Reg; |
| 174 | } |
| 175 | return 0; |
| 176 | } |
| 177 | |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 178 | void InstrEmitter::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI, |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 179 | const TargetInstrDesc &II, |
| 180 | bool IsClone, bool IsCloned, |
Evan Cheng | 5c3c5a4 | 2009-01-09 22:44:02 +0000 | [diff] [blame] | 181 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 182 | assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF && |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 183 | "IMPLICIT_DEF should have been handled as a special case elsewhere!"); |
| 184 | |
| 185 | for (unsigned i = 0; i < II.getNumDefs(); ++i) { |
| 186 | // If the specific node value is only used by a CopyToReg and the dest reg |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 187 | // is a vreg in the same register class, use the CopyToReg'd destination |
| 188 | // register instead of creating a new vreg. |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 189 | unsigned VRBase = 0; |
Chris Lattner | 2a38688 | 2009-07-29 21:36:49 +0000 | [diff] [blame] | 190 | const TargetRegisterClass *RC = II.OpInfo[i].getRegClass(TRI); |
Evan Cheng | 8955e93 | 2009-07-11 01:06:50 +0000 | [diff] [blame] | 191 | if (II.OpInfo[i].isOptionalDef()) { |
| 192 | // Optional def must be a physical register. |
| 193 | unsigned NumResults = CountResults(Node); |
| 194 | VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg(); |
| 195 | assert(TargetRegisterInfo::isPhysicalRegister(VRBase)); |
| 196 | MI->addOperand(MachineOperand::CreateReg(VRBase, true)); |
| 197 | } |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 198 | |
Evan Cheng | 8955e93 | 2009-07-11 01:06:50 +0000 | [diff] [blame] | 199 | if (!VRBase && !IsClone && !IsCloned) |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 200 | for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end(); |
| 201 | UI != E; ++UI) { |
| 202 | SDNode *User = *UI; |
| 203 | if (User->getOpcode() == ISD::CopyToReg && |
| 204 | User->getOperand(2).getNode() == Node && |
| 205 | User->getOperand(2).getResNo() == i) { |
| 206 | unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); |
| 207 | if (TargetRegisterInfo::isVirtualRegister(Reg)) { |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 208 | const TargetRegisterClass *RegRC = MRI->getRegClass(Reg); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 209 | if (RegRC == RC) { |
| 210 | VRBase = Reg; |
| 211 | MI->addOperand(MachineOperand::CreateReg(Reg, true)); |
| 212 | break; |
| 213 | } |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 214 | } |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 215 | } |
| 216 | } |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 217 | |
| 218 | // Create the result registers for this node and add the result regs to |
| 219 | // the machine instruction. |
| 220 | if (VRBase == 0) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 221 | assert(RC && "Isn't a register operand!"); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 222 | VRBase = MRI->createVirtualRegister(RC); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 223 | MI->addOperand(MachineOperand::CreateReg(VRBase, true)); |
| 224 | } |
| 225 | |
| 226 | SDValue Op(Node, i); |
Evan Cheng | 5c3c5a4 | 2009-01-09 22:44:02 +0000 | [diff] [blame] | 227 | if (IsClone) |
| 228 | VRBaseMap.erase(Op); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 229 | bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; |
| 230 | isNew = isNew; // Silence compiler warning. |
| 231 | assert(isNew && "Node emitted out of order - early"); |
| 232 | } |
| 233 | } |
| 234 | |
| 235 | /// getVR - Return the virtual register corresponding to the specified result |
| 236 | /// of the specified node. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 237 | unsigned InstrEmitter::getVR(SDValue Op, |
| 238 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 239 | if (Op.isMachineOpcode() && |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 240 | Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 241 | // Add an IMPLICIT_DEF instruction before every use. |
| 242 | unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo()); |
| 243 | // IMPLICIT_DEF can produce any type of result so its TargetInstrDesc |
| 244 | // does not include operand register class info. |
| 245 | if (!VReg) { |
| 246 | const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType()); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 247 | VReg = MRI->createVirtualRegister(RC); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 248 | } |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 249 | BuildMI(MBB, Op.getDebugLoc(), |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 250 | TII->get(TargetOpcode::IMPLICIT_DEF), VReg); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 251 | return VReg; |
| 252 | } |
| 253 | |
| 254 | DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op); |
| 255 | assert(I != VRBaseMap.end() && "Node emitted out of order - late"); |
| 256 | return I->second; |
| 257 | } |
| 258 | |
| 259 | |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 260 | /// AddRegisterOperand - Add the specified register as an operand to the |
| 261 | /// specified machine instr. Insert register copies if the register is |
| 262 | /// not in the required register class. |
| 263 | void |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 264 | InstrEmitter::AddRegisterOperand(MachineInstr *MI, SDValue Op, |
| 265 | unsigned IIOpNum, |
| 266 | const TargetInstrDesc *II, |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 267 | DenseMap<SDValue, unsigned> &VRBaseMap, |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 268 | bool IsDebug, bool IsClone, bool IsCloned) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 269 | assert(Op.getValueType() != MVT::Other && |
| 270 | Op.getValueType() != MVT::Flag && |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 271 | "Chain and flag operands should occur at end of operand list!"); |
| 272 | // Get/emit the operand. |
| 273 | unsigned VReg = getVR(Op, VRBaseMap); |
| 274 | assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?"); |
| 275 | |
| 276 | const TargetInstrDesc &TID = MI->getDesc(); |
| 277 | bool isOptDef = IIOpNum < TID.getNumOperands() && |
| 278 | TID.OpInfo[IIOpNum].isOptionalDef(); |
| 279 | |
| 280 | // If the instruction requires a register in a different class, create |
| 281 | // a new virtual register and copy the value into it. |
| 282 | if (II) { |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 283 | const TargetRegisterClass *SrcRC = MRI->getRegClass(VReg); |
Chris Lattner | 2a38688 | 2009-07-29 21:36:49 +0000 | [diff] [blame] | 284 | const TargetRegisterClass *DstRC = 0; |
| 285 | if (IIOpNum < II->getNumOperands()) |
| 286 | DstRC = II->OpInfo[IIOpNum].getRegClass(TRI); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 287 | assert((DstRC || (TID.isVariadic() && IIOpNum >= TID.getNumOperands())) && |
| 288 | "Don't have operand info for this instruction!"); |
| 289 | if (DstRC && SrcRC != DstRC && !SrcRC->hasSuperClass(DstRC)) { |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 290 | unsigned NewVReg = MRI->createVirtualRegister(DstRC); |
| 291 | bool Emitted = TII->copyRegToReg(*MBB, InsertPos, NewVReg, VReg, |
Dan Gohman | 34dcc6f | 2010-05-06 20:33:48 +0000 | [diff] [blame] | 292 | DstRC, SrcRC, Op.getNode()->getDebugLoc()); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 293 | assert(Emitted && "Unable to issue a copy instruction!\n"); |
Daniel Dunbar | 8c562e2 | 2009-05-18 16:43:04 +0000 | [diff] [blame] | 294 | (void) Emitted; |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 295 | VReg = NewVReg; |
| 296 | } |
| 297 | } |
| 298 | |
Dan Gohman | 47bd03b | 2010-04-30 00:08:21 +0000 | [diff] [blame] | 299 | // If this value has only one use, that use is a kill. This is a |
Dan Gohman | 9d7019f | 2010-05-11 21:59:14 +0000 | [diff] [blame] | 300 | // conservative approximation. InstrEmitter does trivial coalescing |
| 301 | // with CopyFromReg nodes, so don't emit kill flags for them. |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 302 | // Avoid kill flags on Schedule cloned nodes, since there will be |
| 303 | // multiple uses. |
Dan Gohman | 9d7019f | 2010-05-11 21:59:14 +0000 | [diff] [blame] | 304 | // Tied operands are never killed, so we need to check that. And that |
| 305 | // means we need to determine the index of the operand. |
| 306 | bool isKill = Op.hasOneUse() && |
| 307 | Op.getNode()->getOpcode() != ISD::CopyFromReg && |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 308 | !IsDebug && |
| 309 | !(IsClone || IsCloned); |
Dan Gohman | 9d7019f | 2010-05-11 21:59:14 +0000 | [diff] [blame] | 310 | if (isKill) { |
| 311 | unsigned Idx = MI->getNumOperands(); |
| 312 | while (Idx > 0 && |
| 313 | MI->getOperand(Idx-1).isReg() && MI->getOperand(Idx-1).isImplicit()) |
| 314 | --Idx; |
| 315 | bool isTied = MI->getDesc().getOperandConstraint(Idx, TOI::TIED_TO) != -1; |
| 316 | if (isTied) |
| 317 | isKill = false; |
| 318 | } |
Dan Gohman | 47bd03b | 2010-04-30 00:08:21 +0000 | [diff] [blame] | 319 | |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 320 | MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef, |
Dan Gohman | 47bd03b | 2010-04-30 00:08:21 +0000 | [diff] [blame] | 321 | false/*isImp*/, isKill, |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 322 | false/*isDead*/, false/*isUndef*/, |
| 323 | false/*isEarlyClobber*/, |
| 324 | 0/*SubReg*/, IsDebug)); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 325 | } |
| 326 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 327 | /// AddOperand - Add the specified operand to the specified machine instr. II |
| 328 | /// specifies the instruction information for the node, and IIOpNum is the |
| 329 | /// operand number (in the II) that we are adding. IIOpNum and II are used for |
| 330 | /// assertions only. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 331 | void InstrEmitter::AddOperand(MachineInstr *MI, SDValue Op, |
| 332 | unsigned IIOpNum, |
| 333 | const TargetInstrDesc *II, |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 334 | DenseMap<SDValue, unsigned> &VRBaseMap, |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 335 | bool IsDebug, bool IsClone, bool IsCloned) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 336 | if (Op.isMachineOpcode()) { |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 337 | AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap, |
| 338 | IsDebug, IsClone, IsCloned); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 339 | } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Chris Lattner | d842962 | 2009-09-08 23:05:44 +0000 | [diff] [blame] | 340 | MI->addOperand(MachineOperand::CreateImm(C->getSExtValue())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 341 | } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) { |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 342 | const ConstantFP *CFP = F->getConstantFPValue(); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 343 | MI->addOperand(MachineOperand::CreateFPImm(CFP)); |
| 344 | } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) { |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 345 | MI->addOperand(MachineOperand::CreateReg(R->getReg(), false)); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 346 | } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) { |
Chris Lattner | 6ec66db | 2009-06-26 05:52:14 +0000 | [diff] [blame] | 347 | MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(), TGA->getOffset(), |
| 348 | TGA->getTargetFlags())); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 349 | } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) { |
| 350 | MI->addOperand(MachineOperand::CreateMBB(BBNode->getBasicBlock())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 351 | } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) { |
| 352 | MI->addOperand(MachineOperand::CreateFI(FI->getIndex())); |
| 353 | } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) { |
Chris Lattner | 6ec66db | 2009-06-26 05:52:14 +0000 | [diff] [blame] | 354 | MI->addOperand(MachineOperand::CreateJTI(JT->getIndex(), |
| 355 | JT->getTargetFlags())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 356 | } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) { |
| 357 | int Offset = CP->getOffset(); |
| 358 | unsigned Align = CP->getAlignment(); |
| 359 | const Type *Type = CP->getType(); |
| 360 | // MachineConstantPool wants an explicit alignment. |
| 361 | if (Align == 0) { |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 362 | Align = TM->getTargetData()->getPrefTypeAlignment(Type); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 363 | if (Align == 0) { |
| 364 | // Alignment of vector types. FIXME! |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 365 | Align = TM->getTargetData()->getTypeAllocSize(Type); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 366 | } |
| 367 | } |
| 368 | |
| 369 | unsigned Idx; |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 370 | MachineConstantPool *MCP = MF->getConstantPool(); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 371 | if (CP->isMachineConstantPoolEntry()) |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 372 | Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 373 | else |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 374 | Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align); |
Chris Lattner | 6ec66db | 2009-06-26 05:52:14 +0000 | [diff] [blame] | 375 | MI->addOperand(MachineOperand::CreateCPI(Idx, Offset, |
| 376 | CP->getTargetFlags())); |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 377 | } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) { |
Daniel Dunbar | 31e2c7b | 2009-09-01 22:06:46 +0000 | [diff] [blame] | 378 | MI->addOperand(MachineOperand::CreateES(ES->getSymbol(), |
Chris Lattner | 6ec66db | 2009-06-26 05:52:14 +0000 | [diff] [blame] | 379 | ES->getTargetFlags())); |
Dan Gohman | 8c2b525 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 380 | } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) { |
Dan Gohman | 29cbade | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 381 | MI->addOperand(MachineOperand::CreateBA(BA->getBlockAddress(), |
| 382 | BA->getTargetFlags())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 383 | } else { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 384 | assert(Op.getValueType() != MVT::Other && |
| 385 | Op.getValueType() != MVT::Flag && |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 386 | "Chain and flag operands should occur at end of operand list!"); |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 387 | AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap, |
| 388 | IsDebug, IsClone, IsCloned); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 389 | } |
| 390 | } |
| 391 | |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 392 | /// getSuperRegisterRegClass - Returns the register class of a superreg A whose |
| 393 | /// "SubIdx"'th sub-register class is the specified register class and whose |
| 394 | /// type matches the specified type. |
| 395 | static const TargetRegisterClass* |
| 396 | getSuperRegisterRegClass(const TargetRegisterClass *TRC, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 397 | unsigned SubIdx, EVT VT) { |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 398 | // Pick the register class of the superegister for this type |
| 399 | for (TargetRegisterInfo::regclass_iterator I = TRC->superregclasses_begin(), |
| 400 | E = TRC->superregclasses_end(); I != E; ++I) |
Jakob Stoklund Olesen | fa4677b | 2009-04-28 16:34:09 +0000 | [diff] [blame] | 401 | if ((*I)->hasType(VT) && (*I)->getSubRegisterRegClass(SubIdx) == TRC) |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 402 | return *I; |
| 403 | assert(false && "Couldn't find the register class"); |
| 404 | return 0; |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 405 | } |
| 406 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 407 | /// EmitSubregNode - Generate machine code for subreg nodes. |
| 408 | /// |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 409 | void InstrEmitter::EmitSubregNode(SDNode *Node, |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 410 | DenseMap<SDValue, unsigned> &VRBaseMap, |
| 411 | bool IsClone, bool IsCloned) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 412 | unsigned VRBase = 0; |
| 413 | unsigned Opc = Node->getMachineOpcode(); |
| 414 | |
| 415 | // If the node is only used by a CopyToReg and the dest reg is a vreg, use |
| 416 | // the CopyToReg'd destination register instead of creating a new vreg. |
| 417 | for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end(); |
| 418 | UI != E; ++UI) { |
| 419 | SDNode *User = *UI; |
| 420 | if (User->getOpcode() == ISD::CopyToReg && |
| 421 | User->getOperand(2).getNode() == Node) { |
| 422 | unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); |
| 423 | if (TargetRegisterInfo::isVirtualRegister(DestReg)) { |
| 424 | VRBase = DestReg; |
| 425 | break; |
| 426 | } |
| 427 | } |
| 428 | } |
| 429 | |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 430 | if (Opc == TargetOpcode::EXTRACT_SUBREG) { |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame^] | 431 | // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 432 | unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue(); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 433 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 434 | // Figure out the register class to create for the destreg. |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 435 | unsigned VReg = getVR(Node->getOperand(0), VRBaseMap); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 436 | const TargetRegisterClass *TRC = MRI->getRegClass(VReg); |
Jakob Stoklund Olesen | fa4677b | 2009-04-28 16:34:09 +0000 | [diff] [blame] | 437 | const TargetRegisterClass *SRC = TRC->getSubRegisterRegClass(SubIdx); |
| 438 | assert(SRC && "Invalid subregister index in EXTRACT_SUBREG"); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 439 | |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 440 | // Figure out the register class to create for the destreg. |
| 441 | // Note that if we're going to directly use an existing register, |
| 442 | // it must be precisely the required class, and not a subclass |
| 443 | // thereof. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 444 | if (VRBase == 0 || SRC != MRI->getRegClass(VRBase)) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 445 | // Create the reg |
| 446 | assert(SRC && "Couldn't find source register class"); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 447 | VRBase = MRI->createVirtualRegister(SRC); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 448 | } |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 449 | |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame^] | 450 | // Create the extract_subreg machine instruction. |
| 451 | MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), |
| 452 | TII->get(TargetOpcode::COPY), VRBase); |
| 453 | |
| 454 | // Add source, and subreg index |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 455 | AddOperand(MI, Node->getOperand(0), 0, 0, VRBaseMap, /*IsDebug=*/false, |
| 456 | IsClone, IsCloned); |
Jakob Stoklund Olesen | 0bc25f4 | 2010-07-08 16:40:22 +0000 | [diff] [blame^] | 457 | assert(TargetRegisterInfo::isVirtualRegister(MI->getOperand(1).getReg()) && |
| 458 | "Cannot yet extract from physregs"); |
| 459 | MI->getOperand(1).setSubReg(SubIdx); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 460 | MBB->insert(InsertPos, MI); |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 461 | } else if (Opc == TargetOpcode::INSERT_SUBREG || |
| 462 | Opc == TargetOpcode::SUBREG_TO_REG) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 463 | SDValue N0 = Node->getOperand(0); |
| 464 | SDValue N1 = Node->getOperand(1); |
| 465 | SDValue N2 = Node->getOperand(2); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 466 | unsigned SubReg = getVR(N1, VRBaseMap); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 467 | unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue(); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 468 | const TargetRegisterClass *TRC = MRI->getRegClass(SubReg); |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 469 | const TargetRegisterClass *SRC = |
Evan Cheng | ba609c8 | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 470 | getSuperRegisterRegClass(TRC, SubIdx, Node->getValueType(0)); |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 471 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 472 | // Figure out the register class to create for the destreg. |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 473 | // Note that if we're going to directly use an existing register, |
| 474 | // it must be precisely the required class, and not a subclass |
| 475 | // thereof. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 476 | if (VRBase == 0 || SRC != MRI->getRegClass(VRBase)) { |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 477 | // Create the reg |
| 478 | assert(SRC && "Couldn't find source register class"); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 479 | VRBase = MRI->createVirtualRegister(SRC); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 480 | } |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 481 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 482 | // Create the insert_subreg or subreg_to_reg machine instruction. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 483 | MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc)); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 484 | MI->addOperand(MachineOperand::CreateReg(VRBase, true)); |
| 485 | |
| 486 | // If creating a subreg_to_reg, then the first input operand |
| 487 | // is an implicit value immediate, otherwise it's a register |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 488 | if (Opc == TargetOpcode::SUBREG_TO_REG) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 489 | const ConstantSDNode *SD = cast<ConstantSDNode>(N0); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 490 | MI->addOperand(MachineOperand::CreateImm(SD->getZExtValue())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 491 | } else |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 492 | AddOperand(MI, N0, 0, 0, VRBaseMap, /*IsDebug=*/false, |
| 493 | IsClone, IsCloned); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 494 | // Add the subregster being inserted |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 495 | AddOperand(MI, N1, 0, 0, VRBaseMap, /*IsDebug=*/false, |
| 496 | IsClone, IsCloned); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 497 | MI->addOperand(MachineOperand::CreateImm(SubIdx)); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 498 | MBB->insert(InsertPos, MI); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 499 | } else |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 500 | llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg"); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 501 | |
| 502 | SDValue Op(Node, 0); |
| 503 | bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; |
| 504 | isNew = isNew; // Silence compiler warning. |
| 505 | assert(isNew && "Node emitted out of order - early"); |
| 506 | } |
| 507 | |
Dan Gohman | 88c7af0 | 2009-04-13 21:06:25 +0000 | [diff] [blame] | 508 | /// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes. |
| 509 | /// COPY_TO_REGCLASS is just a normal copy, except that the destination |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 510 | /// register is constrained to be in a particular register class. |
| 511 | /// |
| 512 | void |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 513 | InstrEmitter::EmitCopyToRegClassNode(SDNode *Node, |
| 514 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 515 | unsigned VReg = getVR(Node->getOperand(0), VRBaseMap); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 516 | const TargetRegisterClass *SrcRC = MRI->getRegClass(VReg); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 517 | |
| 518 | unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue(); |
| 519 | const TargetRegisterClass *DstRC = TRI->getRegClass(DstRCIdx); |
| 520 | |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 521 | // Create the new VReg in the destination class and emit a copy. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 522 | unsigned NewVReg = MRI->createVirtualRegister(DstRC); |
| 523 | bool Emitted = TII->copyRegToReg(*MBB, InsertPos, NewVReg, VReg, |
Dan Gohman | 34dcc6f | 2010-05-06 20:33:48 +0000 | [diff] [blame] | 524 | DstRC, SrcRC, Node->getDebugLoc()); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 525 | assert(Emitted && |
Dan Gohman | 88c7af0 | 2009-04-13 21:06:25 +0000 | [diff] [blame] | 526 | "Unable to issue a copy instruction for a COPY_TO_REGCLASS node!\n"); |
Daniel Dunbar | 8c562e2 | 2009-05-18 16:43:04 +0000 | [diff] [blame] | 527 | (void) Emitted; |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 528 | |
| 529 | SDValue Op(Node, 0); |
| 530 | bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second; |
| 531 | isNew = isNew; // Silence compiler warning. |
| 532 | assert(isNew && "Node emitted out of order - early"); |
| 533 | } |
| 534 | |
Evan Cheng | ba609c8 | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 535 | /// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes. |
| 536 | /// |
| 537 | void InstrEmitter::EmitRegSequence(SDNode *Node, |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 538 | DenseMap<SDValue, unsigned> &VRBaseMap, |
| 539 | bool IsClone, bool IsCloned) { |
Evan Cheng | ba609c8 | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 540 | const TargetRegisterClass *RC = TLI->getRegClassFor(Node->getValueType(0)); |
| 541 | unsigned NewVReg = MRI->createVirtualRegister(RC); |
| 542 | MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), |
| 543 | TII->get(TargetOpcode::REG_SEQUENCE), NewVReg); |
| 544 | unsigned NumOps = Node->getNumOperands(); |
| 545 | assert((NumOps & 1) == 0 && |
| 546 | "REG_SEQUENCE must have an even number of operands!"); |
| 547 | const TargetInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE); |
| 548 | for (unsigned i = 0; i != NumOps; ++i) { |
| 549 | SDValue Op = Node->getOperand(i); |
Evan Cheng | ba609c8 | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 550 | if (i & 1) { |
| 551 | unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue(); |
| 552 | unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap); |
Evan Cheng | 60ffa94 | 2010-05-10 23:08:19 +0000 | [diff] [blame] | 553 | const TargetRegisterClass *TRC = MRI->getRegClass(SubReg); |
| 554 | const TargetRegisterClass *SRC = |
Evan Cheng | 27e4840 | 2010-05-18 20:03:28 +0000 | [diff] [blame] | 555 | TRI->getMatchingSuperRegClass(RC, TRC, SubIdx); |
Evan Cheng | 27e4840 | 2010-05-18 20:03:28 +0000 | [diff] [blame] | 556 | if (!SRC) |
| 557 | llvm_unreachable("Invalid subregister index in REG_SEQUENCE"); |
Evan Cheng | 5012f9b | 2010-05-18 20:07:47 +0000 | [diff] [blame] | 558 | if (SRC != RC) { |
Evan Cheng | 27e4840 | 2010-05-18 20:03:28 +0000 | [diff] [blame] | 559 | MRI->setRegClass(NewVReg, SRC); |
Evan Cheng | 5012f9b | 2010-05-18 20:07:47 +0000 | [diff] [blame] | 560 | RC = SRC; |
| 561 | } |
Evan Cheng | ba609c8 | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 562 | } |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 563 | AddOperand(MI, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false, |
| 564 | IsClone, IsCloned); |
Evan Cheng | ba609c8 | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 565 | } |
| 566 | |
| 567 | MBB->insert(InsertPos, MI); |
| 568 | SDValue Op(Node, 0); |
| 569 | bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second; |
| 570 | isNew = isNew; // Silence compiler warning. |
| 571 | assert(isNew && "Node emitted out of order - early"); |
| 572 | } |
| 573 | |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 574 | /// EmitDbgValue - Generate machine instruction for a dbg_value node. |
| 575 | /// |
Dan Gohman | 891ff8f | 2010-04-30 19:35:33 +0000 | [diff] [blame] | 576 | MachineInstr * |
| 577 | InstrEmitter::EmitDbgValue(SDDbgValue *SD, |
| 578 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 579 | uint64_t Offset = SD->getOffset(); |
| 580 | MDNode* MDPtr = SD->getMDPtr(); |
| 581 | DebugLoc DL = SD->getDebugLoc(); |
| 582 | |
Dale Johannesen | f822e73 | 2010-04-25 21:33:54 +0000 | [diff] [blame] | 583 | if (SD->getKind() == SDDbgValue::FRAMEIX) { |
| 584 | // Stack address; this needs to be lowered in target-dependent fashion. |
| 585 | // EmitTargetCodeForFrameDebugValue is responsible for allocation. |
| 586 | unsigned FrameIx = SD->getFrameIx(); |
Evan Cheng | 962021b | 2010-04-26 07:38:55 +0000 | [diff] [blame] | 587 | return TII->emitFrameIndexDebugValue(*MF, FrameIx, Offset, MDPtr, DL); |
Dale Johannesen | f822e73 | 2010-04-25 21:33:54 +0000 | [diff] [blame] | 588 | } |
| 589 | // Otherwise, we're going to create an instruction here. |
Dale Johannesen | 06a2663 | 2010-03-06 00:03:23 +0000 | [diff] [blame] | 590 | const TargetInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE); |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 591 | MachineInstrBuilder MIB = BuildMI(*MF, DL, II); |
| 592 | if (SD->getKind() == SDDbgValue::SDNODE) { |
Dale Johannesen | c4d7b14 | 2010-04-06 21:59:56 +0000 | [diff] [blame] | 593 | SDNode *Node = SD->getSDNode(); |
| 594 | SDValue Op = SDValue(Node, SD->getResNo()); |
| 595 | // It's possible we replaced this SDNode with other(s) and therefore |
| 596 | // didn't generate code for it. It's better to catch these cases where |
| 597 | // they happen and transfer the debug info, but trying to guarantee that |
| 598 | // in all cases would be very fragile; this is a safeguard for any |
| 599 | // that were missed. |
| 600 | DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op); |
| 601 | if (I==VRBaseMap.end()) |
| 602 | MIB.addReg(0U); // undef |
| 603 | else |
| 604 | AddOperand(&*MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap, |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 605 | /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false); |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 606 | } else if (SD->getKind() == SDDbgValue::CONST) { |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 607 | const Value *V = SD->getConst(); |
| 608 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) { |
Devang Patel | cc87bfb | 2010-07-07 18:18:18 +0000 | [diff] [blame] | 609 | // FIXME: SDDbgValue constants aren't updated with legalization, so it's |
| 610 | // possible to have i128 constants in them at this point. Dwarf writer |
| 611 | // does not handle i128 constants at the moment so, as a crude workaround, |
| 612 | // just drop the debug info if this happens. |
Dan Gohman | 4ce86f4 | 2010-05-07 22:19:08 +0000 | [diff] [blame] | 613 | if (!CI->getValue().isSignedIntN(64)) |
| 614 | MIB.addReg(0U); |
| 615 | else |
| 616 | MIB.addImm(CI->getSExtValue()); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 617 | } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) { |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 618 | MIB.addFPImm(CF); |
Dale Johannesen | bfdf7f3 | 2010-03-10 22:13:47 +0000 | [diff] [blame] | 619 | } else { |
| 620 | // Could be an Undef. In any case insert an Undef so we can see what we |
| 621 | // dropped. |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 622 | MIB.addReg(0U); |
Dale Johannesen | bfdf7f3 | 2010-03-10 22:13:47 +0000 | [diff] [blame] | 623 | } |
Dale Johannesen | 06a2663 | 2010-03-06 00:03:23 +0000 | [diff] [blame] | 624 | } else { |
| 625 | // Insert an Undef so we can see what we dropped. |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 626 | MIB.addReg(0U); |
Dale Johannesen | 06a2663 | 2010-03-06 00:03:23 +0000 | [diff] [blame] | 627 | } |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 628 | |
| 629 | MIB.addImm(Offset).addMetadata(MDPtr); |
| 630 | return &*MIB; |
Dale Johannesen | 06a2663 | 2010-03-06 00:03:23 +0000 | [diff] [blame] | 631 | } |
| 632 | |
Chris Lattner | 3d7d07e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 633 | /// EmitMachineNode - Generate machine code for a target-specific node and |
| 634 | /// needed dependencies. |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 635 | /// |
Chris Lattner | 3d7d07e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 636 | void InstrEmitter:: |
| 637 | EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned, |
Dan Gohman | af1d8ca | 2010-05-01 00:01:06 +0000 | [diff] [blame] | 638 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Chris Lattner | 3d7d07e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 639 | unsigned Opc = Node->getMachineOpcode(); |
| 640 | |
| 641 | // Handle subreg insert/extract specially |
| 642 | if (Opc == TargetOpcode::EXTRACT_SUBREG || |
| 643 | Opc == TargetOpcode::INSERT_SUBREG || |
| 644 | Opc == TargetOpcode::SUBREG_TO_REG) { |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 645 | EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned); |
Chris Lattner | d41952d | 2010-03-24 23:41:19 +0000 | [diff] [blame] | 646 | return; |
| 647 | } |
| 648 | |
Chris Lattner | 3d7d07e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 649 | // Handle COPY_TO_REGCLASS specially. |
| 650 | if (Opc == TargetOpcode::COPY_TO_REGCLASS) { |
| 651 | EmitCopyToRegClassNode(Node, VRBaseMap); |
| 652 | return; |
| 653 | } |
| 654 | |
Evan Cheng | ba609c8 | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 655 | // Handle REG_SEQUENCE specially. |
| 656 | if (Opc == TargetOpcode::REG_SEQUENCE) { |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 657 | EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned); |
Evan Cheng | ba609c8 | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 658 | return; |
| 659 | } |
| 660 | |
Chris Lattner | 3d7d07e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 661 | if (Opc == TargetOpcode::IMPLICIT_DEF) |
| 662 | // We want a unique VR for each IMPLICIT_DEF use. |
| 663 | return; |
| 664 | |
| 665 | const TargetInstrDesc &II = TII->get(Opc); |
| 666 | unsigned NumResults = CountResults(Node); |
| 667 | unsigned NodeOperands = CountOperands(Node); |
Chris Lattner | 47cdf4a | 2010-03-25 05:40:48 +0000 | [diff] [blame] | 668 | bool HasPhysRegOuts = NumResults > II.getNumDefs() && II.getImplicitDefs()!=0; |
Chris Lattner | 3d7d07e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 669 | #ifndef NDEBUG |
| 670 | unsigned NumMIOperands = NodeOperands + NumResults; |
Chris Lattner | 47cdf4a | 2010-03-25 05:40:48 +0000 | [diff] [blame] | 671 | if (II.isVariadic()) |
| 672 | assert(NumMIOperands >= II.getNumOperands() && |
| 673 | "Too few operands for a variadic node!"); |
| 674 | else |
| 675 | assert(NumMIOperands >= II.getNumOperands() && |
| 676 | NumMIOperands <= II.getNumOperands()+II.getNumImplicitDefs() && |
| 677 | "#operands for dag node doesn't match .td file!"); |
Chris Lattner | 3d7d07e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 678 | #endif |
| 679 | |
| 680 | // Create the new machine instruction. |
| 681 | MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), II); |
Dan Gohman | db49712 | 2010-06-18 23:28:01 +0000 | [diff] [blame] | 682 | |
| 683 | // The MachineInstr constructor adds implicit-def operands. Scan through |
| 684 | // these to determine which are dead. |
| 685 | if (MI->getNumOperands() != 0 && |
| 686 | Node->getValueType(Node->getNumValues()-1) == MVT::Flag) { |
| 687 | // First, collect all used registers. |
| 688 | SmallVector<unsigned, 8> UsedRegs; |
| 689 | for (SDNode *F = Node->getFlaggedUser(); F; F = F->getFlaggedUser()) |
| 690 | if (F->getOpcode() == ISD::CopyFromReg) |
| 691 | UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg()); |
| 692 | else { |
| 693 | // Collect declared implicit uses. |
| 694 | const TargetInstrDesc &TID = TII->get(F->getMachineOpcode()); |
| 695 | UsedRegs.append(TID.getImplicitUses(), |
| 696 | TID.getImplicitUses() + TID.getNumImplicitUses()); |
| 697 | // In addition to declared implicit uses, we must also check for |
| 698 | // direct RegisterSDNode operands. |
| 699 | for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i) |
| 700 | if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) { |
| 701 | unsigned Reg = R->getReg(); |
| 702 | if (Reg != 0 && TargetRegisterInfo::isPhysicalRegister(Reg)) |
| 703 | UsedRegs.push_back(Reg); |
| 704 | } |
| 705 | } |
| 706 | // Then mark unused registers as dead. |
| 707 | MI->setPhysRegsDeadExcept(UsedRegs, *TRI); |
| 708 | } |
Chris Lattner | 3d7d07e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 709 | |
| 710 | // Add result register values for things that are defined by this |
| 711 | // instruction. |
| 712 | if (NumResults) |
| 713 | CreateVirtualRegisters(Node, MI, II, IsClone, IsCloned, VRBaseMap); |
| 714 | |
| 715 | // Emit all of the actual operands of this instruction, adding them to the |
| 716 | // instruction as appropriate. |
| 717 | bool HasOptPRefs = II.getNumDefs() > NumResults; |
| 718 | assert((!HasOptPRefs || !HasPhysRegOuts) && |
| 719 | "Unable to cope with optional defs and phys regs defs!"); |
| 720 | unsigned NumSkip = HasOptPRefs ? II.getNumDefs() - NumResults : 0; |
| 721 | for (unsigned i = NumSkip; i != NodeOperands; ++i) |
| 722 | AddOperand(MI, Node->getOperand(i), i-NumSkip+II.getNumDefs(), &II, |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 723 | VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned); |
Chris Lattner | 3d7d07e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 724 | |
| 725 | // Transfer all of the memory reference descriptions of this instruction. |
| 726 | MI->setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(), |
| 727 | cast<MachineSDNode>(Node)->memoperands_end()); |
| 728 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 729 | // Insert the instruction into position in the block. This needs to |
| 730 | // happen before any custom inserter hook is called so that the |
| 731 | // hook knows where in the block to insert the replacement code. |
| 732 | MBB->insert(InsertPos, MI); |
| 733 | |
Chris Lattner | 3d7d07e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 734 | if (II.usesCustomInsertionHook()) { |
| 735 | // Insert this instruction into the basic block using a target |
| 736 | // specific inserter which may returns a new basic block. |
Dan Gohman | f595141 | 2010-07-08 01:00:56 +0000 | [diff] [blame] | 737 | MBB = TLI->EmitInstrWithCustomInserter(MI, MBB); |
| 738 | InsertPos = MBB->end(); |
Chris Lattner | 7bf198f | 2010-03-25 18:49:10 +0000 | [diff] [blame] | 739 | return; |
Chris Lattner | 3d7d07e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 740 | } |
Chris Lattner | 7bf198f | 2010-03-25 18:49:10 +0000 | [diff] [blame] | 741 | |
Chris Lattner | 3d7d07e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 742 | // Additional results must be an physical register def. |
| 743 | if (HasPhysRegOuts) { |
| 744 | for (unsigned i = II.getNumDefs(); i < NumResults; ++i) { |
| 745 | unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()]; |
| 746 | if (Node->hasAnyUseOfValue(i)) |
| 747 | EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap); |
| 748 | // If there are no uses, mark the register as dead now, so that |
| 749 | // MachineLICM/Sink can see that it's dead. Don't do this if the |
| 750 | // node has a Flag value, for the benefit of targets still using |
| 751 | // Flag for values in physregs. |
| 752 | else if (Node->getValueType(Node->getNumValues()-1) != MVT::Flag) |
| 753 | MI->addRegisterDead(Reg, TRI); |
| 754 | } |
| 755 | } |
Chris Lattner | 47cdf4a | 2010-03-25 05:40:48 +0000 | [diff] [blame] | 756 | |
| 757 | // If the instruction has implicit defs and the node doesn't, mark the |
| 758 | // implicit def as dead. If the node has any flag outputs, we don't do this |
| 759 | // because we don't know what implicit defs are being used by flagged nodes. |
Evan Cheng | d05e805 | 2010-03-26 02:12:24 +0000 | [diff] [blame] | 760 | if (Node->getValueType(Node->getNumValues()-1) != MVT::Flag) |
Chris Lattner | 47cdf4a | 2010-03-25 05:40:48 +0000 | [diff] [blame] | 761 | if (const unsigned *IDList = II.getImplicitDefs()) { |
| 762 | for (unsigned i = NumResults, e = II.getNumDefs()+II.getNumImplicitDefs(); |
| 763 | i != e; ++i) |
| 764 | MI->addRegisterDead(IDList[i-II.getNumDefs()], TRI); |
| 765 | } |
Chris Lattner | 3d7d07e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 766 | } |
| 767 | |
| 768 | /// EmitSpecialNode - Generate machine code for a target-independent node and |
| 769 | /// needed dependencies. |
| 770 | void InstrEmitter:: |
| 771 | EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned, |
| 772 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 773 | switch (Node->getOpcode()) { |
| 774 | default: |
| 775 | #ifndef NDEBUG |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 776 | Node->dump(); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 777 | #endif |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 778 | llvm_unreachable("This target-independent node should have been selected!"); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 779 | break; |
| 780 | case ISD::EntryToken: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 781 | llvm_unreachable("EntryToken should have been excluded from the schedule!"); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 782 | break; |
Evan Cheng | 37b7387 | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 783 | case ISD::MERGE_VALUES: |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 784 | case ISD::TokenFactor: // fall thru |
| 785 | break; |
| 786 | case ISD::CopyToReg: { |
| 787 | unsigned SrcReg; |
| 788 | SDValue SrcVal = Node->getOperand(2); |
| 789 | if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal)) |
| 790 | SrcReg = R->getReg(); |
| 791 | else |
| 792 | SrcReg = getVR(SrcVal, VRBaseMap); |
| 793 | |
| 794 | unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg(); |
| 795 | if (SrcReg == DestReg) // Coalesced away the copy? Ignore. |
| 796 | break; |
| 797 | |
| 798 | const TargetRegisterClass *SrcTRC = 0, *DstTRC = 0; |
| 799 | // Get the register classes of the src/dst. |
| 800 | if (TargetRegisterInfo::isVirtualRegister(SrcReg)) |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 801 | SrcTRC = MRI->getRegClass(SrcReg); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 802 | else |
Rafael Espindola | d31f972 | 2010-06-29 14:02:34 +0000 | [diff] [blame] | 803 | SrcTRC = TRI->getMinimalPhysRegClass(SrcReg,SrcVal.getValueType()); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 804 | |
| 805 | if (TargetRegisterInfo::isVirtualRegister(DestReg)) |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 806 | DstTRC = MRI->getRegClass(DestReg); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 807 | else |
Rafael Espindola | d31f972 | 2010-06-29 14:02:34 +0000 | [diff] [blame] | 808 | DstTRC = TRI->getMinimalPhysRegClass(DestReg, |
| 809 | Node->getOperand(1).getValueType()); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 810 | |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 811 | bool Emitted = TII->copyRegToReg(*MBB, InsertPos, DestReg, SrcReg, |
Dan Gohman | 34dcc6f | 2010-05-06 20:33:48 +0000 | [diff] [blame] | 812 | DstTRC, SrcTRC, Node->getDebugLoc()); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 813 | assert(Emitted && "Unable to issue a copy instruction!\n"); |
Daniel Dunbar | 8c562e2 | 2009-05-18 16:43:04 +0000 | [diff] [blame] | 814 | (void) Emitted; |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 815 | break; |
| 816 | } |
| 817 | case ISD::CopyFromReg: { |
| 818 | unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg(); |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 819 | EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 820 | break; |
| 821 | } |
Chris Lattner | 7561d48 | 2010-03-14 02:33:54 +0000 | [diff] [blame] | 822 | case ISD::EH_LABEL: { |
| 823 | MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel(); |
| 824 | BuildMI(*MBB, InsertPos, Node->getDebugLoc(), |
| 825 | TII->get(TargetOpcode::EH_LABEL)).addSym(S); |
| 826 | break; |
| 827 | } |
| 828 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 829 | case ISD::INLINEASM: { |
| 830 | unsigned NumOps = Node->getNumOperands(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 831 | if (Node->getOperand(NumOps-1).getValueType() == MVT::Flag) |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 832 | --NumOps; // Ignore the flag operand. |
| 833 | |
| 834 | // Create the inline asm machine instruction. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 835 | MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 836 | TII->get(TargetOpcode::INLINEASM)); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 837 | |
| 838 | // Add the asm string as an external symbol operand. |
Chris Lattner | decc267 | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 839 | SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString); |
| 840 | const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol(); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 841 | MI->addOperand(MachineOperand::CreateES(AsmStr)); |
| 842 | |
Dale Johannesen | f1e309e | 2010-07-02 20:16:09 +0000 | [diff] [blame] | 843 | // Add the isAlignStack bit. |
| 844 | int64_t isAlignStack = |
| 845 | cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_IsAlignStack))-> |
| 846 | getZExtValue(); |
| 847 | MI->addOperand(MachineOperand::CreateImm(isAlignStack)); |
| 848 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 849 | // Add all of the operand registers to the instruction. |
Chris Lattner | decc267 | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 850 | for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 851 | unsigned Flags = |
| 852 | cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 853 | unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 854 | |
| 855 | MI->addOperand(MachineOperand::CreateImm(Flags)); |
| 856 | ++i; // Skip the ID value. |
| 857 | |
Chris Lattner | decc267 | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 858 | switch (InlineAsm::getKind(Flags)) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 859 | default: llvm_unreachable("Bad flags!"); |
Chris Lattner | decc267 | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 860 | case InlineAsm::Kind_RegDef: |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 861 | for (; NumVals; --NumVals, ++i) { |
| 862 | unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg(); |
Jakob Stoklund Olesen | 3013a20 | 2010-06-09 20:05:00 +0000 | [diff] [blame] | 863 | // FIXME: Add dead flags for physical and virtual registers defined. |
| 864 | // For now, mark physical register defs as implicit to help fast |
| 865 | // regalloc. This makes inline asm look a lot like calls. |
| 866 | MI->addOperand(MachineOperand::CreateReg(Reg, true, |
| 867 | /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg))); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 868 | } |
| 869 | break; |
Chris Lattner | decc267 | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 870 | case InlineAsm::Kind_RegDefEarlyClobber: |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 871 | for (; NumVals; --NumVals, ++i) { |
| 872 | unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg(); |
Jakob Stoklund Olesen | c3c2517 | 2010-06-09 00:40:31 +0000 | [diff] [blame] | 873 | MI->addOperand(MachineOperand::CreateReg(Reg, /*isDef=*/ true, |
Jakob Stoklund Olesen | 3013a20 | 2010-06-09 20:05:00 +0000 | [diff] [blame] | 874 | /*isImp=*/ TargetRegisterInfo::isPhysicalRegister(Reg), |
Jakob Stoklund Olesen | c3c2517 | 2010-06-09 00:40:31 +0000 | [diff] [blame] | 875 | /*isKill=*/ false, |
| 876 | /*isDead=*/ false, |
| 877 | /*isUndef=*/false, |
| 878 | /*isEarlyClobber=*/ true)); |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 879 | } |
| 880 | break; |
Chris Lattner | decc267 | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 881 | case InlineAsm::Kind_RegUse: // Use of register. |
| 882 | case InlineAsm::Kind_Imm: // Immediate. |
| 883 | case InlineAsm::Kind_Mem: // Addressing mode. |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 884 | // The addressing mode has been selected, just add all of the |
| 885 | // operands to the machine instruction. |
| 886 | for (; NumVals; --NumVals, ++i) |
Dan Gohman | 8b3a8f5 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 887 | AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap, |
| 888 | /*IsDebug=*/false, IsClone, IsCloned); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 889 | break; |
| 890 | } |
| 891 | } |
Chris Lattner | cf9a415 | 2010-04-07 05:38:05 +0000 | [diff] [blame] | 892 | |
| 893 | // Get the mdnode from the asm if it exists and add it to the instruction. |
| 894 | SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode); |
| 895 | const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD(); |
Bob Wilson | cc7354e | 2010-04-26 22:56:56 +0000 | [diff] [blame] | 896 | if (MD) |
| 897 | MI->addOperand(MachineOperand::CreateMetadata(MD)); |
Chris Lattner | cf9a415 | 2010-04-07 05:38:05 +0000 | [diff] [blame] | 898 | |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 899 | MBB->insert(InsertPos, MI); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 900 | break; |
| 901 | } |
| 902 | } |
| 903 | } |
| 904 | |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 905 | /// InstrEmitter - Construct an InstrEmitter and set it to start inserting |
| 906 | /// at the given position in the given block. |
| 907 | InstrEmitter::InstrEmitter(MachineBasicBlock *mbb, |
| 908 | MachineBasicBlock::iterator insertpos) |
| 909 | : MF(mbb->getParent()), |
| 910 | MRI(&MF->getRegInfo()), |
| 911 | TM(&MF->getTarget()), |
| 912 | TII(TM->getInstrInfo()), |
| 913 | TRI(TM->getRegisterInfo()), |
| 914 | TLI(TM->getTargetLowering()), |
| 915 | MBB(mbb), InsertPos(insertpos) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 916 | } |