Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 1 | //===---- ScheduleDAGEmit.cpp - Emit routines for the ScheduleDAG class ---===// |
| 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 | // |
| 10 | // This implements the Emit routines for the ScheduleDAG class, which creates |
| 11 | // MachineInstrs according to the computed schedule. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #define DEBUG_TYPE "pre-RA-sched" |
Dan Gohman | 84fbac5 | 2009-02-06 17:22:58 +0000 | [diff] [blame] | 16 | #include "ScheduleDAGSDNodes.h" |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/MachineConstantPool.h" |
| 18 | #include "llvm/CodeGen/MachineFunction.h" |
| 19 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 20 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 21 | #include "llvm/Target/TargetData.h" |
| 22 | #include "llvm/Target/TargetMachine.h" |
| 23 | #include "llvm/Target/TargetInstrInfo.h" |
| 24 | #include "llvm/Target/TargetLowering.h" |
| 25 | #include "llvm/ADT/Statistic.h" |
| 26 | #include "llvm/Support/CommandLine.h" |
| 27 | #include "llvm/Support/Debug.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 28 | #include "llvm/Support/ErrorHandling.h" |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 29 | #include "llvm/Support/MathExtras.h" |
| 30 | using namespace llvm; |
| 31 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 32 | /// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an |
| 33 | /// implicit physical register output. |
Chris Lattner | 5202312 | 2009-06-26 05:39:02 +0000 | [diff] [blame] | 34 | void ScheduleDAGSDNodes:: |
| 35 | EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned, |
| 36 | unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 37 | unsigned VRBase = 0; |
| 38 | if (TargetRegisterInfo::isVirtualRegister(SrcReg)) { |
| 39 | // Just use the input register directly! |
| 40 | SDValue Op(Node, ResNo); |
| 41 | if (IsClone) |
| 42 | VRBaseMap.erase(Op); |
| 43 | bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; |
| 44 | isNew = isNew; // Silence compiler warning. |
| 45 | assert(isNew && "Node emitted out of order - early"); |
| 46 | return; |
| 47 | } |
| 48 | |
| 49 | // If the node is only used by a CopyToReg and the dest reg is a vreg, use |
| 50 | // the CopyToReg'd destination register instead of creating a new vreg. |
| 51 | bool MatchReg = true; |
Evan Cheng | 1cd3327 | 2008-09-16 23:12:11 +0000 | [diff] [blame] | 52 | const TargetRegisterClass *UseRC = NULL; |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 53 | if (!IsClone && !IsCloned) |
| 54 | for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end(); |
| 55 | UI != E; ++UI) { |
| 56 | SDNode *User = *UI; |
| 57 | bool Match = true; |
| 58 | if (User->getOpcode() == ISD::CopyToReg && |
| 59 | User->getOperand(2).getNode() == Node && |
| 60 | User->getOperand(2).getResNo() == ResNo) { |
| 61 | unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); |
| 62 | if (TargetRegisterInfo::isVirtualRegister(DestReg)) { |
| 63 | VRBase = DestReg; |
| 64 | Match = false; |
| 65 | } else if (DestReg != SrcReg) |
| 66 | Match = false; |
| 67 | } else { |
| 68 | for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) { |
| 69 | SDValue Op = User->getOperand(i); |
| 70 | if (Op.getNode() != Node || Op.getResNo() != ResNo) |
| 71 | continue; |
| 72 | MVT VT = Node->getValueType(Op.getResNo()); |
| 73 | if (VT == MVT::Other || VT == MVT::Flag) |
| 74 | continue; |
| 75 | Match = false; |
| 76 | if (User->isMachineOpcode()) { |
| 77 | const TargetInstrDesc &II = TII->get(User->getMachineOpcode()); |
Chris Lattner | 2a38688 | 2009-07-29 21:36:49 +0000 | [diff] [blame] | 78 | const TargetRegisterClass *RC = 0; |
| 79 | if (i+II.getNumDefs() < II.getNumOperands()) |
| 80 | RC = II.OpInfo[i+II.getNumDefs()].getRegClass(TRI); |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 81 | if (!UseRC) |
| 82 | UseRC = RC; |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 83 | else if (RC) { |
| 84 | if (UseRC->hasSuperClass(RC)) |
| 85 | UseRC = RC; |
| 86 | else |
| 87 | assert((UseRC == RC || RC->hasSuperClass(UseRC)) && |
| 88 | "Multiple uses expecting different register classes!"); |
| 89 | } |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 90 | } |
Evan Cheng | 1cd3327 | 2008-09-16 23:12:11 +0000 | [diff] [blame] | 91 | } |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 92 | } |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 93 | MatchReg &= Match; |
| 94 | if (VRBase) |
| 95 | break; |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 96 | } |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 97 | |
Evan Cheng | 1cd3327 | 2008-09-16 23:12:11 +0000 | [diff] [blame] | 98 | MVT VT = Node->getValueType(ResNo); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 99 | const TargetRegisterClass *SrcRC = 0, *DstRC = 0; |
Evan Cheng | 1cd3327 | 2008-09-16 23:12:11 +0000 | [diff] [blame] | 100 | SrcRC = TRI->getPhysicalRegisterRegClass(SrcReg, VT); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 101 | |
| 102 | // Figure out the register class to create for the destreg. |
| 103 | if (VRBase) { |
| 104 | DstRC = MRI.getRegClass(VRBase); |
Evan Cheng | 1cd3327 | 2008-09-16 23:12:11 +0000 | [diff] [blame] | 105 | } else if (UseRC) { |
| 106 | assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!"); |
| 107 | DstRC = UseRC; |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 108 | } else { |
Evan Cheng | 1cd3327 | 2008-09-16 23:12:11 +0000 | [diff] [blame] | 109 | DstRC = TLI->getRegClassFor(VT); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | // If all uses are reading from the src physical register and copying the |
| 113 | // register is either impossible or very expensive, then don't create a copy. |
| 114 | if (MatchReg && SrcRC->getCopyCost() < 0) { |
| 115 | VRBase = SrcReg; |
| 116 | } else { |
| 117 | // Create the reg, emit the copy. |
| 118 | VRBase = MRI.createVirtualRegister(DstRC); |
Dan Gohman | 47ac0f0 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 119 | bool Emitted = TII->copyRegToReg(*BB, InsertPos, VRBase, SrcReg, |
| 120 | DstRC, SrcRC); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 121 | |
| 122 | assert(Emitted && "Unable to issue a copy instruction!\n"); |
Daniel Dunbar | 8c562e2 | 2009-05-18 16:43:04 +0000 | [diff] [blame] | 123 | (void) Emitted; |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | SDValue Op(Node, ResNo); |
| 127 | if (IsClone) |
| 128 | VRBaseMap.erase(Op); |
| 129 | bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; |
| 130 | isNew = isNew; // Silence compiler warning. |
| 131 | assert(isNew && "Node emitted out of order - early"); |
| 132 | } |
| 133 | |
| 134 | /// getDstOfCopyToRegUse - If the only use of the specified result number of |
| 135 | /// node is a CopyToReg, return its destination register. Return 0 otherwise. |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 136 | unsigned ScheduleDAGSDNodes::getDstOfOnlyCopyToRegUse(SDNode *Node, |
| 137 | unsigned ResNo) const { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 138 | if (!Node->hasOneUse()) |
| 139 | return 0; |
| 140 | |
| 141 | SDNode *User = *Node->use_begin(); |
| 142 | if (User->getOpcode() == ISD::CopyToReg && |
| 143 | User->getOperand(2).getNode() == Node && |
| 144 | User->getOperand(2).getResNo() == ResNo) { |
| 145 | unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); |
| 146 | if (TargetRegisterInfo::isVirtualRegister(Reg)) |
| 147 | return Reg; |
| 148 | } |
| 149 | return 0; |
| 150 | } |
| 151 | |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 152 | void ScheduleDAGSDNodes::CreateVirtualRegisters(SDNode *Node, MachineInstr *MI, |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 153 | const TargetInstrDesc &II, |
| 154 | bool IsClone, bool IsCloned, |
Evan Cheng | 5c3c5a4 | 2009-01-09 22:44:02 +0000 | [diff] [blame] | 155 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 156 | assert(Node->getMachineOpcode() != TargetInstrInfo::IMPLICIT_DEF && |
| 157 | "IMPLICIT_DEF should have been handled as a special case elsewhere!"); |
| 158 | |
| 159 | for (unsigned i = 0; i < II.getNumDefs(); ++i) { |
| 160 | // 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] | 161 | // is a vreg in the same register class, use the CopyToReg'd destination |
| 162 | // register instead of creating a new vreg. |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 163 | unsigned VRBase = 0; |
Chris Lattner | 2a38688 | 2009-07-29 21:36:49 +0000 | [diff] [blame] | 164 | const TargetRegisterClass *RC = II.OpInfo[i].getRegClass(TRI); |
Evan Cheng | 8955e93 | 2009-07-11 01:06:50 +0000 | [diff] [blame] | 165 | if (II.OpInfo[i].isOptionalDef()) { |
| 166 | // Optional def must be a physical register. |
| 167 | unsigned NumResults = CountResults(Node); |
| 168 | VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg(); |
| 169 | assert(TargetRegisterInfo::isPhysicalRegister(VRBase)); |
| 170 | MI->addOperand(MachineOperand::CreateReg(VRBase, true)); |
| 171 | } |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 172 | |
Evan Cheng | 8955e93 | 2009-07-11 01:06:50 +0000 | [diff] [blame] | 173 | if (!VRBase && !IsClone && !IsCloned) |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 174 | for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end(); |
| 175 | UI != E; ++UI) { |
| 176 | SDNode *User = *UI; |
| 177 | if (User->getOpcode() == ISD::CopyToReg && |
| 178 | User->getOperand(2).getNode() == Node && |
| 179 | User->getOperand(2).getResNo() == i) { |
| 180 | unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); |
| 181 | if (TargetRegisterInfo::isVirtualRegister(Reg)) { |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 182 | const TargetRegisterClass *RegRC = MRI.getRegClass(Reg); |
| 183 | if (RegRC == RC) { |
| 184 | VRBase = Reg; |
| 185 | MI->addOperand(MachineOperand::CreateReg(Reg, true)); |
| 186 | break; |
| 187 | } |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 188 | } |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 189 | } |
| 190 | } |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 191 | |
| 192 | // Create the result registers for this node and add the result regs to |
| 193 | // the machine instruction. |
| 194 | if (VRBase == 0) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 195 | assert(RC && "Isn't a register operand!"); |
| 196 | VRBase = MRI.createVirtualRegister(RC); |
| 197 | MI->addOperand(MachineOperand::CreateReg(VRBase, true)); |
| 198 | } |
| 199 | |
| 200 | SDValue Op(Node, i); |
Evan Cheng | 5c3c5a4 | 2009-01-09 22:44:02 +0000 | [diff] [blame] | 201 | if (IsClone) |
| 202 | VRBaseMap.erase(Op); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 203 | bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; |
| 204 | isNew = isNew; // Silence compiler warning. |
| 205 | assert(isNew && "Node emitted out of order - early"); |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | /// getVR - Return the virtual register corresponding to the specified result |
| 210 | /// of the specified node. |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 211 | unsigned ScheduleDAGSDNodes::getVR(SDValue Op, |
| 212 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 213 | if (Op.isMachineOpcode() && |
| 214 | Op.getMachineOpcode() == TargetInstrInfo::IMPLICIT_DEF) { |
| 215 | // Add an IMPLICIT_DEF instruction before every use. |
| 216 | unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo()); |
| 217 | // IMPLICIT_DEF can produce any type of result so its TargetInstrDesc |
| 218 | // does not include operand register class info. |
| 219 | if (!VReg) { |
| 220 | const TargetRegisterClass *RC = TLI->getRegClassFor(Op.getValueType()); |
| 221 | VReg = MRI.createVirtualRegister(RC); |
| 222 | } |
Bill Wendling | f2ad58d | 2009-02-03 01:02:39 +0000 | [diff] [blame] | 223 | BuildMI(BB, Op.getDebugLoc(), TII->get(TargetInstrInfo::IMPLICIT_DEF),VReg); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 224 | return VReg; |
| 225 | } |
| 226 | |
| 227 | DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op); |
| 228 | assert(I != VRBaseMap.end() && "Node emitted out of order - late"); |
| 229 | return I->second; |
| 230 | } |
| 231 | |
| 232 | |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 233 | /// AddRegisterOperand - Add the specified register as an operand to the |
| 234 | /// specified machine instr. Insert register copies if the register is |
| 235 | /// not in the required register class. |
| 236 | void |
| 237 | ScheduleDAGSDNodes::AddRegisterOperand(MachineInstr *MI, SDValue Op, |
| 238 | unsigned IIOpNum, |
| 239 | const TargetInstrDesc *II, |
| 240 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
| 241 | assert(Op.getValueType() != MVT::Other && |
| 242 | Op.getValueType() != MVT::Flag && |
| 243 | "Chain and flag operands should occur at end of operand list!"); |
| 244 | // Get/emit the operand. |
| 245 | unsigned VReg = getVR(Op, VRBaseMap); |
| 246 | assert(TargetRegisterInfo::isVirtualRegister(VReg) && "Not a vreg?"); |
| 247 | |
| 248 | const TargetInstrDesc &TID = MI->getDesc(); |
| 249 | bool isOptDef = IIOpNum < TID.getNumOperands() && |
| 250 | TID.OpInfo[IIOpNum].isOptionalDef(); |
| 251 | |
| 252 | // If the instruction requires a register in a different class, create |
| 253 | // a new virtual register and copy the value into it. |
| 254 | if (II) { |
Chris Lattner | 2a38688 | 2009-07-29 21:36:49 +0000 | [diff] [blame] | 255 | const TargetRegisterClass *SrcRC = MRI.getRegClass(VReg); |
| 256 | const TargetRegisterClass *DstRC = 0; |
| 257 | if (IIOpNum < II->getNumOperands()) |
| 258 | DstRC = II->OpInfo[IIOpNum].getRegClass(TRI); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 259 | assert((DstRC || (TID.isVariadic() && IIOpNum >= TID.getNumOperands())) && |
| 260 | "Don't have operand info for this instruction!"); |
| 261 | if (DstRC && SrcRC != DstRC && !SrcRC->hasSuperClass(DstRC)) { |
| 262 | unsigned NewVReg = MRI.createVirtualRegister(DstRC); |
| 263 | bool Emitted = TII->copyRegToReg(*BB, InsertPos, NewVReg, VReg, |
| 264 | DstRC, SrcRC); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 265 | assert(Emitted && "Unable to issue a copy instruction!\n"); |
Daniel Dunbar | 8c562e2 | 2009-05-18 16:43:04 +0000 | [diff] [blame] | 266 | (void) Emitted; |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 267 | VReg = NewVReg; |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | MI->addOperand(MachineOperand::CreateReg(VReg, isOptDef)); |
| 272 | } |
| 273 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 274 | /// AddOperand - Add the specified operand to the specified machine instr. II |
| 275 | /// specifies the instruction information for the node, and IIOpNum is the |
| 276 | /// operand number (in the II) that we are adding. IIOpNum and II are used for |
| 277 | /// assertions only. |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 278 | void ScheduleDAGSDNodes::AddOperand(MachineInstr *MI, SDValue Op, |
| 279 | unsigned IIOpNum, |
| 280 | const TargetInstrDesc *II, |
| 281 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 282 | if (Op.isMachineOpcode()) { |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 283 | AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 284 | } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 285 | MI->addOperand(MachineOperand::CreateImm(C->getZExtValue())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 286 | } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) { |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 287 | const ConstantFP *CFP = F->getConstantFPValue(); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 288 | MI->addOperand(MachineOperand::CreateFPImm(CFP)); |
| 289 | } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) { |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 290 | MI->addOperand(MachineOperand::CreateReg(R->getReg(), false)); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 291 | } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) { |
Chris Lattner | 6ec66db | 2009-06-26 05:52:14 +0000 | [diff] [blame] | 292 | MI->addOperand(MachineOperand::CreateGA(TGA->getGlobal(), TGA->getOffset(), |
| 293 | TGA->getTargetFlags())); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 294 | } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) { |
| 295 | MI->addOperand(MachineOperand::CreateMBB(BBNode->getBasicBlock())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 296 | } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) { |
| 297 | MI->addOperand(MachineOperand::CreateFI(FI->getIndex())); |
| 298 | } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) { |
Chris Lattner | 6ec66db | 2009-06-26 05:52:14 +0000 | [diff] [blame] | 299 | MI->addOperand(MachineOperand::CreateJTI(JT->getIndex(), |
| 300 | JT->getTargetFlags())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 301 | } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) { |
| 302 | int Offset = CP->getOffset(); |
| 303 | unsigned Align = CP->getAlignment(); |
| 304 | const Type *Type = CP->getType(); |
| 305 | // MachineConstantPool wants an explicit alignment. |
| 306 | if (Align == 0) { |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 307 | Align = TM.getTargetData()->getPrefTypeAlignment(Type); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 308 | if (Align == 0) { |
| 309 | // Alignment of vector types. FIXME! |
Duncan Sands | 777d230 | 2009-05-09 07:06:46 +0000 | [diff] [blame] | 310 | Align = TM.getTargetData()->getTypeAllocSize(Type); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 311 | } |
| 312 | } |
| 313 | |
| 314 | unsigned Idx; |
| 315 | if (CP->isMachineConstantPoolEntry()) |
| 316 | Idx = ConstPool->getConstantPoolIndex(CP->getMachineCPVal(), Align); |
| 317 | else |
| 318 | Idx = ConstPool->getConstantPoolIndex(CP->getConstVal(), Align); |
Chris Lattner | 6ec66db | 2009-06-26 05:52:14 +0000 | [diff] [blame] | 319 | MI->addOperand(MachineOperand::CreateCPI(Idx, Offset, |
| 320 | CP->getTargetFlags())); |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 321 | } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) { |
Chris Lattner | 6ec66db | 2009-06-26 05:52:14 +0000 | [diff] [blame] | 322 | MI->addOperand(MachineOperand::CreateES(ES->getSymbol(), 0, |
| 323 | ES->getTargetFlags())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 324 | } else { |
| 325 | assert(Op.getValueType() != MVT::Other && |
| 326 | Op.getValueType() != MVT::Flag && |
| 327 | "Chain and flag operands should occur at end of operand list!"); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 328 | AddRegisterOperand(MI, Op, IIOpNum, II, VRBaseMap); |
| 329 | } |
| 330 | } |
| 331 | |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 332 | /// getSuperRegisterRegClass - Returns the register class of a superreg A whose |
| 333 | /// "SubIdx"'th sub-register class is the specified register class and whose |
| 334 | /// type matches the specified type. |
| 335 | static const TargetRegisterClass* |
| 336 | getSuperRegisterRegClass(const TargetRegisterClass *TRC, |
| 337 | unsigned SubIdx, MVT VT) { |
| 338 | // Pick the register class of the superegister for this type |
| 339 | for (TargetRegisterInfo::regclass_iterator I = TRC->superregclasses_begin(), |
| 340 | E = TRC->superregclasses_end(); I != E; ++I) |
Jakob Stoklund Olesen | fa4677b | 2009-04-28 16:34:09 +0000 | [diff] [blame] | 341 | if ((*I)->hasType(VT) && (*I)->getSubRegisterRegClass(SubIdx) == TRC) |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 342 | return *I; |
| 343 | assert(false && "Couldn't find the register class"); |
| 344 | return 0; |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 345 | } |
| 346 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 347 | /// EmitSubregNode - Generate machine code for subreg nodes. |
| 348 | /// |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 349 | void ScheduleDAGSDNodes::EmitSubregNode(SDNode *Node, |
Chris Lattner | 5202312 | 2009-06-26 05:39:02 +0000 | [diff] [blame] | 350 | DenseMap<SDValue, unsigned> &VRBaseMap){ |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 351 | unsigned VRBase = 0; |
| 352 | unsigned Opc = Node->getMachineOpcode(); |
| 353 | |
| 354 | // If the node is only used by a CopyToReg and the dest reg is a vreg, use |
| 355 | // the CopyToReg'd destination register instead of creating a new vreg. |
| 356 | for (SDNode::use_iterator UI = Node->use_begin(), E = Node->use_end(); |
| 357 | UI != E; ++UI) { |
| 358 | SDNode *User = *UI; |
| 359 | if (User->getOpcode() == ISD::CopyToReg && |
| 360 | User->getOperand(2).getNode() == Node) { |
| 361 | unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); |
| 362 | if (TargetRegisterInfo::isVirtualRegister(DestReg)) { |
| 363 | VRBase = DestReg; |
| 364 | break; |
| 365 | } |
| 366 | } |
| 367 | } |
| 368 | |
| 369 | if (Opc == TargetInstrInfo::EXTRACT_SUBREG) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 370 | unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue(); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 371 | |
| 372 | // Create the extract_subreg machine instruction. |
Bill Wendling | f2ad58d | 2009-02-03 01:02:39 +0000 | [diff] [blame] | 373 | MachineInstr *MI = BuildMI(MF, Node->getDebugLoc(), |
| 374 | TII->get(TargetInstrInfo::EXTRACT_SUBREG)); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 375 | |
| 376 | // Figure out the register class to create for the destreg. |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 377 | unsigned VReg = getVR(Node->getOperand(0), VRBaseMap); |
| 378 | const TargetRegisterClass *TRC = MRI.getRegClass(VReg); |
Jakob Stoklund Olesen | fa4677b | 2009-04-28 16:34:09 +0000 | [diff] [blame] | 379 | const TargetRegisterClass *SRC = TRC->getSubRegisterRegClass(SubIdx); |
| 380 | assert(SRC && "Invalid subregister index in EXTRACT_SUBREG"); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 381 | |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 382 | // Figure out the register class to create for the destreg. |
| 383 | // Note that if we're going to directly use an existing register, |
| 384 | // it must be precisely the required class, and not a subclass |
| 385 | // thereof. |
| 386 | if (VRBase == 0 || SRC != MRI.getRegClass(VRBase)) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 387 | // Create the reg |
| 388 | assert(SRC && "Couldn't find source register class"); |
| 389 | VRBase = MRI.createVirtualRegister(SRC); |
| 390 | } |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 391 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 392 | // Add def, source, and subreg index |
| 393 | MI->addOperand(MachineOperand::CreateReg(VRBase, true)); |
| 394 | AddOperand(MI, Node->getOperand(0), 0, 0, VRBaseMap); |
| 395 | MI->addOperand(MachineOperand::CreateImm(SubIdx)); |
Dan Gohman | 47ac0f0 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 396 | BB->insert(InsertPos, MI); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 397 | } else if (Opc == TargetInstrInfo::INSERT_SUBREG || |
| 398 | Opc == TargetInstrInfo::SUBREG_TO_REG) { |
| 399 | SDValue N0 = Node->getOperand(0); |
| 400 | SDValue N1 = Node->getOperand(1); |
| 401 | SDValue N2 = Node->getOperand(2); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 402 | unsigned SubReg = getVR(N1, VRBaseMap); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 403 | unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue(); |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 404 | const TargetRegisterClass *TRC = MRI.getRegClass(SubReg); |
| 405 | const TargetRegisterClass *SRC = |
| 406 | getSuperRegisterRegClass(TRC, SubIdx, |
| 407 | Node->getValueType(0)); |
| 408 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 409 | // Figure out the register class to create for the destreg. |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 410 | // Note that if we're going to directly use an existing register, |
| 411 | // it must be precisely the required class, and not a subclass |
| 412 | // thereof. |
| 413 | if (VRBase == 0 || SRC != MRI.getRegClass(VRBase)) { |
| 414 | // Create the reg |
| 415 | assert(SRC && "Couldn't find source register class"); |
| 416 | VRBase = MRI.createVirtualRegister(SRC); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 417 | } |
Dan Gohman | 5ec3b42 | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 418 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 419 | // Create the insert_subreg or subreg_to_reg machine instruction. |
Bill Wendling | f2ad58d | 2009-02-03 01:02:39 +0000 | [diff] [blame] | 420 | MachineInstr *MI = BuildMI(MF, Node->getDebugLoc(), TII->get(Opc)); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 421 | MI->addOperand(MachineOperand::CreateReg(VRBase, true)); |
| 422 | |
| 423 | // If creating a subreg_to_reg, then the first input operand |
| 424 | // is an implicit value immediate, otherwise it's a register |
| 425 | if (Opc == TargetInstrInfo::SUBREG_TO_REG) { |
| 426 | const ConstantSDNode *SD = cast<ConstantSDNode>(N0); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 427 | MI->addOperand(MachineOperand::CreateImm(SD->getZExtValue())); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 428 | } else |
| 429 | AddOperand(MI, N0, 0, 0, VRBaseMap); |
| 430 | // Add the subregster being inserted |
| 431 | AddOperand(MI, N1, 0, 0, VRBaseMap); |
| 432 | MI->addOperand(MachineOperand::CreateImm(SubIdx)); |
Dan Gohman | 47ac0f0 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 433 | BB->insert(InsertPos, MI); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 434 | } else |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 435 | 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] | 436 | |
| 437 | SDValue Op(Node, 0); |
| 438 | bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; |
| 439 | isNew = isNew; // Silence compiler warning. |
| 440 | assert(isNew && "Node emitted out of order - early"); |
| 441 | } |
| 442 | |
Dan Gohman | 88c7af0 | 2009-04-13 21:06:25 +0000 | [diff] [blame] | 443 | /// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes. |
| 444 | /// COPY_TO_REGCLASS is just a normal copy, except that the destination |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 445 | /// register is constrained to be in a particular register class. |
| 446 | /// |
| 447 | void |
Dan Gohman | 88c7af0 | 2009-04-13 21:06:25 +0000 | [diff] [blame] | 448 | ScheduleDAGSDNodes::EmitCopyToRegClassNode(SDNode *Node, |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 449 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
| 450 | unsigned VReg = getVR(Node->getOperand(0), VRBaseMap); |
| 451 | const TargetRegisterClass *SrcRC = MRI.getRegClass(VReg); |
| 452 | |
| 453 | unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue(); |
| 454 | const TargetRegisterClass *DstRC = TRI->getRegClass(DstRCIdx); |
| 455 | |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 456 | // Create the new VReg in the destination class and emit a copy. |
| 457 | unsigned NewVReg = MRI.createVirtualRegister(DstRC); |
| 458 | bool Emitted = TII->copyRegToReg(*BB, InsertPos, NewVReg, VReg, |
| 459 | DstRC, SrcRC); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 460 | assert(Emitted && |
Dan Gohman | 88c7af0 | 2009-04-13 21:06:25 +0000 | [diff] [blame] | 461 | "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] | 462 | (void) Emitted; |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 463 | |
| 464 | SDValue Op(Node, 0); |
| 465 | bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second; |
| 466 | isNew = isNew; // Silence compiler warning. |
| 467 | assert(isNew && "Node emitted out of order - early"); |
| 468 | } |
| 469 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 470 | /// EmitNode - Generate machine code for an node and needed dependencies. |
| 471 | /// |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 472 | void ScheduleDAGSDNodes::EmitNode(SDNode *Node, bool IsClone, bool IsCloned, |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 473 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 474 | // If machine instruction |
| 475 | if (Node->isMachineOpcode()) { |
| 476 | unsigned Opc = Node->getMachineOpcode(); |
| 477 | |
| 478 | // Handle subreg insert/extract specially |
| 479 | if (Opc == TargetInstrInfo::EXTRACT_SUBREG || |
| 480 | Opc == TargetInstrInfo::INSERT_SUBREG || |
| 481 | Opc == TargetInstrInfo::SUBREG_TO_REG) { |
| 482 | EmitSubregNode(Node, VRBaseMap); |
| 483 | return; |
| 484 | } |
| 485 | |
Dan Gohman | 88c7af0 | 2009-04-13 21:06:25 +0000 | [diff] [blame] | 486 | // Handle COPY_TO_REGCLASS specially. |
| 487 | if (Opc == TargetInstrInfo::COPY_TO_REGCLASS) { |
| 488 | EmitCopyToRegClassNode(Node, VRBaseMap); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 489 | return; |
| 490 | } |
| 491 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 492 | if (Opc == TargetInstrInfo::IMPLICIT_DEF) |
| 493 | // We want a unique VR for each IMPLICIT_DEF use. |
| 494 | return; |
| 495 | |
| 496 | const TargetInstrDesc &II = TII->get(Opc); |
| 497 | unsigned NumResults = CountResults(Node); |
| 498 | unsigned NodeOperands = CountOperands(Node); |
| 499 | unsigned MemOperandsEnd = ComputeMemOperandsEnd(Node); |
| 500 | bool HasPhysRegOuts = (NumResults > II.getNumDefs()) && |
| 501 | II.getImplicitDefs() != 0; |
| 502 | #ifndef NDEBUG |
| 503 | unsigned NumMIOperands = NodeOperands + NumResults; |
| 504 | assert((II.getNumOperands() == NumMIOperands || |
| 505 | HasPhysRegOuts || II.isVariadic()) && |
| 506 | "#operands for dag node doesn't match .td file!"); |
| 507 | #endif |
| 508 | |
| 509 | // Create the new machine instruction. |
Bill Wendling | f2ad58d | 2009-02-03 01:02:39 +0000 | [diff] [blame] | 510 | MachineInstr *MI = BuildMI(MF, Node->getDebugLoc(), II); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 511 | |
| 512 | // Add result register values for things that are defined by this |
| 513 | // instruction. |
| 514 | if (NumResults) |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 515 | CreateVirtualRegisters(Node, MI, II, IsClone, IsCloned, VRBaseMap); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 516 | |
| 517 | // Emit all of the actual operands of this instruction, adding them to the |
| 518 | // instruction as appropriate. |
Evan Cheng | 8955e93 | 2009-07-11 01:06:50 +0000 | [diff] [blame] | 519 | bool HasOptPRefs = II.getNumDefs() > NumResults; |
| 520 | assert((!HasOptPRefs || !HasPhysRegOuts) && |
| 521 | "Unable to cope with optional defs and phys regs defs!"); |
| 522 | unsigned NumSkip = HasOptPRefs ? II.getNumDefs() - NumResults : 0; |
| 523 | for (unsigned i = NumSkip; i != NodeOperands; ++i) |
| 524 | AddOperand(MI, Node->getOperand(i), i-NumSkip+II.getNumDefs(), &II, |
| 525 | VRBaseMap); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 526 | |
| 527 | // Emit all of the memory operands of this instruction |
| 528 | for (unsigned i = NodeOperands; i != MemOperandsEnd; ++i) |
Evan Cheng | 8955e93 | 2009-07-11 01:06:50 +0000 | [diff] [blame] | 529 | AddMemOperand(MI,cast<MemOperandSDNode>(Node->getOperand(i+NumSkip))->MO); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 530 | |
Dan Gohman | f711939 | 2009-01-16 22:10:20 +0000 | [diff] [blame] | 531 | if (II.usesCustomDAGSchedInsertionHook()) { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 532 | // Insert this instruction into the basic block using a target |
| 533 | // specific inserter which may returns a new basic block. |
| 534 | BB = TLI->EmitInstrWithCustomInserter(MI, BB); |
Dan Gohman | 47ac0f0 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 535 | InsertPos = BB->end(); |
Bill Wendling | f2ad58d | 2009-02-03 01:02:39 +0000 | [diff] [blame] | 536 | } else { |
Dan Gohman | 47ac0f0 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 537 | BB->insert(InsertPos, MI); |
Bill Wendling | f2ad58d | 2009-02-03 01:02:39 +0000 | [diff] [blame] | 538 | } |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 539 | |
| 540 | // Additional results must be an physical register def. |
| 541 | if (HasPhysRegOuts) { |
| 542 | for (unsigned i = II.getNumDefs(); i < NumResults; ++i) { |
| 543 | unsigned Reg = II.getImplicitDefs()[i - II.getNumDefs()]; |
| 544 | if (Node->hasAnyUseOfValue(i)) |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 545 | EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 546 | } |
| 547 | } |
| 548 | return; |
| 549 | } |
| 550 | |
| 551 | switch (Node->getOpcode()) { |
| 552 | default: |
| 553 | #ifndef NDEBUG |
Dan Gohman | a23b3b8 | 2008-11-13 21:21:28 +0000 | [diff] [blame] | 554 | Node->dump(DAG); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 555 | #endif |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 556 | llvm_unreachable("This target-independent node should have been selected!"); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 557 | break; |
| 558 | case ISD::EntryToken: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 559 | llvm_unreachable("EntryToken should have been excluded from the schedule!"); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 560 | break; |
| 561 | case ISD::TokenFactor: // fall thru |
| 562 | break; |
| 563 | case ISD::CopyToReg: { |
| 564 | unsigned SrcReg; |
| 565 | SDValue SrcVal = Node->getOperand(2); |
| 566 | if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal)) |
| 567 | SrcReg = R->getReg(); |
| 568 | else |
| 569 | SrcReg = getVR(SrcVal, VRBaseMap); |
| 570 | |
| 571 | unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg(); |
| 572 | if (SrcReg == DestReg) // Coalesced away the copy? Ignore. |
| 573 | break; |
| 574 | |
| 575 | const TargetRegisterClass *SrcTRC = 0, *DstTRC = 0; |
| 576 | // Get the register classes of the src/dst. |
| 577 | if (TargetRegisterInfo::isVirtualRegister(SrcReg)) |
| 578 | SrcTRC = MRI.getRegClass(SrcReg); |
| 579 | else |
| 580 | SrcTRC = TRI->getPhysicalRegisterRegClass(SrcReg,SrcVal.getValueType()); |
| 581 | |
| 582 | if (TargetRegisterInfo::isVirtualRegister(DestReg)) |
| 583 | DstTRC = MRI.getRegClass(DestReg); |
| 584 | else |
| 585 | DstTRC = TRI->getPhysicalRegisterRegClass(DestReg, |
| 586 | Node->getOperand(1).getValueType()); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 587 | |
Dan Gohman | 47ac0f0 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 588 | bool Emitted = TII->copyRegToReg(*BB, InsertPos, DestReg, SrcReg, |
| 589 | DstTRC, SrcTRC); |
Dan Gohman | f8c7394 | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 590 | assert(Emitted && "Unable to issue a copy instruction!\n"); |
Daniel Dunbar | 8c562e2 | 2009-05-18 16:43:04 +0000 | [diff] [blame] | 591 | (void) Emitted; |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 592 | break; |
| 593 | } |
| 594 | case ISD::CopyFromReg: { |
| 595 | unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg(); |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 596 | EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 597 | break; |
| 598 | } |
| 599 | case ISD::INLINEASM: { |
| 600 | unsigned NumOps = Node->getNumOperands(); |
| 601 | if (Node->getOperand(NumOps-1).getValueType() == MVT::Flag) |
| 602 | --NumOps; // Ignore the flag operand. |
| 603 | |
| 604 | // Create the inline asm machine instruction. |
Bill Wendling | f2ad58d | 2009-02-03 01:02:39 +0000 | [diff] [blame] | 605 | MachineInstr *MI = BuildMI(MF, Node->getDebugLoc(), |
| 606 | TII->get(TargetInstrInfo::INLINEASM)); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 607 | |
| 608 | // Add the asm string as an external symbol operand. |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 609 | const char *AsmStr = |
| 610 | cast<ExternalSymbolSDNode>(Node->getOperand(1))->getSymbol(); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 611 | MI->addOperand(MachineOperand::CreateES(AsmStr)); |
| 612 | |
| 613 | // Add all of the operand registers to the instruction. |
| 614 | for (unsigned i = 2; i != NumOps;) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 615 | unsigned Flags = |
| 616 | cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 617 | unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 618 | |
| 619 | MI->addOperand(MachineOperand::CreateImm(Flags)); |
| 620 | ++i; // Skip the ID value. |
| 621 | |
| 622 | switch (Flags & 7) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 623 | default: llvm_unreachable("Bad flags!"); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 624 | case 2: // Def of register. |
| 625 | for (; NumVals; --NumVals, ++i) { |
| 626 | unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg(); |
| 627 | MI->addOperand(MachineOperand::CreateReg(Reg, true)); |
| 628 | } |
| 629 | break; |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 630 | case 6: // Def of earlyclobber register. |
| 631 | for (; NumVals; --NumVals, ++i) { |
| 632 | unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg(); |
| 633 | MI->addOperand(MachineOperand::CreateReg(Reg, true, false, false, |
Evan Cheng | 4784f1f | 2009-06-30 08:49:04 +0000 | [diff] [blame] | 634 | false, false, true)); |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 635 | } |
| 636 | break; |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 637 | case 1: // Use of register. |
| 638 | case 3: // Immediate. |
| 639 | case 4: // Addressing mode. |
| 640 | // The addressing mode has been selected, just add all of the |
| 641 | // operands to the machine instruction. |
| 642 | for (; NumVals; --NumVals, ++i) |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 643 | AddOperand(MI, Node->getOperand(i), 0, 0, VRBaseMap); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 644 | break; |
| 645 | } |
| 646 | } |
Dan Gohman | 47ac0f0 | 2009-02-11 04:27:20 +0000 | [diff] [blame] | 647 | BB->insert(InsertPos, MI); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 648 | break; |
| 649 | } |
| 650 | } |
| 651 | } |
| 652 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 653 | /// EmitSchedule - Emit the machine code in scheduled order. |
Dan Gohman | 343f0c0 | 2008-11-19 23:18:57 +0000 | [diff] [blame] | 654 | MachineBasicBlock *ScheduleDAGSDNodes::EmitSchedule() { |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 655 | DenseMap<SDValue, unsigned> VRBaseMap; |
| 656 | DenseMap<SUnit*, unsigned> CopyVRBaseMap; |
| 657 | for (unsigned i = 0, e = Sequence.size(); i != e; i++) { |
| 658 | SUnit *SU = Sequence[i]; |
| 659 | if (!SU) { |
| 660 | // Null SUnit* is a noop. |
| 661 | EmitNoop(); |
| 662 | continue; |
| 663 | } |
Dan Gohman | f449bf3 | 2008-11-14 00:06:09 +0000 | [diff] [blame] | 664 | |
Dan Gohman | f449bf3 | 2008-11-14 00:06:09 +0000 | [diff] [blame] | 665 | // For pre-regalloc scheduling, create instructions corresponding to the |
| 666 | // SDNode and any flagged SDNodes and append them to the block. |
Evan Cheng | c29a56d | 2009-01-12 03:19:55 +0000 | [diff] [blame] | 667 | if (!SU->getNode()) { |
| 668 | // Emit a copy. |
| 669 | EmitPhysRegCopy(SU, CopyVRBaseMap); |
| 670 | continue; |
| 671 | } |
| 672 | |
Dan Gohman | d23e0f8 | 2008-11-13 23:24:17 +0000 | [diff] [blame] | 673 | SmallVector<SDNode *, 4> FlaggedNodes; |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 674 | for (SDNode *N = SU->getNode()->getFlaggedNode(); N; |
| 675 | N = N->getFlaggedNode()) |
Dan Gohman | d23e0f8 | 2008-11-13 23:24:17 +0000 | [diff] [blame] | 676 | FlaggedNodes.push_back(N); |
| 677 | while (!FlaggedNodes.empty()) { |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 678 | EmitNode(FlaggedNodes.back(), SU->OrigNode != SU, SU->isCloned,VRBaseMap); |
Dan Gohman | d23e0f8 | 2008-11-13 23:24:17 +0000 | [diff] [blame] | 679 | FlaggedNodes.pop_back(); |
| 680 | } |
Evan Cheng | e57187c | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 681 | EmitNode(SU->getNode(), SU->OrigNode != SU, SU->isCloned, VRBaseMap); |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 682 | } |
| 683 | |
Dan Gohman | 94b8d7e | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 684 | return BB; |
| 685 | } |