blob: 7d2d11ec7220b015dd1a7836f7dc24684574ec92 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- SparcISelDAGToDAG.cpp - A dag to dag inst selector for Sparc ------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines an instruction selector for the SPARC target.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner36d23442008-03-17 03:21:36 +000014#include "SparcISelLowering.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000015#include "SparcTargetMachine.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016#include "llvm/Intrinsics.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000017#include "llvm/CodeGen/SelectionDAGISel.h"
Chris Lattner93c741a2008-02-03 05:43:57 +000018#include "llvm/Support/Compiler.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000019#include "llvm/Support/Debug.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000020using namespace llvm;
21
22//===----------------------------------------------------------------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023// Instruction Selector Implementation
24//===----------------------------------------------------------------------===//
25
26//===--------------------------------------------------------------------===//
27/// SparcDAGToDAGISel - SPARC specific code to select SPARC machine
28/// instructions for SelectionDAG operations.
29///
30namespace {
31class 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;
37public:
Dan Gohmane887fdf2008-07-07 18:00:37 +000038 explicit SparcDAGToDAGISel(TargetMachine &TM)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039 : SelectionDAGISel(Lowering), Lowering(TM),
40 Subtarget(TM.getSubtarget<SparcSubtarget>()) {
41 }
42
Dan Gohman8181bd12008-07-27 21:46:04 +000043 SDNode *Select(SDValue Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044
45 // Complex Pattern Selectors.
Dan Gohman8181bd12008-07-27 21:46:04 +000046 bool SelectADDRrr(SDValue Op, SDValue N, SDValue &R1, SDValue &R2);
47 bool SelectADDRri(SDValue Op, SDValue N, SDValue &Base,
48 SDValue &Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049
Evan Cheng34fd4f32008-06-30 20:45:06 +000050 /// InstructionSelect - This callback is invoked by
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Evan Cheng34fd4f32008-06-30 20:45:06 +000052 virtual void InstructionSelect(SelectionDAG &DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053
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 Cheng34fd4f32008-06-30 20:45:06 +000063/// InstructionSelect - This callback is invoked by
Dan Gohmanf17a25c2007-07-18 16:29:46 +000064/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Evan Cheng34fd4f32008-06-30 20:45:06 +000065void SparcDAGToDAGISel::InstructionSelect(SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000066 DEBUG(BB->dump());
67
68 // Select target instructions for the DAG.
69 DAG.setRoot(SelectRoot(DAG.getRoot()));
70 DAG.RemoveDeadNodes();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000071}
72
Dan Gohman8181bd12008-07-27 21:46:04 +000073bool SparcDAGToDAGISel::SelectADDRri(SDValue Op, SDValue Addr,
74 SDValue &Base, SDValue &Offset) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000075 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 }
80 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
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 }
94 Offset = CurDAG->getTargetConstant(CN->getValue(), MVT::i32);
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 Gohman8181bd12008-07-27 21:46:04 +0000114bool SparcDAGToDAGISel::SelectADDRrr(SDValue Op, SDValue Addr,
115 SDValue &R1, SDValue &R2) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000116 if (Addr.getOpcode() == ISD::FrameIndex) return false;
117 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
118 Addr.getOpcode() == ISD::TargetGlobalAddress)
119 return false; // direct calls.
120
121 if (Addr.getOpcode() == ISD::ADD) {
122 if (isa<ConstantSDNode>(Addr.getOperand(1)) &&
123 Predicate_simm13(Addr.getOperand(1).Val))
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 Gohman8181bd12008-07-27 21:46:04 +0000138SDNode *SparcDAGToDAGISel::Select(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139 SDNode *N = Op.Val;
Dan Gohmanbd68c792008-07-17 19:10:17 +0000140 if (N->isMachineOpcode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141 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 Gohman8181bd12008-07-27 21:46:04 +0000148 SDValue DivLHS = N->getOperand(0);
149 SDValue DivRHS = N->getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000150 AddToISelQueue(DivLHS);
151 AddToISelQueue(DivRHS);
152
153 // Set the Y register to the high-part.
Dan Gohman8181bd12008-07-27 21:46:04 +0000154 SDValue TopPart;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155 if (N->getOpcode() == ISD::SDIV) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000156 TopPart = SDValue(CurDAG->getTargetNode(SP::SRAri, MVT::i32, DivLHS,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 CurDAG->getTargetConstant(31, MVT::i32)), 0);
158 } else {
159 TopPart = CurDAG->getRegister(SP::G0, MVT::i32);
160 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000161 TopPart = SDValue(CurDAG->getTargetNode(SP::WRYrr, MVT::Flag, TopPart,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000162 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 Gohman8181bd12008-07-27 21:46:04 +0000172 SDValue MulLHS = N->getOperand(0);
173 SDValue MulRHS = N->getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000174 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 Gohman8181bd12008-07-27 21:46:04 +0000180 return CurDAG->SelectNodeTo(N, SP::RDY, MVT::i32, SDValue(Mul, 1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181 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///
192FunctionPass *llvm::createSparcISelDag(TargetMachine &TM) {
193 return new SparcDAGToDAGISel(TM);
194}