Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 1 | //==--- InstrEmitter.cpp - Emit MachineInstrs for the SelectionDAG class ---==// |
Dan Gohman | b10f1a5 | 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 | b812077 | 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 | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 16 | #include "InstrEmitter.h" |
Evan Cheng | 00fd0b6 | 2010-03-14 19:56:39 +0000 | [diff] [blame] | 17 | #include "SDNodeDbgValue.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/Statistic.h" |
Dan Gohman | b10f1a5 | 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" |
Andrew Trick | 1f54e80 | 2013-11-19 05:05:43 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/StackMaps.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 24 | #include "llvm/IR/DataLayout.h" |
Reid Kleckner | 2886580 | 2016-04-14 18:29:59 +0000 | [diff] [blame] | 25 | #include "llvm/IR/DebugInfo.h" |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 26 | #include "llvm/Support/Debug.h" |
Torok Edwin | 56d0659 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 27 | #include "llvm/Support/ErrorHandling.h" |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 28 | #include "llvm/Support/MathExtras.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 29 | #include "llvm/Target/TargetInstrInfo.h" |
| 30 | #include "llvm/Target/TargetLowering.h" |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 31 | #include "llvm/Target/TargetSubtargetInfo.h" |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 32 | using namespace llvm; |
| 33 | |
Chandler Carruth | 1b9dde0 | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 34 | #define DEBUG_TYPE "instr-emitter" |
| 35 | |
Jakob Stoklund Olesen | f7957a9 | 2011-10-05 20:26:40 +0000 | [diff] [blame] | 36 | /// MinRCSize - Smallest register class we allow when constraining virtual |
| 37 | /// registers. If satisfying all register class constraints would require |
| 38 | /// using a smaller register class, emit a COPY to a new virtual register |
| 39 | /// instead. |
| 40 | const unsigned MinRCSize = 4; |
| 41 | |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 42 | /// CountResults - The results of target nodes have register or immediate |
Chris Lattner | 11a3381 | 2010-12-23 17:24:32 +0000 | [diff] [blame] | 43 | /// operands first, then an optional chain, and optional glue operands (which do |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 44 | /// not go into the resulting MachineInstr). |
| 45 | unsigned InstrEmitter::CountResults(SDNode *Node) { |
| 46 | unsigned N = Node->getNumValues(); |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 47 | while (N && Node->getValueType(N - 1) == MVT::Glue) |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 48 | --N; |
| 49 | if (N && Node->getValueType(N - 1) == MVT::Other) |
| 50 | --N; // Skip over chain result. |
| 51 | return N; |
| 52 | } |
| 53 | |
Jakob Stoklund Olesen | c300ef0 | 2012-07-04 23:53:23 +0000 | [diff] [blame] | 54 | /// countOperands - The inputs to target nodes have any actual inputs first, |
Chris Lattner | 11a3381 | 2010-12-23 17:24:32 +0000 | [diff] [blame] | 55 | /// followed by an optional chain operand, then an optional glue operand. |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 56 | /// Compute the number of actual operands that will go into the resulting |
| 57 | /// MachineInstr. |
Jakob Stoklund Olesen | c300ef0 | 2012-07-04 23:53:23 +0000 | [diff] [blame] | 58 | /// |
| 59 | /// Also count physreg RegisterSDNode and RegisterMaskSDNode operands preceding |
| 60 | /// the chain and glue. These operands may be implicit on the machine instr. |
Jakob Stoklund Olesen | 10cdd09 | 2012-08-24 20:52:42 +0000 | [diff] [blame] | 61 | static unsigned countOperands(SDNode *Node, unsigned NumExpUses, |
| 62 | unsigned &NumImpUses) { |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 63 | unsigned N = Node->getNumOperands(); |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 64 | while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue) |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 65 | --N; |
| 66 | if (N && Node->getOperand(N - 1).getValueType() == MVT::Other) |
| 67 | --N; // Ignore chain if it exists. |
Jakob Stoklund Olesen | c300ef0 | 2012-07-04 23:53:23 +0000 | [diff] [blame] | 68 | |
| 69 | // Count RegisterSDNode and RegisterMaskSDNode operands for NumImpUses. |
Jakob Stoklund Olesen | 10cdd09 | 2012-08-24 20:52:42 +0000 | [diff] [blame] | 70 | NumImpUses = N - NumExpUses; |
| 71 | for (unsigned I = N; I > NumExpUses; --I) { |
Jakob Stoklund Olesen | c300ef0 | 2012-07-04 23:53:23 +0000 | [diff] [blame] | 72 | if (isa<RegisterMaskSDNode>(Node->getOperand(I - 1))) |
| 73 | continue; |
| 74 | if (RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Node->getOperand(I - 1))) |
| 75 | if (TargetRegisterInfo::isPhysicalRegister(RN->getReg())) |
| 76 | continue; |
| 77 | NumImpUses = N - I; |
| 78 | break; |
| 79 | } |
| 80 | |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 81 | return N; |
| 82 | } |
| 83 | |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 84 | /// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an |
| 85 | /// implicit physical register output. |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 86 | void InstrEmitter:: |
Chris Lattner | 54b8ebc | 2009-06-26 05:39:02 +0000 | [diff] [blame] | 87 | EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned, |
| 88 | unsigned SrcReg, DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 89 | unsigned VRBase = 0; |
| 90 | if (TargetRegisterInfo::isVirtualRegister(SrcReg)) { |
| 91 | // Just use the input register directly! |
| 92 | SDValue Op(Node, ResNo); |
| 93 | if (IsClone) |
| 94 | VRBaseMap.erase(Op); |
| 95 | bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; |
Jeffrey Yasskin | 9b43f33 | 2010-12-23 00:58:24 +0000 | [diff] [blame] | 96 | (void)isNew; // Silence compiler warning. |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 97 | assert(isNew && "Node emitted out of order - early"); |
| 98 | return; |
| 99 | } |
| 100 | |
| 101 | // If the node is only used by a CopyToReg and the dest reg is a vreg, use |
| 102 | // the CopyToReg'd destination register instead of creating a new vreg. |
| 103 | bool MatchReg = true; |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 104 | const TargetRegisterClass *UseRC = nullptr; |
Patrik Hagglund | 5e6c361 | 2012-12-13 06:34:11 +0000 | [diff] [blame] | 105 | MVT VT = Node->getSimpleValueType(ResNo); |
Jakob Stoklund Olesen | c826df9 | 2011-06-16 22:50:38 +0000 | [diff] [blame] | 106 | |
| 107 | // Stick to the preferred register classes for legal types. |
| 108 | if (TLI->isTypeLegal(VT)) |
| 109 | UseRC = TLI->getRegClassFor(VT); |
| 110 | |
Evan Cheng | 968e2e7 | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 111 | if (!IsClone && !IsCloned) |
Jim Grosbach | 5d049b9 | 2014-04-11 01:13:16 +0000 | [diff] [blame] | 112 | for (SDNode *User : Node->uses()) { |
Evan Cheng | 968e2e7 | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 113 | bool Match = true; |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 114 | if (User->getOpcode() == ISD::CopyToReg && |
Evan Cheng | 968e2e7 | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 115 | User->getOperand(2).getNode() == Node && |
| 116 | User->getOperand(2).getResNo() == ResNo) { |
| 117 | unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); |
| 118 | if (TargetRegisterInfo::isVirtualRegister(DestReg)) { |
| 119 | VRBase = DestReg; |
| 120 | Match = false; |
| 121 | } else if (DestReg != SrcReg) |
| 122 | Match = false; |
| 123 | } else { |
| 124 | for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) { |
| 125 | SDValue Op = User->getOperand(i); |
| 126 | if (Op.getNode() != Node || Op.getResNo() != ResNo) |
| 127 | continue; |
Patrik Hagglund | 5e6c361 | 2012-12-13 06:34:11 +0000 | [diff] [blame] | 128 | MVT VT = Node->getSimpleValueType(Op.getResNo()); |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 129 | if (VT == MVT::Other || VT == MVT::Glue) |
Evan Cheng | 968e2e7 | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 130 | continue; |
| 131 | Match = false; |
| 132 | if (User->isMachineOpcode()) { |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 133 | const MCInstrDesc &II = TII->get(User->getMachineOpcode()); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 134 | const TargetRegisterClass *RC = nullptr; |
Andrew Trick | 32aea35 | 2012-05-03 01:14:37 +0000 | [diff] [blame] | 135 | if (i+II.getNumDefs() < II.getNumOperands()) { |
| 136 | RC = TRI->getAllocatableClass( |
Jakob Stoklund Olesen | 3c52f02 | 2012-05-07 22:10:26 +0000 | [diff] [blame] | 137 | TII->getRegClass(II, i+II.getNumDefs(), TRI, *MF)); |
Andrew Trick | 32aea35 | 2012-05-03 01:14:37 +0000 | [diff] [blame] | 138 | } |
Evan Cheng | 968e2e7 | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 139 | if (!UseRC) |
| 140 | UseRC = RC; |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 141 | else if (RC) { |
Jakob Stoklund Olesen | 1352be2 | 2011-09-30 22:18:51 +0000 | [diff] [blame] | 142 | const TargetRegisterClass *ComRC = |
Chih-Hung Hsieh | ed7d81e | 2015-12-03 22:02:40 +0000 | [diff] [blame] | 143 | TRI->getCommonSubClass(UseRC, RC, VT.SimpleTy); |
Jakob Stoklund Olesen | 7f91fee | 2009-08-16 17:40:59 +0000 | [diff] [blame] | 144 | // If multiple uses expect disjoint register classes, we emit |
| 145 | // copies in AddRegisterOperand. |
| 146 | if (ComRC) |
| 147 | UseRC = ComRC; |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 148 | } |
Evan Cheng | 968e2e7 | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 149 | } |
Evan Cheng | a904f46 | 2008-09-16 23:12:11 +0000 | [diff] [blame] | 150 | } |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 151 | } |
Evan Cheng | 968e2e7 | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 152 | MatchReg &= Match; |
| 153 | if (VRBase) |
| 154 | break; |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 155 | } |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 156 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 157 | const TargetRegisterClass *SrcRC = nullptr, *DstRC = nullptr; |
Rafael Espindola | 38a7d7c | 2010-06-29 14:02:34 +0000 | [diff] [blame] | 158 | SrcRC = TRI->getMinimalPhysRegClass(SrcReg, VT); |
Jakob Stoklund Olesen | c826df9 | 2011-06-16 22:50:38 +0000 | [diff] [blame] | 159 | |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 160 | // Figure out the register class to create for the destreg. |
| 161 | if (VRBase) { |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 162 | DstRC = MRI->getRegClass(VRBase); |
Evan Cheng | a904f46 | 2008-09-16 23:12:11 +0000 | [diff] [blame] | 163 | } else if (UseRC) { |
| 164 | assert(UseRC->hasType(VT) && "Incompatible phys register def and uses!"); |
| 165 | DstRC = UseRC; |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 166 | } else { |
Evan Cheng | a904f46 | 2008-09-16 23:12:11 +0000 | [diff] [blame] | 167 | DstRC = TLI->getRegClassFor(VT); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 168 | } |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 169 | |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 170 | // If all uses are reading from the src physical register and copying the |
| 171 | // register is either impossible or very expensive, then don't create a copy. |
| 172 | if (MatchReg && SrcRC->getCopyCost() < 0) { |
| 173 | VRBase = SrcReg; |
| 174 | } else { |
| 175 | // Create the reg, emit the copy. |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 176 | VRBase = MRI->createVirtualRegister(DstRC); |
Jakob Stoklund Olesen | e50d30d | 2010-07-10 19:08:25 +0000 | [diff] [blame] | 177 | BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY), |
| 178 | VRBase).addReg(SrcReg); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | SDValue Op(Node, ResNo); |
| 182 | if (IsClone) |
| 183 | VRBaseMap.erase(Op); |
| 184 | bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; |
Jeffrey Yasskin | 9b43f33 | 2010-12-23 00:58:24 +0000 | [diff] [blame] | 185 | (void)isNew; // Silence compiler warning. |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 186 | assert(isNew && "Node emitted out of order - early"); |
| 187 | } |
| 188 | |
| 189 | /// getDstOfCopyToRegUse - If the only use of the specified result number of |
| 190 | /// node is a CopyToReg, return its destination register. Return 0 otherwise. |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 191 | unsigned InstrEmitter::getDstOfOnlyCopyToRegUse(SDNode *Node, |
| 192 | unsigned ResNo) const { |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 193 | if (!Node->hasOneUse()) |
| 194 | return 0; |
| 195 | |
| 196 | SDNode *User = *Node->use_begin(); |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 197 | if (User->getOpcode() == ISD::CopyToReg && |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 198 | User->getOperand(2).getNode() == Node && |
| 199 | User->getOperand(2).getResNo() == ResNo) { |
| 200 | unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); |
| 201 | if (TargetRegisterInfo::isVirtualRegister(Reg)) |
| 202 | return Reg; |
| 203 | } |
| 204 | return 0; |
| 205 | } |
| 206 | |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 207 | void InstrEmitter::CreateVirtualRegisters(SDNode *Node, |
| 208 | MachineInstrBuilder &MIB, |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 209 | const MCInstrDesc &II, |
Evan Cheng | 968e2e7 | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 210 | bool IsClone, bool IsCloned, |
Evan Cheng | ed74d8a | 2009-01-09 22:44:02 +0000 | [diff] [blame] | 211 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 212 | assert(Node->getMachineOpcode() != TargetOpcode::IMPLICIT_DEF && |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 213 | "IMPLICIT_DEF should have been handled as a special case elsewhere!"); |
| 214 | |
Juergen Ributzka | 9969d3e | 2013-11-08 23:28:16 +0000 | [diff] [blame] | 215 | unsigned NumResults = CountResults(Node); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 216 | for (unsigned i = 0; i < II.getNumDefs(); ++i) { |
| 217 | // If the specific node value is only used by a CopyToReg and the dest reg |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 218 | // is a vreg in the same register class, use the CopyToReg'd destination |
| 219 | // register instead of creating a new vreg. |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 220 | unsigned VRBase = 0; |
Andrew Trick | 32aea35 | 2012-05-03 01:14:37 +0000 | [diff] [blame] | 221 | const TargetRegisterClass *RC = |
Jakob Stoklund Olesen | 3c52f02 | 2012-05-07 22:10:26 +0000 | [diff] [blame] | 222 | TRI->getAllocatableClass(TII->getRegClass(II, i, TRI, *MF)); |
Jakob Stoklund Olesen | b6b35a4 | 2014-01-14 06:18:38 +0000 | [diff] [blame] | 223 | // Always let the value type influence the used register class. The |
| 224 | // constraints on the instruction may be too lax to represent the value |
| 225 | // type correctly. For example, a 64-bit float (X86::FR64) can't live in |
| 226 | // the 32-bit float super-class (X86::FR32). |
| 227 | if (i < NumResults && TLI->isTypeLegal(Node->getSimpleValueType(i))) { |
| 228 | const TargetRegisterClass *VTRC = |
| 229 | TLI->getRegClassFor(Node->getSimpleValueType(i)); |
| 230 | if (RC) |
| 231 | VTRC = TRI->getCommonSubClass(RC, VTRC); |
| 232 | if (VTRC) |
| 233 | RC = VTRC; |
| 234 | } |
| 235 | |
Evan Cheng | ede2ce7 | 2009-07-11 01:06:50 +0000 | [diff] [blame] | 236 | if (II.OpInfo[i].isOptionalDef()) { |
| 237 | // Optional def must be a physical register. |
| 238 | unsigned NumResults = CountResults(Node); |
| 239 | VRBase = cast<RegisterSDNode>(Node->getOperand(i-NumResults))->getReg(); |
| 240 | assert(TargetRegisterInfo::isPhysicalRegister(VRBase)); |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 241 | MIB.addReg(VRBase, RegState::Define); |
Evan Cheng | ede2ce7 | 2009-07-11 01:06:50 +0000 | [diff] [blame] | 242 | } |
Evan Cheng | 968e2e7 | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 243 | |
Evan Cheng | ede2ce7 | 2009-07-11 01:06:50 +0000 | [diff] [blame] | 244 | if (!VRBase && !IsClone && !IsCloned) |
Jim Grosbach | 5d049b9 | 2014-04-11 01:13:16 +0000 | [diff] [blame] | 245 | for (SDNode *User : Node->uses()) { |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 246 | if (User->getOpcode() == ISD::CopyToReg && |
Evan Cheng | 968e2e7 | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 247 | User->getOperand(2).getNode() == Node && |
| 248 | User->getOperand(2).getResNo() == i) { |
| 249 | unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); |
| 250 | if (TargetRegisterInfo::isVirtualRegister(Reg)) { |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 251 | const TargetRegisterClass *RegRC = MRI->getRegClass(Reg); |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 252 | if (RegRC == RC) { |
| 253 | VRBase = Reg; |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 254 | MIB.addReg(VRBase, RegState::Define); |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 255 | break; |
| 256 | } |
Evan Cheng | 968e2e7 | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 257 | } |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 258 | } |
| 259 | } |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 260 | |
| 261 | // Create the result registers for this node and add the result regs to |
| 262 | // the machine instruction. |
| 263 | if (VRBase == 0) { |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 264 | assert(RC && "Isn't a register operand!"); |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 265 | VRBase = MRI->createVirtualRegister(RC); |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 266 | MIB.addReg(VRBase, RegState::Define); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 267 | } |
| 268 | |
Chandler Carruth | eae2d28 | 2014-07-25 09:19:18 +0000 | [diff] [blame] | 269 | // If this def corresponds to a result of the SDNode insert the VRBase into |
| 270 | // the lookup map. |
| 271 | if (i < NumResults) { |
| 272 | SDValue Op(Node, i); |
| 273 | if (IsClone) |
| 274 | VRBaseMap.erase(Op); |
| 275 | bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; |
| 276 | (void)isNew; // Silence compiler warning. |
| 277 | assert(isNew && "Node emitted out of order - early"); |
| 278 | } |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 279 | } |
| 280 | } |
| 281 | |
| 282 | /// getVR - Return the virtual register corresponding to the specified result |
| 283 | /// of the specified node. |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 284 | unsigned InstrEmitter::getVR(SDValue Op, |
| 285 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 286 | if (Op.isMachineOpcode() && |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 287 | Op.getMachineOpcode() == TargetOpcode::IMPLICIT_DEF) { |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 288 | // Add an IMPLICIT_DEF instruction before every use. |
| 289 | unsigned VReg = getDstOfOnlyCopyToRegUse(Op.getNode(), Op.getResNo()); |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 290 | // IMPLICIT_DEF can produce any type of result so its MCInstrDesc |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 291 | // does not include operand register class info. |
| 292 | if (!VReg) { |
Patrik Hagglund | 5e6c361 | 2012-12-13 06:34:11 +0000 | [diff] [blame] | 293 | const TargetRegisterClass *RC = |
| 294 | TLI->getRegClassFor(Op.getSimpleValueType()); |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 295 | VReg = MRI->createVirtualRegister(RC); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 296 | } |
Dan Gohman | fbdba81 | 2010-07-10 13:55:45 +0000 | [diff] [blame] | 297 | BuildMI(*MBB, InsertPos, Op.getDebugLoc(), |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 298 | TII->get(TargetOpcode::IMPLICIT_DEF), VReg); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 299 | return VReg; |
| 300 | } |
| 301 | |
| 302 | DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op); |
| 303 | assert(I != VRBaseMap.end() && "Node emitted out of order - late"); |
| 304 | return I->second; |
| 305 | } |
| 306 | |
Bill Wendling | f824489 | 2010-08-30 04:36:50 +0000 | [diff] [blame] | 307 | |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 308 | /// AddRegisterOperand - Add the specified register as an operand to the |
| 309 | /// specified machine instr. Insert register copies if the register is |
| 310 | /// not in the required register class. |
| 311 | void |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 312 | InstrEmitter::AddRegisterOperand(MachineInstrBuilder &MIB, |
| 313 | SDValue Op, |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 314 | unsigned IIOpNum, |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 315 | const MCInstrDesc *II, |
Evan Cheng | 563fe3c | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 316 | DenseMap<SDValue, unsigned> &VRBaseMap, |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 317 | bool IsDebug, bool IsClone, bool IsCloned) { |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 318 | assert(Op.getValueType() != MVT::Other && |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 319 | Op.getValueType() != MVT::Glue && |
Chris Lattner | 11a3381 | 2010-12-23 17:24:32 +0000 | [diff] [blame] | 320 | "Chain and glue operands should occur at end of operand list!"); |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 321 | // Get/emit the operand. |
| 322 | unsigned VReg = getVR(Op, VRBaseMap); |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 323 | |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 324 | const MCInstrDesc &MCID = MIB->getDesc(); |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 325 | bool isOptDef = IIOpNum < MCID.getNumOperands() && |
| 326 | MCID.OpInfo[IIOpNum].isOptionalDef(); |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 327 | |
| 328 | // If the instruction requires a register in a different class, create |
Jakob Stoklund Olesen | e92e5ee | 2011-09-22 21:39:34 +0000 | [diff] [blame] | 329 | // a new virtual register and copy the value into it, but first attempt to |
| 330 | // shrink VReg's register class within reason. For example, if VReg == GR32 |
| 331 | // and II requires a GR32_NOSP, just constrain VReg to GR32_NOSP. |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 332 | if (II) { |
Tom Stellard | 0967c91 | 2015-11-12 21:43:25 +0000 | [diff] [blame] | 333 | const TargetRegisterClass *DstRC = nullptr; |
Chris Lattner | 7667332 | 2009-07-29 21:36:49 +0000 | [diff] [blame] | 334 | if (IIOpNum < II->getNumOperands()) |
Tom Stellard | 0967c91 | 2015-11-12 21:43:25 +0000 | [diff] [blame] | 335 | DstRC = TRI->getAllocatableClass(TII->getRegClass(*II,IIOpNum,TRI,*MF)); |
Nirav Dave | bfdb483 | 2016-06-23 17:52:57 +0000 | [diff] [blame] | 336 | assert((!DstRC || TargetRegisterInfo::isVirtualRegister(VReg)) && |
| 337 | "Expected VReg"); |
Tom Stellard | 0967c91 | 2015-11-12 21:43:25 +0000 | [diff] [blame] | 338 | if (DstRC && !MRI->constrainRegClass(VReg, DstRC, MinRCSize)) { |
| 339 | unsigned NewVReg = MRI->createVirtualRegister(DstRC); |
Jakob Stoklund Olesen | e50d30d | 2010-07-10 19:08:25 +0000 | [diff] [blame] | 340 | BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(), |
| 341 | TII->get(TargetOpcode::COPY), NewVReg).addReg(VReg); |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 342 | VReg = NewVReg; |
| 343 | } |
| 344 | } |
| 345 | |
Dan Gohman | ac55510 | 2010-04-30 00:08:21 +0000 | [diff] [blame] | 346 | // If this value has only one use, that use is a kill. This is a |
Dan Gohman | afd2b8b | 2010-05-11 21:59:14 +0000 | [diff] [blame] | 347 | // conservative approximation. InstrEmitter does trivial coalescing |
| 348 | // with CopyFromReg nodes, so don't emit kill flags for them. |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 349 | // Avoid kill flags on Schedule cloned nodes, since there will be |
| 350 | // multiple uses. |
Dan Gohman | afd2b8b | 2010-05-11 21:59:14 +0000 | [diff] [blame] | 351 | // Tied operands are never killed, so we need to check that. And that |
| 352 | // means we need to determine the index of the operand. |
| 353 | bool isKill = Op.hasOneUse() && |
| 354 | Op.getNode()->getOpcode() != ISD::CopyFromReg && |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 355 | !IsDebug && |
| 356 | !(IsClone || IsCloned); |
Dan Gohman | afd2b8b | 2010-05-11 21:59:14 +0000 | [diff] [blame] | 357 | if (isKill) { |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 358 | unsigned Idx = MIB->getNumOperands(); |
Dan Gohman | afd2b8b | 2010-05-11 21:59:14 +0000 | [diff] [blame] | 359 | while (Idx > 0 && |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 360 | MIB->getOperand(Idx-1).isReg() && |
| 361 | MIB->getOperand(Idx-1).isImplicit()) |
Dan Gohman | afd2b8b | 2010-05-11 21:59:14 +0000 | [diff] [blame] | 362 | --Idx; |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 363 | bool isTied = MCID.getOperandConstraint(Idx, MCOI::TIED_TO) != -1; |
Dan Gohman | afd2b8b | 2010-05-11 21:59:14 +0000 | [diff] [blame] | 364 | if (isTied) |
| 365 | isKill = false; |
| 366 | } |
Dan Gohman | ac55510 | 2010-04-30 00:08:21 +0000 | [diff] [blame] | 367 | |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 368 | MIB.addReg(VReg, getDefRegState(isOptDef) | getKillRegState(isKill) | |
| 369 | getDebugRegState(IsDebug)); |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 370 | } |
| 371 | |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 372 | /// AddOperand - Add the specified operand to the specified machine instr. II |
| 373 | /// specifies the instruction information for the node, and IIOpNum is the |
Jakob Stoklund Olesen | c300ef0 | 2012-07-04 23:53:23 +0000 | [diff] [blame] | 374 | /// operand number (in the II) that we are adding. |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 375 | void InstrEmitter::AddOperand(MachineInstrBuilder &MIB, |
| 376 | SDValue Op, |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 377 | unsigned IIOpNum, |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 378 | const MCInstrDesc *II, |
Evan Cheng | 563fe3c | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 379 | DenseMap<SDValue, unsigned> &VRBaseMap, |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 380 | bool IsDebug, bool IsClone, bool IsCloned) { |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 381 | if (Op.isMachineOpcode()) { |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 382 | AddRegisterOperand(MIB, Op, IIOpNum, II, VRBaseMap, |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 383 | IsDebug, IsClone, IsCloned); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 384 | } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 385 | MIB.addImm(C->getSExtValue()); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 386 | } else if (ConstantFPSDNode *F = dyn_cast<ConstantFPSDNode>(Op)) { |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 387 | MIB.addFPImm(F->getConstantFPValue()); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 388 | } else if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(Op)) { |
Jakob Stoklund Olesen | c300ef0 | 2012-07-04 23:53:23 +0000 | [diff] [blame] | 389 | // Turn additional physreg operands into implicit uses on non-variadic |
| 390 | // instructions. This is used by call and return instructions passing |
| 391 | // arguments in registers. |
| 392 | bool Imp = II && (IIOpNum >= II->getNumOperands() && !II->isVariadic()); |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 393 | MIB.addReg(R->getReg(), getImplRegState(Imp)); |
Jakob Stoklund Olesen | 9349351d | 2012-01-18 23:52:12 +0000 | [diff] [blame] | 394 | } else if (RegisterMaskSDNode *RM = dyn_cast<RegisterMaskSDNode>(Op)) { |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 395 | MIB.addRegMask(RM->getRegMask()); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 396 | } else if (GlobalAddressSDNode *TGA = dyn_cast<GlobalAddressSDNode>(Op)) { |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 397 | MIB.addGlobalAddress(TGA->getGlobal(), TGA->getOffset(), |
| 398 | TGA->getTargetFlags()); |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 399 | } else if (BasicBlockSDNode *BBNode = dyn_cast<BasicBlockSDNode>(Op)) { |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 400 | MIB.addMBB(BBNode->getBasicBlock()); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 401 | } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op)) { |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 402 | MIB.addFrameIndex(FI->getIndex()); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 403 | } else if (JumpTableSDNode *JT = dyn_cast<JumpTableSDNode>(Op)) { |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 404 | MIB.addJumpTableIndex(JT->getIndex(), JT->getTargetFlags()); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 405 | } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op)) { |
| 406 | int Offset = CP->getOffset(); |
| 407 | unsigned Align = CP->getAlignment(); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 408 | Type *Type = CP->getType(); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 409 | // MachineConstantPool wants an explicit alignment. |
| 410 | if (Align == 0) { |
Mehdi Amini | 8ac7a9d | 2015-07-07 19:07:19 +0000 | [diff] [blame] | 411 | Align = MF->getDataLayout().getPrefTypeAlignment(Type); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 412 | if (Align == 0) { |
| 413 | // Alignment of vector types. FIXME! |
Mehdi Amini | 8ac7a9d | 2015-07-07 19:07:19 +0000 | [diff] [blame] | 414 | Align = MF->getDataLayout().getTypeAllocSize(Type); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 415 | } |
| 416 | } |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 417 | |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 418 | unsigned Idx; |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 419 | MachineConstantPool *MCP = MF->getConstantPool(); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 420 | if (CP->isMachineConstantPoolEntry()) |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 421 | Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 422 | else |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 423 | Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align); |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 424 | MIB.addConstantPoolIndex(Idx, Offset, CP->getTargetFlags()); |
Bill Wendling | 24c79f2 | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 425 | } else if (ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op)) { |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 426 | MIB.addExternalSymbol(ES->getSymbol(), ES->getTargetFlags()); |
Rafael Espindola | 36b718f | 2015-06-22 17:46:53 +0000 | [diff] [blame] | 427 | } else if (auto *SymNode = dyn_cast<MCSymbolSDNode>(Op)) { |
| 428 | MIB.addSym(SymNode->getMCSymbol()); |
Dan Gohman | 6c93880 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 429 | } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) { |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 430 | MIB.addBlockAddress(BA->getBlockAddress(), |
| 431 | BA->getOffset(), |
| 432 | BA->getTargetFlags()); |
Jakob Stoklund Olesen | 505715d | 2012-08-07 22:37:05 +0000 | [diff] [blame] | 433 | } else if (TargetIndexSDNode *TI = dyn_cast<TargetIndexSDNode>(Op)) { |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 434 | MIB.addTargetIndex(TI->getIndex(), TI->getOffset(), TI->getTargetFlags()); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 435 | } else { |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 436 | assert(Op.getValueType() != MVT::Other && |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 437 | Op.getValueType() != MVT::Glue && |
Chris Lattner | 11a3381 | 2010-12-23 17:24:32 +0000 | [diff] [blame] | 438 | "Chain and glue operands should occur at end of operand list!"); |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 439 | AddRegisterOperand(MIB, Op, IIOpNum, II, VRBaseMap, |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 440 | IsDebug, IsClone, IsCloned); |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 441 | } |
| 442 | } |
| 443 | |
Jakob Stoklund Olesen | f7957a9 | 2011-10-05 20:26:40 +0000 | [diff] [blame] | 444 | unsigned InstrEmitter::ConstrainForSubReg(unsigned VReg, unsigned SubIdx, |
Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 445 | MVT VT, const DebugLoc &DL) { |
Jakob Stoklund Olesen | f7957a9 | 2011-10-05 20:26:40 +0000 | [diff] [blame] | 446 | const TargetRegisterClass *VRC = MRI->getRegClass(VReg); |
| 447 | const TargetRegisterClass *RC = TRI->getSubClassWithSubReg(VRC, SubIdx); |
| 448 | |
| 449 | // RC is a sub-class of VRC that supports SubIdx. Try to constrain VReg |
| 450 | // within reason. |
| 451 | if (RC && RC != VRC) |
| 452 | RC = MRI->constrainRegClass(VReg, RC, MinRCSize); |
| 453 | |
| 454 | // VReg has been adjusted. It can be used with SubIdx operands now. |
| 455 | if (RC) |
| 456 | return VReg; |
| 457 | |
| 458 | // VReg couldn't be reasonably constrained. Emit a COPY to a new virtual |
| 459 | // register instead. |
| 460 | RC = TRI->getSubClassWithSubReg(TLI->getRegClassFor(VT), SubIdx); |
| 461 | assert(RC && "No legal register class for VT supports that SubIdx"); |
| 462 | unsigned NewReg = MRI->createVirtualRegister(RC); |
| 463 | BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg) |
| 464 | .addReg(VReg); |
| 465 | return NewReg; |
| 466 | } |
| 467 | |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 468 | /// EmitSubregNode - Generate machine code for subreg nodes. |
| 469 | /// |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 470 | void InstrEmitter::EmitSubregNode(SDNode *Node, |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 471 | DenseMap<SDValue, unsigned> &VRBaseMap, |
| 472 | bool IsClone, bool IsCloned) { |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 473 | unsigned VRBase = 0; |
| 474 | unsigned Opc = Node->getMachineOpcode(); |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 475 | |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 476 | // If the node is only used by a CopyToReg and the dest reg is a vreg, use |
| 477 | // the CopyToReg'd destination register instead of creating a new vreg. |
Jim Grosbach | 5d049b9 | 2014-04-11 01:13:16 +0000 | [diff] [blame] | 478 | for (SDNode *User : Node->uses()) { |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 479 | if (User->getOpcode() == ISD::CopyToReg && |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 480 | User->getOperand(2).getNode() == Node) { |
| 481 | unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); |
| 482 | if (TargetRegisterInfo::isVirtualRegister(DestReg)) { |
| 483 | VRBase = DestReg; |
| 484 | break; |
| 485 | } |
| 486 | } |
| 487 | } |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 488 | |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 489 | if (Opc == TargetOpcode::EXTRACT_SUBREG) { |
Jakob Stoklund Olesen | f7957a9 | 2011-10-05 20:26:40 +0000 | [diff] [blame] | 490 | // EXTRACT_SUBREG is lowered as %dst = COPY %src:sub. There are no |
| 491 | // constraints on the %dst register, COPY can target all legal register |
| 492 | // classes. |
Dan Gohman | effb894 | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 493 | unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue(); |
Patrik Hagglund | 5e6c361 | 2012-12-13 06:34:11 +0000 | [diff] [blame] | 494 | const TargetRegisterClass *TRC = |
| 495 | TLI->getRegClassFor(Node->getSimpleValueType(0)); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 496 | |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 497 | unsigned VReg = getVR(Node->getOperand(0), VRBaseMap); |
Evan Cheng | 260acf3 | 2011-01-05 23:06:49 +0000 | [diff] [blame] | 498 | MachineInstr *DefMI = MRI->getVRegDef(VReg); |
| 499 | unsigned SrcReg, DstReg, DefSubIdx; |
| 500 | if (DefMI && |
| 501 | TII->isCoalescableExtInstr(*DefMI, SrcReg, DstReg, DefSubIdx) && |
Evan Cheng | b171228 | 2012-07-11 18:55:07 +0000 | [diff] [blame] | 502 | SubIdx == DefSubIdx && |
| 503 | TRC == MRI->getRegClass(SrcReg)) { |
Evan Cheng | 260acf3 | 2011-01-05 23:06:49 +0000 | [diff] [blame] | 504 | // Optimize these: |
| 505 | // r1025 = s/zext r1024, 4 |
| 506 | // r1026 = extract_subreg r1025, 4 |
| 507 | // to a copy |
| 508 | // r1026 = copy r1024 |
Evan Cheng | 260acf3 | 2011-01-05 23:06:49 +0000 | [diff] [blame] | 509 | VRBase = MRI->createVirtualRegister(TRC); |
| 510 | BuildMI(*MBB, InsertPos, Node->getDebugLoc(), |
| 511 | TII->get(TargetOpcode::COPY), VRBase).addReg(SrcReg); |
Jakob Stoklund Olesen | 3e3cdec | 2012-06-29 21:00:03 +0000 | [diff] [blame] | 512 | MRI->clearKillFlags(SrcReg); |
Evan Cheng | 260acf3 | 2011-01-05 23:06:49 +0000 | [diff] [blame] | 513 | } else { |
Jakob Stoklund Olesen | f7957a9 | 2011-10-05 20:26:40 +0000 | [diff] [blame] | 514 | // VReg may not support a SubIdx sub-register, and we may need to |
| 515 | // constrain its register class or issue a COPY to a compatible register |
| 516 | // class. |
| 517 | VReg = ConstrainForSubReg(VReg, SubIdx, |
Patrik Hagglund | 5e6c361 | 2012-12-13 06:34:11 +0000 | [diff] [blame] | 518 | Node->getOperand(0).getSimpleValueType(), |
Jakob Stoklund Olesen | f7957a9 | 2011-10-05 20:26:40 +0000 | [diff] [blame] | 519 | Node->getDebugLoc()); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 520 | |
Jakob Stoklund Olesen | f7957a9 | 2011-10-05 20:26:40 +0000 | [diff] [blame] | 521 | // Create the destreg if it is missing. |
| 522 | if (VRBase == 0) |
| 523 | VRBase = MRI->createVirtualRegister(TRC); |
Evan Cheng | 260acf3 | 2011-01-05 23:06:49 +0000 | [diff] [blame] | 524 | |
| 525 | // Create the extract_subreg machine instruction. |
Jakob Stoklund Olesen | f7957a9 | 2011-10-05 20:26:40 +0000 | [diff] [blame] | 526 | BuildMI(*MBB, InsertPos, Node->getDebugLoc(), |
| 527 | TII->get(TargetOpcode::COPY), VRBase).addReg(VReg, 0, SubIdx); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 528 | } |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 529 | } else if (Opc == TargetOpcode::INSERT_SUBREG || |
| 530 | Opc == TargetOpcode::SUBREG_TO_REG) { |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 531 | SDValue N0 = Node->getOperand(0); |
| 532 | SDValue N1 = Node->getOperand(1); |
| 533 | SDValue N2 = Node->getOperand(2); |
Dan Gohman | effb894 | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 534 | unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue(); |
Dan Gohman | e5cd1fc | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 535 | |
Jakob Stoklund Olesen | 8ff52c4 | 2011-10-05 18:31:00 +0000 | [diff] [blame] | 536 | // Figure out the register class to create for the destreg. It should be |
| 537 | // the largest legal register class supporting SubIdx sub-registers. |
| 538 | // RegisterCoalescer will constrain it further if it decides to eliminate |
| 539 | // the INSERT_SUBREG instruction. |
| 540 | // |
| 541 | // %dst = INSERT_SUBREG %src, %sub, SubIdx |
| 542 | // |
| 543 | // is lowered by TwoAddressInstructionPass to: |
| 544 | // |
| 545 | // %dst = COPY %src |
| 546 | // %dst:SubIdx = COPY %sub |
| 547 | // |
| 548 | // There is no constraint on the %src register class. |
| 549 | // |
Patrik Hagglund | 5e6c361 | 2012-12-13 06:34:11 +0000 | [diff] [blame] | 550 | const TargetRegisterClass *SRC = TLI->getRegClassFor(Node->getSimpleValueType(0)); |
Jakob Stoklund Olesen | 8ff52c4 | 2011-10-05 18:31:00 +0000 | [diff] [blame] | 551 | SRC = TRI->getSubClassWithSubReg(SRC, SubIdx); |
| 552 | assert(SRC && "No register class supports VT and SubIdx for INSERT_SUBREG"); |
| 553 | |
| 554 | if (VRBase == 0 || !SRC->hasSubClassEq(MRI->getRegClass(VRBase))) |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 555 | VRBase = MRI->createVirtualRegister(SRC); |
Dan Gohman | e5cd1fc | 2009-04-14 22:17:14 +0000 | [diff] [blame] | 556 | |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 557 | // Create the insert_subreg or subreg_to_reg machine instruction. |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 558 | MachineInstrBuilder MIB = |
| 559 | BuildMI(*MF, Node->getDebugLoc(), TII->get(Opc), VRBase); |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 560 | |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 561 | // If creating a subreg_to_reg, then the first input operand |
| 562 | // is an implicit value immediate, otherwise it's a register |
Chris Lattner | b06015a | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 563 | if (Opc == TargetOpcode::SUBREG_TO_REG) { |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 564 | const ConstantSDNode *SD = cast<ConstantSDNode>(N0); |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 565 | MIB.addImm(SD->getZExtValue()); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 566 | } else |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 567 | AddOperand(MIB, N0, 0, nullptr, VRBaseMap, /*IsDebug=*/false, |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 568 | IsClone, IsCloned); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 569 | // Add the subregster being inserted |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 570 | AddOperand(MIB, N1, 0, nullptr, VRBaseMap, /*IsDebug=*/false, |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 571 | IsClone, IsCloned); |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 572 | MIB.addImm(SubIdx); |
| 573 | MBB->insert(InsertPos, MIB); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 574 | } else |
Torok Edwin | fbcc663 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 575 | llvm_unreachable("Node is not insert_subreg, extract_subreg, or subreg_to_reg"); |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 576 | |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 577 | SDValue Op(Node, 0); |
| 578 | bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; |
Jeffrey Yasskin | 9b43f33 | 2010-12-23 00:58:24 +0000 | [diff] [blame] | 579 | (void)isNew; // Silence compiler warning. |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 580 | assert(isNew && "Node emitted out of order - early"); |
| 581 | } |
| 582 | |
Dan Gohman | 6c14263 | 2009-04-13 21:06:25 +0000 | [diff] [blame] | 583 | /// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes. |
| 584 | /// COPY_TO_REGCLASS is just a normal copy, except that the destination |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 585 | /// register is constrained to be in a particular register class. |
| 586 | /// |
| 587 | void |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 588 | InstrEmitter::EmitCopyToRegClassNode(SDNode *Node, |
| 589 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 590 | unsigned VReg = getVR(Node->getOperand(0), VRBaseMap); |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 591 | |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 592 | // Create the new VReg in the destination class and emit a copy. |
Jakob Stoklund Olesen | e50d30d | 2010-07-10 19:08:25 +0000 | [diff] [blame] | 593 | unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue(); |
Andrew Trick | 32aea35 | 2012-05-03 01:14:37 +0000 | [diff] [blame] | 594 | const TargetRegisterClass *DstRC = |
| 595 | TRI->getAllocatableClass(TRI->getRegClass(DstRCIdx)); |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 596 | unsigned NewVReg = MRI->createVirtualRegister(DstRC); |
Jakob Stoklund Olesen | e50d30d | 2010-07-10 19:08:25 +0000 | [diff] [blame] | 597 | BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY), |
| 598 | NewVReg).addReg(VReg); |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 599 | |
| 600 | SDValue Op(Node, 0); |
| 601 | bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second; |
Jeffrey Yasskin | 9b43f33 | 2010-12-23 00:58:24 +0000 | [diff] [blame] | 602 | (void)isNew; // Silence compiler warning. |
Dan Gohman | 60a446a | 2009-04-13 15:38:05 +0000 | [diff] [blame] | 603 | assert(isNew && "Node emitted out of order - early"); |
| 604 | } |
| 605 | |
Evan Cheng | f869d9a | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 606 | /// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes. |
| 607 | /// |
| 608 | void InstrEmitter::EmitRegSequence(SDNode *Node, |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 609 | DenseMap<SDValue, unsigned> &VRBaseMap, |
| 610 | bool IsClone, bool IsCloned) { |
Owen Anderson | 5fc8b77 | 2011-06-16 18:17:13 +0000 | [diff] [blame] | 611 | unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue(); |
| 612 | const TargetRegisterClass *RC = TRI->getRegClass(DstRCIdx); |
Andrew Trick | 32aea35 | 2012-05-03 01:14:37 +0000 | [diff] [blame] | 613 | unsigned NewVReg = MRI->createVirtualRegister(TRI->getAllocatableClass(RC)); |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 614 | const MCInstrDesc &II = TII->get(TargetOpcode::REG_SEQUENCE); |
| 615 | MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(), II, NewVReg); |
Evan Cheng | f869d9a | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 616 | unsigned NumOps = Node->getNumOperands(); |
Owen Anderson | 5fc8b77 | 2011-06-16 18:17:13 +0000 | [diff] [blame] | 617 | assert((NumOps & 1) == 1 && |
| 618 | "REG_SEQUENCE must have an odd number of operands!"); |
Owen Anderson | 5fc8b77 | 2011-06-16 18:17:13 +0000 | [diff] [blame] | 619 | for (unsigned i = 1; i != NumOps; ++i) { |
Evan Cheng | f869d9a | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 620 | SDValue Op = Node->getOperand(i); |
Owen Anderson | 5fc8b77 | 2011-06-16 18:17:13 +0000 | [diff] [blame] | 621 | if ((i & 1) == 0) { |
Pete Cooper | c52eeed | 2012-01-18 04:16:16 +0000 | [diff] [blame] | 622 | RegisterSDNode *R = dyn_cast<RegisterSDNode>(Node->getOperand(i-1)); |
| 623 | // Skip physical registers as they don't have a vreg to get and we'll |
| 624 | // insert copies for them in TwoAddressInstructionPass anyway. |
| 625 | if (!R || !TargetRegisterInfo::isPhysicalRegister(R->getReg())) { |
| 626 | unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue(); |
| 627 | unsigned SubReg = getVR(Node->getOperand(i-1), VRBaseMap); |
| 628 | const TargetRegisterClass *TRC = MRI->getRegClass(SubReg); |
| 629 | const TargetRegisterClass *SRC = |
Evan Cheng | e7fc64a | 2010-05-18 20:03:28 +0000 | [diff] [blame] | 630 | TRI->getMatchingSuperRegClass(RC, TRC, SubIdx); |
Pete Cooper | c52eeed | 2012-01-18 04:16:16 +0000 | [diff] [blame] | 631 | if (SRC && SRC != RC) { |
| 632 | MRI->setRegClass(NewVReg, SRC); |
| 633 | RC = SRC; |
| 634 | } |
Evan Cheng | 45b3f70 | 2010-05-18 20:07:47 +0000 | [diff] [blame] | 635 | } |
Evan Cheng | f869d9a | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 636 | } |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 637 | AddOperand(MIB, Op, i+1, &II, VRBaseMap, /*IsDebug=*/false, |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 638 | IsClone, IsCloned); |
Evan Cheng | f869d9a | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 639 | } |
| 640 | |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 641 | MBB->insert(InsertPos, MIB); |
Evan Cheng | f869d9a | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 642 | SDValue Op(Node, 0); |
| 643 | bool isNew = VRBaseMap.insert(std::make_pair(Op, NewVReg)).second; |
Jeffrey Yasskin | 9b43f33 | 2010-12-23 00:58:24 +0000 | [diff] [blame] | 644 | (void)isNew; // Silence compiler warning. |
Evan Cheng | f869d9a | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 645 | assert(isNew && "Node emitted out of order - early"); |
| 646 | } |
| 647 | |
Evan Cheng | 563fe3c | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 648 | /// EmitDbgValue - Generate machine instruction for a dbg_value node. |
| 649 | /// |
Dan Gohman | 8acc8f7 | 2010-04-30 19:35:33 +0000 | [diff] [blame] | 650 | MachineInstr * |
| 651 | InstrEmitter::EmitDbgValue(SDDbgValue *SD, |
| 652 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Evan Cheng | 563fe3c | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 653 | uint64_t Offset = SD->getOffset(); |
Adrian Prantl | 87b7eb9 | 2014-10-01 18:55:02 +0000 | [diff] [blame] | 654 | MDNode *Var = SD->getVariable(); |
| 655 | MDNode *Expr = SD->getExpression(); |
Evan Cheng | 563fe3c | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 656 | DebugLoc DL = SD->getDebugLoc(); |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 657 | assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) && |
Duncan P. N. Exon Smith | 3bef6a3 | 2015-04-03 19:20:26 +0000 | [diff] [blame] | 658 | "Expected inlined-at fields to agree"); |
Evan Cheng | 563fe3c | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 659 | |
Dale Johannesen | 582565e | 2010-04-25 21:33:54 +0000 | [diff] [blame] | 660 | if (SD->getKind() == SDDbgValue::FRAMEIX) { |
| 661 | // Stack address; this needs to be lowered in target-dependent fashion. |
| 662 | // EmitTargetCodeForFrameDebugValue is responsible for allocation. |
David Blaikie | 0252265b | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 663 | return BuildMI(*MF, DL, TII->get(TargetOpcode::DBG_VALUE)) |
Adrian Prantl | 87b7eb9 | 2014-10-01 18:55:02 +0000 | [diff] [blame] | 664 | .addFrameIndex(SD->getFrameIx()) |
| 665 | .addImm(Offset) |
| 666 | .addMetadata(Var) |
| 667 | .addMetadata(Expr); |
Dale Johannesen | 582565e | 2010-04-25 21:33:54 +0000 | [diff] [blame] | 668 | } |
| 669 | // Otherwise, we're going to create an instruction here. |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 670 | const MCInstrDesc &II = TII->get(TargetOpcode::DBG_VALUE); |
Evan Cheng | 563fe3c | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 671 | MachineInstrBuilder MIB = BuildMI(*MF, DL, II); |
| 672 | if (SD->getKind() == SDDbgValue::SDNODE) { |
Dale Johannesen | d1976e3 | 2010-04-06 21:59:56 +0000 | [diff] [blame] | 673 | SDNode *Node = SD->getSDNode(); |
| 674 | SDValue Op = SDValue(Node, SD->getResNo()); |
| 675 | // It's possible we replaced this SDNode with other(s) and therefore |
| 676 | // didn't generate code for it. It's better to catch these cases where |
| 677 | // they happen and transfer the debug info, but trying to guarantee that |
| 678 | // in all cases would be very fragile; this is a safeguard for any |
| 679 | // that were missed. |
| 680 | DenseMap<SDValue, unsigned>::iterator I = VRBaseMap.find(Op); |
| 681 | if (I==VRBaseMap.end()) |
| 682 | MIB.addReg(0U); // undef |
| 683 | else |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 684 | AddOperand(MIB, Op, (*MIB).getNumOperands(), &II, VRBaseMap, |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 685 | /*IsDebug=*/true, /*IsClone=*/false, /*IsCloned=*/false); |
Evan Cheng | 563fe3c | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 686 | } else if (SD->getKind() == SDDbgValue::CONST) { |
Dan Gohman | bcaf681 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 687 | const Value *V = SD->getConst(); |
| 688 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) { |
Devang Patel | f071d72 | 2011-06-24 20:46:11 +0000 | [diff] [blame] | 689 | if (CI->getBitWidth() > 64) |
| 690 | MIB.addCImm(CI); |
Dan Gohman | 7de01ec | 2010-05-07 22:19:08 +0000 | [diff] [blame] | 691 | else |
| 692 | MIB.addImm(CI->getSExtValue()); |
Dan Gohman | bcaf681 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 693 | } else if (const ConstantFP *CF = dyn_cast<ConstantFP>(V)) { |
Evan Cheng | 563fe3c | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 694 | MIB.addFPImm(CF); |
Dale Johannesen | 49de060 | 2010-03-10 22:13:47 +0000 | [diff] [blame] | 695 | } else { |
| 696 | // Could be an Undef. In any case insert an Undef so we can see what we |
| 697 | // dropped. |
Evan Cheng | 563fe3c | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 698 | MIB.addReg(0U); |
Dale Johannesen | 49de060 | 2010-03-10 22:13:47 +0000 | [diff] [blame] | 699 | } |
Dale Johannesen | 10a77ad | 2010-03-06 00:03:23 +0000 | [diff] [blame] | 700 | } else { |
| 701 | // Insert an Undef so we can see what we dropped. |
Evan Cheng | 563fe3c | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 702 | MIB.addReg(0U); |
Dale Johannesen | 10a77ad | 2010-03-06 00:03:23 +0000 | [diff] [blame] | 703 | } |
Evan Cheng | 563fe3c | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 704 | |
Adrian Prantl | 32da889 | 2014-04-25 20:49:25 +0000 | [diff] [blame] | 705 | // Indirect addressing is indicated by an Imm as the second parameter. |
| 706 | if (SD->isIndirect()) |
Adrian Prantl | 418d1d1 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 707 | MIB.addImm(Offset); |
Adrian Prantl | 32da889 | 2014-04-25 20:49:25 +0000 | [diff] [blame] | 708 | else { |
| 709 | assert(Offset == 0 && "direct value cannot have an offset"); |
Adrian Prantl | 418d1d1 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 710 | MIB.addReg(0U, RegState::Debug); |
Adrian Prantl | 32da889 | 2014-04-25 20:49:25 +0000 | [diff] [blame] | 711 | } |
Adrian Prantl | 418d1d1 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 712 | |
Adrian Prantl | 87b7eb9 | 2014-10-01 18:55:02 +0000 | [diff] [blame] | 713 | MIB.addMetadata(Var); |
| 714 | MIB.addMetadata(Expr); |
Adrian Prantl | 418d1d1 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 715 | |
Evan Cheng | 563fe3c | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 716 | return &*MIB; |
Dale Johannesen | 10a77ad | 2010-03-06 00:03:23 +0000 | [diff] [blame] | 717 | } |
| 718 | |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 719 | /// EmitMachineNode - Generate machine code for a target-specific node and |
| 720 | /// needed dependencies. |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 721 | /// |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 722 | void InstrEmitter:: |
| 723 | EmitMachineNode(SDNode *Node, bool IsClone, bool IsCloned, |
Dan Gohman | 25c1653 | 2010-05-01 00:01:06 +0000 | [diff] [blame] | 724 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 725 | unsigned Opc = Node->getMachineOpcode(); |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 726 | |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 727 | // Handle subreg insert/extract specially |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 728 | if (Opc == TargetOpcode::EXTRACT_SUBREG || |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 729 | Opc == TargetOpcode::INSERT_SUBREG || |
| 730 | Opc == TargetOpcode::SUBREG_TO_REG) { |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 731 | EmitSubregNode(Node, VRBaseMap, IsClone, IsCloned); |
Chris Lattner | ddca7b0 | 2010-03-24 23:41:19 +0000 | [diff] [blame] | 732 | return; |
| 733 | } |
| 734 | |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 735 | // Handle COPY_TO_REGCLASS specially. |
| 736 | if (Opc == TargetOpcode::COPY_TO_REGCLASS) { |
| 737 | EmitCopyToRegClassNode(Node, VRBaseMap); |
| 738 | return; |
| 739 | } |
| 740 | |
Evan Cheng | f869d9a | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 741 | // Handle REG_SEQUENCE specially. |
| 742 | if (Opc == TargetOpcode::REG_SEQUENCE) { |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 743 | EmitRegSequence(Node, VRBaseMap, IsClone, IsCloned); |
Evan Cheng | f869d9a | 2010-05-04 00:22:40 +0000 | [diff] [blame] | 744 | return; |
| 745 | } |
| 746 | |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 747 | if (Opc == TargetOpcode::IMPLICIT_DEF) |
| 748 | // We want a unique VR for each IMPLICIT_DEF use. |
| 749 | return; |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 750 | |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 751 | const MCInstrDesc &II = TII->get(Opc); |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 752 | unsigned NumResults = CountResults(Node); |
Juergen Ributzka | 9969d3e | 2013-11-08 23:28:16 +0000 | [diff] [blame] | 753 | unsigned NumDefs = II.getNumDefs(); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 754 | const MCPhysReg *ScratchRegs = nullptr; |
Juergen Ributzka | 9969d3e | 2013-11-08 23:28:16 +0000 | [diff] [blame] | 755 | |
Andrew Trick | fbb278c | 2014-03-05 07:08:16 +0000 | [diff] [blame] | 756 | // Handle STACKMAP and PATCHPOINT specially and then use the generic code. |
| 757 | if (Opc == TargetOpcode::STACKMAP || Opc == TargetOpcode::PATCHPOINT) { |
| 758 | // Stackmaps do not have arguments and do not preserve their calling |
| 759 | // convention. However, to simplify runtime support, they clobber the same |
| 760 | // scratch registers as AnyRegCC. |
| 761 | unsigned CC = CallingConv::AnyReg; |
| 762 | if (Opc == TargetOpcode::PATCHPOINT) { |
| 763 | CC = Node->getConstantOperandVal(PatchPointOpers::CCPos); |
| 764 | NumDefs = NumResults; |
| 765 | } |
Juergen Ributzka | 87ed906 | 2013-11-09 01:51:33 +0000 | [diff] [blame] | 766 | ScratchRegs = TLI->getScratchRegisters((CallingConv::ID) CC); |
| 767 | } |
Juergen Ributzka | 9969d3e | 2013-11-08 23:28:16 +0000 | [diff] [blame] | 768 | |
Jakob Stoklund Olesen | c300ef0 | 2012-07-04 23:53:23 +0000 | [diff] [blame] | 769 | unsigned NumImpUses = 0; |
Jakob Stoklund Olesen | 10cdd09 | 2012-08-24 20:52:42 +0000 | [diff] [blame] | 770 | unsigned NodeOperands = |
Juergen Ributzka | 9969d3e | 2013-11-08 23:28:16 +0000 | [diff] [blame] | 771 | countOperands(Node, II.getNumOperands() - NumDefs, NumImpUses); |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 772 | bool HasPhysRegOuts = NumResults > NumDefs && II.getImplicitDefs()!=nullptr; |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 773 | #ifndef NDEBUG |
| 774 | unsigned NumMIOperands = NodeOperands + NumResults; |
Chris Lattner | 4690af8 | 2010-03-25 05:40:48 +0000 | [diff] [blame] | 775 | if (II.isVariadic()) |
| 776 | assert(NumMIOperands >= II.getNumOperands() && |
| 777 | "Too few operands for a variadic node!"); |
| 778 | else |
| 779 | assert(NumMIOperands >= II.getNumOperands() && |
Jakob Stoklund Olesen | c300ef0 | 2012-07-04 23:53:23 +0000 | [diff] [blame] | 780 | NumMIOperands <= II.getNumOperands() + II.getNumImplicitDefs() + |
| 781 | NumImpUses && |
Chris Lattner | 4690af8 | 2010-03-25 05:40:48 +0000 | [diff] [blame] | 782 | "#operands for dag node doesn't match .td file!"); |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 783 | #endif |
| 784 | |
| 785 | // Create the new machine instruction. |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 786 | MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(), II); |
Dan Gohman | 8693650 | 2010-06-18 23:28:01 +0000 | [diff] [blame] | 787 | |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 788 | // Add result register values for things that are defined by this |
| 789 | // instruction. |
| 790 | if (NumResults) |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 791 | CreateVirtualRegisters(Node, MIB, II, IsClone, IsCloned, VRBaseMap); |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 792 | |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 793 | // Emit all of the actual operands of this instruction, adding them to the |
| 794 | // instruction as appropriate. |
Juergen Ributzka | 9969d3e | 2013-11-08 23:28:16 +0000 | [diff] [blame] | 795 | bool HasOptPRefs = NumDefs > NumResults; |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 796 | assert((!HasOptPRefs || !HasPhysRegOuts) && |
| 797 | "Unable to cope with optional defs and phys regs defs!"); |
Juergen Ributzka | 9969d3e | 2013-11-08 23:28:16 +0000 | [diff] [blame] | 798 | unsigned NumSkip = HasOptPRefs ? NumDefs - NumResults : 0; |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 799 | for (unsigned i = NumSkip; i != NodeOperands; ++i) |
Juergen Ributzka | 9969d3e | 2013-11-08 23:28:16 +0000 | [diff] [blame] | 800 | AddOperand(MIB, Node->getOperand(i), i-NumSkip+NumDefs, &II, |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 801 | VRBaseMap, /*IsDebug=*/false, IsClone, IsCloned); |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 802 | |
Juergen Ributzka | 87ed906 | 2013-11-09 01:51:33 +0000 | [diff] [blame] | 803 | // Add scratch registers as implicit def and early clobber |
| 804 | if (ScratchRegs) |
| 805 | for (unsigned i = 0; ScratchRegs[i]; ++i) |
| 806 | MIB.addReg(ScratchRegs[i], RegState::ImplicitDefine | |
| 807 | RegState::EarlyClobber); |
| 808 | |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 809 | // Transfer all of the memory reference descriptions of this instruction. |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 810 | MIB.setMemRefs(cast<MachineSDNode>(Node)->memoperands_begin(), |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 811 | cast<MachineSDNode>(Node)->memoperands_end()); |
| 812 | |
Dan Gohman | 3439629 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 813 | // Insert the instruction into position in the block. This needs to |
| 814 | // happen before any custom inserter hook is called so that the |
| 815 | // hook knows where in the block to insert the replacement code. |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 816 | MBB->insert(InsertPos, MIB); |
Dan Gohman | 3439629 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 817 | |
Jakob Stoklund Olesen | f650732 | 2012-02-03 20:43:35 +0000 | [diff] [blame] | 818 | // The MachineInstr may also define physregs instead of virtregs. These |
| 819 | // physreg values can reach other instructions in different ways: |
| 820 | // |
| 821 | // 1. When there is a use of a Node value beyond the explicitly defined |
| 822 | // virtual registers, we emit a CopyFromReg for one of the implicitly |
| 823 | // defined physregs. This only happens when HasPhysRegOuts is true. |
| 824 | // |
| 825 | // 2. A CopyFromReg reading a physreg may be glued to this instruction. |
| 826 | // |
| 827 | // 3. A glued instruction may implicitly use a physreg. |
| 828 | // |
| 829 | // 4. A glued instruction may use a RegisterSDNode operand. |
| 830 | // |
| 831 | // Collect all the used physreg defs, and make sure that any unused physreg |
| 832 | // defs are marked as dead. |
| 833 | SmallVector<unsigned, 8> UsedRegs; |
| 834 | |
Eric Christopher | 1b93e7b | 2010-12-08 22:21:42 +0000 | [diff] [blame] | 835 | // Additional results must be physical register defs. |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 836 | if (HasPhysRegOuts) { |
Juergen Ributzka | 9969d3e | 2013-11-08 23:28:16 +0000 | [diff] [blame] | 837 | for (unsigned i = NumDefs; i < NumResults; ++i) { |
| 838 | unsigned Reg = II.getImplicitDefs()[i - NumDefs]; |
Jakob Stoklund Olesen | f650732 | 2012-02-03 20:43:35 +0000 | [diff] [blame] | 839 | if (!Node->hasAnyUseOfValue(i)) |
| 840 | continue; |
| 841 | // This implicitly defined physreg has a use. |
| 842 | UsedRegs.push_back(Reg); |
| 843 | EmitCopyFromReg(Node, i, IsClone, IsCloned, Reg, VRBaseMap); |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 844 | } |
| 845 | } |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 846 | |
Jakob Stoklund Olesen | f650732 | 2012-02-03 20:43:35 +0000 | [diff] [blame] | 847 | // Scan the glue chain for any used physregs. |
| 848 | if (Node->getValueType(Node->getNumValues()-1) == MVT::Glue) { |
| 849 | for (SDNode *F = Node->getGluedUser(); F; F = F->getGluedUser()) { |
| 850 | if (F->getOpcode() == ISD::CopyFromReg) { |
| 851 | UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg()); |
| 852 | continue; |
Hal Finkel | b9a3d61 | 2012-02-24 17:53:59 +0000 | [diff] [blame] | 853 | } else if (F->getOpcode() == ISD::CopyToReg) { |
| 854 | // Skip CopyToReg nodes that are internal to the glue chain. |
| 855 | continue; |
Jakob Stoklund Olesen | f650732 | 2012-02-03 20:43:35 +0000 | [diff] [blame] | 856 | } |
| 857 | // Collect declared implicit uses. |
| 858 | const MCInstrDesc &MCID = TII->get(F->getMachineOpcode()); |
| 859 | UsedRegs.append(MCID.getImplicitUses(), |
| 860 | MCID.getImplicitUses() + MCID.getNumImplicitUses()); |
| 861 | // In addition to declared implicit uses, we must also check for |
| 862 | // direct RegisterSDNode operands. |
| 863 | for (unsigned i = 0, e = F->getNumOperands(); i != e; ++i) |
| 864 | if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(F->getOperand(i))) { |
| 865 | unsigned Reg = R->getReg(); |
| 866 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) |
| 867 | UsedRegs.push_back(Reg); |
| 868 | } |
Chris Lattner | 4690af8 | 2010-03-25 05:40:48 +0000 | [diff] [blame] | 869 | } |
Jakob Stoklund Olesen | f650732 | 2012-02-03 20:43:35 +0000 | [diff] [blame] | 870 | } |
| 871 | |
| 872 | // Finally mark unused registers as dead. |
| 873 | if (!UsedRegs.empty() || II.getImplicitDefs()) |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 874 | MIB->setPhysRegsDeadExcept(UsedRegs, *TRI); |
Evan Cheng | e6fba77 | 2011-08-30 19:09:48 +0000 | [diff] [blame] | 875 | |
| 876 | // Run post-isel target hook to adjust this instruction if needed. |
Andrew Trick | 52363bd | 2011-09-20 18:22:31 +0000 | [diff] [blame] | 877 | if (II.hasPostISelHook()) |
Duncan P. N. Exon Smith | e4f5e4f | 2016-06-30 22:52:52 +0000 | [diff] [blame] | 878 | TLI->AdjustInstrPostInstrSelection(*MIB, Node); |
Chris Lattner | e2a504e | 2010-03-25 04:41:16 +0000 | [diff] [blame] | 879 | } |
| 880 | |
| 881 | /// EmitSpecialNode - Generate machine code for a target-independent node and |
| 882 | /// needed dependencies. |
| 883 | void InstrEmitter:: |
| 884 | EmitSpecialNode(SDNode *Node, bool IsClone, bool IsCloned, |
| 885 | DenseMap<SDValue, unsigned> &VRBaseMap) { |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 886 | switch (Node->getOpcode()) { |
| 887 | default: |
| 888 | #ifndef NDEBUG |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 889 | Node->dump(); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 890 | #endif |
Torok Edwin | fbcc663 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 891 | llvm_unreachable("This target-independent node should have been selected!"); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 892 | case ISD::EntryToken: |
Torok Edwin | fbcc663 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 893 | llvm_unreachable("EntryToken should have been excluded from the schedule!"); |
Evan Cheng | e62288f | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 894 | case ISD::MERGE_VALUES: |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 895 | case ISD::TokenFactor: // fall thru |
| 896 | break; |
| 897 | case ISD::CopyToReg: { |
| 898 | unsigned SrcReg; |
| 899 | SDValue SrcVal = Node->getOperand(2); |
| 900 | if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal)) |
| 901 | SrcReg = R->getReg(); |
| 902 | else |
| 903 | SrcReg = getVR(SrcVal, VRBaseMap); |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 904 | |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 905 | unsigned DestReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg(); |
| 906 | if (SrcReg == DestReg) // Coalesced away the copy? Ignore. |
| 907 | break; |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 908 | |
Jakob Stoklund Olesen | e50d30d | 2010-07-10 19:08:25 +0000 | [diff] [blame] | 909 | BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY), |
| 910 | DestReg).addReg(SrcReg); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 911 | break; |
| 912 | } |
| 913 | case ISD::CopyFromReg: { |
| 914 | unsigned SrcReg = cast<RegisterSDNode>(Node->getOperand(1))->getReg(); |
Evan Cheng | 968e2e7 | 2009-01-16 20:57:18 +0000 | [diff] [blame] | 915 | EmitCopyFromReg(Node, 0, IsClone, IsCloned, SrcReg, VRBaseMap); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 916 | break; |
| 917 | } |
Chris Lattner | ee2fbbc | 2010-03-14 02:33:54 +0000 | [diff] [blame] | 918 | case ISD::EH_LABEL: { |
| 919 | MCSymbol *S = cast<EHLabelSDNode>(Node)->getLabel(); |
| 920 | BuildMI(*MBB, InsertPos, Node->getDebugLoc(), |
| 921 | TII->get(TargetOpcode::EH_LABEL)).addSym(S); |
| 922 | break; |
| 923 | } |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 924 | |
Nadav Rotem | 7c277da | 2012-09-06 09:17:37 +0000 | [diff] [blame] | 925 | case ISD::LIFETIME_START: |
| 926 | case ISD::LIFETIME_END: { |
| 927 | unsigned TarOp = (Node->getOpcode() == ISD::LIFETIME_START) ? |
| 928 | TargetOpcode::LIFETIME_START : TargetOpcode::LIFETIME_END; |
| 929 | |
| 930 | FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Node->getOperand(1)); |
| 931 | BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TarOp)) |
| 932 | .addFrameIndex(FI->getIndex()); |
| 933 | break; |
| 934 | } |
| 935 | |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 936 | case ISD::INLINEASM: { |
| 937 | unsigned NumOps = Node->getNumOperands(); |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 938 | if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue) |
Chris Lattner | 11a3381 | 2010-12-23 17:24:32 +0000 | [diff] [blame] | 939 | --NumOps; // Ignore the glue operand. |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 940 | |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 941 | // Create the inline asm machine instruction. |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 942 | MachineInstrBuilder MIB = BuildMI(*MF, Node->getDebugLoc(), |
| 943 | TII->get(TargetOpcode::INLINEASM)); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 944 | |
| 945 | // Add the asm string as an external symbol operand. |
Chris Lattner | 3b9f02a | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 946 | SDValue AsmStrV = Node->getOperand(InlineAsm::Op_AsmString); |
| 947 | const char *AsmStr = cast<ExternalSymbolSDNode>(AsmStrV)->getSymbol(); |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 948 | MIB.addExternalSymbol(AsmStr); |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 949 | |
Chad Rosier | 909f6a0 | 2012-10-30 20:39:19 +0000 | [diff] [blame] | 950 | // Add the HasSideEffect, isAlignStack, AsmDialect, MayLoad and MayStore |
| 951 | // bits. |
Evan Cheng | 6eb516d | 2011-01-07 23:50:32 +0000 | [diff] [blame] | 952 | int64_t ExtraInfo = |
| 953 | cast<ConstantSDNode>(Node->getOperand(InlineAsm::Op_ExtraInfo))-> |
Dale Johannesen | 4d887f7c | 2010-07-02 20:16:09 +0000 | [diff] [blame] | 954 | getZExtValue(); |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 955 | MIB.addImm(ExtraInfo); |
Dale Johannesen | 4d887f7c | 2010-07-02 20:16:09 +0000 | [diff] [blame] | 956 | |
Jakob Stoklund Olesen | b2bef48 | 2012-08-29 22:02:00 +0000 | [diff] [blame] | 957 | // Remember to operand index of the group flags. |
| 958 | SmallVector<unsigned, 8> GroupIdx; |
| 959 | |
Hal Finkel | 1e5733b | 2015-04-20 00:01:30 +0000 | [diff] [blame] | 960 | // Remember registers that are part of early-clobber defs. |
| 961 | SmallVector<unsigned, 8> ECRegs; |
| 962 | |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 963 | // Add all of the operand registers to the instruction. |
Chris Lattner | 3b9f02a | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 964 | for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) { |
Dan Gohman | effb894 | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 965 | unsigned Flags = |
| 966 | cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue(); |
Jakob Stoklund Olesen | b2bef48 | 2012-08-29 22:02:00 +0000 | [diff] [blame] | 967 | const unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags); |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 968 | |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 969 | GroupIdx.push_back(MIB->getNumOperands()); |
| 970 | MIB.addImm(Flags); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 971 | ++i; // Skip the ID value. |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 972 | |
Chris Lattner | 3b9f02a | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 973 | switch (InlineAsm::getKind(Flags)) { |
Torok Edwin | fbcc663 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 974 | default: llvm_unreachable("Bad flags!"); |
Chris Lattner | 3b9f02a | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 975 | case InlineAsm::Kind_RegDef: |
Jakob Stoklund Olesen | b2bef48 | 2012-08-29 22:02:00 +0000 | [diff] [blame] | 976 | for (unsigned j = 0; j != NumVals; ++j, ++i) { |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 977 | unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg(); |
Jakob Stoklund Olesen | 8bc5eca | 2010-06-09 20:05:00 +0000 | [diff] [blame] | 978 | // FIXME: Add dead flags for physical and virtual registers defined. |
| 979 | // For now, mark physical register defs as implicit to help fast |
| 980 | // regalloc. This makes inline asm look a lot like calls. |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 981 | MIB.addReg(Reg, RegState::Define | |
| 982 | getImplRegState(TargetRegisterInfo::isPhysicalRegister(Reg))); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 983 | } |
| 984 | break; |
Chris Lattner | 3b9f02a | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 985 | case InlineAsm::Kind_RegDefEarlyClobber: |
Jakob Stoklund Olesen | 537a302 | 2011-06-27 04:08:33 +0000 | [diff] [blame] | 986 | case InlineAsm::Kind_Clobber: |
Jakob Stoklund Olesen | b2bef48 | 2012-08-29 22:02:00 +0000 | [diff] [blame] | 987 | for (unsigned j = 0; j != NumVals; ++j, ++i) { |
Dale Johannesen | 1f3ab86 | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 988 | unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg(); |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 989 | MIB.addReg(Reg, RegState::Define | RegState::EarlyClobber | |
| 990 | getImplRegState(TargetRegisterInfo::isPhysicalRegister(Reg))); |
Hal Finkel | 1e5733b | 2015-04-20 00:01:30 +0000 | [diff] [blame] | 991 | ECRegs.push_back(Reg); |
Dale Johannesen | 1f3ab86 | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 992 | } |
| 993 | break; |
Chris Lattner | 3b9f02a | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 994 | case InlineAsm::Kind_RegUse: // Use of register. |
| 995 | case InlineAsm::Kind_Imm: // Immediate. |
| 996 | case InlineAsm::Kind_Mem: // Addressing mode. |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 997 | // The addressing mode has been selected, just add all of the |
| 998 | // operands to the machine instruction. |
Jakob Stoklund Olesen | b2bef48 | 2012-08-29 22:02:00 +0000 | [diff] [blame] | 999 | for (unsigned j = 0; j != NumVals; ++j, ++i) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 1000 | AddOperand(MIB, Node->getOperand(i), 0, nullptr, VRBaseMap, |
Dan Gohman | 2f277c8 | 2010-05-14 22:01:14 +0000 | [diff] [blame] | 1001 | /*IsDebug=*/false, IsClone, IsCloned); |
Jakob Stoklund Olesen | b2bef48 | 2012-08-29 22:02:00 +0000 | [diff] [blame] | 1002 | |
| 1003 | // Manually set isTied bits. |
| 1004 | if (InlineAsm::getKind(Flags) == InlineAsm::Kind_RegUse) { |
| 1005 | unsigned DefGroup = 0; |
| 1006 | if (InlineAsm::isUseOperandTiedToDef(Flags, DefGroup)) { |
| 1007 | unsigned DefIdx = GroupIdx[DefGroup] + 1; |
| 1008 | unsigned UseIdx = GroupIdx.back() + 1; |
Jakob Stoklund Olesen | 5c8eda0 | 2012-08-31 20:50:53 +0000 | [diff] [blame] | 1009 | for (unsigned j = 0; j != NumVals; ++j) |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 1010 | MIB->tieOperands(DefIdx + j, UseIdx + j); |
Jakob Stoklund Olesen | b2bef48 | 2012-08-29 22:02:00 +0000 | [diff] [blame] | 1011 | } |
| 1012 | } |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 1013 | break; |
| 1014 | } |
| 1015 | } |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 1016 | |
Hal Finkel | 1e5733b | 2015-04-20 00:01:30 +0000 | [diff] [blame] | 1017 | // GCC inline assembly allows input operands to also be early-clobber |
| 1018 | // output operands (so long as the operand is written only after it's |
| 1019 | // used), but this does not match the semantics of our early-clobber flag. |
| 1020 | // If an early-clobber operand register is also an input operand register, |
| 1021 | // then remove the early-clobber flag. |
| 1022 | for (unsigned Reg : ECRegs) { |
| 1023 | if (MIB->readsRegister(Reg, TRI)) { |
| 1024 | MachineOperand *MO = MIB->findRegisterDefOperand(Reg, false, TRI); |
| 1025 | assert(MO && "No def operand for clobbered register?"); |
| 1026 | MO->setIsEarlyClobber(false); |
| 1027 | } |
| 1028 | } |
| 1029 | |
Chris Lattner | 5106556 | 2010-04-07 05:38:05 +0000 | [diff] [blame] | 1030 | // Get the mdnode from the asm if it exists and add it to the instruction. |
| 1031 | SDValue MDV = Node->getOperand(InlineAsm::Op_MDNode); |
| 1032 | const MDNode *MD = cast<MDNodeSDNode>(MDV)->getMD(); |
Bob Wilson | a1e3430 | 2010-04-26 22:56:56 +0000 | [diff] [blame] | 1033 | if (MD) |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 1034 | MIB.addMetadata(MD); |
Andrew Trick | 53df4b6 | 2011-09-20 03:06:13 +0000 | [diff] [blame] | 1035 | |
Jakob Stoklund Olesen | b109a7b | 2012-12-20 18:08:09 +0000 | [diff] [blame] | 1036 | MBB->insert(InsertPos, MIB); |
Dan Gohman | b10f1a5 | 2008-09-03 16:01:59 +0000 | [diff] [blame] | 1037 | break; |
| 1038 | } |
| 1039 | } |
| 1040 | } |
| 1041 | |
Dan Gohman | b812077 | 2009-10-10 01:32:21 +0000 | [diff] [blame] | 1042 | /// InstrEmitter - Construct an InstrEmitter and set it to start inserting |
| 1043 | /// at the given position in the given block. |
| 1044 | InstrEmitter::InstrEmitter(MachineBasicBlock *mbb, |
| 1045 | MachineBasicBlock::iterator insertpos) |
Eric Christopher | 147c2ea | 2014-10-09 01:35:29 +0000 | [diff] [blame] | 1046 | : MF(mbb->getParent()), MRI(&MF->getRegInfo()), |
| 1047 | TII(MF->getSubtarget().getInstrInfo()), |
| 1048 | TRI(MF->getSubtarget().getRegisterInfo()), |
| 1049 | TLI(MF->getSubtarget().getTargetLowering()), MBB(mbb), |
Eric Christopher | d913448 | 2014-08-04 21:25:23 +0000 | [diff] [blame] | 1050 | InsertPos(insertpos) {} |