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" |
Dale Johannesen | 06a2663 | 2010-03-06 00:03:23 +0000 | [diff] [blame^] | 18 | #include "SDDbgValue.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; |
Evan Cheng | 1cd3327 | 2008-09-16 23:12:11 +0000 | [diff] [blame] | 126 | SrcRC = TRI->getPhysicalRegisterRegClass(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 | 47ac0f0 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 146 | DstRC, SrcRC); |
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, |
| 267 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 268 | assert(Op.getValueType() != MVT::Other && |
| 269 | Op.getValueType() != MVT::Flag && |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 270 | "Chain and flag operands should occur at end of operand list!"); |
| 271 | // Get/emit the operand. |
| 272 | unsigned VReg = getVR(Op, VRBaseMap); |
| 273 | assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?"); |
| 274 | |
| 275 | const TargetInstrDesc &TID = MI->getDesc(); |
| 276 | bool isOptDef = IIOpNum < TID.getNumOperands() && |
| 277 | TID.OpInfo[IIOpNum].isOptionalDef(); |
| 278 | |
| 279 | // If the instruction requires a register in a different class, create |
| 280 | // a new virtual register and copy the value into it. |
| 281 | if (II) { |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 282 | const TargetRegisterClass *SrcRC = MRI->getRegClass(VReg); |
Chris Lattner | 2a38688 | 2009-07-29 21:36:49 +0000 | [diff] [blame] | 283 | const TargetRegisterClass *DstRC = 0; |
| 284 | if (IIOpNum < II->getNumOperands()) |
| 285 | DstRC = II->OpInfo[IIOpNum].getRegClass(TRI); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 286 | assert((DstRC || (TID.isVariadic() && IIOpNum >= TID.getNumOperands())) && |
| 287 | "Don't have operand info for this instruction!"); |
| 288 | if (DstRC && SrcRC != DstRC && !SrcRC->hasSuperClass(DstRC)) { |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 289 | unsigned NewVReg = MRI->createVirtualRegister(DstRC); |
| 290 | bool Emitted = TII->copyRegToReg(*MBB, InsertPos, NewVReg, VReg, |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 291 | DstRC, SrcRC); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 292 | assert(Emitted && "Unable to issue a copy instruction!\n"); |
Daniel Dunbar | 8c562e2 | 2009-05-18 16:43:04 +0000 | [diff] [blame] | 293 | (void) Emitted; |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 294 | VReg = NewVReg; |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef)); |
| 299 | } |
| 300 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 301 | /// AddOperand - Add the specified operand to the specified machine instr. II |
| 302 | /// specifies the instruction information for the node, and IIOpNum is the |
| 303 | /// operand number (in the II) that we are adding. IIOpNum and II are used for |
| 304 | /// assertions only. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 305 | void InstrEmitter::AddOperand(MachineInstr *MI, SDValue Op, |
| 306 | unsigned IIOpNum, |
| 307 | const TargetInstrDesc *II, |
| 308 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 309 | if (Op.isMachineOpcode()) { |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 310 | AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 311 | } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Chris Lattner | d842962 | 2009-09-08 23:05:44 +0000 | [diff] [blame] | 312 | MI->addOperand(MachineOperand::CreateImm(C->getSExtValue())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 313 | } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) { |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 314 | const ConstantFP *CFP = F->getConstantFPValue(); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 315 | MI->addOperand(MachineOperand::CreateFPImm(CFP)); |
| 316 | } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) { |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 317 | MI->addOperand(MachineOperand::CreateReg(R->getReg(), false)); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 318 | } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) { |
Chris Lattner | 6ec66db | 2009-06-26 05:52:14 +0000 | [diff] [blame] | 319 | MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(), TGA->getOffset(), |
| 320 | TGA->getTargetFlags())); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 321 | } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) { |
| 322 | MI->addOperand(MachineOperand::CreateMBB(BBNode->getBasicBlock())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 323 | } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) { |
| 324 | MI->addOperand(MachineOperand::CreateFI(FI->getIndex())); |
| 325 | } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) { |
Chris Lattner | 6ec66db | 2009-06-26 05:52:14 +0000 | [diff] [blame] | 326 | MI->addOperand(MachineOperand::CreateJTI(JT->getIndex(), |
| 327 | JT->getTargetFlags())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 328 | } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) { |
| 329 | int Offset = CP->getOffset(); |
| 330 | unsigned Align = CP->getAlignment(); |
| 331 | const Type *Type = CP->getType(); |
| 332 | // MachineConstantPool wants an explicit alignment. |
| 333 | if (Align == 0) { |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 334 | Align = TM->getTargetData()->getPrefTypeAlignment(Type); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 335 | if (Align == 0) { |
| 336 | // Alignment of vector types. FIXME! |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 337 | Align = TM->getTargetData()->getTypeAllocSize(Type); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 338 | } |
| 339 | } |
| 340 | |
| 341 | unsigned Idx; |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 342 | MachineConstantPool *MCP = MF->getConstantPool(); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 343 | if (CP->isMachineConstantPoolEntry()) |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 344 | Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 345 | else |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 346 | Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align); |
Chris Lattner | 6ec66db | 2009-06-26 05:52:14 +0000 | [diff] [blame] | 347 | MI->addOperand(MachineOperand::CreateCPI(Idx, Offset, |
| 348 | CP->getTargetFlags())); |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 349 | } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) { |
Daniel Dunbar | 31e2c7b | 2009-09-01 22:06:46 +0000 | [diff] [blame] | 350 | MI->addOperand(MachineOperand::CreateES(ES->getSymbol(), |
Chris Lattner | 6ec66db | 2009-06-26 05:52:14 +0000 | [diff] [blame] | 351 | ES->getTargetFlags())); |
Dan Gohman | 8c2b525 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 352 | } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) { |
Dan Gohman | 29cbade | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 353 | MI->addOperand(MachineOperand::CreateBA(BA->getBlockAddress(), |
| 354 | BA->getTargetFlags())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 355 | } else { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 356 | assert(Op.getValueType() != MVT::Other && |
| 357 | Op.getValueType() != MVT::Flag && |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 358 | "Chain and flag operands should occur at end of operand list!"); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 359 | AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap); |
| 360 | } |
| 361 | } |
| 362 | |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 363 | /// getSuperRegisterRegClass - Returns the register class of a superreg A whose |
| 364 | /// "SubIdx"'th sub-register class is the specified register class and whose |
| 365 | /// type matches the specified type. |
| 366 | static const TargetRegisterClass* |
| 367 | getSuperRegisterRegClass(const TargetRegisterClass *TRC, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 368 | unsigned SubIdx, EVT VT) { |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 369 | // Pick the register class of the superegister for this type |
| 370 | for (TargetRegisterInfo::regclass_iterator I = TRC->superregclasses_begin(), |
| 371 | E = TRC->superregclasses_end(); I != E; ++I) |
Jakob Stoklund Olesen | fa4677b | 2009-04-28 16:34:09 +0000 | [diff] [blame] | 372 | if ((*I)->hasType(VT) && (*I)->getSubRegisterRegClass(SubIdx) == TRC) |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 373 | return *I; |
| 374 | assert(false && "Couldn't find the register class"); |
| 375 | return 0; |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 376 | } |
| 377 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 378 | /// EmitSubregNode - Generate machine code for subreg nodes. |
| 379 | /// |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 380 | void InstrEmitter::EmitSubregNode(SDNode *Node, |
| 381 | DenseMap<SDValue, unsigned> &VRBaseMap){ |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 382 | unsigned VRBase = 0; |
| 383 | unsigned Opc = Node->getMachineOpcode(); |
| 384 | |
| 385 | // If the node is only used by a CopyToReg and the dest reg is a vreg, use |
| 386 | // the CopyToReg'd destination register instead of creating a new vreg. |
| 387 | for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end(); |
| 388 | UI != E; ++UI) { |
| 389 | SDNode *User = *UI; |
| 390 | if (User->getOpcode() == ISD::CopyToReg && |
| 391 | User->getOperand(2).getNode() == Node) { |
| 392 | unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); |
| 393 | if (TargetRegisterInfo::isVirtualRegister(DestReg)) { |
| 394 | VRBase = DestReg; |
| 395 | break; |
| 396 | } |
| 397 | } |
| 398 | } |
| 399 | |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 400 | if (Opc == TargetOpcode::EXTRACT_SUBREG) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 401 | unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue(); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 402 | |
| 403 | // Create the extract_subreg machine instruction. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 404 | MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 405 | TII->get(TargetOpcode::EXTRACT_SUBREG)); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 406 | |
| 407 | // Figure out the register class to create for the destreg. |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 408 | unsigned VReg = getVR(Node->getOperand(0), VRBaseMap); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 409 | const TargetRegisterClass *TRC = MRI->getRegClass(VReg); |
Jakob Stoklund Olesen | fa4677b | 2009-04-28 16:34:09 +0000 | [diff] [blame] | 410 | const TargetRegisterClass *SRC = TRC->getSubRegisterRegClass(SubIdx); |
| 411 | assert(SRC && "Invalid subregister index in EXTRACT_SUBREG"); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 412 | |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 413 | // Figure out the register class to create for the destreg. |
| 414 | // Note that if we're going to directly use an existing register, |
| 415 | // it must be precisely the required class, and not a subclass |
| 416 | // thereof. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 417 | if (VRBase == 0 || SRC != MRI->getRegClass(VRBase)) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 418 | // Create the reg |
| 419 | assert(SRC && "Couldn't find source register class"); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 420 | VRBase = MRI->createVirtualRegister(SRC); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 421 | } |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 422 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 423 | // Add def, source, and subreg index |
| 424 | MI->addOperand(MachineOperand::CreateReg(VRBase, true)); |
| 425 | AddOperand(MI, Node->getOperand(0), 0, 0, VRBaseMap); |
| 426 | MI->addOperand(MachineOperand::CreateImm(SubIdx)); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 427 | MBB->insert(InsertPos, MI); |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 428 | } else if (Opc == TargetOpcode::INSERT_SUBREG || |
| 429 | Opc == TargetOpcode::SUBREG_TO_REG) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 430 | SDValue N0 = Node->getOperand(0); |
| 431 | SDValue N1 = Node->getOperand(1); |
| 432 | SDValue N2 = Node->getOperand(2); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 433 | unsigned SubReg = getVR(N1, VRBaseMap); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 434 | unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue(); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 435 | const TargetRegisterClass *TRC = MRI->getRegClass(SubReg); |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 436 | const TargetRegisterClass *SRC = |
| 437 | getSuperRegisterRegClass(TRC, SubIdx, |
| 438 | Node->getValueType(0)); |
| 439 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 440 | // Figure out the register class to create for the destreg. |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 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 | 5ec3b42 | 2009-04-14 22:17:14 +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 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 450 | // Create the insert_subreg or subreg_to_reg machine instruction. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 451 | MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc)); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 452 | MI->addOperand(MachineOperand::CreateReg(VRBase, true)); |
| 453 | |
| 454 | // If creating a subreg_to_reg, then the first input operand |
| 455 | // is an implicit value immediate, otherwise it's a register |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 456 | if (Opc == TargetOpcode::SUBREG_TO_REG) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 457 | const ConstantSDNode *SD = cast<ConstantSDNode>(N0); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 458 | MI->addOperand(MachineOperand::CreateImm(SD->getZExtValue())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 459 | } else |
| 460 | AddOperand(MI, N0, 0, 0, VRBaseMap); |
| 461 | // Add the subregster being inserted |
| 462 | AddOperand(MI, N1, 0, 0, VRBaseMap); |
| 463 | MI->addOperand(MachineOperand::CreateImm(SubIdx)); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 464 | MBB->insert(InsertPos, MI); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 465 | } else |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 466 | 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] | 467 | |
| 468 | SDValue Op(Node, 0); |
| 469 | bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; |
| 470 | isNew = isNew; // Silence compiler warning. |
| 471 | assert(isNew && "Node emitted out of order - early"); |
| 472 | } |
| 473 | |
Dan Gohman | 88c7af0 | 2009-04-13 21:06:25 +0000 | [diff] [blame] | 474 | /// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes. |
| 475 | /// COPY_TO_REGCLASS is just a normal copy, except that the destination |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 476 | /// register is constrained to be in a particular register class. |
| 477 | /// |
| 478 | void |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 479 | InstrEmitter::EmitCopyToRegClassNode(SDNode *Node, |
| 480 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 481 | unsigned VReg = getVR(Node->getOperand(0), VRBaseMap); |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 482 | const TargetRegisterClass *SrcRC = MRI->getRegClass(VReg); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 483 | |
| 484 | unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue(); |
| 485 | const TargetRegisterClass *DstRC = TRI->getRegClass(DstRCIdx); |
| 486 | |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 487 | // Create the new VReg in the destination class and emit a copy. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 488 | unsigned NewVReg = MRI->createVirtualRegister(DstRC); |
| 489 | bool Emitted = TII->copyRegToReg(*MBB, InsertPos, NewVReg, VReg, |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 490 | DstRC, SrcRC); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 491 | assert(Emitted && |
Dan Gohman | 88c7af0 | 2009-04-13 21:06:25 +0000 | [diff] [blame] | 492 | "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] | 493 | (void) Emitted; |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 494 | |
| 495 | SDValue Op(Node, 0); |
| 496 | bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second; |
| 497 | isNew = isNew; // Silence compiler warning. |
| 498 | assert(isNew && "Node emitted out of order - early"); |
| 499 | } |
| 500 | |
Dale Johannesen | 06a2663 | 2010-03-06 00:03:23 +0000 | [diff] [blame^] | 501 | /// EmitDbgValue - Generate any debug info that refers to this Node. Constant |
| 502 | /// dbg_value is not handled here. |
| 503 | void |
| 504 | InstrEmitter::EmitDbgValue(SDNode *Node, |
| 505 | DenseMap<SDValue, unsigned> &VRBaseMap, |
| 506 | SDDbgValue *sd) { |
| 507 | if (!Node->getHasDebugValue()) |
| 508 | return; |
| 509 | if (!sd) |
| 510 | return; |
| 511 | unsigned VReg = getVR(SDValue(sd->getSDNode(), sd->getResNo()), VRBaseMap); |
| 512 | const TargetInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE); |
| 513 | DebugLoc DL = sd->getDebugLoc(); |
| 514 | MachineInstr *MI; |
| 515 | if (VReg) { |
| 516 | MI = BuildMI(*MF, DL, II).addReg(VReg, RegState::Debug). |
| 517 | addImm(sd->getOffset()). |
| 518 | addMetadata(sd->getMDPtr()); |
| 519 | } else { |
| 520 | // Insert an Undef so we can see what we dropped. |
| 521 | MI = BuildMI(*MF, DL, II).addReg(0U).addImm(sd->getOffset()). |
| 522 | addMetadata(sd->getMDPtr()); |
| 523 | } |
| 524 | MBB->insert(InsertPos, MI); |
| 525 | } |
| 526 | |
| 527 | /// EmitDbgValue - Generate constant debug info. No SDNode is involved. |
| 528 | void |
| 529 | InstrEmitter::EmitDbgValue(SDDbgValue *sd) { |
| 530 | if (!sd) |
| 531 | return; |
| 532 | const TargetInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE); |
| 533 | DebugLoc DL = sd->getDebugLoc(); |
| 534 | MachineInstr *MI; |
| 535 | Value *V = sd->getConst(); |
| 536 | if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) { |
| 537 | MI = BuildMI(*MF, DL, II).addImm(CI->getZExtValue()). |
| 538 | addImm(sd->getOffset()). |
| 539 | addMetadata(sd->getMDPtr()); |
| 540 | } else if (ConstantFP *CF = dyn_cast<ConstantFP>(V)) { |
| 541 | MI = BuildMI(*MF, DL, II).addFPImm(CF).addImm(sd->getOffset()). |
| 542 | addMetadata(sd->getMDPtr()); |
| 543 | } else { |
| 544 | // Insert an Undef so we can see what we dropped. |
| 545 | MI = BuildMI(*MF, DL, II).addReg(0U).addImm(sd->getOffset()). |
| 546 | addMetadata(sd->getMDPtr()); |
| 547 | } |
| 548 | MBB->insert(InsertPos, MI); |
| 549 | } |
| 550 | |
Dan Gohman | 552c0df | 2009-11-16 20:35:59 +0000 | [diff] [blame] | 551 | /// EmitNode - Generate machine code for a node and needed dependencies. |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 552 | /// |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 553 | void InstrEmitter::EmitNode(SDNode *Node, bool IsClone, bool IsCloned, |
| 554 | DenseMap<SDValue, unsigned> &VRBaseMap, |
Evan Cheng | fb2e752 | 2009-09-18 21:02:19 +0000 | [diff] [blame] | 555 | DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 556 | // If machine instruction |
| 557 | if (Node->isMachineOpcode()) { |
| 558 | unsigned Opc = Node->getMachineOpcode(); |
| 559 | |
| 560 | // Handle subreg insert/extract specially |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 561 | if (Opc == TargetOpcode::EXTRACT_SUBREG || |
| 562 | Opc == TargetOpcode::INSERT_SUBREG || |
| 563 | Opc == TargetOpcode::SUBREG_TO_REG) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 564 | EmitSubregNode(Node, VRBaseMap); |
| 565 | return; |
| 566 | } |
| 567 | |
Dan Gohman | 88c7af0 | 2009-04-13 21:06:25 +0000 | [diff] [blame] | 568 | // Handle COPY_TO_REGCLASS specially. |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 569 | if (Opc == TargetOpcode::COPY_TO_REGCLASS) { |
Dan Gohman | 88c7af0 | 2009-04-13 21:06:25 +0000 | [diff] [blame] | 570 | EmitCopyToRegClassNode(Node, VRBaseMap); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 571 | return; |
| 572 | } |
| 573 | |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 574 | if (Opc == TargetOpcode::IMPLICIT_DEF) |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 575 | // We want a unique VR for each IMPLICIT_DEF use. |
| 576 | return; |
| 577 | |
| 578 | const TargetInstrDesc &II = TII->get(Opc); |
| 579 | unsigned NumResults = CountResults(Node); |
| 580 | unsigned NodeOperands = CountOperands(Node); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 581 | bool HasPhysRegOuts = (NumResults > II.getNumDefs()) && |
| 582 | II.getImplicitDefs() != 0; |
| 583 | #ifndef NDEBUG |
| 584 | unsigned NumMIOperands = NodeOperands + NumResults; |
| 585 | assert((II.getNumOperands() == NumMIOperands || |
| 586 | HasPhysRegOuts || II.isVariadic()) && |
| 587 | "#operands for dag node doesn't match .td file!"); |
| 588 | #endif |
| 589 | |
| 590 | // Create the new machine instruction. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 591 | MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), II); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 592 | |
| 593 | // Add result register values for things that are defined by this |
| 594 | // instruction. |
| 595 | if (NumResults) |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 596 | CreateVirtualRegisters(Node, MI, II, IsClone, IsCloned, VRBaseMap); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 597 | |
| 598 | // Emit all of the actual operands of this instruction, adding them to the |
| 599 | // instruction as appropriate. |
Evan Cheng | 8955e93 | 2009-07-11 01:06:50 +0000 | [diff] [blame] | 600 | bool HasOptPRefs = II.getNumDefs() > NumResults; |
| 601 | assert((!HasOptPRefs || !HasPhysRegOuts) && |
| 602 | "Unable to cope with optional defs and phys regs defs!"); |
| 603 | unsigned NumSkip = HasOptPRefs ? II.getNumDefs() - NumResults : 0; |
| 604 | for (unsigned i = NumSkip; i != NodeOperands; ++i) |
| 605 | AddOperand(MI, Node->getOperand(i), i-NumSkip+II.getNumDefs(), &II, |
| 606 | VRBaseMap); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 607 | |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 608 | // Transfer all of the memory reference descriptions of this instruction. |
| 609 | MI->setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(), |
| 610 | cast<MachineSDNode>(Node)->memoperands_end()); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 611 | |
Dan Gohman | 533297b | 2009-10-29 18:10:34 +0000 | [diff] [blame] | 612 | if (II.usesCustomInsertionHook()) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 613 | // Insert this instruction into the basic block using a target |
| 614 | // specific inserter which may returns a new basic block. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 615 | MBB = TLI->EmitInstrWithCustomInserter(MI, MBB, EM); |
| 616 | InsertPos = MBB->end(); |
Bill Wendling | f2ad58d | 2009-02-03 01:02:39 +0000 | [diff] [blame] | 617 | } else { |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 618 | MBB->insert(InsertPos, MI); |
Bill Wendling | f2ad58d | 2009-02-03 01:02:39 +0000 | [diff] [blame] | 619 | } |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 620 | |
| 621 | // Additional results must be an physical register def. |
| 622 | if (HasPhysRegOuts) { |
| 623 | for (unsigned i = II.getNumDefs(); i < NumResults; ++i) { |
| 624 | unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()]; |
| 625 | if (Node->hasAnyUseOfValue(i)) |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 626 | EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap); |
Dan Gohman | 4cddfd9 | 2009-10-30 23:57:47 +0000 | [diff] [blame] | 627 | // If there are no uses, mark the register as dead now, so that |
| 628 | // MachineLICM/Sink can see that it's dead. Don't do this if the |
| 629 | // node has a Flag value, for the benefit of targets still using |
| 630 | // Flag for values in physregs. |
| 631 | else if (Node->getValueType(Node->getNumValues()-1) != MVT::Flag) |
Dan Gohman | a104d1e | 2009-10-28 01:13:53 +0000 | [diff] [blame] | 632 | MI->addRegisterDead(Reg, TRI); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 633 | } |
| 634 | } |
| 635 | return; |
| 636 | } |
| 637 | |
| 638 | switch (Node->getOpcode()) { |
| 639 | default: |
| 640 | #ifndef NDEBUG |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 641 | Node->dump(); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 642 | #endif |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 643 | llvm_unreachable("This target-independent node should have been selected!"); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 644 | break; |
| 645 | case ISD::EntryToken: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 646 | llvm_unreachable("EntryToken should have been excluded from the schedule!"); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 647 | break; |
Evan Cheng | 37b7387 | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 648 | case ISD::MERGE_VALUES: |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 649 | case ISD::TokenFactor: // fall thru |
| 650 | break; |
| 651 | case ISD::CopyToReg: { |
| 652 | unsigned SrcReg; |
| 653 | SDValue SrcVal = Node->getOperand(2); |
| 654 | if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal)) |
| 655 | SrcReg = R->getReg(); |
| 656 | else |
| 657 | SrcReg = getVR(SrcVal, VRBaseMap); |
| 658 | |
| 659 | unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg(); |
| 660 | if (SrcReg == DestReg) // Coalesced away the copy? Ignore. |
| 661 | break; |
| 662 | |
| 663 | const TargetRegisterClass *SrcTRC = 0, *DstTRC = 0; |
| 664 | // Get the register classes of the src/dst. |
| 665 | if (TargetRegisterInfo::isVirtualRegister(SrcReg)) |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 666 | SrcTRC = MRI->getRegClass(SrcReg); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 667 | else |
| 668 | SrcTRC = TRI->getPhysicalRegisterRegClass(SrcReg,SrcVal.getValueType()); |
| 669 | |
| 670 | if (TargetRegisterInfo::isVirtualRegister(DestReg)) |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 671 | DstTRC = MRI->getRegClass(DestReg); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 672 | else |
| 673 | DstTRC = TRI->getPhysicalRegisterRegClass(DestReg, |
| 674 | Node->getOperand(1).getValueType()); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 675 | |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 676 | bool Emitted = TII->copyRegToReg(*MBB, InsertPos, DestReg, SrcReg, |
Dan Gohman | 47ac0f0 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 677 | DstTRC, SrcTRC); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 678 | assert(Emitted && "Unable to issue a copy instruction!\n"); |
Daniel Dunbar | 8c562e2 | 2009-05-18 16:43:04 +0000 | [diff] [blame] | 679 | (void) Emitted; |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 680 | break; |
| 681 | } |
| 682 | case ISD::CopyFromReg: { |
| 683 | unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg(); |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 684 | EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 685 | break; |
| 686 | } |
| 687 | case ISD::INLINEASM: { |
| 688 | unsigned NumOps = Node->getNumOperands(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 689 | if (Node->getOperand(NumOps-1).getValueType() == MVT::Flag) |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 690 | --NumOps; // Ignore the flag operand. |
| 691 | |
| 692 | // Create the inline asm machine instruction. |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 693 | MachineInstr *MI = BuildMI(*MF, Node->getDebugLoc(), |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 694 | TII->get(TargetOpcode::INLINEASM)); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 695 | |
| 696 | // Add the asm string as an external symbol operand. |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 697 | const char *AsmStr = |
| 698 | cast<ExternalSymbolSDNode>(Node->getOperand(1))->getSymbol(); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 699 | MI->addOperand(MachineOperand::CreateES(AsmStr)); |
| 700 | |
| 701 | // Add all of the operand registers to the instruction. |
| 702 | for (unsigned i = 2; i != NumOps;) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 703 | unsigned Flags = |
| 704 | cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 705 | unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 706 | |
| 707 | MI->addOperand(MachineOperand::CreateImm(Flags)); |
| 708 | ++i; // Skip the ID value. |
| 709 | |
| 710 | switch (Flags & 7) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 711 | default: llvm_unreachable("Bad flags!"); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 712 | case 2: // Def of register. |
| 713 | for (; NumVals; --NumVals, ++i) { |
| 714 | unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg(); |
| 715 | MI->addOperand(MachineOperand::CreateReg(Reg, true)); |
| 716 | } |
| 717 | break; |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 718 | case 6: // Def of earlyclobber register. |
| 719 | for (; NumVals; --NumVals, ++i) { |
| 720 | unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg(); |
| 721 | MI->addOperand(MachineOperand::CreateReg(Reg, true, false, false, |
Evan Cheng | 4784f1f | 2009-06-30 08:49:04 +0000 | [diff] [blame] | 722 | false, false, true)); |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 723 | } |
| 724 | break; |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 725 | case 1: // Use of register. |
| 726 | case 3: // Immediate. |
| 727 | case 4: // Addressing mode. |
| 728 | // The addressing mode has been selected, just add all of the |
| 729 | // operands to the machine instruction. |
| 730 | for (; NumVals; --NumVals, ++i) |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 731 | AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 732 | break; |
| 733 | } |
| 734 | } |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 735 | MBB->insert(InsertPos, MI); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 736 | break; |
| 737 | } |
| 738 | } |
| 739 | } |
| 740 | |
Dan Gohman | bcea859 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 741 | /// InstrEmitter - Construct an InstrEmitter and set it to start inserting |
| 742 | /// at the given position in the given block. |
| 743 | InstrEmitter::InstrEmitter(MachineBasicBlock *mbb, |
| 744 | MachineBasicBlock::iterator insertpos) |
| 745 | : MF(mbb->getParent()), |
| 746 | MRI(&MF->getRegInfo()), |
| 747 | TM(&MF->getTarget()), |
| 748 | TII(TM->getInstrInfo()), |
| 749 | TRI(TM->getRegisterInfo()), |
| 750 | TLI(TM->getTargetLowering()), |
| 751 | MBB(mbb), InsertPos(insertpos) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 752 | } |