Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===-- SparcISelDAGToDAG.cpp - A dag to dag inst selector for Sparc ------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines an instruction selector for the SPARC target. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chris Lattner | 36d2344 | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 14 | #include "SparcISelLowering.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 15 | #include "SparcTargetMachine.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 16 | #include "llvm/Intrinsics.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/SelectionDAGISel.h" |
Chris Lattner | 93c741a | 2008-02-03 05:43:57 +0000 | [diff] [blame] | 18 | #include "llvm/Support/Compiler.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Debug.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 20 | using namespace llvm; |
| 21 | |
| 22 | //===----------------------------------------------------------------------===// |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 23 | // Instruction Selector Implementation |
| 24 | //===----------------------------------------------------------------------===// |
| 25 | |
| 26 | //===--------------------------------------------------------------------===// |
| 27 | /// SparcDAGToDAGISel - SPARC specific code to select SPARC machine |
| 28 | /// instructions for SelectionDAG operations. |
| 29 | /// |
| 30 | namespace { |
| 31 | class SparcDAGToDAGISel : public SelectionDAGISel { |
| 32 | SparcTargetLowering Lowering; |
| 33 | |
| 34 | /// Subtarget - Keep a pointer to the Sparc Subtarget around so that we can |
| 35 | /// make the right decision when generating code for different targets. |
| 36 | const SparcSubtarget &Subtarget; |
| 37 | public: |
Dan Gohman | e887fdf | 2008-07-07 18:00:37 +0000 | [diff] [blame] | 38 | explicit SparcDAGToDAGISel(TargetMachine &TM) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 39 | : SelectionDAGISel(Lowering), Lowering(TM), |
| 40 | Subtarget(TM.getSubtarget<SparcSubtarget>()) { |
| 41 | } |
| 42 | |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 43 | SDNode *Select(SDValue Op); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 44 | |
| 45 | // Complex Pattern Selectors. |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 46 | bool SelectADDRrr(SDValue Op, SDValue N, SDValue &R1, SDValue &R2); |
| 47 | bool SelectADDRri(SDValue Op, SDValue N, SDValue &Base, |
| 48 | SDValue &Offset); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 49 | |
Evan Cheng | 34fd4f3 | 2008-06-30 20:45:06 +0000 | [diff] [blame] | 50 | /// InstructionSelect - This callback is invoked by |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 51 | /// SelectionDAGISel when it has created a SelectionDAG for us to codegen. |
Dan Gohman | 14a6644 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 52 | virtual void InstructionSelect(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 53 | |
| 54 | virtual const char *getPassName() const { |
| 55 | return "SPARC DAG->DAG Pattern Instruction Selection"; |
| 56 | } |
| 57 | |
| 58 | // Include the pieces autogenerated from the target description. |
| 59 | #include "SparcGenDAGISel.inc" |
| 60 | }; |
| 61 | } // end anonymous namespace |
| 62 | |
Evan Cheng | 34fd4f3 | 2008-06-30 20:45:06 +0000 | [diff] [blame] | 63 | /// InstructionSelect - This callback is invoked by |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 64 | /// SelectionDAGISel when it has created a SelectionDAG for us to codegen. |
Dan Gohman | 14a6644 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 65 | void SparcDAGToDAGISel::InstructionSelect() { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 66 | DEBUG(BB->dump()); |
| 67 | |
| 68 | // Select target instructions for the DAG. |
Dan Gohman | bd3f882 | 2008-08-21 16:36:34 +0000 | [diff] [blame] | 69 | SelectRoot(); |
Dan Gohman | 14a6644 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 70 | CurDAG->RemoveDeadNodes(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 71 | } |
| 72 | |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 73 | bool SparcDAGToDAGISel::SelectADDRri(SDValue Op, SDValue Addr, |
| 74 | SDValue &Base, SDValue &Offset) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 75 | if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) { |
| 76 | Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32); |
| 77 | Offset = CurDAG->getTargetConstant(0, MVT::i32); |
| 78 | return true; |
| 79 | } |
Bill Wendling | fef0605 | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 80 | if (Addr.getOpcode() == ISD::TargetExternalSymbol || |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 81 | Addr.getOpcode() == ISD::TargetGlobalAddress) |
| 82 | return false; // direct calls. |
| 83 | |
| 84 | if (Addr.getOpcode() == ISD::ADD) { |
| 85 | if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) { |
| 86 | if (Predicate_simm13(CN)) { |
| 87 | if (FrameIndexSDNode *FIN = |
| 88 | dyn_cast<FrameIndexSDNode>(Addr.getOperand(0))) { |
| 89 | // Constant offset from frame ref. |
| 90 | Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32); |
| 91 | } else { |
| 92 | Base = Addr.getOperand(0); |
| 93 | } |
Dan Gohman | faeb4a3 | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 94 | Offset = CurDAG->getTargetConstant(CN->getZExtValue(), MVT::i32); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 95 | return true; |
| 96 | } |
| 97 | } |
| 98 | if (Addr.getOperand(0).getOpcode() == SPISD::Lo) { |
| 99 | Base = Addr.getOperand(1); |
| 100 | Offset = Addr.getOperand(0).getOperand(0); |
| 101 | return true; |
| 102 | } |
| 103 | if (Addr.getOperand(1).getOpcode() == SPISD::Lo) { |
| 104 | Base = Addr.getOperand(0); |
| 105 | Offset = Addr.getOperand(1).getOperand(0); |
| 106 | return true; |
| 107 | } |
| 108 | } |
| 109 | Base = Addr; |
| 110 | Offset = CurDAG->getTargetConstant(0, MVT::i32); |
| 111 | return true; |
| 112 | } |
| 113 | |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 114 | bool SparcDAGToDAGISel::SelectADDRrr(SDValue Op, SDValue Addr, |
| 115 | SDValue &R1, SDValue &R2) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 116 | if (Addr.getOpcode() == ISD::FrameIndex) return false; |
Bill Wendling | fef0605 | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 117 | if (Addr.getOpcode() == ISD::TargetExternalSymbol || |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 118 | Addr.getOpcode() == ISD::TargetGlobalAddress) |
| 119 | return false; // direct calls. |
| 120 | |
| 121 | if (Addr.getOpcode() == ISD::ADD) { |
| 122 | if (isa<ConstantSDNode>(Addr.getOperand(1)) && |
Gabor Greif | 1c80d11 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 123 | Predicate_simm13(Addr.getOperand(1).getNode())) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 124 | return false; // Let the reg+imm pattern catch this! |
| 125 | if (Addr.getOperand(0).getOpcode() == SPISD::Lo || |
| 126 | Addr.getOperand(1).getOpcode() == SPISD::Lo) |
| 127 | return false; // Let the reg+imm pattern catch this! |
| 128 | R1 = Addr.getOperand(0); |
| 129 | R2 = Addr.getOperand(1); |
| 130 | return true; |
| 131 | } |
| 132 | |
| 133 | R1 = Addr; |
| 134 | R2 = CurDAG->getRegister(SP::G0, MVT::i32); |
| 135 | return true; |
| 136 | } |
| 137 | |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 138 | SDNode *SparcDAGToDAGISel::Select(SDValue Op) { |
Gabor Greif | 1c80d11 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 139 | SDNode *N = Op.getNode(); |
Dan Gohman | bd68c79 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 140 | if (N->isMachineOpcode()) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 141 | return NULL; // Already selected. |
| 142 | |
| 143 | switch (N->getOpcode()) { |
| 144 | default: break; |
| 145 | case ISD::SDIV: |
| 146 | case ISD::UDIV: { |
| 147 | // FIXME: should use a custom expander to expose the SRA to the dag. |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 148 | SDValue DivLHS = N->getOperand(0); |
| 149 | SDValue DivRHS = N->getOperand(1); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 150 | AddToISelQueue(DivLHS); |
| 151 | AddToISelQueue(DivRHS); |
| 152 | |
| 153 | // Set the Y register to the high-part. |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 154 | SDValue TopPart; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 155 | if (N->getOpcode() == ISD::SDIV) { |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 156 | TopPart = SDValue(CurDAG->getTargetNode(SP::SRAri, MVT::i32, DivLHS, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 157 | CurDAG->getTargetConstant(31, MVT::i32)), 0); |
| 158 | } else { |
| 159 | TopPart = CurDAG->getRegister(SP::G0, MVT::i32); |
| 160 | } |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 161 | TopPart = SDValue(CurDAG->getTargetNode(SP::WRYrr, MVT::Flag, TopPart, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 162 | CurDAG->getRegister(SP::G0, MVT::i32)), 0); |
| 163 | |
| 164 | // FIXME: Handle div by immediate. |
| 165 | unsigned Opcode = N->getOpcode() == ISD::SDIV ? SP::SDIVrr : SP::UDIVrr; |
| 166 | return CurDAG->SelectNodeTo(N, Opcode, MVT::i32, DivLHS, DivRHS, |
| 167 | TopPart); |
| 168 | } |
| 169 | case ISD::MULHU: |
| 170 | case ISD::MULHS: { |
| 171 | // FIXME: Handle mul by immediate. |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 172 | SDValue MulLHS = N->getOperand(0); |
| 173 | SDValue MulRHS = N->getOperand(1); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 174 | AddToISelQueue(MulLHS); |
| 175 | AddToISelQueue(MulRHS); |
| 176 | unsigned Opcode = N->getOpcode() == ISD::MULHU ? SP::UMULrr : SP::SMULrr; |
| 177 | SDNode *Mul = CurDAG->getTargetNode(Opcode, MVT::i32, MVT::Flag, |
| 178 | MulLHS, MulRHS); |
| 179 | // The high part is in the Y register. |
Dan Gohman | 8181bd1 | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 180 | return CurDAG->SelectNodeTo(N, SP::RDY, MVT::i32, SDValue(Mul, 1)); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 181 | return NULL; |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | return SelectCode(Op); |
| 186 | } |
| 187 | |
| 188 | |
| 189 | /// createSparcISelDag - This pass converts a legalized DAG into a |
| 190 | /// SPARC-specific DAG, ready for instruction scheduling. |
| 191 | /// |
| 192 | FunctionPass *llvm::createSparcISelDag(TargetMachine &TM) { |
| 193 | return new SparcDAGToDAGISel(TM); |
| 194 | } |