blob: 42b2ee6521c6a5ce4e4ffb38994e47c1dd336f4c [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner45b8caf2005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000017#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000018#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000019#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000020#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000021#include "llvm/Target/TargetOptions.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000022#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000023#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000024#include "llvm/DerivedTypes.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000025#include "llvm/Support/MathExtras.h"
26#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000027#include "llvm/Support/Compiler.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000028#include "llvm/ADT/SmallVector.h"
Evan Cheng033e6812006-03-24 01:17:21 +000029#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000030using namespace llvm;
31
Chris Lattner5e46a192006-04-02 03:07:27 +000032#ifndef NDEBUG
33static cl::opt<bool>
34ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
35 cl::desc("Pop up a window to show dags before legalize"));
36#else
37static const bool ViewLegalizeDAGs = 0;
38#endif
39
Chris Lattner3e928bb2005-01-07 07:47:09 +000040//===----------------------------------------------------------------------===//
41/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
42/// hacks on it until the target machine can handle it. This involves
43/// eliminating value sizes the machine cannot handle (promoting small sizes to
44/// large sizes or splitting up large values into small values) as well as
45/// eliminating operations the machine cannot handle.
46///
47/// This code also does a small amount of optimization and recognition of idioms
48/// as part of its processing. For example, if a target does not support a
49/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
50/// will attempt merge setcc and brc instructions into brcc's.
51///
52namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000053class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000054 TargetLowering &TLI;
55 SelectionDAG &DAG;
56
Chris Lattner6831a812006-02-13 09:18:02 +000057 // Libcall insertion helpers.
58
59 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
60 /// legalized. We use this to ensure that calls are properly serialized
61 /// against each other, including inserted libcalls.
62 SDOperand LastCALLSEQ_END;
63
64 /// IsLegalizingCall - This member is used *only* for purposes of providing
65 /// helpful assertions that a libcall isn't created while another call is
66 /// being legalized (which could lead to non-serialized call sequences).
67 bool IsLegalizingCall;
68
Chris Lattner3e928bb2005-01-07 07:47:09 +000069 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000070 Legal, // The target natively supports this operation.
71 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000072 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000073 };
Chris Lattner6831a812006-02-13 09:18:02 +000074
Chris Lattner3e928bb2005-01-07 07:47:09 +000075 /// ValueTypeActions - This is a bitvector that contains two bits for each
76 /// value type, where the two bits correspond to the LegalizeAction enum.
77 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000078 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000079
Chris Lattner3e928bb2005-01-07 07:47:09 +000080 /// LegalizedNodes - For nodes that are of legal width, and that have more
81 /// than one use, this map indicates what regularized operand to use. This
82 /// allows us to avoid legalizing the same thing more than once.
83 std::map<SDOperand, SDOperand> LegalizedNodes;
84
Chris Lattner03c85462005-01-15 05:21:40 +000085 /// PromotedNodes - For nodes that are below legal width, and that have more
86 /// than one use, this map indicates what promoted value to use. This allows
87 /// us to avoid promoting the same thing more than once.
88 std::map<SDOperand, SDOperand> PromotedNodes;
89
Chris Lattnerc7029802006-03-18 01:44:44 +000090 /// ExpandedNodes - For nodes that need to be expanded this map indicates
91 /// which which operands are the expanded version of the input. This allows
92 /// us to avoid expanding the same node more than once.
Chris Lattner3e928bb2005-01-07 07:47:09 +000093 std::map<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
94
Chris Lattnerc7029802006-03-18 01:44:44 +000095 /// SplitNodes - For vector nodes that need to be split, this map indicates
96 /// which which operands are the split version of the input. This allows us
97 /// to avoid splitting the same node more than once.
98 std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
99
100 /// PackedNodes - For nodes that need to be packed from MVT::Vector types to
101 /// concrete packed types, this contains the mapping of ones we have already
102 /// processed to the result.
103 std::map<SDOperand, SDOperand> PackedNodes;
104
Chris Lattner8afc48e2005-01-07 22:28:47 +0000105 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000106 LegalizedNodes.insert(std::make_pair(From, To));
107 // If someone requests legalization of the new node, return itself.
108 if (From != To)
109 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000110 }
Chris Lattner03c85462005-01-15 05:21:40 +0000111 void AddPromotedOperand(SDOperand From, SDOperand To) {
112 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
113 assert(isNew && "Got into the map somehow?");
Chris Lattner69a889e2005-12-20 00:53:54 +0000114 // If someone requests legalization of the new node, return itself.
115 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000116 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000117
Chris Lattner3e928bb2005-01-07 07:47:09 +0000118public:
119
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000120 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000121
Chris Lattner3e928bb2005-01-07 07:47:09 +0000122 /// getTypeAction - Return how we should legalize values of this type, either
123 /// it is already legal or we need to expand it into multiple registers of
124 /// smaller integer type, or we need to promote it to a larger type.
125 LegalizeAction getTypeAction(MVT::ValueType VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000126 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000127 }
128
129 /// isTypeLegal - Return true if this type is legal on this target.
130 ///
131 bool isTypeLegal(MVT::ValueType VT) const {
132 return getTypeAction(VT) == Legal;
133 }
134
Chris Lattner3e928bb2005-01-07 07:47:09 +0000135 void LegalizeDAG();
136
Chris Lattner456a93a2006-01-28 07:39:30 +0000137private:
Chris Lattnerc7029802006-03-18 01:44:44 +0000138 /// HandleOp - Legalize, Promote, Expand or Pack the specified operand as
139 /// appropriate for its type.
140 void HandleOp(SDOperand Op);
141
142 /// LegalizeOp - We know that the specified value has a legal type.
143 /// Recursively ensure that the operands have legal types, then return the
144 /// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000145 SDOperand LegalizeOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000146
147 /// PromoteOp - Given an operation that produces a value in an invalid type,
148 /// promote it to compute the value into a larger type. The produced value
149 /// will have the correct bits for the low portion of the register, but no
150 /// guarantee is made about the top bits: it may be zero, sign-extended, or
151 /// garbage.
Chris Lattner03c85462005-01-15 05:21:40 +0000152 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000153
Chris Lattnerc7029802006-03-18 01:44:44 +0000154 /// ExpandOp - Expand the specified SDOperand into its two component pieces
155 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
156 /// the LegalizeNodes map is filled in for any results that are not expanded,
157 /// the ExpandedNodes map is filled in for any results that are expanded, and
158 /// the Lo/Hi values are returned. This applies to integer types and Vector
159 /// types.
160 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
161
162 /// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
163 /// two smaller values of MVT::Vector type.
164 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
165
166 /// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
167 /// equivalent operation that returns a packed value (e.g. MVT::V4F32). When
168 /// this is called, we know that PackedVT is the right type for the result and
169 /// we know that this type is legal for the target.
170 SDOperand PackVectorOp(SDOperand O, MVT::ValueType PackedVT);
171
Chris Lattner4352cc92006-04-04 17:23:26 +0000172 /// isShuffleLegal - Return true if a vector shuffle is legal with the
173 /// specified mask and type. Targets can specify exactly which masks they
174 /// support and the code generator is tasked with not creating illegal masks.
175 ///
176 /// Note that this will also return true for shuffles that are promoted to a
177 /// different type.
178 ///
179 /// If this is a legal shuffle, this method returns the (possibly promoted)
180 /// build_vector Mask. If it's not a legal shuffle, it returns null.
181 SDNode *isShuffleLegal(MVT::ValueType VT, SDOperand Mask) const;
182
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000183 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
184 std::set<SDNode*> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000185
Nate Begeman750ac1b2006-02-01 07:19:44 +0000186 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
187
Chris Lattnerce872152006-03-19 06:31:19 +0000188 SDOperand CreateStackTemporary(MVT::ValueType VT);
189
Reid Spencer47857812006-12-31 05:55:36 +0000190 SDOperand ExpandLibCall(const char *Name, SDNode *Node, bool isSigned,
Chris Lattner77e77a62005-01-21 06:05:23 +0000191 SDOperand &Hi);
192 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
193 SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000194
Chris Lattner35481892005-12-23 00:16:34 +0000195 SDOperand ExpandBIT_CONVERT(MVT::ValueType DestVT, SDOperand SrcOp);
Chris Lattnerce872152006-03-19 06:31:19 +0000196 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000197 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskey6269ed12005-08-17 00:39:29 +0000198 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
199 SDOperand LegalOp,
200 MVT::ValueType DestVT);
Nate Begeman5a8441e2005-07-16 02:02:34 +0000201 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
202 bool isSigned);
Chris Lattner1618beb2005-07-29 00:11:56 +0000203 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
204 bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000205
Chris Lattner456a93a2006-01-28 07:39:30 +0000206 SDOperand ExpandBSWAP(SDOperand Op);
207 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000208 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
209 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000210 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
211 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000212
Chris Lattner15972212006-03-31 17:55:51 +0000213 SDOperand LowerVEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000214 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner15972212006-03-31 17:55:51 +0000215
Chris Lattner3e928bb2005-01-07 07:47:09 +0000216 SDOperand getIntPtrConstant(uint64_t Val) {
217 return DAG.getConstant(Val, TLI.getPointerTy());
218 }
219};
220}
221
Chris Lattner4352cc92006-04-04 17:23:26 +0000222/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
223/// specified mask and type. Targets can specify exactly which masks they
224/// support and the code generator is tasked with not creating illegal masks.
225///
226/// Note that this will also return true for shuffles that are promoted to a
227/// different type.
228SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT,
229 SDOperand Mask) const {
230 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
231 default: return 0;
232 case TargetLowering::Legal:
233 case TargetLowering::Custom:
234 break;
235 case TargetLowering::Promote: {
236 // If this is promoted to a different type, convert the shuffle mask and
237 // ask if it is legal in the promoted type!
238 MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
239
240 // If we changed # elements, change the shuffle mask.
241 unsigned NumEltsGrowth =
242 MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT);
243 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
244 if (NumEltsGrowth > 1) {
245 // Renumber the elements.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000246 SmallVector<SDOperand, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000247 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
248 SDOperand InOp = Mask.getOperand(i);
249 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
250 if (InOp.getOpcode() == ISD::UNDEF)
251 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
252 else {
253 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
254 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
255 }
256 }
257 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000258 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000259 }
260 VT = NVT;
261 break;
262 }
263 }
264 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
265}
266
Chris Lattnerc7029802006-03-18 01:44:44 +0000267/// getScalarizedOpcode - Return the scalar opcode that corresponds to the
268/// specified vector opcode.
Chris Lattnerb89175f2005-11-19 05:51:46 +0000269static unsigned getScalarizedOpcode(unsigned VecOp, MVT::ValueType VT) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000270 switch (VecOp) {
271 default: assert(0 && "Don't know how to scalarize this opcode!");
Evan Cheng3e1ce5a2006-03-03 07:01:07 +0000272 case ISD::VADD: return MVT::isInteger(VT) ? ISD::ADD : ISD::FADD;
273 case ISD::VSUB: return MVT::isInteger(VT) ? ISD::SUB : ISD::FSUB;
274 case ISD::VMUL: return MVT::isInteger(VT) ? ISD::MUL : ISD::FMUL;
275 case ISD::VSDIV: return MVT::isInteger(VT) ? ISD::SDIV: ISD::FDIV;
276 case ISD::VUDIV: return MVT::isInteger(VT) ? ISD::UDIV: ISD::FDIV;
277 case ISD::VAND: return MVT::isInteger(VT) ? ISD::AND : 0;
278 case ISD::VOR: return MVT::isInteger(VT) ? ISD::OR : 0;
279 case ISD::VXOR: return MVT::isInteger(VT) ? ISD::XOR : 0;
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000280 }
281}
Chris Lattner3e928bb2005-01-07 07:47:09 +0000282
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000283SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
284 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
285 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000286 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000287 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000288}
289
Chris Lattner32fca002005-10-06 01:20:27 +0000290/// ComputeTopDownOrdering - Add the specified node to the Order list if it has
291/// not been visited yet and if all of its operands have already been visited.
292static void ComputeTopDownOrdering(SDNode *N, std::vector<SDNode*> &Order,
293 std::map<SDNode*, unsigned> &Visited) {
294 if (++Visited[N] != N->getNumOperands())
295 return; // Haven't visited all operands yet
296
297 Order.push_back(N);
298
299 if (N->hasOneUse()) { // Tail recurse in common case.
300 ComputeTopDownOrdering(*N->use_begin(), Order, Visited);
301 return;
302 }
303
304 // Now that we have N in, add anything that uses it if all of their operands
305 // are now done.
Chris Lattner32fca002005-10-06 01:20:27 +0000306 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end(); UI != E;++UI)
307 ComputeTopDownOrdering(*UI, Order, Visited);
308}
309
Chris Lattner1618beb2005-07-29 00:11:56 +0000310
Chris Lattner3e928bb2005-01-07 07:47:09 +0000311void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000312 LastCALLSEQ_END = DAG.getEntryNode();
313 IsLegalizingCall = false;
314
Chris Lattnerab510a72005-10-02 17:49:46 +0000315 // The legalize process is inherently a bottom-up recursive process (users
316 // legalize their uses before themselves). Given infinite stack space, we
317 // could just start legalizing on the root and traverse the whole graph. In
318 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000319 // blocks. To avoid this problem, compute an ordering of the nodes where each
320 // node is only legalized after all of its operands are legalized.
321 std::map<SDNode*, unsigned> Visited;
322 std::vector<SDNode*> Order;
Chris Lattnerab510a72005-10-02 17:49:46 +0000323
Chris Lattner32fca002005-10-06 01:20:27 +0000324 // Compute ordering from all of the leaves in the graphs, those (like the
325 // entry node) that have no operands.
326 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
327 E = DAG.allnodes_end(); I != E; ++I) {
Chris Lattnerde202b32005-11-09 23:47:37 +0000328 if (I->getNumOperands() == 0) {
329 Visited[I] = 0 - 1U;
330 ComputeTopDownOrdering(I, Order, Visited);
Chris Lattnerab510a72005-10-02 17:49:46 +0000331 }
Chris Lattnerab510a72005-10-02 17:49:46 +0000332 }
333
Chris Lattnerde202b32005-11-09 23:47:37 +0000334 assert(Order.size() == Visited.size() &&
335 Order.size() ==
336 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
Chris Lattner32fca002005-10-06 01:20:27 +0000337 "Error: DAG is cyclic!");
338 Visited.clear();
Chris Lattnerab510a72005-10-02 17:49:46 +0000339
Chris Lattnerc7029802006-03-18 01:44:44 +0000340 for (unsigned i = 0, e = Order.size(); i != e; ++i)
341 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000342
343 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000344 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000345 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
346 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000347
348 ExpandedNodes.clear();
349 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000350 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000351 SplitNodes.clear();
352 PackedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000353
354 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000355 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000356}
357
Chris Lattner6831a812006-02-13 09:18:02 +0000358
359/// FindCallEndFromCallStart - Given a chained node that is part of a call
360/// sequence, find the CALLSEQ_END node that terminates the call sequence.
361static SDNode *FindCallEndFromCallStart(SDNode *Node) {
362 if (Node->getOpcode() == ISD::CALLSEQ_END)
363 return Node;
364 if (Node->use_empty())
365 return 0; // No CallSeqEnd
366
367 // The chain is usually at the end.
368 SDOperand TheChain(Node, Node->getNumValues()-1);
369 if (TheChain.getValueType() != MVT::Other) {
370 // Sometimes it's at the beginning.
371 TheChain = SDOperand(Node, 0);
372 if (TheChain.getValueType() != MVT::Other) {
373 // Otherwise, hunt for it.
374 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
375 if (Node->getValueType(i) == MVT::Other) {
376 TheChain = SDOperand(Node, i);
377 break;
378 }
379
380 // Otherwise, we walked into a node without a chain.
381 if (TheChain.getValueType() != MVT::Other)
382 return 0;
383 }
384 }
385
386 for (SDNode::use_iterator UI = Node->use_begin(),
387 E = Node->use_end(); UI != E; ++UI) {
388
389 // Make sure to only follow users of our token chain.
390 SDNode *User = *UI;
391 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
392 if (User->getOperand(i) == TheChain)
393 if (SDNode *Result = FindCallEndFromCallStart(User))
394 return Result;
395 }
396 return 0;
397}
398
399/// FindCallStartFromCallEnd - Given a chained node that is part of a call
400/// sequence, find the CALLSEQ_START node that initiates the call sequence.
401static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
402 assert(Node && "Didn't find callseq_start for a call??");
403 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
404
405 assert(Node->getOperand(0).getValueType() == MVT::Other &&
406 "Node doesn't have a token chain argument!");
407 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
408}
409
410/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
411/// see if any uses can reach Dest. If no dest operands can get to dest,
412/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000413///
414/// Keep track of the nodes we fine that actually do lead to Dest in
415/// NodesLeadingTo. This avoids retraversing them exponential number of times.
416///
417bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
418 std::set<SDNode*> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000419 if (N == Dest) return true; // N certainly leads to Dest :)
420
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000421 // If we've already processed this node and it does lead to Dest, there is no
422 // need to reprocess it.
423 if (NodesLeadingTo.count(N)) return true;
424
Chris Lattner6831a812006-02-13 09:18:02 +0000425 // If the first result of this node has been already legalized, then it cannot
426 // reach N.
427 switch (getTypeAction(N->getValueType(0))) {
428 case Legal:
429 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
430 break;
431 case Promote:
432 if (PromotedNodes.count(SDOperand(N, 0))) return false;
433 break;
434 case Expand:
435 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
436 break;
437 }
438
439 // Okay, this node has not already been legalized. Check and legalize all
440 // operands. If none lead to Dest, then we can legalize this node.
441 bool OperandsLeadToDest = false;
442 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
443 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000444 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000445
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000446 if (OperandsLeadToDest) {
447 NodesLeadingTo.insert(N);
448 return true;
449 }
Chris Lattner6831a812006-02-13 09:18:02 +0000450
451 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000452 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000453 return false;
454}
455
Chris Lattnerc7029802006-03-18 01:44:44 +0000456/// HandleOp - Legalize, Promote, Expand or Pack the specified operand as
457/// appropriate for its type.
458void SelectionDAGLegalize::HandleOp(SDOperand Op) {
459 switch (getTypeAction(Op.getValueType())) {
460 default: assert(0 && "Bad type action!");
461 case Legal: LegalizeOp(Op); break;
462 case Promote: PromoteOp(Op); break;
463 case Expand:
464 if (Op.getValueType() != MVT::Vector) {
465 SDOperand X, Y;
466 ExpandOp(Op, X, Y);
467 } else {
468 SDNode *N = Op.Val;
469 unsigned NumOps = N->getNumOperands();
470 unsigned NumElements =
471 cast<ConstantSDNode>(N->getOperand(NumOps-2))->getValue();
472 MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(NumOps-1))->getVT();
473 MVT::ValueType PackedVT = getVectorType(EVT, NumElements);
474 if (PackedVT != MVT::Other && TLI.isTypeLegal(PackedVT)) {
475 // In the common case, this is a legal vector type, convert it to the
476 // packed operation and type now.
477 PackVectorOp(Op, PackedVT);
478 } else if (NumElements == 1) {
479 // Otherwise, if this is a single element vector, convert it to a
480 // scalar operation.
481 PackVectorOp(Op, EVT);
482 } else {
483 // Otherwise, this is a multiple element vector that isn't supported.
484 // Split it in half and legalize both parts.
485 SDOperand X, Y;
Chris Lattner4794a6b2006-03-19 00:07:49 +0000486 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000487 }
488 }
489 break;
490 }
491}
Chris Lattner6831a812006-02-13 09:18:02 +0000492
Evan Cheng9f877882006-12-13 20:57:08 +0000493/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
494/// a load from the constant pool.
495static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000496 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000497 bool Extend = false;
498
499 // If a FP immediate is precise when represented as a float and if the
500 // target can do an extending load from float to double, we put it into
501 // the constant pool as a float, even if it's is statically typed as a
502 // double.
503 MVT::ValueType VT = CFP->getValueType(0);
504 bool isDouble = VT == MVT::f64;
505 ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
506 Type::FloatTy, CFP->getValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000507 if (!UseCP) {
Evan Cheng279101e2006-12-12 22:19:28 +0000508 double Val = LLVMC->getValue();
509 return isDouble
510 ? DAG.getConstant(DoubleToBits(Val), MVT::i64)
511 : DAG.getConstant(FloatToBits(Val), MVT::i32);
512 }
513
Evan Cheng00495212006-12-12 21:32:44 +0000514 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
515 // Only do this if the target has a native EXTLOAD instruction from f32.
516 TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
517 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC,Type::FloatTy));
518 VT = MVT::f32;
519 Extend = true;
520 }
521
522 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
523 if (Extend) {
524 return DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
525 CPIdx, NULL, 0, MVT::f32);
526 } else {
527 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
528 }
529}
530
Chris Lattner6831a812006-02-13 09:18:02 +0000531
Evan Cheng912095b2007-01-04 21:56:39 +0000532/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
533/// operations.
534static
535SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT::ValueType NVT,
536 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng068c5f42007-01-05 21:31:51 +0000537 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng912095b2007-01-04 21:56:39 +0000538 MVT::ValueType SrcVT = Node->getOperand(1).getValueType();
539 MVT::ValueType SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000540
Evan Cheng912095b2007-01-04 21:56:39 +0000541 // First get the sign bit of second operand.
Evan Cheng068c5f42007-01-05 21:31:51 +0000542 SDOperand Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000543 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
544 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000545 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000546 SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000547 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000548 // Shift right or sign-extend it if the two operands have different types.
549 int SizeDiff = MVT::getSizeInBits(SrcNVT) - MVT::getSizeInBits(NVT);
550 if (SizeDiff > 0) {
551 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
552 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
553 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
554 } else if (SizeDiff < 0)
555 SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
Evan Cheng068c5f42007-01-05 21:31:51 +0000556
557 // Clear the sign bit of first operand.
558 SDOperand Mask2 = (VT == MVT::f64)
559 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
560 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
561 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng912095b2007-01-04 21:56:39 +0000562 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000563 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
564
565 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000566 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
567 return Result;
568}
569
570
Chris Lattnerc7029802006-03-18 01:44:44 +0000571/// LegalizeOp - We know that the specified value has a legal type.
572/// Recursively ensure that the operands have legal types, then return the
573/// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000574SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000575 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000576 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000577 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000578
Chris Lattner3e928bb2005-01-07 07:47:09 +0000579 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000580 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000581 if (Node->getNumValues() > 1) {
582 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000583 if (getTypeAction(Node->getValueType(i)) != Legal) {
584 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000585 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000586 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000587 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000588 }
589 }
590
Chris Lattner45982da2005-05-12 16:53:42 +0000591 // Note that LegalizeOp may be reentered even from single-use nodes, which
592 // means that we always must cache transformed nodes.
Chris Lattnere1bd8222005-01-11 05:57:22 +0000593 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
594 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000595
Nate Begeman9373a812005-08-10 20:51:12 +0000596 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000597 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000598 bool isCustom = false;
599
Chris Lattner3e928bb2005-01-07 07:47:09 +0000600 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000601 case ISD::FrameIndex:
602 case ISD::EntryToken:
603 case ISD::Register:
604 case ISD::BasicBlock:
605 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000606 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000607 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000608 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000609 case ISD::TargetConstantPool:
610 case ISD::TargetGlobalAddress:
611 case ISD::TargetExternalSymbol:
612 case ISD::VALUETYPE:
613 case ISD::SRCVALUE:
614 case ISD::STRING:
615 case ISD::CONDCODE:
Andrew Lenharth82c3d8f2006-10-11 04:29:42 +0000616 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner948c1b12006-01-28 08:31:04 +0000617 // Primitives must all be legal.
618 assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
619 "This must be legal!");
620 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000621 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000622 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
623 // If this is a target node, legalize it by legalizing the operands then
624 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000625 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000626 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000627 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000628
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000629 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000630
631 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
632 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
633 return Result.getValue(Op.ResNo);
634 }
635 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000636#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +0000637 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000638#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000639 assert(0 && "Do not know how to legalize this operator!");
640 abort();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000641 case ISD::GlobalAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000642 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000643 case ISD::ConstantPool:
644 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000645 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
646 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000647 case TargetLowering::Custom:
648 Tmp1 = TLI.LowerOperation(Op, DAG);
649 if (Tmp1.Val) Result = Tmp1;
650 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000651 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000652 break;
653 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000654 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000655 case ISD::FRAMEADDR:
656 case ISD::RETURNADDR:
657 // The only option for these nodes is to custom lower them. If the target
658 // does not custom lower them, then return zero.
659 Tmp1 = TLI.LowerOperation(Op, DAG);
660 if (Tmp1.Val)
661 Result = Tmp1;
662 else
663 Result = DAG.getConstant(0, TLI.getPointerTy());
664 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000665 case ISD::AssertSext:
666 case ISD::AssertZext:
667 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000668 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000669 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000670 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000671 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000672 Result = Node->getOperand(Op.ResNo);
673 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000674 case ISD::CopyFromReg:
675 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000676 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000677 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000678 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000679 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000680 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000681 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000682 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000683 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
684 } else {
685 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
686 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000687 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
688 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000689 // Since CopyFromReg produces two values, make sure to remember that we
690 // legalized both of them.
691 AddLegalizedOperand(Op.getValue(0), Result);
692 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
693 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000694 case ISD::UNDEF: {
695 MVT::ValueType VT = Op.getValueType();
696 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000697 default: assert(0 && "This action is not supported yet!");
698 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000699 if (MVT::isInteger(VT))
700 Result = DAG.getConstant(0, VT);
701 else if (MVT::isFloatingPoint(VT))
702 Result = DAG.getConstantFP(0, VT);
703 else
704 assert(0 && "Unknown value type!");
705 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000706 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000707 break;
708 }
709 break;
710 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000711
Chris Lattner48b61a72006-03-28 00:40:33 +0000712 case ISD::INTRINSIC_W_CHAIN:
713 case ISD::INTRINSIC_WO_CHAIN:
714 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000715 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000716 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
717 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000718 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +0000719
720 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +0000721 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +0000722 TargetLowering::Custom) {
723 Tmp3 = TLI.LowerOperation(Result, DAG);
724 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +0000725 }
726
727 if (Result.Val->getNumValues() == 1) break;
728
729 // Must have return value and chain result.
730 assert(Result.Val->getNumValues() == 2 &&
731 "Cannot return more than two values!");
732
733 // Since loads produce two values, make sure to remember that we
734 // legalized both of them.
735 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
736 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
737 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000738 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000739
740 case ISD::LOCATION:
741 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
742 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
743
744 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
745 case TargetLowering::Promote:
746 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000747 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000748 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000749 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Jim Laskey1ee29252007-01-26 14:34:52 +0000750 bool useLABEL = TLI.isOperationLegal(ISD::LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000751
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000752 if (MMI && (useDEBUG_LOC || useLABEL)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000753 const std::string &FName =
754 cast<StringSDNode>(Node->getOperand(3))->getValue();
755 const std::string &DirName =
756 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000757 unsigned SrcFile = MMI->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000758
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000759 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +0000760 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +0000761 SDOperand LineOp = Node->getOperand(1);
762 SDOperand ColOp = Node->getOperand(2);
763
764 if (useDEBUG_LOC) {
765 Ops.push_back(LineOp); // line #
766 Ops.push_back(ColOp); // col #
767 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000768 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000769 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +0000770 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
771 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000772 unsigned ID = MMI->RecordLabel(Line, Col, SrcFile);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000773 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Jim Laskey1ee29252007-01-26 14:34:52 +0000774 Result = DAG.getNode(ISD::LABEL, MVT::Other,&Ops[0],Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000775 }
Jim Laskeye81aecb2005-12-21 20:51:37 +0000776 } else {
777 Result = Tmp1; // chain
778 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000779 break;
Chris Lattnere7736732005-12-18 23:54:29 +0000780 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000781 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +0000782 if (Tmp1 != Node->getOperand(0) ||
783 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000784 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +0000785 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +0000786 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
787 Ops.push_back(Node->getOperand(1)); // line # must be legal.
788 Ops.push_back(Node->getOperand(2)); // col # must be legal.
789 } else {
790 // Otherwise promote them.
791 Ops.push_back(PromoteOp(Node->getOperand(1)));
792 Ops.push_back(PromoteOp(Node->getOperand(2)));
793 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000794 Ops.push_back(Node->getOperand(3)); // filename must be legal.
795 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000796 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +0000797 }
798 break;
799 }
800 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000801
802 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +0000803 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000804 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000805 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +0000806 case TargetLowering::Legal:
807 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
808 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
809 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
810 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000811 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000812 break;
813 }
814 break;
815
Jim Laskey1ee29252007-01-26 14:34:52 +0000816 case ISD::LABEL:
817 assert(Node->getNumOperands() == 2 && "Invalid LABEL node!");
818 switch (TLI.getOperationAction(ISD::LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000819 default: assert(0 && "This action is not supported yet!");
820 case TargetLowering::Legal:
821 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
822 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000823 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000824 break;
825 }
Nate Begeman551bf3f2006-02-17 05:43:56 +0000826 break;
Chris Lattner36ce6912005-11-29 06:21:05 +0000827
Chris Lattner3e928bb2005-01-07 07:47:09 +0000828 case ISD::Constant:
829 // We know we don't need to expand constants here, constants only have one
830 // value and we check that it is fine above.
831
832 // FIXME: Maybe we should handle things like targets that don't support full
833 // 32-bit immediates?
834 break;
835 case ISD::ConstantFP: {
836 // Spill FP immediates to the constant pool if the target cannot directly
837 // codegen them. Targets often have some immediate values that can be
838 // efficiently generated into an FP register without a load. We explicitly
839 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000840 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
841
842 // Check to see if this FP immediate is already legal.
843 bool isLegal = false;
844 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
845 E = TLI.legal_fpimm_end(); I != E; ++I)
846 if (CFP->isExactlyValue(*I)) {
847 isLegal = true;
848 break;
849 }
850
Chris Lattner3181a772006-01-29 06:26:56 +0000851 // If this is a legal constant, turn it into a TargetConstantFP node.
852 if (isLegal) {
853 Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
854 break;
855 }
856
857 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
858 default: assert(0 && "This action is not supported yet!");
859 case TargetLowering::Custom:
860 Tmp3 = TLI.LowerOperation(Result, DAG);
861 if (Tmp3.Val) {
862 Result = Tmp3;
863 break;
864 }
865 // FALLTHROUGH
866 case TargetLowering::Expand:
Evan Cheng279101e2006-12-12 22:19:28 +0000867 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000868 }
869 break;
870 }
Chris Lattner040c11c2005-11-09 18:48:57 +0000871 case ISD::TokenFactor:
872 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000873 Tmp1 = LegalizeOp(Node->getOperand(0));
874 Tmp2 = LegalizeOp(Node->getOperand(1));
875 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
876 } else if (Node->getNumOperands() == 3) {
877 Tmp1 = LegalizeOp(Node->getOperand(0));
878 Tmp2 = LegalizeOp(Node->getOperand(1));
879 Tmp3 = LegalizeOp(Node->getOperand(2));
880 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +0000881 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000882 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +0000883 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000884 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
885 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000886 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +0000887 }
Chris Lattnera385e9b2005-01-13 17:59:25 +0000888 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +0000889
890 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +0000891 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +0000892 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +0000893 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
894 assert(Tmp3.Val && "Target didn't custom lower this node!");
895 assert(Tmp3.Val->getNumValues() == Result.Val->getNumValues() &&
896 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +0000897
Chris Lattnerf4ec8172006-05-16 22:53:20 +0000898 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +0000899 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +0000900 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
901 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +0000902 if (Op.ResNo == i)
903 Tmp2 = Tmp1;
904 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
905 }
906 return Tmp2;
Chris Lattnerfdfded52006-04-12 16:20:43 +0000907
Chris Lattnerb2827b02006-03-19 00:52:58 +0000908 case ISD::BUILD_VECTOR:
909 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +0000910 default: assert(0 && "This action is not supported yet!");
911 case TargetLowering::Custom:
912 Tmp3 = TLI.LowerOperation(Result, DAG);
913 if (Tmp3.Val) {
914 Result = Tmp3;
915 break;
916 }
917 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +0000918 case TargetLowering::Expand:
919 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +0000920 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +0000921 }
Chris Lattner2332b9f2006-03-19 01:17:20 +0000922 break;
923 case ISD::INSERT_VECTOR_ELT:
924 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
925 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
926 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
927 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
928
929 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
930 Node->getValueType(0))) {
931 default: assert(0 && "This action is not supported yet!");
932 case TargetLowering::Legal:
933 break;
934 case TargetLowering::Custom:
935 Tmp3 = TLI.LowerOperation(Result, DAG);
936 if (Tmp3.Val) {
937 Result = Tmp3;
938 break;
939 }
940 // FALLTHROUGH
941 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +0000942 // If the insert index is a constant, codegen this as a scalar_to_vector,
943 // then a shuffle that inserts it into the right position in the vector.
944 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
945 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
946 Tmp1.getValueType(), Tmp2);
947
948 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
949 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
950 MVT::ValueType ShufMaskEltVT = MVT::getVectorBaseType(ShufMaskVT);
951
952 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
953 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
954 // the RHS.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000955 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner8d5a8942006-04-17 19:21:01 +0000956 for (unsigned i = 0; i != NumElts; ++i) {
957 if (i != InsertPos->getValue())
958 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
959 else
960 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
961 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000962 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
963 &ShufOps[0], ShufOps.size());
Chris Lattner8d5a8942006-04-17 19:21:01 +0000964
965 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
966 Tmp1, ScVec, ShufMask);
967 Result = LegalizeOp(Result);
968 break;
969 }
970
Chris Lattner2332b9f2006-03-19 01:17:20 +0000971 // If the target doesn't support this, we have to spill the input vector
972 // to a temporary stack slot, update the element, then reload it. This is
973 // badness. We could also load the value into a vector register (either
974 // with a "move to register" or "extload into register" instruction, then
975 // permute it into place, if the idx is a constant and if the idx is
976 // supported by the target.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000977 MVT::ValueType VT = Tmp1.getValueType();
978 MVT::ValueType EltVT = Tmp2.getValueType();
979 MVT::ValueType IdxVT = Tmp3.getValueType();
980 MVT::ValueType PtrVT = TLI.getPointerTy();
981 SDOperand StackPtr = CreateStackTemporary(VT);
Evan Chengeb0b4612006-03-31 01:27:51 +0000982 // Store the vector.
Evan Cheng8b2794a2006-10-13 21:14:26 +0000983 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +0000984
985 // Truncate or zero extend offset to target pointer type.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000986 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
987 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Chengeb0b4612006-03-31 01:27:51 +0000988 // Add the offset to the index.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000989 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
990 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
991 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Chengeb0b4612006-03-31 01:27:51 +0000992 // Store the scalar value.
Evan Cheng8b2794a2006-10-13 21:14:26 +0000993 Ch = DAG.getStore(Ch, Tmp2, StackPtr2, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +0000994 // Load the updated vector.
Evan Cheng466685d2006-10-09 20:57:25 +0000995 Result = DAG.getLoad(VT, Ch, StackPtr, NULL, 0);
Chris Lattner2332b9f2006-03-19 01:17:20 +0000996 break;
997 }
998 }
999 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001000 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001001 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1002 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1003 break;
1004 }
1005
Chris Lattnerce872152006-03-19 06:31:19 +00001006 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1007 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1008 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1009 Node->getValueType(0))) {
1010 default: assert(0 && "This action is not supported yet!");
1011 case TargetLowering::Legal:
1012 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001013 case TargetLowering::Custom:
1014 Tmp3 = TLI.LowerOperation(Result, DAG);
1015 if (Tmp3.Val) {
1016 Result = Tmp3;
1017 break;
1018 }
1019 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001020 case TargetLowering::Expand:
1021 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001022 break;
1023 }
Chris Lattnerce872152006-03-19 06:31:19 +00001024 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001025 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001026 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1027 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1028 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1029
1030 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001031 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1032 default: assert(0 && "Unknown operation action!");
1033 case TargetLowering::Legal:
1034 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1035 "vector shuffle should not be created if not legal!");
1036 break;
1037 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001038 Tmp3 = TLI.LowerOperation(Result, DAG);
1039 if (Tmp3.Val) {
1040 Result = Tmp3;
1041 break;
1042 }
1043 // FALLTHROUGH
1044 case TargetLowering::Expand: {
1045 MVT::ValueType VT = Node->getValueType(0);
1046 MVT::ValueType EltVT = MVT::getVectorBaseType(VT);
1047 MVT::ValueType PtrVT = TLI.getPointerTy();
1048 SDOperand Mask = Node->getOperand(2);
1049 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001050 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001051 for (unsigned i = 0; i != NumElems; ++i) {
1052 SDOperand Arg = Mask.getOperand(i);
1053 if (Arg.getOpcode() == ISD::UNDEF) {
1054 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1055 } else {
1056 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1057 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1058 if (Idx < NumElems)
1059 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1060 DAG.getConstant(Idx, PtrVT)));
1061 else
1062 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1063 DAG.getConstant(Idx - NumElems, PtrVT)));
1064 }
1065 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001066 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001067 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001068 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001069 case TargetLowering::Promote: {
1070 // Change base type to a different vector type.
1071 MVT::ValueType OVT = Node->getValueType(0);
1072 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1073
1074 // Cast the two input vectors.
1075 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1076 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1077
1078 // Convert the shuffle mask to the right # elements.
1079 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1080 assert(Tmp3.Val && "Shuffle not legal?");
1081 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1082 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1083 break;
1084 }
Chris Lattner87100e02006-03-20 01:52:29 +00001085 }
1086 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001087
1088 case ISD::EXTRACT_VECTOR_ELT:
1089 Tmp1 = LegalizeOp(Node->getOperand(0));
1090 Tmp2 = LegalizeOp(Node->getOperand(1));
1091 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattnere35c2182006-03-21 21:02:03 +00001092
1093 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT,
1094 Tmp1.getValueType())) {
1095 default: assert(0 && "This action is not supported yet!");
1096 case TargetLowering::Legal:
1097 break;
1098 case TargetLowering::Custom:
1099 Tmp3 = TLI.LowerOperation(Result, DAG);
1100 if (Tmp3.Val) {
1101 Result = Tmp3;
1102 break;
1103 }
1104 // FALLTHROUGH
Chris Lattner4aab2f42006-04-02 05:06:04 +00001105 case TargetLowering::Expand:
1106 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattnere35c2182006-03-21 21:02:03 +00001107 break;
1108 }
Chris Lattner384504c2006-03-21 20:44:12 +00001109 break;
1110
Chris Lattner15972212006-03-31 17:55:51 +00001111 case ISD::VEXTRACT_VECTOR_ELT:
1112 Result = LegalizeOp(LowerVEXTRACT_VECTOR_ELT(Op));
Chris Lattner384504c2006-03-21 20:44:12 +00001113 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001114
Chris Lattner6831a812006-02-13 09:18:02 +00001115 case ISD::CALLSEQ_START: {
1116 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1117
1118 // Recursively Legalize all of the inputs of the call end that do not lead
1119 // to this call start. This ensures that any libcalls that need be inserted
1120 // are inserted *before* the CALLSEQ_START.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001121 {std::set<SDNode*> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001122 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001123 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1124 NodesLeadingTo);
1125 }
Chris Lattner6831a812006-02-13 09:18:02 +00001126
1127 // Now that we legalized all of the inputs (which may have inserted
1128 // libcalls) create the new CALLSEQ_START node.
1129 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1130
1131 // Merge in the last call, to ensure that this call start after the last
1132 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001133 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001134 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1135 Tmp1 = LegalizeOp(Tmp1);
1136 }
Chris Lattner6831a812006-02-13 09:18:02 +00001137
1138 // Do not try to legalize the target-specific arguments (#1+).
1139 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001140 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001141 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001142 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001143 }
1144
1145 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001146 AddLegalizedOperand(Op.getValue(0), Result);
1147 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1148 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1149
Chris Lattner6831a812006-02-13 09:18:02 +00001150 // Now that the callseq_start and all of the non-call nodes above this call
1151 // sequence have been legalized, legalize the call itself. During this
1152 // process, no libcalls can/will be inserted, guaranteeing that no calls
1153 // can overlap.
1154 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1155 SDOperand InCallSEQ = LastCALLSEQ_END;
1156 // Note that we are selecting this call!
1157 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1158 IsLegalizingCall = true;
1159
1160 // Legalize the call, starting from the CALLSEQ_END.
1161 LegalizeOp(LastCALLSEQ_END);
1162 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1163 return Result;
1164 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001165 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001166 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1167 // will cause this node to be legalized as well as handling libcalls right.
1168 if (LastCALLSEQ_END.Val != Node) {
1169 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
1170 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
1171 assert(I != LegalizedNodes.end() &&
1172 "Legalizing the call start should have legalized this node!");
1173 return I->second;
1174 }
1175
1176 // Otherwise, the call start has been legalized and everything is going
1177 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001178 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001179 // Do not try to legalize the target-specific arguments (#1+), except for
1180 // an optional flag input.
1181 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1182 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001183 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001184 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001185 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001186 }
1187 } else {
1188 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1189 if (Tmp1 != Node->getOperand(0) ||
1190 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001191 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001192 Ops[0] = Tmp1;
1193 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001194 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001195 }
Chris Lattner6a542892006-01-24 05:48:21 +00001196 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001197 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001198 // This finishes up call legalization.
1199 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001200
1201 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1202 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1203 if (Node->getNumValues() == 2)
1204 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1205 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001206 case ISD::DYNAMIC_STACKALLOC: {
Chris Lattnerfa404e82005-01-09 19:03:49 +00001207 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1208 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1209 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001210 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001211
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001212 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001213 Tmp2 = Result.getValue(1);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001214 switch (TLI.getOperationAction(Node->getOpcode(),
1215 Node->getValueType(0))) {
1216 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001217 case TargetLowering::Expand: {
1218 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1219 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1220 " not tell us which reg is the stack pointer!");
1221 SDOperand Chain = Tmp1.getOperand(0);
1222 SDOperand Size = Tmp2.getOperand(1);
1223 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, Node->getValueType(0));
1224 Tmp1 = DAG.getNode(ISD::SUB, Node->getValueType(0), SP, Size); // Value
1225 Tmp2 = DAG.getCopyToReg(SP.getValue(1), SPReg, Tmp1); // Output chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001226 Tmp1 = LegalizeOp(Tmp1);
1227 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001228 break;
1229 }
1230 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001231 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1232 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001233 Tmp1 = LegalizeOp(Tmp3);
1234 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001235 }
Chris Lattner903d2782006-01-15 08:54:32 +00001236 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001237 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001238 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001239 }
Chris Lattner903d2782006-01-15 08:54:32 +00001240 // Since this op produce two values, make sure to remember that we
1241 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001242 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1243 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001244 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001245 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001246 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001247 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001248 bool Changed = false;
1249 // Legalize all of the operands of the inline asm, in case they are nodes
1250 // that need to be expanded or something. Note we skip the asm string and
1251 // all of the TargetConstant flags.
1252 SDOperand Op = LegalizeOp(Ops[0]);
1253 Changed = Op != Ops[0];
1254 Ops[0] = Op;
1255
1256 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1257 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1258 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1259 for (++i; NumVals; ++i, --NumVals) {
1260 SDOperand Op = LegalizeOp(Ops[i]);
1261 if (Op != Ops[i]) {
1262 Changed = true;
1263 Ops[i] = Op;
1264 }
1265 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001266 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001267
1268 if (HasInFlag) {
1269 Op = LegalizeOp(Ops.back());
1270 Changed |= Op != Ops.back();
1271 Ops.back() = Op;
1272 }
1273
1274 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001275 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001276
1277 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001278 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001279 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1280 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001281 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001282 case ISD::BR:
1283 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001284 // Ensure that libcalls are emitted before a branch.
1285 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1286 Tmp1 = LegalizeOp(Tmp1);
1287 LastCALLSEQ_END = DAG.getEntryNode();
1288
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001289 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001290 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001291 case ISD::BRIND:
1292 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1293 // Ensure that libcalls are emitted before a branch.
1294 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1295 Tmp1 = LegalizeOp(Tmp1);
1296 LastCALLSEQ_END = DAG.getEntryNode();
1297
1298 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1299 default: assert(0 && "Indirect target must be legal type (pointer)!");
1300 case Legal:
1301 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1302 break;
1303 }
1304 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1305 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001306 case ISD::BR_JT:
1307 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1308 // Ensure that libcalls are emitted before a branch.
1309 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1310 Tmp1 = LegalizeOp(Tmp1);
1311 LastCALLSEQ_END = DAG.getEntryNode();
1312
1313 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1314 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1315
1316 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1317 default: assert(0 && "This action is not supported yet!");
1318 case TargetLowering::Legal: break;
1319 case TargetLowering::Custom:
1320 Tmp1 = TLI.LowerOperation(Result, DAG);
1321 if (Tmp1.Val) Result = Tmp1;
1322 break;
1323 case TargetLowering::Expand: {
1324 SDOperand Chain = Result.getOperand(0);
1325 SDOperand Table = Result.getOperand(1);
1326 SDOperand Index = Result.getOperand(2);
1327
1328 MVT::ValueType PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001329 MachineFunction &MF = DAG.getMachineFunction();
1330 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001331 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1332 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001333
1334 SDOperand LD;
1335 switch (EntrySize) {
1336 default: assert(0 && "Size of jump table not supported yet."); break;
1337 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr, NULL, 0); break;
1338 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr, NULL, 0); break;
1339 }
1340
1341 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001342 // For PIC, the sequence is:
1343 // BRIND(load(Jumptable + index) + RelocBase)
1344 // RelocBase is the JumpTable on PPC and X86, GOT on Alpha
1345 SDOperand Reloc;
1346 if (TLI.usesGlobalOffsetTable())
1347 Reloc = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, PTy);
1348 else
1349 Reloc = Table;
Evan Chengd0631892006-10-31 02:31:00 +00001350 Addr = (PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001351 Addr = DAG.getNode(ISD::ADD, PTy, Addr, Reloc);
1352 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
1353 } else {
1354 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD);
1355 }
1356 }
1357 }
1358 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001359 case ISD::BRCOND:
1360 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001361 // Ensure that libcalls are emitted before a return.
1362 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1363 Tmp1 = LegalizeOp(Tmp1);
1364 LastCALLSEQ_END = DAG.getEntryNode();
1365
Chris Lattner47e92232005-01-18 19:27:06 +00001366 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1367 case Expand: assert(0 && "It's impossible to expand bools");
1368 case Legal:
1369 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1370 break;
1371 case Promote:
1372 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001373
1374 // The top bits of the promoted condition are not necessarily zero, ensure
1375 // that the value is properly zero extended.
1376 if (!TLI.MaskedValueIsZero(Tmp2,
1377 MVT::getIntVTBitMask(Tmp2.getValueType())^1))
1378 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001379 break;
1380 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001381
1382 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001383 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001384
1385 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1386 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001387 case TargetLowering::Legal: break;
1388 case TargetLowering::Custom:
1389 Tmp1 = TLI.LowerOperation(Result, DAG);
1390 if (Tmp1.Val) Result = Tmp1;
1391 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001392 case TargetLowering::Expand:
1393 // Expand brcond's setcc into its constituent parts and create a BR_CC
1394 // Node.
1395 if (Tmp2.getOpcode() == ISD::SETCC) {
1396 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1397 Tmp2.getOperand(0), Tmp2.getOperand(1),
1398 Node->getOperand(2));
1399 } else {
1400 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1401 DAG.getCondCode(ISD::SETNE), Tmp2,
1402 DAG.getConstant(0, Tmp2.getValueType()),
1403 Node->getOperand(2));
1404 }
1405 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001406 }
1407 break;
1408 case ISD::BR_CC:
1409 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001410 // Ensure that libcalls are emitted before a branch.
1411 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1412 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001413 Tmp2 = Node->getOperand(2); // LHS
1414 Tmp3 = Node->getOperand(3); // RHS
1415 Tmp4 = Node->getOperand(1); // CC
1416
1417 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001418 LastCALLSEQ_END = DAG.getEntryNode();
1419
Nate Begeman750ac1b2006-02-01 07:19:44 +00001420 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1421 // the LHS is a legal SETCC itself. In this case, we need to compare
1422 // the result against zero to select between true and false values.
1423 if (Tmp3.Val == 0) {
1424 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1425 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001426 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001427
1428 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1429 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001430
Chris Lattner181b7a32005-12-17 23:46:46 +00001431 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1432 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001433 case TargetLowering::Legal: break;
1434 case TargetLowering::Custom:
1435 Tmp4 = TLI.LowerOperation(Result, DAG);
1436 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001437 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001438 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001439 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001440 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001441 LoadSDNode *LD = cast<LoadSDNode>(Node);
1442 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1443 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001444
Evan Cheng466685d2006-10-09 20:57:25 +00001445 ISD::LoadExtType ExtType = LD->getExtensionType();
1446 if (ExtType == ISD::NON_EXTLOAD) {
1447 MVT::ValueType VT = Node->getValueType(0);
1448 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1449 Tmp3 = Result.getValue(0);
1450 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001451
Evan Cheng466685d2006-10-09 20:57:25 +00001452 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1453 default: assert(0 && "This action is not supported yet!");
1454 case TargetLowering::Legal: break;
1455 case TargetLowering::Custom:
1456 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1457 if (Tmp1.Val) {
1458 Tmp3 = LegalizeOp(Tmp1);
1459 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001460 }
Evan Cheng466685d2006-10-09 20:57:25 +00001461 break;
1462 case TargetLowering::Promote: {
1463 // Only promote a load of vector type to another.
1464 assert(MVT::isVector(VT) && "Cannot promote this load!");
1465 // Change base type to a different vector type.
1466 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1467
1468 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
1469 LD->getSrcValueOffset());
1470 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1471 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001472 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001473 }
Evan Cheng466685d2006-10-09 20:57:25 +00001474 }
1475 // Since loads produce two values, make sure to remember that we
1476 // legalized both of them.
1477 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1478 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1479 return Op.ResNo ? Tmp4 : Tmp3;
1480 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00001481 MVT::ValueType SrcVT = LD->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00001482 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
1483 default: assert(0 && "This action is not supported yet!");
1484 case TargetLowering::Promote:
1485 assert(SrcVT == MVT::i1 &&
1486 "Can only promote extending LOAD from i1 -> i8!");
1487 Result = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1488 LD->getSrcValue(), LD->getSrcValueOffset(),
1489 MVT::i8);
1490 Tmp1 = Result.getValue(0);
1491 Tmp2 = Result.getValue(1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001492 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001493 case TargetLowering::Custom:
1494 isCustom = true;
1495 // FALLTHROUGH
1496 case TargetLowering::Legal:
1497 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1498 Tmp1 = Result.getValue(0);
1499 Tmp2 = Result.getValue(1);
1500
1501 if (isCustom) {
1502 Tmp3 = TLI.LowerOperation(Result, DAG);
1503 if (Tmp3.Val) {
1504 Tmp1 = LegalizeOp(Tmp3);
1505 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1506 }
1507 }
1508 break;
1509 case TargetLowering::Expand:
1510 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
1511 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1512 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
1513 LD->getSrcValueOffset());
1514 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
1515 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1516 Tmp2 = LegalizeOp(Load.getValue(1));
1517 break;
1518 }
Chris Lattnerfea997a2007-02-01 04:55:59 +00001519 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
Evan Cheng466685d2006-10-09 20:57:25 +00001520 // Turn the unsupported load into an EXTLOAD followed by an explicit
1521 // zero/sign extend inreg.
1522 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1523 Tmp1, Tmp2, LD->getSrcValue(),
1524 LD->getSrcValueOffset(), SrcVT);
1525 SDOperand ValRes;
1526 if (ExtType == ISD::SEXTLOAD)
1527 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1528 Result, DAG.getValueType(SrcVT));
1529 else
1530 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
1531 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1532 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1533 break;
1534 }
1535 // Since loads produce two values, make sure to remember that we legalized
1536 // both of them.
1537 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1538 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1539 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00001540 }
Chris Lattner01ff7212005-04-10 22:54:25 +00001541 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001542 case ISD::EXTRACT_ELEMENT: {
1543 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1544 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001545 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00001546 case Legal:
1547 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1548 // 1 -> Hi
1549 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1550 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1551 TLI.getShiftAmountTy()));
1552 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1553 } else {
1554 // 0 -> Lo
1555 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1556 Node->getOperand(0));
1557 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001558 break;
1559 case Expand:
1560 // Get both the low and high parts.
1561 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1562 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1563 Result = Tmp2; // 1 -> Hi
1564 else
1565 Result = Tmp1; // 0 -> Lo
1566 break;
1567 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001568 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00001569 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001570
1571 case ISD::CopyToReg:
1572 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00001573
Chris Lattnerc9c60f62005-08-24 16:35:28 +00001574 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001575 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00001576 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001577 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001578 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001579 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001580 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001581 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001582 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001583 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001584 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1585 Tmp3);
1586 } else {
1587 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001588 }
1589
1590 // Since this produces two values, make sure to remember that we legalized
1591 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001592 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001593 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001594 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00001595 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001596 break;
1597
1598 case ISD::RET:
1599 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001600
1601 // Ensure that libcalls are emitted before a return.
1602 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1603 Tmp1 = LegalizeOp(Tmp1);
1604 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00001605
Chris Lattner3e928bb2005-01-07 07:47:09 +00001606 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00001607 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00001608 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001609 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00001610 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001611 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00001612 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001613 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00001614 case Expand:
1615 if (Tmp2.getValueType() != MVT::Vector) {
1616 SDOperand Lo, Hi;
1617 ExpandOp(Tmp2, Lo, Hi);
Evan Cheng13acce32006-12-11 19:27:14 +00001618 if (Hi.Val)
1619 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
1620 else
1621 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00001622 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001623 } else {
1624 SDNode *InVal = Tmp2.Val;
1625 unsigned NumElems =
1626 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1627 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1628
1629 // Figure out if there is a Packed type corresponding to this Vector
1630 // type. If so, convert to the packed type.
1631 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1632 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1633 // Turn this into a return of the packed type.
1634 Tmp2 = PackVectorOp(Tmp2, TVT);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001635 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001636 } else if (NumElems == 1) {
1637 // Turn this into a return of the scalar type.
1638 Tmp2 = PackVectorOp(Tmp2, EVT);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001639 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001640
1641 // FIXME: Returns of gcc generic vectors smaller than a legal type
1642 // should be returned in integer registers!
1643
Chris Lattnerf87324e2006-04-11 01:31:51 +00001644 // The scalarized value type may not be legal, e.g. it might require
1645 // promotion or expansion. Relegalize the return.
1646 Result = LegalizeOp(Result);
1647 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001648 // FIXME: Returns of gcc generic vectors larger than a legal vector
1649 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00001650 SDOperand Lo, Hi;
1651 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00001652 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001653 Result = LegalizeOp(Result);
1654 }
1655 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001656 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001657 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001658 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001659 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001660 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001661 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001662 }
1663 break;
1664 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001665 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001666 break;
1667 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001668 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001669 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001670 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00001671 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1672 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00001673 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001674 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001675 break;
1676 case Expand: {
1677 SDOperand Lo, Hi;
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001678 assert(Node->getOperand(i).getValueType() != MVT::Vector &&
1679 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001680 ExpandOp(Node->getOperand(i), Lo, Hi);
1681 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001682 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00001683 if (Hi.Val) {
1684 NewValues.push_back(Hi);
1685 NewValues.push_back(Node->getOperand(i+1));
1686 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001687 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001688 }
1689 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001690 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001691 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001692
1693 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001694 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001695 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001696 Result = DAG.getNode(ISD::RET, MVT::Other,
1697 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00001698 break;
1699 }
1700 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001701
Chris Lattner6862dbc2006-01-29 21:02:23 +00001702 if (Result.getOpcode() == ISD::RET) {
1703 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1704 default: assert(0 && "This action is not supported yet!");
1705 case TargetLowering::Legal: break;
1706 case TargetLowering::Custom:
1707 Tmp1 = TLI.LowerOperation(Result, DAG);
1708 if (Tmp1.Val) Result = Tmp1;
1709 break;
1710 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001711 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001712 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001713 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00001714 StoreSDNode *ST = cast<StoreSDNode>(Node);
1715 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
1716 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001717
Evan Cheng8b2794a2006-10-13 21:14:26 +00001718 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00001719 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
1720 // FIXME: We shouldn't do this for TargetConstantFP's.
1721 // FIXME: move this to the DAG Combiner! Note that we can't regress due
1722 // to phase ordering between legalized code and the dag combiner. This
1723 // probably means that we need to integrate dag combiner and legalizer
1724 // together.
1725 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
1726 if (CFP->getValueType(0) == MVT::f32) {
1727 Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
1728 } else {
1729 assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
1730 Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
1731 }
1732 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1733 ST->getSrcValueOffset());
1734 break;
1735 }
1736
Evan Cheng8b2794a2006-10-13 21:14:26 +00001737 switch (getTypeAction(ST->getStoredVT())) {
1738 case Legal: {
1739 Tmp3 = LegalizeOp(ST->getValue());
1740 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1741 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001742
Evan Cheng8b2794a2006-10-13 21:14:26 +00001743 MVT::ValueType VT = Tmp3.getValueType();
1744 switch (TLI.getOperationAction(ISD::STORE, VT)) {
1745 default: assert(0 && "This action is not supported yet!");
1746 case TargetLowering::Legal: break;
1747 case TargetLowering::Custom:
1748 Tmp1 = TLI.LowerOperation(Result, DAG);
1749 if (Tmp1.Val) Result = Tmp1;
1750 break;
1751 case TargetLowering::Promote:
1752 assert(MVT::isVector(VT) && "Unknown legal promote case!");
1753 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
1754 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
1755 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
1756 ST->getSrcValue(), ST->getSrcValueOffset());
1757 break;
1758 }
1759 break;
1760 }
1761 case Promote:
1762 // Truncate the value and store the result.
1763 Tmp3 = PromoteOp(ST->getValue());
1764 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1765 ST->getSrcValueOffset(), ST->getStoredVT());
1766 break;
1767
1768 case Expand:
1769 unsigned IncrementSize = 0;
1770 SDOperand Lo, Hi;
1771
1772 // If this is a vector type, then we have to calculate the increment as
1773 // the product of the element size in bytes, and the number of elements
1774 // in the high half of the vector.
1775 if (ST->getValue().getValueType() == MVT::Vector) {
1776 SDNode *InVal = ST->getValue().Val;
1777 unsigned NumElems =
1778 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1779 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1780
1781 // Figure out if there is a Packed type corresponding to this Vector
1782 // type. If so, convert to the packed type.
1783 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1784 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1785 // Turn this into a normal store of the packed type.
1786 Tmp3 = PackVectorOp(Node->getOperand(1), TVT);
1787 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1788 ST->getSrcValueOffset());
1789 Result = LegalizeOp(Result);
1790 break;
1791 } else if (NumElems == 1) {
1792 // Turn this into a normal store of the scalar type.
1793 Tmp3 = PackVectorOp(Node->getOperand(1), EVT);
1794 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1795 ST->getSrcValueOffset());
1796 // The scalarized value type may not be legal, e.g. it might require
1797 // promotion or expansion. Relegalize the scalar store.
1798 Result = LegalizeOp(Result);
1799 break;
1800 } else {
1801 SplitVectorOp(Node->getOperand(1), Lo, Hi);
1802 IncrementSize = NumElems/2 * MVT::getSizeInBits(EVT)/8;
1803 }
1804 } else {
1805 ExpandOp(Node->getOperand(1), Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00001806 IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00001807
1808 if (!TLI.isLittleEndian())
1809 std::swap(Lo, Hi);
1810 }
1811
1812 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
1813 ST->getSrcValueOffset());
Evan Cheng7b2b5c82006-12-12 19:53:13 +00001814
1815 if (Hi.Val == NULL) {
1816 // Must be int <-> float one-to-one expansion.
1817 Result = Lo;
1818 break;
1819 }
1820
Evan Cheng8b2794a2006-10-13 21:14:26 +00001821 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1822 getIntPtrConstant(IncrementSize));
1823 assert(isTypeLegal(Tmp2.getValueType()) &&
1824 "Pointers must be legal!");
1825 // FIXME: This sets the srcvalue of both halves to be the same, which is
1826 // wrong.
1827 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
1828 ST->getSrcValueOffset());
1829 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
1830 break;
1831 }
1832 } else {
1833 // Truncating store
1834 assert(isTypeLegal(ST->getValue().getValueType()) &&
1835 "Cannot handle illegal TRUNCSTORE yet!");
1836 Tmp3 = LegalizeOp(ST->getValue());
1837
1838 // The only promote case we handle is TRUNCSTORE:i1 X into
1839 // -> TRUNCSTORE:i8 (and X, 1)
1840 if (ST->getStoredVT() == MVT::i1 &&
1841 TLI.getStoreXAction(MVT::i1) == TargetLowering::Promote) {
1842 // Promote the bool to a mask then store.
1843 Tmp3 = DAG.getNode(ISD::AND, Tmp3.getValueType(), Tmp3,
1844 DAG.getConstant(1, Tmp3.getValueType()));
1845 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
1846 ST->getSrcValueOffset(), MVT::i8);
1847 } else if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
1848 Tmp2 != ST->getBasePtr()) {
1849 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1850 ST->getOffset());
1851 }
1852
1853 MVT::ValueType StVT = cast<StoreSDNode>(Result.Val)->getStoredVT();
1854 switch (TLI.getStoreXAction(StVT)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001855 default: assert(0 && "This action is not supported yet!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00001856 case TargetLowering::Legal: break;
Chris Lattner456a93a2006-01-28 07:39:30 +00001857 case TargetLowering::Custom:
1858 Tmp1 = TLI.LowerOperation(Result, DAG);
1859 if (Tmp1.Val) Result = Tmp1;
1860 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001861 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001862 }
1863 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001864 }
Andrew Lenharth95762122005-03-31 21:24:06 +00001865 case ISD::PCMARKER:
1866 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001867 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00001868 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001869 case ISD::STACKSAVE:
1870 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001871 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1872 Tmp1 = Result.getValue(0);
1873 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001874
Chris Lattner140d53c2006-01-13 02:50:02 +00001875 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1876 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001877 case TargetLowering::Legal: break;
1878 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001879 Tmp3 = TLI.LowerOperation(Result, DAG);
1880 if (Tmp3.Val) {
1881 Tmp1 = LegalizeOp(Tmp3);
1882 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00001883 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001884 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001885 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001886 // Expand to CopyFromReg if the target set
1887 // StackPointerRegisterToSaveRestore.
1888 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001889 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001890 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001891 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001892 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001893 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1894 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001895 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001896 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001897 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001898
1899 // Since stacksave produce two values, make sure to remember that we
1900 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001901 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1902 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1903 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00001904
Chris Lattner140d53c2006-01-13 02:50:02 +00001905 case ISD::STACKRESTORE:
1906 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1907 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001908 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00001909
1910 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
1911 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001912 case TargetLowering::Legal: break;
1913 case TargetLowering::Custom:
1914 Tmp1 = TLI.LowerOperation(Result, DAG);
1915 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00001916 break;
1917 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001918 // Expand to CopyToReg if the target set
1919 // StackPointerRegisterToSaveRestore.
1920 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1921 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
1922 } else {
1923 Result = Tmp1;
1924 }
Chris Lattner140d53c2006-01-13 02:50:02 +00001925 break;
1926 }
1927 break;
1928
Andrew Lenharth51b8d542005-11-11 16:47:30 +00001929 case ISD::READCYCLECOUNTER:
1930 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001931 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00001932 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
1933 Node->getValueType(0))) {
1934 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00001935 case TargetLowering::Legal:
1936 Tmp1 = Result.getValue(0);
1937 Tmp2 = Result.getValue(1);
1938 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00001939 case TargetLowering::Custom:
1940 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00001941 Tmp1 = LegalizeOp(Result.getValue(0));
1942 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00001943 break;
1944 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00001945
1946 // Since rdcc produce two values, make sure to remember that we legalized
1947 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00001948 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1949 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001950 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00001951
Chris Lattner2ee743f2005-01-14 22:08:15 +00001952 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00001953 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1954 case Expand: assert(0 && "It's impossible to expand bools");
1955 case Legal:
1956 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
1957 break;
1958 case Promote:
1959 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00001960 // Make sure the condition is either zero or one.
1961 if (!TLI.MaskedValueIsZero(Tmp1,
1962 MVT::getIntVTBitMask(Tmp1.getValueType())^1))
1963 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001964 break;
1965 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001966 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00001967 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001968
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001969 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00001970
Nate Begemanb942a3d2005-08-23 04:29:48 +00001971 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001972 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001973 case TargetLowering::Legal: break;
1974 case TargetLowering::Custom: {
1975 Tmp1 = TLI.LowerOperation(Result, DAG);
1976 if (Tmp1.Val) Result = Tmp1;
1977 break;
1978 }
Nate Begeman9373a812005-08-10 20:51:12 +00001979 case TargetLowering::Expand:
1980 if (Tmp1.getOpcode() == ISD::SETCC) {
1981 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
1982 Tmp2, Tmp3,
1983 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
1984 } else {
1985 Result = DAG.getSelectCC(Tmp1,
1986 DAG.getConstant(0, Tmp1.getValueType()),
1987 Tmp2, Tmp3, ISD::SETNE);
1988 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001989 break;
1990 case TargetLowering::Promote: {
1991 MVT::ValueType NVT =
1992 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
1993 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001994 if (MVT::isVector(Tmp2.getValueType())) {
1995 ExtOp = ISD::BIT_CONVERT;
1996 TruncOp = ISD::BIT_CONVERT;
1997 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001998 ExtOp = ISD::ANY_EXTEND;
1999 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002000 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002001 ExtOp = ISD::FP_EXTEND;
2002 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002003 }
2004 // Promote each of the values to the new type.
2005 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2006 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2007 // Perform the larger operation, then round down.
2008 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
2009 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2010 break;
2011 }
2012 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002013 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002014 case ISD::SELECT_CC: {
2015 Tmp1 = Node->getOperand(0); // LHS
2016 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002017 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2018 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002019 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002020
Nate Begeman750ac1b2006-02-01 07:19:44 +00002021 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2022
2023 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2024 // the LHS is a legal SETCC itself. In this case, we need to compare
2025 // the result against zero to select between true and false values.
2026 if (Tmp2.Val == 0) {
2027 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2028 CC = DAG.getCondCode(ISD::SETNE);
2029 }
2030 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2031
2032 // Everything is legal, see if we should expand this op or something.
2033 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2034 default: assert(0 && "This action is not supported yet!");
2035 case TargetLowering::Legal: break;
2036 case TargetLowering::Custom:
2037 Tmp1 = TLI.LowerOperation(Result, DAG);
2038 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002039 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002040 }
2041 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002042 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002043 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002044 Tmp1 = Node->getOperand(0);
2045 Tmp2 = Node->getOperand(1);
2046 Tmp3 = Node->getOperand(2);
2047 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2048
2049 // If we had to Expand the SetCC operands into a SELECT node, then it may
2050 // not always be possible to return a true LHS & RHS. In this case, just
2051 // return the value we legalized, returned in the LHS
2052 if (Tmp2.Val == 0) {
2053 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002054 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002055 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002056
Chris Lattner73e142f2006-01-30 22:43:50 +00002057 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002058 default: assert(0 && "Cannot handle this action for SETCC yet!");
2059 case TargetLowering::Custom:
2060 isCustom = true;
2061 // FALLTHROUGH.
2062 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002063 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002064 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002065 Tmp4 = TLI.LowerOperation(Result, DAG);
2066 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002067 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002068 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002069 case TargetLowering::Promote: {
2070 // First step, figure out the appropriate operation to use.
2071 // Allow SETCC to not be supported for all legal data types
2072 // Mostly this targets FP
2073 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
2074 MVT::ValueType OldVT = NewInTy;
2075
2076 // Scan for the appropriate larger type to use.
2077 while (1) {
2078 NewInTy = (MVT::ValueType)(NewInTy+1);
2079
2080 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
2081 "Fell off of the edge of the integer world");
2082 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2083 "Fell off of the edge of the floating point world");
2084
2085 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002086 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002087 break;
2088 }
2089 if (MVT::isInteger(NewInTy))
2090 assert(0 && "Cannot promote Legal Integer SETCC yet");
2091 else {
2092 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2093 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2094 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002095 Tmp1 = LegalizeOp(Tmp1);
2096 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002097 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002098 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002099 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002100 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002101 case TargetLowering::Expand:
2102 // Expand a setcc node into a select_cc of the same condition, lhs, and
2103 // rhs that selects between const 1 (true) and const 0 (false).
2104 MVT::ValueType VT = Node->getValueType(0);
2105 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2106 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002107 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002108 break;
2109 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002110 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002111 case ISD::MEMSET:
2112 case ISD::MEMCPY:
2113 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002114 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +00002115 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
2116
2117 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
2118 switch (getTypeAction(Node->getOperand(2).getValueType())) {
2119 case Expand: assert(0 && "Cannot expand a byte!");
2120 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002121 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002122 break;
2123 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002124 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002125 break;
2126 }
2127 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002128 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +00002129 }
Chris Lattner272455b2005-02-02 03:44:41 +00002130
2131 SDOperand Tmp4;
2132 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattner6814f152005-07-13 01:42:45 +00002133 case Expand: {
2134 // Length is too big, just take the lo-part of the length.
2135 SDOperand HiPart;
Chris Lattnerfa9aa2b2006-11-07 04:11:44 +00002136 ExpandOp(Node->getOperand(3), Tmp4, HiPart);
Chris Lattner6814f152005-07-13 01:42:45 +00002137 break;
2138 }
Chris Lattnere5605212005-01-28 22:29:18 +00002139 case Legal:
2140 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +00002141 break;
2142 case Promote:
2143 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +00002144 break;
2145 }
2146
2147 SDOperand Tmp5;
2148 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2149 case Expand: assert(0 && "Cannot expand this yet!");
2150 case Legal:
2151 Tmp5 = LegalizeOp(Node->getOperand(4));
2152 break;
2153 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +00002154 Tmp5 = PromoteOp(Node->getOperand(4));
2155 break;
2156 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002157
2158 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2159 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002160 case TargetLowering::Custom:
2161 isCustom = true;
2162 // FALLTHROUGH
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002163 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002164 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner456a93a2006-01-28 07:39:30 +00002165 if (isCustom) {
2166 Tmp1 = TLI.LowerOperation(Result, DAG);
2167 if (Tmp1.Val) Result = Tmp1;
2168 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002169 break;
2170 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +00002171 // Otherwise, the target does not support this operation. Lower the
2172 // operation to an explicit libcall as appropriate.
2173 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Andersona69571c2006-05-03 01:29:57 +00002174 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00002175 TargetLowering::ArgListTy Args;
2176 TargetLowering::ArgListEntry Entry;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002177
Reid Spencer3bfbf4e2005-01-12 14:53:45 +00002178 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002179 if (Node->getOpcode() == ISD::MEMSET) {
Reid Spencerb47b25c2007-01-03 04:22:32 +00002180 Entry.Node = Tmp2; Entry.isSigned = false; Entry.Ty = IntPtrTy;
Anton Korobeynikovb25fe822007-02-01 08:39:52 +00002181 Entry.isInReg = false; Entry.isSRet = false;
Reid Spencer47857812006-12-31 05:55:36 +00002182 Args.push_back(Entry);
Chris Lattnerdca7abe2006-02-20 06:38:35 +00002183 // Extend the (previously legalized) ubyte argument to be an int value
2184 // for the call.
2185 if (Tmp3.getValueType() > MVT::i32)
2186 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2187 else
2188 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Reid Spencer47857812006-12-31 05:55:36 +00002189 Entry.Node = Tmp3; Entry.Ty = Type::Int32Ty; Entry.isSigned = true;
Anton Korobeynikovb25fe822007-02-01 08:39:52 +00002190 Entry.isInReg = false; Entry.isSRet = false;
Reid Spencer47857812006-12-31 05:55:36 +00002191 Args.push_back(Entry);
2192 Entry.Node = Tmp4; Entry.Ty = IntPtrTy; Entry.isSigned = false;
2193 Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002194
2195 FnName = "memset";
2196 } else if (Node->getOpcode() == ISD::MEMCPY ||
2197 Node->getOpcode() == ISD::MEMMOVE) {
Anton Korobeynikovb25fe822007-02-01 08:39:52 +00002198 Entry.Ty = IntPtrTy;
2199 Entry.isSigned = false; Entry.isInReg = false; Entry.isSRet = false;
Reid Spencerb47b25c2007-01-03 04:22:32 +00002200 Entry.Node = Tmp2; Args.push_back(Entry);
2201 Entry.Node = Tmp3; Args.push_back(Entry);
2202 Entry.Node = Tmp4; Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002203 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2204 } else {
2205 assert(0 && "Unknown op!");
2206 }
Chris Lattner45982da2005-05-12 16:53:42 +00002207
Chris Lattnere1bd8222005-01-11 05:57:22 +00002208 std::pair<SDOperand,SDOperand> CallResult =
Reid Spencer47857812006-12-31 05:55:36 +00002209 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, false, CallingConv::C, false,
Chris Lattnere1bd8222005-01-11 05:57:22 +00002210 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00002211 Result = CallResult.second;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002212 break;
2213 }
Chris Lattnere1bd8222005-01-11 05:57:22 +00002214 }
2215 break;
2216 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002217
Chris Lattner5b359c62005-04-02 04:00:59 +00002218 case ISD::SHL_PARTS:
2219 case ISD::SRA_PARTS:
2220 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002221 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002222 bool Changed = false;
2223 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2224 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2225 Changed |= Ops.back() != Node->getOperand(i);
2226 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002227 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002228 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002229
Evan Cheng05a2d562006-01-09 18:31:59 +00002230 switch (TLI.getOperationAction(Node->getOpcode(),
2231 Node->getValueType(0))) {
2232 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002233 case TargetLowering::Legal: break;
2234 case TargetLowering::Custom:
2235 Tmp1 = TLI.LowerOperation(Result, DAG);
2236 if (Tmp1.Val) {
2237 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002238 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002239 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002240 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2241 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002242 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002243 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002244 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002245 return RetVal;
2246 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002247 break;
2248 }
2249
Chris Lattner2c8086f2005-04-02 05:00:07 +00002250 // Since these produce multiple values, make sure to remember that we
2251 // legalized all of them.
2252 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2253 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2254 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002255 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002256
2257 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002258 case ISD::ADD:
2259 case ISD::SUB:
2260 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002261 case ISD::MULHS:
2262 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002263 case ISD::UDIV:
2264 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002265 case ISD::AND:
2266 case ISD::OR:
2267 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002268 case ISD::SHL:
2269 case ISD::SRL:
2270 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002271 case ISD::FADD:
2272 case ISD::FSUB:
2273 case ISD::FMUL:
2274 case ISD::FDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002275 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002276 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2277 case Expand: assert(0 && "Not possible");
2278 case Legal:
2279 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2280 break;
2281 case Promote:
2282 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2283 break;
2284 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002285
2286 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002287
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002288 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002289 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002290 case TargetLowering::Legal: break;
2291 case TargetLowering::Custom:
2292 Tmp1 = TLI.LowerOperation(Result, DAG);
2293 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002294 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002295 case TargetLowering::Expand: {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002296 if (Node->getValueType(0) == MVT::i32) {
2297 switch (Node->getOpcode()) {
2298 default: assert(0 && "Do not know how to expand this integer BinOp!");
2299 case ISD::UDIV:
2300 case ISD::SDIV:
Evan Cheng56966222007-01-12 02:11:51 +00002301 RTLIB::Libcall LC = Node->getOpcode() == ISD::UDIV
2302 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002303 SDOperand Dummy;
Reid Spencer47857812006-12-31 05:55:36 +00002304 bool isSigned = Node->getOpcode() == ISD::SDIV;
Evan Cheng56966222007-01-12 02:11:51 +00002305 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002306 };
2307 break;
2308 }
2309
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002310 assert(MVT::isVector(Node->getValueType(0)) &&
2311 "Cannot expand this binary operator!");
2312 // Expand the operation into a bunch of nasty scalar code.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002313 SmallVector<SDOperand, 8> Ops;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002314 MVT::ValueType EltVT = MVT::getVectorBaseType(Node->getValueType(0));
2315 MVT::ValueType PtrVT = TLI.getPointerTy();
2316 for (unsigned i = 0, e = MVT::getVectorNumElements(Node->getValueType(0));
2317 i != e; ++i) {
2318 SDOperand Idx = DAG.getConstant(i, PtrVT);
2319 SDOperand LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, Idx);
2320 SDOperand RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, Idx);
2321 Ops.push_back(DAG.getNode(Node->getOpcode(), EltVT, LHS, RHS));
2322 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002323 Result = DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0),
2324 &Ops[0], Ops.size());
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002325 break;
2326 }
Evan Chengcc987612006-04-12 21:20:24 +00002327 case TargetLowering::Promote: {
2328 switch (Node->getOpcode()) {
2329 default: assert(0 && "Do not know how to promote this BinOp!");
2330 case ISD::AND:
2331 case ISD::OR:
2332 case ISD::XOR: {
2333 MVT::ValueType OVT = Node->getValueType(0);
2334 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2335 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2336 // Bit convert each of the values to the new type.
2337 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2338 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2339 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2340 // Bit convert the result back the original type.
2341 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2342 break;
2343 }
2344 }
2345 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002346 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002347 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002348
2349 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2350 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2351 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2352 case Expand: assert(0 && "Not possible");
2353 case Legal:
2354 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2355 break;
2356 case Promote:
2357 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2358 break;
2359 }
2360
2361 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2362
2363 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2364 default: assert(0 && "Operation not supported");
2365 case TargetLowering::Custom:
2366 Tmp1 = TLI.LowerOperation(Result, DAG);
2367 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00002368 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002369 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00002370 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00002371 // If this target supports fabs/fneg natively and select is cheap,
2372 // do this efficiently.
2373 if (!TLI.isSelectExpensive() &&
2374 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
2375 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00002376 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00002377 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00002378 // Get the sign bit of the RHS.
2379 MVT::ValueType IVT =
2380 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2381 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2382 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2383 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2384 // Get the absolute value of the result.
2385 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2386 // Select between the nabs and abs value based on the sign bit of
2387 // the input.
2388 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2389 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2390 AbsVal),
2391 AbsVal);
2392 Result = LegalizeOp(Result);
2393 break;
2394 }
2395
2396 // Otherwise, do bitwise ops!
Evan Cheng912095b2007-01-04 21:56:39 +00002397 MVT::ValueType NVT =
2398 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
2399 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
2400 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
2401 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00002402 break;
2403 }
Evan Cheng912095b2007-01-04 21:56:39 +00002404 }
Chris Lattnera09f8482006-03-05 05:09:38 +00002405 break;
2406
Nate Begeman551bf3f2006-02-17 05:43:56 +00002407 case ISD::ADDC:
2408 case ISD::SUBC:
2409 Tmp1 = LegalizeOp(Node->getOperand(0));
2410 Tmp2 = LegalizeOp(Node->getOperand(1));
2411 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2412 // Since this produces two values, make sure to remember that we legalized
2413 // both of them.
2414 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2415 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2416 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002417
Nate Begeman551bf3f2006-02-17 05:43:56 +00002418 case ISD::ADDE:
2419 case ISD::SUBE:
2420 Tmp1 = LegalizeOp(Node->getOperand(0));
2421 Tmp2 = LegalizeOp(Node->getOperand(1));
2422 Tmp3 = LegalizeOp(Node->getOperand(2));
2423 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2424 // Since this produces two values, make sure to remember that we legalized
2425 // both of them.
2426 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2427 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2428 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002429
Nate Begeman419f8b62005-10-18 00:27:41 +00002430 case ISD::BUILD_PAIR: {
2431 MVT::ValueType PairTy = Node->getValueType(0);
2432 // TODO: handle the case where the Lo and Hi operands are not of legal type
2433 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
2434 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
2435 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002436 case TargetLowering::Promote:
2437 case TargetLowering::Custom:
2438 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00002439 case TargetLowering::Legal:
2440 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2441 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2442 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00002443 case TargetLowering::Expand:
2444 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2445 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2446 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2447 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
2448 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00002449 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00002450 break;
2451 }
2452 break;
2453 }
2454
Nate Begemanc105e192005-04-06 00:23:54 +00002455 case ISD::UREM:
2456 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002457 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00002458 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2459 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002460
Nate Begemanc105e192005-04-06 00:23:54 +00002461 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002462 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2463 case TargetLowering::Custom:
2464 isCustom = true;
2465 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00002466 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002467 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002468 if (isCustom) {
2469 Tmp1 = TLI.LowerOperation(Result, DAG);
2470 if (Tmp1.Val) Result = Tmp1;
2471 }
Nate Begemanc105e192005-04-06 00:23:54 +00002472 break;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002473 case TargetLowering::Expand:
Evan Cheng6b5578f2006-09-18 23:28:33 +00002474 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00002475 bool isSigned = DivOpc == ISD::SDIV;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002476 if (MVT::isInteger(Node->getValueType(0))) {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002477 if (TLI.getOperationAction(DivOpc, Node->getValueType(0)) ==
2478 TargetLowering::Legal) {
2479 // X % Y -> X-X/Y*Y
2480 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng6b5578f2006-09-18 23:28:33 +00002481 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002482 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2483 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2484 } else {
2485 assert(Node->getValueType(0) == MVT::i32 &&
2486 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00002487 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
2488 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002489 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002490 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002491 }
Chris Lattner4c64dd72005-08-03 20:31:37 +00002492 } else {
2493 // Floating point mod -> fmod libcall.
Evan Cheng56966222007-01-12 02:11:51 +00002494 RTLIB::Libcall LC = Node->getValueType(0) == MVT::f32
2495 ? RTLIB::REM_F32 : RTLIB::REM_F64;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002496 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002497 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2498 false/*sign irrelevant*/, Dummy);
Nate Begemanc105e192005-04-06 00:23:54 +00002499 }
2500 break;
2501 }
2502 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00002503 case ISD::VAARG: {
2504 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2505 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2506
Chris Lattner5c62f332006-01-28 07:42:08 +00002507 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00002508 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2509 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002510 case TargetLowering::Custom:
2511 isCustom = true;
2512 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002513 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002514 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2515 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002516 Tmp1 = Result.getValue(1);
2517
2518 if (isCustom) {
2519 Tmp2 = TLI.LowerOperation(Result, DAG);
2520 if (Tmp2.Val) {
2521 Result = LegalizeOp(Tmp2);
2522 Tmp1 = LegalizeOp(Tmp2.getValue(1));
2523 }
2524 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002525 break;
2526 case TargetLowering::Expand: {
Evan Cheng466685d2006-10-09 20:57:25 +00002527 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00002528 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00002529 SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002530 // Increment the pointer, VAList, to the next vaarg
2531 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2532 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2533 TLI.getPointerTy()));
2534 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00002535 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
2536 SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002537 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00002538 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002539 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00002540 Result = LegalizeOp(Result);
2541 break;
2542 }
2543 }
2544 // Since VAARG produces two values, make sure to remember that we
2545 // legalized both of them.
2546 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00002547 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2548 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00002549 }
2550
2551 case ISD::VACOPY:
2552 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2553 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
2554 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
2555
2556 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
2557 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002558 case TargetLowering::Custom:
2559 isCustom = true;
2560 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002561 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002562 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
2563 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00002564 if (isCustom) {
2565 Tmp1 = TLI.LowerOperation(Result, DAG);
2566 if (Tmp1.Val) Result = Tmp1;
2567 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002568 break;
2569 case TargetLowering::Expand:
2570 // This defaults to loading a pointer from the input and storing it to the
2571 // output, returning the chain.
Evan Cheng466685d2006-10-09 20:57:25 +00002572 SrcValueSDNode *SVD = cast<SrcValueSDNode>(Node->getOperand(3));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002573 SrcValueSDNode *SVS = cast<SrcValueSDNode>(Node->getOperand(4));
Evan Cheng466685d2006-10-09 20:57:25 +00002574 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, SVD->getValue(),
2575 SVD->getOffset());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002576 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, SVS->getValue(),
2577 SVS->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002578 break;
2579 }
2580 break;
2581
2582 case ISD::VAEND:
2583 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2584 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2585
2586 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2587 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002588 case TargetLowering::Custom:
2589 isCustom = true;
2590 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002591 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002592 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00002593 if (isCustom) {
2594 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2595 if (Tmp1.Val) Result = Tmp1;
2596 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002597 break;
2598 case TargetLowering::Expand:
2599 Result = Tmp1; // Default to a no-op, return the chain
2600 break;
2601 }
2602 break;
2603
2604 case ISD::VASTART:
2605 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2606 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2607
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002608 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2609
Nate Begemanacc398c2006-01-25 18:21:52 +00002610 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2611 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002612 case TargetLowering::Legal: break;
2613 case TargetLowering::Custom:
2614 Tmp1 = TLI.LowerOperation(Result, DAG);
2615 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00002616 break;
2617 }
2618 break;
2619
Nate Begeman35ef9132006-01-11 21:21:00 +00002620 case ISD::ROTL:
2621 case ISD::ROTR:
2622 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2623 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002624
2625 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
2626 "Cannot handle this yet!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002627 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Nate Begeman35ef9132006-01-11 21:21:00 +00002628 break;
2629
Nate Begemand88fc032006-01-14 03:14:10 +00002630 case ISD::BSWAP:
2631 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2632 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002633 case TargetLowering::Custom:
2634 assert(0 && "Cannot custom legalize this yet!");
2635 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002636 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002637 break;
2638 case TargetLowering::Promote: {
2639 MVT::ValueType OVT = Tmp1.getValueType();
2640 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2641 unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00002642
Chris Lattner456a93a2006-01-28 07:39:30 +00002643 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2644 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2645 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2646 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2647 break;
2648 }
2649 case TargetLowering::Expand:
2650 Result = ExpandBSWAP(Tmp1);
2651 break;
Nate Begemand88fc032006-01-14 03:14:10 +00002652 }
2653 break;
2654
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002655 case ISD::CTPOP:
2656 case ISD::CTTZ:
2657 case ISD::CTLZ:
2658 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2659 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002660 case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002661 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002662 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002663 break;
2664 case TargetLowering::Promote: {
2665 MVT::ValueType OVT = Tmp1.getValueType();
2666 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00002667
2668 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002669 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2670 // Perform the larger operation, then subtract if needed.
2671 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002672 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002673 case ISD::CTPOP:
2674 Result = Tmp1;
2675 break;
2676 case ISD::CTTZ:
2677 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002678 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2679 DAG.getConstant(getSizeInBits(NVT), NVT),
2680 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00002681 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002682 DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
2683 break;
2684 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00002685 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00002686 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2687 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002688 getSizeInBits(OVT), NVT));
2689 break;
2690 }
2691 break;
2692 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002693 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002694 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002695 break;
2696 }
2697 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00002698
Chris Lattner2c8086f2005-04-02 05:00:07 +00002699 // Unary operators
2700 case ISD::FABS:
2701 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00002702 case ISD::FSQRT:
2703 case ISD::FSIN:
2704 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002705 Tmp1 = LegalizeOp(Node->getOperand(0));
2706 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002707 case TargetLowering::Promote:
2708 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00002709 isCustom = true;
2710 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00002711 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002712 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00002713 if (isCustom) {
2714 Tmp1 = TLI.LowerOperation(Result, DAG);
2715 if (Tmp1.Val) Result = Tmp1;
2716 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002717 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00002718 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002719 switch (Node->getOpcode()) {
2720 default: assert(0 && "Unreachable!");
2721 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002722 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2723 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002724 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002725 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002726 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002727 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2728 MVT::ValueType VT = Node->getValueType(0);
2729 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002730 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002731 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2732 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002733 break;
2734 }
2735 case ISD::FSQRT:
2736 case ISD::FSIN:
2737 case ISD::FCOS: {
2738 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng56966222007-01-12 02:11:51 +00002739 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002740 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00002741 case ISD::FSQRT:
2742 LC = VT == MVT::f32 ? RTLIB::SQRT_F32 : RTLIB::SQRT_F64;
2743 break;
2744 case ISD::FSIN:
2745 LC = VT == MVT::f32 ? RTLIB::SIN_F32 : RTLIB::SIN_F64;
2746 break;
2747 case ISD::FCOS:
2748 LC = VT == MVT::f32 ? RTLIB::COS_F32 : RTLIB::COS_F64;
2749 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002750 default: assert(0 && "Unreachable!");
2751 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00002752 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002753 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2754 false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002755 break;
2756 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002757 }
2758 break;
2759 }
2760 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002761 case ISD::FPOWI: {
2762 // We always lower FPOWI into a libcall. No target support it yet.
Evan Cheng56966222007-01-12 02:11:51 +00002763 RTLIB::Libcall LC = Node->getValueType(0) == MVT::f32
2764 ? RTLIB::POWI_F32 : RTLIB::POWI_F64;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002765 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002766 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2767 false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00002768 break;
2769 }
Chris Lattner35481892005-12-23 00:16:34 +00002770 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00002771 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner35481892005-12-23 00:16:34 +00002772 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Chris Lattner67993f72006-01-23 07:30:46 +00002773 } else {
Chris Lattner35481892005-12-23 00:16:34 +00002774 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
2775 Node->getOperand(0).getValueType())) {
2776 default: assert(0 && "Unknown operation action!");
2777 case TargetLowering::Expand:
2778 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2779 break;
2780 case TargetLowering::Legal:
2781 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002782 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00002783 break;
2784 }
2785 }
2786 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00002787 case ISD::VBIT_CONVERT: {
2788 assert(Op.getOperand(0).getValueType() == MVT::Vector &&
2789 "Can only have VBIT_CONVERT where input or output is MVT::Vector!");
2790
2791 // The input has to be a vector type, we have to either scalarize it, pack
2792 // it, or convert it based on whether the input vector type is legal.
2793 SDNode *InVal = Node->getOperand(0).Val;
2794 unsigned NumElems =
2795 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
2796 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
2797
2798 // Figure out if there is a Packed type corresponding to this Vector
2799 // type. If so, convert to the packed type.
2800 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
2801 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
2802 // Turn this into a bit convert of the packed input.
2803 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2804 PackVectorOp(Node->getOperand(0), TVT));
2805 break;
2806 } else if (NumElems == 1) {
2807 // Turn this into a bit convert of the scalar input.
2808 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2809 PackVectorOp(Node->getOperand(0), EVT));
2810 break;
2811 } else {
2812 // FIXME: UNIMP! Store then reload
2813 assert(0 && "Cast from unsupported vector type not implemented yet!");
2814 }
2815 }
2816
Chris Lattner2c8086f2005-04-02 05:00:07 +00002817 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00002818 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002819 case ISD::UINT_TO_FP: {
2820 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002821 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2822 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002823 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002824 Node->getOperand(0).getValueType())) {
2825 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002826 case TargetLowering::Custom:
2827 isCustom = true;
2828 // FALLTHROUGH
2829 case TargetLowering::Legal:
2830 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002831 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002832 if (isCustom) {
2833 Tmp1 = TLI.LowerOperation(Result, DAG);
2834 if (Tmp1.Val) Result = Tmp1;
2835 }
2836 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002837 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00002838 Result = ExpandLegalINT_TO_FP(isSigned,
2839 LegalizeOp(Node->getOperand(0)),
2840 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002841 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002842 case TargetLowering::Promote:
2843 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
2844 Node->getValueType(0),
2845 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002846 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00002847 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002848 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00002849 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002850 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
2851 Node->getValueType(0), Node->getOperand(0));
2852 break;
2853 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002854 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002855 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002856 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
2857 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002858 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002859 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
2860 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00002861 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002862 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2863 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002864 break;
2865 }
2866 break;
2867 }
2868 case ISD::TRUNCATE:
2869 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2870 case Legal:
2871 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002872 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002873 break;
2874 case Expand:
2875 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2876
2877 // Since the result is legal, we should just be able to truncate the low
2878 // part of the source.
2879 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2880 break;
2881 case Promote:
2882 Result = PromoteOp(Node->getOperand(0));
2883 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2884 break;
2885 }
2886 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002887
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002888 case ISD::FP_TO_SINT:
2889 case ISD::FP_TO_UINT:
2890 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2891 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00002892 Tmp1 = LegalizeOp(Node->getOperand(0));
2893
Chris Lattner1618beb2005-07-29 00:11:56 +00002894 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2895 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002896 case TargetLowering::Custom:
2897 isCustom = true;
2898 // FALLTHROUGH
2899 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002900 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002901 if (isCustom) {
2902 Tmp1 = TLI.LowerOperation(Result, DAG);
2903 if (Tmp1.Val) Result = Tmp1;
2904 }
2905 break;
2906 case TargetLowering::Promote:
2907 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2908 Node->getOpcode() == ISD::FP_TO_SINT);
2909 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00002910 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00002911 if (Node->getOpcode() == ISD::FP_TO_UINT) {
2912 SDOperand True, False;
2913 MVT::ValueType VT = Node->getOperand(0).getValueType();
2914 MVT::ValueType NVT = Node->getValueType(0);
2915 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2916 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2917 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2918 Node->getOperand(0), Tmp2, ISD::SETLT);
2919 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2920 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00002921 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00002922 Tmp2));
2923 False = DAG.getNode(ISD::XOR, NVT, False,
2924 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00002925 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2926 break;
Nate Begemand2558e32005-08-14 01:20:53 +00002927 } else {
2928 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2929 }
2930 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00002931 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002932 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00002933 case Expand: {
2934 // Convert f32 / f64 to i32 / i64.
2935 MVT::ValueType VT = Op.getValueType();
Evan Cheng56966222007-01-12 02:11:51 +00002936 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00002937 switch (Node->getOpcode()) {
2938 case ISD::FP_TO_SINT:
2939 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00002940 LC = (VT == MVT::i32)
2941 ? RTLIB::FPTOSINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00002942 else
Evan Cheng56966222007-01-12 02:11:51 +00002943 LC = (VT == MVT::i32)
2944 ? RTLIB::FPTOSINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00002945 break;
2946 case ISD::FP_TO_UINT:
2947 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00002948 LC = (VT == MVT::i32)
2949 ? RTLIB::FPTOUINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00002950 else
Evan Cheng56966222007-01-12 02:11:51 +00002951 LC = (VT == MVT::i32)
2952 ? RTLIB::FPTOUINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00002953 break;
2954 default: assert(0 && "Unreachable!");
2955 }
2956 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002957 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2958 false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00002959 break;
2960 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002961 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002962 Tmp1 = PromoteOp(Node->getOperand(0));
2963 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
2964 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002965 break;
2966 }
2967 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002968
Chris Lattner13c78e22005-09-02 00:18:10 +00002969 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002970 case ISD::ZERO_EXTEND:
2971 case ISD::SIGN_EXTEND:
2972 case ISD::FP_EXTEND:
2973 case ISD::FP_ROUND:
2974 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002975 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002976 case Legal:
2977 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002978 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002979 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002980 case Promote:
2981 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00002982 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002983 Tmp1 = PromoteOp(Node->getOperand(0));
2984 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00002985 break;
Chris Lattner1713e732005-01-16 00:38:00 +00002986 case ISD::ZERO_EXTEND:
2987 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00002988 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00002989 Result = DAG.getZeroExtendInReg(Result,
2990 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00002991 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002992 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00002993 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00002994 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00002995 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00002996 Result,
2997 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00002998 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002999 case ISD::FP_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003000 Result = PromoteOp(Node->getOperand(0));
3001 if (Result.getValueType() != Op.getValueType())
3002 // Dynamically dead while we have only 2 FP types.
3003 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
3004 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003005 case ISD::FP_ROUND:
Chris Lattnerf8161d82005-01-16 05:06:12 +00003006 Result = PromoteOp(Node->getOperand(0));
3007 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
3008 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003009 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003010 }
3011 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003012 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003013 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003014 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003015 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003016
3017 // If this operation is not supported, convert it to a shl/shr or load/store
3018 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003019 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3020 default: assert(0 && "This action not supported for this op yet!");
3021 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003022 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003023 break;
3024 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003025 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003026 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003027 // NOTE: we could fall back on load/store here too for targets without
3028 // SAR. However, it is doubtful that any exist.
3029 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
3030 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00003031 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003032 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3033 Node->getOperand(0), ShiftCst);
3034 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3035 Result, ShiftCst);
3036 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003037 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003038 // EXTLOAD pair, targetting a temporary location (a stack slot).
3039
3040 // NOTE: there is a choice here between constantly creating new stack
3041 // slots and always reusing the same one. We currently always create
3042 // new ones, as reuse may inhibit scheduling.
3043 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
Owen Andersona69571c2006-05-03 01:29:57 +00003044 unsigned TySize = (unsigned)TLI.getTargetData()->getTypeSize(Ty);
Chris Lattner58092e32007-01-20 22:35:55 +00003045 unsigned Align = TLI.getTargetData()->getTypeAlignmentPref(Ty);
Chris Lattner45b8caf2005-01-15 07:15:18 +00003046 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukmanedf128a2005-04-21 22:36:52 +00003047 int SSFI =
Chris Lattner45b8caf2005-01-15 07:15:18 +00003048 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
3049 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Evan Cheng8b2794a2006-10-13 21:14:26 +00003050 Result = DAG.getTruncStore(DAG.getEntryNode(), Node->getOperand(0),
3051 StackSlot, NULL, 0, ExtraVT);
Chris Lattner5f056bf2005-07-10 01:55:33 +00003052 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
Evan Cheng466685d2006-10-09 20:57:25 +00003053 Result, StackSlot, NULL, 0, ExtraVT);
Chris Lattner45b8caf2005-01-15 07:15:18 +00003054 } else {
3055 assert(0 && "Unknown op");
3056 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003057 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003058 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003059 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003060 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003061 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003062
Chris Lattner4ddd2832006-04-08 04:13:17 +00003063 assert(Result.getValueType() == Op.getValueType() &&
3064 "Bad legalization!");
3065
Chris Lattner456a93a2006-01-28 07:39:30 +00003066 // Make sure that the generated code is itself legal.
3067 if (Result != Op)
3068 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003069
Chris Lattner45982da2005-05-12 16:53:42 +00003070 // Note that LegalizeOp may be reentered even from single-use nodes, which
3071 // means that we always must cache transformed nodes.
3072 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003073 return Result;
3074}
3075
Chris Lattner8b6fa222005-01-15 22:16:26 +00003076/// PromoteOp - Given an operation that produces a value in an invalid type,
3077/// promote it to compute the value into a larger type. The produced value will
3078/// have the correct bits for the low portion of the register, but no guarantee
3079/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00003080SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
3081 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00003082 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00003083 assert(getTypeAction(VT) == Promote &&
3084 "Caller should expand or legalize operands that are not promotable!");
3085 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
3086 "Cannot promote to smaller type!");
3087
Chris Lattner03c85462005-01-15 05:21:40 +00003088 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00003089 SDOperand Result;
3090 SDNode *Node = Op.Val;
3091
Chris Lattner6fdcb252005-09-02 20:32:45 +00003092 std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
3093 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00003094
Chris Lattner03c85462005-01-15 05:21:40 +00003095 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003096 case ISD::CopyFromReg:
3097 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00003098 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003099#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +00003100 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003101#endif
Chris Lattner03c85462005-01-15 05:21:40 +00003102 assert(0 && "Do not know how to promote this operator!");
3103 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003104 case ISD::UNDEF:
3105 Result = DAG.getNode(ISD::UNDEF, NVT);
3106 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003107 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00003108 if (VT != MVT::i1)
3109 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
3110 else
3111 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00003112 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
3113 break;
3114 case ISD::ConstantFP:
3115 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
3116 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
3117 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00003118
Chris Lattner82fbfb62005-01-18 02:59:52 +00003119 case ISD::SETCC:
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003120 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003121 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
3122 Node->getOperand(1), Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00003123 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00003124
Chris Lattner03c85462005-01-15 05:21:40 +00003125 case ISD::TRUNCATE:
3126 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3127 case Legal:
3128 Result = LegalizeOp(Node->getOperand(0));
3129 assert(Result.getValueType() >= NVT &&
3130 "This truncation doesn't make sense!");
3131 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
3132 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
3133 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00003134 case Promote:
3135 // The truncation is not required, because we don't guarantee anything
3136 // about high bits anyway.
3137 Result = PromoteOp(Node->getOperand(0));
3138 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003139 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00003140 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3141 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00003142 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00003143 }
3144 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003145 case ISD::SIGN_EXTEND:
3146 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00003147 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003148 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3149 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
3150 case Legal:
3151 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00003152 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003153 break;
3154 case Promote:
3155 // Promote the reg if it's smaller.
3156 Result = PromoteOp(Node->getOperand(0));
3157 // The high bits are not guaranteed to be anything. Insert an extend.
3158 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00003159 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00003160 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00003161 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00003162 Result = DAG.getZeroExtendInReg(Result,
3163 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00003164 break;
3165 }
3166 break;
Chris Lattner35481892005-12-23 00:16:34 +00003167 case ISD::BIT_CONVERT:
3168 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3169 Result = PromoteOp(Result);
3170 break;
3171
Chris Lattner8b6fa222005-01-15 22:16:26 +00003172 case ISD::FP_EXTEND:
3173 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
3174 case ISD::FP_ROUND:
3175 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3176 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
3177 case Promote: assert(0 && "Unreachable with 2 FP types!");
3178 case Legal:
3179 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner456a93a2006-01-28 07:39:30 +00003180 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner15e4b012005-07-10 00:07:11 +00003181 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003182 break;
3183 }
3184 break;
3185
3186 case ISD::SINT_TO_FP:
3187 case ISD::UINT_TO_FP:
3188 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3189 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00003190 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00003191 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003192 break;
3193
3194 case Promote:
3195 Result = PromoteOp(Node->getOperand(0));
3196 if (Node->getOpcode() == ISD::SINT_TO_FP)
3197 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003198 Result,
3199 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003200 else
Chris Lattner23993562005-04-13 02:38:47 +00003201 Result = DAG.getZeroExtendInReg(Result,
3202 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003203 // No extra round required here.
3204 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003205 break;
3206 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00003207 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3208 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00003209 // Round if we cannot tolerate excess precision.
3210 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003211 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3212 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00003213 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003214 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003215 break;
3216
Chris Lattner5e3c5b42005-12-09 17:32:47 +00003217 case ISD::SIGN_EXTEND_INREG:
3218 Result = PromoteOp(Node->getOperand(0));
3219 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3220 Node->getOperand(1));
3221 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003222 case ISD::FP_TO_SINT:
3223 case ISD::FP_TO_UINT:
3224 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3225 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00003226 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003227 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003228 break;
3229 case Promote:
3230 // The input result is prerounded, so we don't have to do anything
3231 // special.
3232 Tmp1 = PromoteOp(Node->getOperand(0));
3233 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003234 }
Nate Begemand2558e32005-08-14 01:20:53 +00003235 // If we're promoting a UINT to a larger size, check to see if the new node
3236 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
3237 // we can use that instead. This allows us to generate better code for
3238 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3239 // legal, such as PowerPC.
3240 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003241 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00003242 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3243 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00003244 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3245 } else {
3246 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3247 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003248 break;
3249
Chris Lattner2c8086f2005-04-02 05:00:07 +00003250 case ISD::FABS:
3251 case ISD::FNEG:
3252 Tmp1 = PromoteOp(Node->getOperand(0));
3253 assert(Tmp1.getValueType() == NVT);
3254 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3255 // NOTE: we do not have to do any extra rounding here for
3256 // NoExcessFPPrecision, because we know the input will have the appropriate
3257 // precision, and these operations don't modify precision at all.
3258 break;
3259
Chris Lattnerda6ba872005-04-28 21:44:33 +00003260 case ISD::FSQRT:
3261 case ISD::FSIN:
3262 case ISD::FCOS:
3263 Tmp1 = PromoteOp(Node->getOperand(0));
3264 assert(Tmp1.getValueType() == NVT);
3265 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003266 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003267 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3268 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00003269 break;
3270
Chris Lattner03c85462005-01-15 05:21:40 +00003271 case ISD::AND:
3272 case ISD::OR:
3273 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00003274 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003275 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00003276 case ISD::MUL:
3277 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00003278 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00003279 // that too is okay if they are integer operations.
3280 Tmp1 = PromoteOp(Node->getOperand(0));
3281 Tmp2 = PromoteOp(Node->getOperand(1));
3282 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3283 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00003284 break;
3285 case ISD::FADD:
3286 case ISD::FSUB:
3287 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00003288 Tmp1 = PromoteOp(Node->getOperand(0));
3289 Tmp2 = PromoteOp(Node->getOperand(1));
3290 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3291 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3292
3293 // Floating point operations will give excess precision that we may not be
3294 // able to tolerate. If we DO allow excess precision, just leave it,
3295 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00003296 // FIXME: Why would we need to round FP ops more than integer ones?
3297 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00003298 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003299 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3300 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00003301 break;
3302
Chris Lattner8b6fa222005-01-15 22:16:26 +00003303 case ISD::SDIV:
3304 case ISD::SREM:
3305 // These operators require that their input be sign extended.
3306 Tmp1 = PromoteOp(Node->getOperand(0));
3307 Tmp2 = PromoteOp(Node->getOperand(1));
3308 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00003309 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3310 DAG.getValueType(VT));
3311 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3312 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003313 }
3314 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3315
3316 // Perform FP_ROUND: this is probably overly pessimistic.
3317 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003318 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3319 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003320 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00003321 case ISD::FDIV:
3322 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00003323 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00003324 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00003325 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3326 case Legal:
3327 Tmp1 = LegalizeOp(Node->getOperand(0));
3328 break;
3329 case Promote:
3330 Tmp1 = PromoteOp(Node->getOperand(0));
3331 break;
3332 case Expand:
3333 assert(0 && "not implemented");
3334 }
3335 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3336 case Legal:
3337 Tmp2 = LegalizeOp(Node->getOperand(1));
3338 break;
3339 case Promote:
3340 Tmp2 = PromoteOp(Node->getOperand(1));
3341 break;
3342 case Expand:
3343 assert(0 && "not implemented");
3344 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003345 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3346
3347 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00003348 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00003349 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3350 DAG.getValueType(VT));
3351 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003352
3353 case ISD::UDIV:
3354 case ISD::UREM:
3355 // These operators require that their input be zero extended.
3356 Tmp1 = PromoteOp(Node->getOperand(0));
3357 Tmp2 = PromoteOp(Node->getOperand(1));
3358 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00003359 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3360 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003361 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3362 break;
3363
3364 case ISD::SHL:
3365 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003366 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003367 break;
3368 case ISD::SRA:
3369 // The input value must be properly sign extended.
3370 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003371 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3372 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003373 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003374 break;
3375 case ISD::SRL:
3376 // The input value must be properly zero extended.
3377 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00003378 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00003379 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003380 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00003381
3382 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00003383 Tmp1 = Node->getOperand(0); // Get the chain.
3384 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00003385 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3386 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3387 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3388 } else {
Evan Cheng466685d2006-10-09 20:57:25 +00003389 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begeman0aed7842006-01-28 03:14:31 +00003390 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00003391 SV->getValue(), SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003392 // Increment the pointer, VAList, to the next vaarg
3393 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3394 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3395 TLI.getPointerTy()));
3396 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00003397 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
3398 SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003399 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003400 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00003401 }
3402 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003403 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00003404 break;
3405
Evan Cheng466685d2006-10-09 20:57:25 +00003406 case ISD::LOAD: {
3407 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00003408 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
3409 ? ISD::EXTLOAD : LD->getExtensionType();
3410 Result = DAG.getExtLoad(ExtType, NVT,
3411 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00003412 LD->getSrcValue(), LD->getSrcValueOffset(),
Evan Cheng2e49f092006-10-11 07:10:22 +00003413 LD->getLoadedVT());
Chris Lattner03c85462005-01-15 05:21:40 +00003414 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003415 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00003416 break;
Evan Cheng466685d2006-10-09 20:57:25 +00003417 }
Chris Lattner03c85462005-01-15 05:21:40 +00003418 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00003419 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
3420 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00003421 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00003422 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003423 case ISD::SELECT_CC:
3424 Tmp2 = PromoteOp(Node->getOperand(2)); // True
3425 Tmp3 = PromoteOp(Node->getOperand(3)); // False
3426 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00003427 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00003428 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003429 case ISD::BSWAP:
3430 Tmp1 = Node->getOperand(0);
3431 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3432 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3433 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3434 DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
3435 TLI.getShiftAmountTy()));
3436 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003437 case ISD::CTPOP:
3438 case ISD::CTTZ:
3439 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003440 // Zero extend the argument
3441 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003442 // Perform the larger operation, then subtract if needed.
3443 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003444 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003445 case ISD::CTPOP:
3446 Result = Tmp1;
3447 break;
3448 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003449 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begemand2558e32005-08-14 01:20:53 +00003450 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003451 DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003452 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Chris Lattner456a93a2006-01-28 07:39:30 +00003453 DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003454 break;
3455 case ISD::CTLZ:
3456 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003457 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
3458 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003459 getSizeInBits(VT), NVT));
3460 break;
3461 }
3462 break;
Chris Lattner15972212006-03-31 17:55:51 +00003463 case ISD::VEXTRACT_VECTOR_ELT:
3464 Result = PromoteOp(LowerVEXTRACT_VECTOR_ELT(Op));
3465 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00003466 case ISD::EXTRACT_VECTOR_ELT:
3467 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
3468 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003469 }
3470
3471 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003472
3473 // Make sure the result is itself legal.
3474 Result = LegalizeOp(Result);
3475
3476 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00003477 AddPromotedOperand(Op, Result);
3478 return Result;
3479}
Chris Lattner3e928bb2005-01-07 07:47:09 +00003480
Chris Lattner15972212006-03-31 17:55:51 +00003481/// LowerVEXTRACT_VECTOR_ELT - Lower a VEXTRACT_VECTOR_ELT operation into a
3482/// EXTRACT_VECTOR_ELT operation, to memory operations, or to scalar code based
3483/// on the vector type. The return type of this matches the element type of the
3484/// vector, which may not be legal for the target.
3485SDOperand SelectionDAGLegalize::LowerVEXTRACT_VECTOR_ELT(SDOperand Op) {
3486 // We know that operand #0 is the Vec vector. If the index is a constant
3487 // or if the invec is a supported hardware type, we can use it. Otherwise,
3488 // lower to a store then an indexed load.
3489 SDOperand Vec = Op.getOperand(0);
3490 SDOperand Idx = LegalizeOp(Op.getOperand(1));
3491
3492 SDNode *InVal = Vec.Val;
3493 unsigned NumElems = cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
3494 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
3495
3496 // Figure out if there is a Packed type corresponding to this Vector
3497 // type. If so, convert to the packed type.
3498 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3499 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
3500 // Turn this into a packed extract_vector_elt operation.
3501 Vec = PackVectorOp(Vec, TVT);
3502 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, Op.getValueType(), Vec, Idx);
3503 } else if (NumElems == 1) {
3504 // This must be an access of the only element. Return it.
3505 return PackVectorOp(Vec, EVT);
3506 } else if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
3507 SDOperand Lo, Hi;
3508 SplitVectorOp(Vec, Lo, Hi);
3509 if (CIdx->getValue() < NumElems/2) {
3510 Vec = Lo;
3511 } else {
3512 Vec = Hi;
3513 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
3514 }
3515
3516 // It's now an extract from the appropriate high or low part. Recurse.
3517 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
3518 return LowerVEXTRACT_VECTOR_ELT(Op);
3519 } else {
3520 // Variable index case for extract element.
3521 // FIXME: IMPLEMENT STORE/LOAD lowering. Need alignment of stack slot!!
3522 assert(0 && "unimp!");
3523 return SDOperand();
3524 }
3525}
3526
Chris Lattner4aab2f42006-04-02 05:06:04 +00003527/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
3528/// memory traffic.
3529SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
3530 SDOperand Vector = Op.getOperand(0);
3531 SDOperand Idx = Op.getOperand(1);
3532
3533 // If the target doesn't support this, store the value to a temporary
3534 // stack slot, then LOAD the scalar element back out.
3535 SDOperand StackPtr = CreateStackTemporary(Vector.getValueType());
Evan Cheng8b2794a2006-10-13 21:14:26 +00003536 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vector, StackPtr, NULL, 0);
Chris Lattner4aab2f42006-04-02 05:06:04 +00003537
3538 // Add the offset to the index.
3539 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
3540 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
3541 DAG.getConstant(EltSize, Idx.getValueType()));
3542 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
3543
Evan Cheng466685d2006-10-09 20:57:25 +00003544 return DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner4aab2f42006-04-02 05:06:04 +00003545}
3546
Chris Lattner15972212006-03-31 17:55:51 +00003547
Nate Begeman750ac1b2006-02-01 07:19:44 +00003548/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
3549/// with condition CC on the current target. This usually involves legalizing
3550/// or promoting the arguments. In the case where LHS and RHS must be expanded,
3551/// there may be no choice but to create a new SetCC node to represent the
3552/// legalized value of setcc lhs, rhs. In this case, the value is returned in
3553/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
3554void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
3555 SDOperand &RHS,
3556 SDOperand &CC) {
3557 SDOperand Tmp1, Tmp2, Result;
3558
3559 switch (getTypeAction(LHS.getValueType())) {
3560 case Legal:
3561 Tmp1 = LegalizeOp(LHS); // LHS
3562 Tmp2 = LegalizeOp(RHS); // RHS
3563 break;
3564 case Promote:
3565 Tmp1 = PromoteOp(LHS); // LHS
3566 Tmp2 = PromoteOp(RHS); // RHS
3567
3568 // If this is an FP compare, the operands have already been extended.
3569 if (MVT::isInteger(LHS.getValueType())) {
3570 MVT::ValueType VT = LHS.getValueType();
3571 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3572
3573 // Otherwise, we have to insert explicit sign or zero extends. Note
3574 // that we could insert sign extends for ALL conditions, but zero extend
3575 // is cheaper on many machines (an AND instead of two shifts), so prefer
3576 // it.
3577 switch (cast<CondCodeSDNode>(CC)->get()) {
3578 default: assert(0 && "Unknown integer comparison!");
3579 case ISD::SETEQ:
3580 case ISD::SETNE:
3581 case ISD::SETUGE:
3582 case ISD::SETUGT:
3583 case ISD::SETULE:
3584 case ISD::SETULT:
3585 // ALL of these operations will work if we either sign or zero extend
3586 // the operands (including the unsigned comparisons!). Zero extend is
3587 // usually a simpler/cheaper operation, so prefer it.
3588 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3589 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3590 break;
3591 case ISD::SETGE:
3592 case ISD::SETGT:
3593 case ISD::SETLT:
3594 case ISD::SETLE:
3595 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3596 DAG.getValueType(VT));
3597 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3598 DAG.getValueType(VT));
3599 break;
3600 }
3601 }
3602 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00003603 case Expand: {
3604 MVT::ValueType VT = LHS.getValueType();
3605 if (VT == MVT::f32 || VT == MVT::f64) {
3606 // Expand into one or more soft-fp libcall(s).
Evan Cheng56966222007-01-12 02:11:51 +00003607 RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00003608 switch (cast<CondCodeSDNode>(CC)->get()) {
3609 case ISD::SETEQ:
3610 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00003611 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003612 break;
3613 case ISD::SETNE:
3614 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00003615 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003616 break;
3617 case ISD::SETGE:
3618 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00003619 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003620 break;
3621 case ISD::SETLT:
3622 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00003623 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003624 break;
3625 case ISD::SETLE:
3626 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00003627 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003628 break;
3629 case ISD::SETGT:
3630 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00003631 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003632 break;
3633 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00003634 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
3635 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00003636 case ISD::SETO:
Evan Cheng56966222007-01-12 02:11:51 +00003637 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003638 break;
3639 default:
Evan Cheng56966222007-01-12 02:11:51 +00003640 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003641 switch (cast<CondCodeSDNode>(CC)->get()) {
3642 case ISD::SETONE:
3643 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00003644 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003645 // Fallthrough
3646 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00003647 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003648 break;
3649 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00003650 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003651 break;
3652 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00003653 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003654 break;
3655 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00003656 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003657 break;
Evan Cheng56966222007-01-12 02:11:51 +00003658 case ISD::SETUEQ:
3659 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00003660 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00003661 default: assert(0 && "Unsupported FP setcc!");
3662 }
3663 }
3664
3665 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003666 Tmp1 = ExpandLibCall(TLI.getLibcallName(LC1),
Reid Spencer47857812006-12-31 05:55:36 +00003667 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00003668 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00003669 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00003670 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00003671 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Evan Cheng2b49c502006-12-15 02:59:56 +00003672 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), Tmp1, Tmp2, CC);
Evan Cheng56966222007-01-12 02:11:51 +00003673 LHS = ExpandLibCall(TLI.getLibcallName(LC2),
Reid Spencer47857812006-12-31 05:55:36 +00003674 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00003675 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00003676 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00003677 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00003678 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3679 Tmp2 = SDOperand();
3680 }
3681 LHS = Tmp1;
3682 RHS = Tmp2;
3683 return;
3684 }
3685
Nate Begeman750ac1b2006-02-01 07:19:44 +00003686 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
3687 ExpandOp(LHS, LHSLo, LHSHi);
Evan Cheng2b49c502006-12-15 02:59:56 +00003688 ExpandOp(RHS, RHSLo, RHSHi);
Nate Begeman750ac1b2006-02-01 07:19:44 +00003689 switch (cast<CondCodeSDNode>(CC)->get()) {
3690 case ISD::SETEQ:
3691 case ISD::SETNE:
3692 if (RHSLo == RHSHi)
3693 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
3694 if (RHSCST->isAllOnesValue()) {
3695 // Comparison to -1.
3696 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
3697 Tmp2 = RHSLo;
3698 break;
3699 }
3700
3701 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
3702 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
3703 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3704 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3705 break;
3706 default:
3707 // If this is a comparison of the sign bit, just look at the top part.
3708 // X > -1, x < 0
3709 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
3710 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
3711 CST->getValue() == 0) || // X < 0
3712 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
3713 CST->isAllOnesValue())) { // X > -1
3714 Tmp1 = LHSHi;
3715 Tmp2 = RHSHi;
3716 break;
3717 }
3718
3719 // FIXME: This generated code sucks.
3720 ISD::CondCode LowCC;
3721 switch (cast<CondCodeSDNode>(CC)->get()) {
3722 default: assert(0 && "Unknown integer setcc!");
3723 case ISD::SETLT:
3724 case ISD::SETULT: LowCC = ISD::SETULT; break;
3725 case ISD::SETGT:
3726 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
3727 case ISD::SETLE:
3728 case ISD::SETULE: LowCC = ISD::SETULE; break;
3729 case ISD::SETGE:
3730 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
3731 }
3732
3733 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
3734 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
3735 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
3736
3737 // NOTE: on targets without efficient SELECT of bools, we can always use
3738 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
3739 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
3740 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
3741 Result = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
3742 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
3743 Result, Tmp1, Tmp2));
3744 Tmp1 = Result;
Nate Begemanda06e9e2006-02-01 19:05:15 +00003745 Tmp2 = SDOperand();
Nate Begeman750ac1b2006-02-01 07:19:44 +00003746 }
3747 }
Evan Cheng2b49c502006-12-15 02:59:56 +00003748 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00003749 LHS = Tmp1;
3750 RHS = Tmp2;
3751}
3752
Chris Lattner35481892005-12-23 00:16:34 +00003753/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner232348d2005-12-23 00:52:30 +00003754/// The resultant code need not be legal. Note that SrcOp is the input operand
3755/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner35481892005-12-23 00:16:34 +00003756SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
3757 SDOperand SrcOp) {
3758 // Create the stack frame object.
Chris Lattnerce872152006-03-19 06:31:19 +00003759 SDOperand FIPtr = CreateStackTemporary(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00003760
3761 // Emit a store to the stack slot.
Evan Cheng8b2794a2006-10-13 21:14:26 +00003762 SDOperand Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00003763 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00003764 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00003765}
3766
Chris Lattner4352cc92006-04-04 17:23:26 +00003767SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
3768 // Create a vector sized/aligned stack slot, store the value to element #0,
3769 // then load the whole vector back out.
3770 SDOperand StackPtr = CreateStackTemporary(Node->getValueType(0));
Evan Cheng786225a2006-10-05 23:01:46 +00003771 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003772 NULL, 0);
Evan Cheng466685d2006-10-09 20:57:25 +00003773 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, NULL, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00003774}
3775
3776
Chris Lattnerce872152006-03-19 06:31:19 +00003777/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
3778/// support the operation, but do support the resultant packed vector type.
3779SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
3780
3781 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00003782 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00003783 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00003784 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00003785 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng033e6812006-03-24 01:17:21 +00003786 std::map<SDOperand, std::vector<unsigned> > Values;
3787 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003788 bool isConstant = true;
3789 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
3790 SplatValue.getOpcode() != ISD::UNDEF)
3791 isConstant = false;
3792
Evan Cheng033e6812006-03-24 01:17:21 +00003793 for (unsigned i = 1; i < NumElems; ++i) {
3794 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00003795 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00003796 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00003797 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00003798 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00003799 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003800
3801 // If this isn't a constant element or an undef, we can't use a constant
3802 // pool load.
3803 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
3804 V.getOpcode() != ISD::UNDEF)
3805 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00003806 }
3807
3808 if (isOnlyLowElement) {
3809 // If the low element is an undef too, then this whole things is an undef.
3810 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
3811 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
3812 // Otherwise, turn this into a scalar_to_vector node.
3813 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3814 Node->getOperand(0));
3815 }
3816
Chris Lattner2eb86532006-03-24 07:29:17 +00003817 // If all elements are constants, create a load from the constant pool.
3818 if (isConstant) {
3819 MVT::ValueType VT = Node->getValueType(0);
3820 const Type *OpNTy =
3821 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
3822 std::vector<Constant*> CV;
3823 for (unsigned i = 0, e = NumElems; i != e; ++i) {
3824 if (ConstantFPSDNode *V =
3825 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
3826 CV.push_back(ConstantFP::get(OpNTy, V->getValue()));
3827 } else if (ConstantSDNode *V =
3828 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Reid Spencerb83eb642006-10-20 07:07:24 +00003829 CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00003830 } else {
3831 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
3832 CV.push_back(UndefValue::get(OpNTy));
3833 }
3834 }
3835 Constant *CP = ConstantPacked::get(CV);
3836 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng466685d2006-10-09 20:57:25 +00003837 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003838 }
3839
Chris Lattner87100e02006-03-20 01:52:29 +00003840 if (SplatValue.Val) { // Splat of one value?
3841 // Build the shuffle constant vector: <0, 0, 0, 0>
3842 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00003843 MVT::getIntVectorWithNumElements(NumElems);
Chris Lattner87100e02006-03-20 01:52:29 +00003844 SDOperand Zero = DAG.getConstant(0, MVT::getVectorBaseType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00003845 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003846 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3847 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00003848
3849 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00003850 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00003851 // Get the splatted value into the low element of a vector register.
3852 SDOperand LowValVec =
3853 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
3854
3855 // Return shuffle(LowValVec, undef, <0,0,0,0>)
3856 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
3857 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
3858 SplatMask);
3859 }
3860 }
3861
Evan Cheng033e6812006-03-24 01:17:21 +00003862 // If there are only two unique elements, we may be able to turn this into a
3863 // vector shuffle.
3864 if (Values.size() == 2) {
3865 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
3866 MVT::ValueType MaskVT =
3867 MVT::getIntVectorWithNumElements(NumElems);
3868 std::vector<SDOperand> MaskVec(NumElems);
3869 unsigned i = 0;
3870 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3871 E = Values.end(); I != E; ++I) {
3872 for (std::vector<unsigned>::iterator II = I->second.begin(),
3873 EE = I->second.end(); II != EE; ++II)
3874 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorBaseType(MaskVT));
3875 i += NumElems;
3876 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003877 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3878 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00003879
3880 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00003881 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
3882 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003883 SmallVector<SDOperand, 8> Ops;
Evan Cheng033e6812006-03-24 01:17:21 +00003884 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3885 E = Values.end(); I != E; ++I) {
3886 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3887 I->first);
3888 Ops.push_back(Op);
3889 }
3890 Ops.push_back(ShuffleMask);
3891
3892 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003893 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
3894 &Ops[0], Ops.size());
Evan Cheng033e6812006-03-24 01:17:21 +00003895 }
3896 }
Chris Lattnerce872152006-03-19 06:31:19 +00003897
3898 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
3899 // aligned object on the stack, store each element into it, then load
3900 // the result as a vector.
3901 MVT::ValueType VT = Node->getValueType(0);
3902 // Create the stack frame object.
3903 SDOperand FIPtr = CreateStackTemporary(VT);
3904
3905 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003906 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00003907 unsigned TypeByteSize =
3908 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattnerce872152006-03-19 06:31:19 +00003909 // Store (in the right endianness) the elements to memory.
3910 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3911 // Ignore undef elements.
3912 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
3913
Chris Lattner841c8822006-03-22 01:46:54 +00003914 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00003915
3916 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
3917 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
3918
Evan Cheng786225a2006-10-05 23:01:46 +00003919 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00003920 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00003921 }
3922
3923 SDOperand StoreChain;
3924 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003925 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3926 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00003927 else
3928 StoreChain = DAG.getEntryNode();
3929
3930 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00003931 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00003932}
3933
3934/// CreateStackTemporary - Create a stack temporary, suitable for holding the
3935/// specified value type.
3936SDOperand SelectionDAGLegalize::CreateStackTemporary(MVT::ValueType VT) {
3937 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
3938 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
Chris Lattner58092e32007-01-20 22:35:55 +00003939 const Type *Ty = MVT::getTypeForValueType(VT);
3940 unsigned StackAlign = (unsigned)TLI.getTargetData()->getTypeAlignmentPref(Ty);
3941 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
Chris Lattnerce872152006-03-19 06:31:19 +00003942 return DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
3943}
3944
Chris Lattner5b359c62005-04-02 04:00:59 +00003945void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
3946 SDOperand Op, SDOperand Amt,
3947 SDOperand &Lo, SDOperand &Hi) {
3948 // Expand the subcomponents.
3949 SDOperand LHSL, LHSH;
3950 ExpandOp(Op, LHSL, LHSH);
3951
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003952 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00003953 MVT::ValueType VT = LHSL.getValueType();
3954 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00003955 Hi = Lo.getValue(1);
3956}
3957
3958
Chris Lattnere34b3962005-01-19 04:19:40 +00003959/// ExpandShift - Try to find a clever way to expand this shift operation out to
3960/// smaller elements. If we can't find a way that is more efficient than a
3961/// libcall on this target, return false. Otherwise, return true with the
3962/// low-parts expanded into Lo and Hi.
3963bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
3964 SDOperand &Lo, SDOperand &Hi) {
3965 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
3966 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003967
Chris Lattnere34b3962005-01-19 04:19:40 +00003968 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003969 SDOperand ShAmt = LegalizeOp(Amt);
3970 MVT::ValueType ShTy = ShAmt.getValueType();
3971 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
3972 unsigned NVTBits = MVT::getSizeInBits(NVT);
3973
3974 // Handle the case when Amt is an immediate. Other cases are currently broken
3975 // and are disabled.
3976 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
3977 unsigned Cst = CN->getValue();
3978 // Expand the incoming operand to be shifted, so that we have its parts
3979 SDOperand InL, InH;
3980 ExpandOp(Op, InL, InH);
3981 switch(Opc) {
3982 case ISD::SHL:
3983 if (Cst > VTBits) {
3984 Lo = DAG.getConstant(0, NVT);
3985 Hi = DAG.getConstant(0, NVT);
3986 } else if (Cst > NVTBits) {
3987 Lo = DAG.getConstant(0, NVT);
3988 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00003989 } else if (Cst == NVTBits) {
3990 Lo = DAG.getConstant(0, NVT);
3991 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003992 } else {
3993 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
3994 Hi = DAG.getNode(ISD::OR, NVT,
3995 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
3996 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
3997 }
3998 return true;
3999 case ISD::SRL:
4000 if (Cst > VTBits) {
4001 Lo = DAG.getConstant(0, NVT);
4002 Hi = DAG.getConstant(0, NVT);
4003 } else if (Cst > NVTBits) {
4004 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
4005 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00004006 } else if (Cst == NVTBits) {
4007 Lo = InH;
4008 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004009 } else {
4010 Lo = DAG.getNode(ISD::OR, NVT,
4011 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
4012 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
4013 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
4014 }
4015 return true;
4016 case ISD::SRA:
4017 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00004018 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004019 DAG.getConstant(NVTBits-1, ShTy));
4020 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00004021 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004022 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004023 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004024 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00004025 } else if (Cst == NVTBits) {
4026 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00004027 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00004028 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004029 } else {
4030 Lo = DAG.getNode(ISD::OR, NVT,
4031 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
4032 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
4033 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
4034 }
4035 return true;
4036 }
4037 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00004038
4039 // Okay, the shift amount isn't constant. However, if we can tell that it is
4040 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
4041 uint64_t Mask = NVTBits, KnownZero, KnownOne;
4042 TLI.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
4043
4044 // If we know that the high bit of the shift amount is one, then we can do
4045 // this as a couple of simple shifts.
4046 if (KnownOne & Mask) {
4047 // Mask out the high bit, which we know is set.
4048 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
4049 DAG.getConstant(NVTBits-1, Amt.getValueType()));
4050
4051 // Expand the incoming operand to be shifted, so that we have its parts
4052 SDOperand InL, InH;
4053 ExpandOp(Op, InL, InH);
4054 switch(Opc) {
4055 case ISD::SHL:
4056 Lo = DAG.getConstant(0, NVT); // Low part is zero.
4057 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
4058 return true;
4059 case ISD::SRL:
4060 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
4061 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
4062 return true;
4063 case ISD::SRA:
4064 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
4065 DAG.getConstant(NVTBits-1, Amt.getValueType()));
4066 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
4067 return true;
4068 }
4069 }
4070
4071 // If we know that the high bit of the shift amount is zero, then we can do
4072 // this as a couple of simple shifts.
4073 if (KnownZero & Mask) {
4074 // Compute 32-amt.
4075 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
4076 DAG.getConstant(NVTBits, Amt.getValueType()),
4077 Amt);
4078
4079 // Expand the incoming operand to be shifted, so that we have its parts
4080 SDOperand InL, InH;
4081 ExpandOp(Op, InL, InH);
4082 switch(Opc) {
4083 case ISD::SHL:
4084 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
4085 Hi = DAG.getNode(ISD::OR, NVT,
4086 DAG.getNode(ISD::SHL, NVT, InH, Amt),
4087 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
4088 return true;
4089 case ISD::SRL:
4090 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
4091 Lo = DAG.getNode(ISD::OR, NVT,
4092 DAG.getNode(ISD::SRL, NVT, InL, Amt),
4093 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
4094 return true;
4095 case ISD::SRA:
4096 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
4097 Lo = DAG.getNode(ISD::OR, NVT,
4098 DAG.getNode(ISD::SRL, NVT, InL, Amt),
4099 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
4100 return true;
4101 }
4102 }
4103
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004104 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00004105}
Chris Lattner77e77a62005-01-21 06:05:23 +00004106
Chris Lattner9c32d3b2005-01-23 04:42:50 +00004107
Chris Lattner77e77a62005-01-21 06:05:23 +00004108// ExpandLibCall - Expand a node into a call to a libcall. If the result value
4109// does not fit into a register, return the lo part and set the hi part to the
4110// by-reg argument. If it does fit into a single register, return the result
4111// and leave the Hi part unset.
4112SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00004113 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00004114 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
4115 // The input chain to this libcall is the entry node of the function.
4116 // Legalizing the call will automatically add the previous call to the
4117 // dependence.
4118 SDOperand InChain = DAG.getEntryNode();
4119
Chris Lattner77e77a62005-01-21 06:05:23 +00004120 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00004121 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00004122 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
4123 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
4124 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
Reid Spencer47857812006-12-31 05:55:36 +00004125 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovb25fe822007-02-01 08:39:52 +00004126 Entry.isSigned = isSigned; Entry.isInReg = false; Entry.isSRet = false;
Reid Spencer47857812006-12-31 05:55:36 +00004127 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00004128 }
4129 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00004130
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004131 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00004132 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004133 std::pair<SDOperand,SDOperand> CallInfo =
Reid Spencer47857812006-12-31 05:55:36 +00004134 TLI.LowerCallTo(InChain, RetTy, isSigned, false, CallingConv::C, false,
Chris Lattneradf6a962005-05-13 18:50:42 +00004135 Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00004136
Chris Lattner6831a812006-02-13 09:18:02 +00004137 // Legalize the call sequence, starting with the chain. This will advance
4138 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
4139 // was added by LowerCallTo (guaranteeing proper serialization of calls).
4140 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00004141 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004142 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00004143 default: assert(0 && "Unknown thing");
4144 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00004145 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00004146 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00004147 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00004148 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00004149 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00004150 }
Chris Lattner99c25b82005-09-02 20:26:58 +00004151 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00004152}
4153
Chris Lattner9c32d3b2005-01-23 04:42:50 +00004154
Chris Lattner77e77a62005-01-21 06:05:23 +00004155/// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
4156/// destination type is legal.
4157SDOperand SelectionDAGLegalize::
4158ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004159 assert(isTypeLegal(DestTy) && "Destination type is not legal!");
Chris Lattner77e77a62005-01-21 06:05:23 +00004160 assert(getTypeAction(Source.getValueType()) == Expand &&
4161 "This is not an expansion!");
4162 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
4163
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004164 if (!isSigned) {
Chris Lattnere9c35e72005-04-13 05:09:42 +00004165 assert(Source.getValueType() == MVT::i64 &&
4166 "This only works for 64-bit -> FP");
4167 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
4168 // incoming integer is set. To handle this, we dynamically test to see if
4169 // it is set, and, if so, add a fudge factor.
4170 SDOperand Lo, Hi;
4171 ExpandOp(Source, Lo, Hi);
4172
Chris Lattner66de05b2005-05-13 04:45:13 +00004173 // If this is unsigned, and not supported, first perform the conversion to
4174 // signed, then adjust the result if the sign bit is set.
4175 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
4176 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
4177
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004178 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
4179 DAG.getConstant(0, Hi.getValueType()),
4180 ISD::SETLT);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004181 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4182 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4183 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00004184 uint64_t FF = 0x5f800000ULL;
4185 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00004186 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004187
Chris Lattner5839bf22005-08-26 17:15:30 +00004188 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00004189 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4190 SDOperand FudgeInReg;
4191 if (DestTy == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00004192 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004193 else {
4194 assert(DestTy == MVT::f64 && "Unexpected conversion");
Chris Lattner5f056bf2005-07-10 01:55:33 +00004195 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Evan Cheng466685d2006-10-09 20:57:25 +00004196 CPIdx, NULL, 0, MVT::f32);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004197 }
Chris Lattner473a9902005-09-29 06:44:39 +00004198 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00004199 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004200
Chris Lattnera88a2602005-05-14 05:33:54 +00004201 // Check to see if the target has a custom way to lower this. If so, use it.
4202 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
4203 default: assert(0 && "This action not implemented for this operation!");
4204 case TargetLowering::Legal:
4205 case TargetLowering::Expand:
4206 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00004207 case TargetLowering::Custom: {
4208 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
4209 Source), DAG);
4210 if (NV.Val)
4211 return LegalizeOp(NV);
4212 break; // The target decided this was legal after all
4213 }
Chris Lattnera88a2602005-05-14 05:33:54 +00004214 }
4215
Chris Lattner13689e22005-05-12 07:00:44 +00004216 // Expand the source, then glue it back together for the call. We must expand
4217 // the source in case it is shared (this pass of legalize must traverse it).
4218 SDOperand SrcLo, SrcHi;
4219 ExpandOp(Source, SrcLo, SrcHi);
4220 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
4221
Evan Cheng56966222007-01-12 02:11:51 +00004222 RTLIB::Libcall LC;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004223 if (DestTy == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00004224 LC = RTLIB::SINTTOFP_I64_F32;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004225 else {
4226 assert(DestTy == MVT::f64 && "Unknown fp value type!");
Evan Cheng56966222007-01-12 02:11:51 +00004227 LC = RTLIB::SINTTOFP_I64_F64;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004228 }
Chris Lattner6831a812006-02-13 09:18:02 +00004229
4230 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
4231 SDOperand UnusedHiPart;
Evan Cheng56966222007-01-12 02:11:51 +00004232 return ExpandLibCall(TLI.getLibcallName(LC), Source.Val, isSigned,
4233 UnusedHiPart);
Chris Lattner77e77a62005-01-21 06:05:23 +00004234}
Misha Brukmanedf128a2005-04-21 22:36:52 +00004235
Chris Lattner22cde6a2006-01-28 08:25:58 +00004236/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
4237/// INT_TO_FP operation of the specified operand when the target requests that
4238/// we expand it. At this point, we know that the result and operand types are
4239/// legal for the target.
4240SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
4241 SDOperand Op0,
4242 MVT::ValueType DestVT) {
4243 if (Op0.getValueType() == MVT::i32) {
4244 // simple 32-bit [signed|unsigned] integer to float/double expansion
4245
Chris Lattner58092e32007-01-20 22:35:55 +00004246 // get the stack frame index of a 8 byte buffer, pessimistically aligned
Chris Lattner22cde6a2006-01-28 08:25:58 +00004247 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattner58092e32007-01-20 22:35:55 +00004248 const Type *F64Type = MVT::getTypeForValueType(MVT::f64);
4249 unsigned StackAlign =
4250 (unsigned)TLI.getTargetData()->getTypeAlignmentPref(F64Type);
4251 int SSFI = MF.getFrameInfo()->CreateStackObject(8, StackAlign);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004252 // get address of 8 byte buffer
4253 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4254 // word offset constant for Hi/Lo address computation
4255 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
4256 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00004257 SDOperand Hi = StackSlot;
4258 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
4259 if (TLI.isLittleEndian())
4260 std::swap(Hi, Lo);
4261
Chris Lattner22cde6a2006-01-28 08:25:58 +00004262 // if signed map to unsigned space
4263 SDOperand Op0Mapped;
4264 if (isSigned) {
4265 // constant used to invert sign bit (signed to unsigned mapping)
4266 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
4267 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
4268 } else {
4269 Op0Mapped = Op0;
4270 }
4271 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00004272 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004273 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004274 // initial hi portion of constructed double
4275 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
4276 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00004277 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004278 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00004279 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004280 // FP constant to bias correct the final result
4281 SDOperand Bias = DAG.getConstantFP(isSigned ?
4282 BitsToDouble(0x4330000080000000ULL)
4283 : BitsToDouble(0x4330000000000000ULL),
4284 MVT::f64);
4285 // subtract the bias
4286 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
4287 // final result
4288 SDOperand Result;
4289 // handle final rounding
4290 if (DestVT == MVT::f64) {
4291 // do nothing
4292 Result = Sub;
4293 } else {
4294 // if f32 then cast to f32
4295 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
4296 }
4297 return Result;
4298 }
4299 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
4300 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
4301
4302 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
4303 DAG.getConstant(0, Op0.getValueType()),
4304 ISD::SETLT);
4305 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4306 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4307 SignSet, Four, Zero);
4308
4309 // If the sign bit of the integer is set, the large number will be treated
4310 // as a negative number. To counteract this, the dynamic code adds an
4311 // offset depending on the data type.
4312 uint64_t FF;
4313 switch (Op0.getValueType()) {
4314 default: assert(0 && "Unsupported integer type!");
4315 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
4316 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
4317 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
4318 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
4319 }
4320 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00004321 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004322
4323 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
4324 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4325 SDOperand FudgeInReg;
4326 if (DestVT == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00004327 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004328 else {
4329 assert(DestVT == MVT::f64 && "Unexpected conversion");
4330 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
4331 DAG.getEntryNode(), CPIdx,
Evan Cheng466685d2006-10-09 20:57:25 +00004332 NULL, 0, MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00004333 }
4334
4335 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
4336}
4337
4338/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
4339/// *INT_TO_FP operation of the specified operand when the target requests that
4340/// we promote it. At this point, we know that the result and operand types are
4341/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
4342/// operation that takes a larger input.
4343SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
4344 MVT::ValueType DestVT,
4345 bool isSigned) {
4346 // First step, figure out the appropriate *INT_TO_FP operation to use.
4347 MVT::ValueType NewInTy = LegalOp.getValueType();
4348
4349 unsigned OpToUse = 0;
4350
4351 // Scan for the appropriate larger type to use.
4352 while (1) {
4353 NewInTy = (MVT::ValueType)(NewInTy+1);
4354 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
4355
4356 // If the target supports SINT_TO_FP of this type, use it.
4357 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
4358 default: break;
4359 case TargetLowering::Legal:
4360 if (!TLI.isTypeLegal(NewInTy))
4361 break; // Can't use this datatype.
4362 // FALL THROUGH.
4363 case TargetLowering::Custom:
4364 OpToUse = ISD::SINT_TO_FP;
4365 break;
4366 }
4367 if (OpToUse) break;
4368 if (isSigned) continue;
4369
4370 // If the target supports UINT_TO_FP of this type, use it.
4371 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
4372 default: break;
4373 case TargetLowering::Legal:
4374 if (!TLI.isTypeLegal(NewInTy))
4375 break; // Can't use this datatype.
4376 // FALL THROUGH.
4377 case TargetLowering::Custom:
4378 OpToUse = ISD::UINT_TO_FP;
4379 break;
4380 }
4381 if (OpToUse) break;
4382
4383 // Otherwise, try a larger type.
4384 }
4385
4386 // Okay, we found the operation and type to use. Zero extend our input to the
4387 // desired type then run the operation on it.
4388 return DAG.getNode(OpToUse, DestVT,
4389 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
4390 NewInTy, LegalOp));
4391}
4392
4393/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
4394/// FP_TO_*INT operation of the specified operand when the target requests that
4395/// we promote it. At this point, we know that the result and operand types are
4396/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
4397/// operation that returns a larger result.
4398SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
4399 MVT::ValueType DestVT,
4400 bool isSigned) {
4401 // First step, figure out the appropriate FP_TO*INT operation to use.
4402 MVT::ValueType NewOutTy = DestVT;
4403
4404 unsigned OpToUse = 0;
4405
4406 // Scan for the appropriate larger type to use.
4407 while (1) {
4408 NewOutTy = (MVT::ValueType)(NewOutTy+1);
4409 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
4410
4411 // If the target supports FP_TO_SINT returning this type, use it.
4412 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
4413 default: break;
4414 case TargetLowering::Legal:
4415 if (!TLI.isTypeLegal(NewOutTy))
4416 break; // Can't use this datatype.
4417 // FALL THROUGH.
4418 case TargetLowering::Custom:
4419 OpToUse = ISD::FP_TO_SINT;
4420 break;
4421 }
4422 if (OpToUse) break;
4423
4424 // If the target supports FP_TO_UINT of this type, use it.
4425 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
4426 default: break;
4427 case TargetLowering::Legal:
4428 if (!TLI.isTypeLegal(NewOutTy))
4429 break; // Can't use this datatype.
4430 // FALL THROUGH.
4431 case TargetLowering::Custom:
4432 OpToUse = ISD::FP_TO_UINT;
4433 break;
4434 }
4435 if (OpToUse) break;
4436
4437 // Otherwise, try a larger type.
4438 }
4439
4440 // Okay, we found the operation and type to use. Truncate the result of the
4441 // extended FP_TO_*INT operation to the desired size.
4442 return DAG.getNode(ISD::TRUNCATE, DestVT,
4443 DAG.getNode(OpToUse, NewOutTy, LegalOp));
4444}
4445
4446/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
4447///
4448SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
4449 MVT::ValueType VT = Op.getValueType();
4450 MVT::ValueType SHVT = TLI.getShiftAmountTy();
4451 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
4452 switch (VT) {
4453 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
4454 case MVT::i16:
4455 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4456 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4457 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
4458 case MVT::i32:
4459 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4460 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4461 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4462 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4463 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
4464 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
4465 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4466 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4467 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4468 case MVT::i64:
4469 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
4470 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
4471 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4472 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4473 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4474 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4475 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
4476 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
4477 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
4478 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
4479 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
4480 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
4481 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
4482 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
4483 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
4484 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
4485 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4486 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4487 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
4488 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4489 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
4490 }
4491}
4492
4493/// ExpandBitCount - Expand the specified bitcount instruction into operations.
4494///
4495SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
4496 switch (Opc) {
4497 default: assert(0 && "Cannot expand this yet!");
4498 case ISD::CTPOP: {
4499 static const uint64_t mask[6] = {
4500 0x5555555555555555ULL, 0x3333333333333333ULL,
4501 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
4502 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
4503 };
4504 MVT::ValueType VT = Op.getValueType();
4505 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4506 unsigned len = getSizeInBits(VT);
4507 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4508 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
4509 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
4510 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4511 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
4512 DAG.getNode(ISD::AND, VT,
4513 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
4514 }
4515 return Op;
4516 }
4517 case ISD::CTLZ: {
4518 // for now, we do this:
4519 // x = x | (x >> 1);
4520 // x = x | (x >> 2);
4521 // ...
4522 // x = x | (x >>16);
4523 // x = x | (x >>32); // for 64-bit input
4524 // return popcount(~x);
4525 //
4526 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
4527 MVT::ValueType VT = Op.getValueType();
4528 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4529 unsigned len = getSizeInBits(VT);
4530 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4531 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4532 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
4533 }
4534 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
4535 return DAG.getNode(ISD::CTPOP, VT, Op);
4536 }
4537 case ISD::CTTZ: {
4538 // for now, we use: { return popcount(~x & (x - 1)); }
4539 // unless the target has ctlz but not ctpop, in which case we use:
4540 // { return 32 - nlz(~x & (x-1)); }
4541 // see also http://www.hackersdelight.org/HDcode/ntz.cc
4542 MVT::ValueType VT = Op.getValueType();
4543 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
4544 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
4545 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
4546 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
4547 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
4548 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
4549 TLI.isOperationLegal(ISD::CTLZ, VT))
4550 return DAG.getNode(ISD::SUB, VT,
4551 DAG.getConstant(getSizeInBits(VT), VT),
4552 DAG.getNode(ISD::CTLZ, VT, Tmp3));
4553 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
4554 }
4555 }
4556}
Chris Lattnere34b3962005-01-19 04:19:40 +00004557
Chris Lattner3e928bb2005-01-07 07:47:09 +00004558/// ExpandOp - Expand the specified SDOperand into its two component pieces
4559/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
4560/// LegalizeNodes map is filled in for any results that are not expanded, the
4561/// ExpandedNodes map is filled in for any results that are expanded, and the
4562/// Lo/Hi values are returned.
4563void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
4564 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00004565 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004566 SDNode *Node = Op.Val;
4567 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004568 assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
4569 VT == MVT::Vector) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00004570 "Cannot expand to FP value or to larger int value!");
4571
Chris Lattner6fdcb252005-09-02 20:32:45 +00004572 // See if we already expanded it.
4573 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4574 = ExpandedNodes.find(Op);
4575 if (I != ExpandedNodes.end()) {
4576 Lo = I->second.first;
4577 Hi = I->second.second;
4578 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004579 }
4580
Chris Lattner3e928bb2005-01-07 07:47:09 +00004581 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004582 case ISD::CopyFromReg:
4583 assert(0 && "CopyFromReg must be legal!");
4584 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004585#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +00004586 cerr << "NODE: "; Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004587#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00004588 assert(0 && "Do not know how to expand this operator!");
4589 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004590 case ISD::UNDEF:
Evan Chengaa975c12006-12-16 02:20:50 +00004591 NVT = TLI.getTypeToExpandTo(VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004592 Lo = DAG.getNode(ISD::UNDEF, NVT);
4593 Hi = DAG.getNode(ISD::UNDEF, NVT);
4594 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004595 case ISD::Constant: {
4596 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
4597 Lo = DAG.getConstant(Cst, NVT);
4598 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
4599 break;
4600 }
Evan Cheng00495212006-12-12 21:32:44 +00004601 case ISD::ConstantFP: {
4602 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Evan Cheng279101e2006-12-12 22:19:28 +00004603 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00004604 if (getTypeAction(Lo.getValueType()) == Expand)
4605 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00004606 break;
4607 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004608 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00004609 // Return the operands.
4610 Lo = Node->getOperand(0);
4611 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004612 break;
Chris Lattner58f79632005-12-12 22:27:43 +00004613
4614 case ISD::SIGN_EXTEND_INREG:
4615 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00004616 // sext_inreg the low part if needed.
4617 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
4618
4619 // The high part gets the sign extension from the lo-part. This handles
4620 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00004621 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4622 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
4623 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00004624 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004625
Nate Begemand88fc032006-01-14 03:14:10 +00004626 case ISD::BSWAP: {
4627 ExpandOp(Node->getOperand(0), Lo, Hi);
4628 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
4629 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
4630 Lo = TempLo;
4631 break;
4632 }
4633
Chris Lattneredb1add2005-05-11 04:51:16 +00004634 case ISD::CTPOP:
4635 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00004636 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
4637 DAG.getNode(ISD::CTPOP, NVT, Lo),
4638 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00004639 Hi = DAG.getConstant(0, NVT);
4640 break;
4641
Chris Lattner39a8f332005-05-12 19:05:01 +00004642 case ISD::CTLZ: {
4643 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00004644 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00004645 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4646 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004647 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
4648 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00004649 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
4650 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
4651
4652 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
4653 Hi = DAG.getConstant(0, NVT);
4654 break;
4655 }
4656
4657 case ISD::CTTZ: {
4658 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00004659 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00004660 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4661 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004662 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
4663 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00004664 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
4665 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
4666
4667 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
4668 Hi = DAG.getConstant(0, NVT);
4669 break;
4670 }
Chris Lattneredb1add2005-05-11 04:51:16 +00004671
Nate Begemanacc398c2006-01-25 18:21:52 +00004672 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004673 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4674 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00004675 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
4676 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
4677
4678 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004679 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00004680 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
4681 if (!TLI.isLittleEndian())
4682 std::swap(Lo, Hi);
4683 break;
4684 }
4685
Chris Lattner3e928bb2005-01-07 07:47:09 +00004686 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00004687 LoadSDNode *LD = cast<LoadSDNode>(Node);
4688 SDOperand Ch = LD->getChain(); // Legalize the chain.
4689 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
4690 ISD::LoadExtType ExtType = LD->getExtensionType();
Chris Lattner3e928bb2005-01-07 07:47:09 +00004691
Evan Cheng466685d2006-10-09 20:57:25 +00004692 if (ExtType == ISD::NON_EXTLOAD) {
Chris Lattnerfea997a2007-02-01 04:55:59 +00004693 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),LD->getSrcValueOffset());
Evan Cheng00495212006-12-12 21:32:44 +00004694 if (VT == MVT::f32 || VT == MVT::f64) {
4695 // f32->i32 or f64->i64 one to one expansion.
4696 // Remember that we legalized the chain.
4697 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00004698 // Recursively expand the new load.
4699 if (getTypeAction(NVT) == Expand)
4700 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00004701 break;
4702 }
Chris Lattnerec39a452005-01-19 18:02:17 +00004703
Evan Cheng466685d2006-10-09 20:57:25 +00004704 // Increment the pointer to the other half.
4705 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
4706 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4707 getIntPtrConstant(IncrementSize));
4708 // FIXME: This creates a bogus srcvalue!
Chris Lattnerfea997a2007-02-01 04:55:59 +00004709 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),LD->getSrcValueOffset());
Misha Brukmanedf128a2005-04-21 22:36:52 +00004710
Evan Cheng466685d2006-10-09 20:57:25 +00004711 // Build a factor node to remember that this load is independent of the
4712 // other one.
4713 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4714 Hi.getValue(1));
4715
4716 // Remember that we legalized the chain.
4717 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
4718 if (!TLI.isLittleEndian())
4719 std::swap(Lo, Hi);
4720 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00004721 MVT::ValueType EVT = LD->getLoadedVT();
Evan Cheng548f6112006-12-13 03:19:57 +00004722
4723 if (VT == MVT::f64 && EVT == MVT::f32) {
4724 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
4725 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
4726 LD->getSrcValueOffset());
4727 // Remember that we legalized the chain.
4728 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
4729 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
4730 break;
4731 }
Evan Cheng466685d2006-10-09 20:57:25 +00004732
4733 if (EVT == NVT)
4734 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
4735 LD->getSrcValueOffset());
4736 else
4737 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
4738 LD->getSrcValueOffset(), EVT);
4739
4740 // Remember that we legalized the chain.
4741 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
4742
4743 if (ExtType == ISD::SEXTLOAD) {
4744 // The high part is obtained by SRA'ing all but one of the bits of the
4745 // lo part.
4746 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
4747 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4748 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
4749 } else if (ExtType == ISD::ZEXTLOAD) {
4750 // The high part is just a zero.
4751 Hi = DAG.getConstant(0, NVT);
4752 } else /* if (ExtType == ISD::EXTLOAD) */ {
4753 // The high part is undefined.
4754 Hi = DAG.getNode(ISD::UNDEF, NVT);
4755 }
4756 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004757 break;
4758 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004759 case ISD::AND:
4760 case ISD::OR:
4761 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
4762 SDOperand LL, LH, RL, RH;
4763 ExpandOp(Node->getOperand(0), LL, LH);
4764 ExpandOp(Node->getOperand(1), RL, RH);
4765 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
4766 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
4767 break;
4768 }
4769 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00004770 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004771 ExpandOp(Node->getOperand(1), LL, LH);
4772 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00004773 if (getTypeAction(NVT) == Expand)
4774 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004775 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00004776 if (VT != MVT::f32)
4777 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004778 break;
4779 }
Nate Begeman9373a812005-08-10 20:51:12 +00004780 case ISD::SELECT_CC: {
4781 SDOperand TL, TH, FL, FH;
4782 ExpandOp(Node->getOperand(2), TL, TH);
4783 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00004784 if (getTypeAction(NVT) == Expand)
4785 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00004786 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4787 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00004788 if (VT != MVT::f32)
4789 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4790 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004791 break;
4792 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00004793 case ISD::ANY_EXTEND:
4794 // The low part is any extension of the input (which degenerates to a copy).
4795 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
4796 // The high part is undefined.
4797 Hi = DAG.getNode(ISD::UNDEF, NVT);
4798 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004799 case ISD::SIGN_EXTEND: {
4800 // The low part is just a sign extension of the input (which degenerates to
4801 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00004802 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004803
Chris Lattner3e928bb2005-01-07 07:47:09 +00004804 // The high part is obtained by SRA'ing all but one of the bits of the lo
4805 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00004806 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00004807 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4808 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00004809 break;
4810 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00004811 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00004812 // The low part is just a zero extension of the input (which degenerates to
4813 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00004814 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004815
Chris Lattner3e928bb2005-01-07 07:47:09 +00004816 // The high part is just a zero.
4817 Hi = DAG.getConstant(0, NVT);
4818 break;
Chris Lattner35481892005-12-23 00:16:34 +00004819
4820 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00004821 SDOperand Tmp;
4822 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
4823 // If the target wants to, allow it to lower this itself.
4824 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4825 case Expand: assert(0 && "cannot expand FP!");
4826 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
4827 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
4828 }
4829 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
4830 }
4831
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004832 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00004833 if (VT == MVT::f32 || VT == MVT::f64) {
4834 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00004835 if (getTypeAction(NVT) == Expand)
4836 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00004837 break;
4838 }
4839
4840 // If source operand will be expanded to the same type as VT, i.e.
4841 // i64 <- f64, i32 <- f32, expand the source operand instead.
4842 MVT::ValueType VT0 = Node->getOperand(0).getValueType();
4843 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
4844 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004845 break;
4846 }
4847
Chris Lattnerf3f333d2006-09-09 00:20:27 +00004848 // Turn this into a load/store pair by default.
4849 if (Tmp.Val == 0)
Evan Cheng13acce32006-12-11 19:27:14 +00004850 Tmp = ExpandBIT_CONVERT(VT, Node->getOperand(0));
Chris Lattnerf3f333d2006-09-09 00:20:27 +00004851
Chris Lattner35481892005-12-23 00:16:34 +00004852 ExpandOp(Tmp, Lo, Hi);
4853 break;
4854 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00004855
Chris Lattner8137c9e2006-01-28 05:07:51 +00004856 case ISD::READCYCLECOUNTER:
Chris Lattner308575b2005-11-20 22:56:56 +00004857 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
4858 TargetLowering::Custom &&
4859 "Must custom expand ReadCycleCounter");
Chris Lattner8137c9e2006-01-28 05:07:51 +00004860 Lo = TLI.LowerOperation(Op, DAG);
4861 assert(Lo.Val && "Node must be custom expanded!");
4862 Hi = Lo.getValue(1);
Chris Lattner308575b2005-11-20 22:56:56 +00004863 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004864 LegalizeOp(Lo.getValue(2)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00004865 break;
4866
Chris Lattner4e6c7462005-01-08 19:27:05 +00004867 // These operators cannot be expanded directly, emit them as calls to
4868 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00004869 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00004870 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00004871 SDOperand Op;
4872 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4873 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00004874 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4875 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00004876 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004877
Chris Lattnerf20d1832005-07-30 01:40:57 +00004878 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
4879
Chris Lattner80a3e942005-07-29 00:33:32 +00004880 // Now that the custom expander is done, expand the result, which is still
4881 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00004882 if (Op.Val) {
4883 ExpandOp(Op, Lo, Hi);
4884 break;
4885 }
Chris Lattner80a3e942005-07-29 00:33:32 +00004886 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004887
Evan Cheng56966222007-01-12 02:11:51 +00004888 RTLIB::Libcall LC;
Chris Lattner4e6c7462005-01-08 19:27:05 +00004889 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00004890 LC = RTLIB::FPTOSINT_F32_I64;
Chris Lattner4e6c7462005-01-08 19:27:05 +00004891 else
Evan Cheng56966222007-01-12 02:11:51 +00004892 LC = RTLIB::FPTOSINT_F64_I64;
4893 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
4894 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004895 break;
Evan Cheng56966222007-01-12 02:11:51 +00004896 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004897
Evan Cheng56966222007-01-12 02:11:51 +00004898 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00004899 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004900 SDOperand Op;
4901 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4902 case Expand: assert(0 && "cannot expand FP!");
4903 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4904 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
4905 }
4906
4907 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
4908
4909 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00004910 if (Op.Val) {
4911 ExpandOp(Op, Lo, Hi);
4912 break;
4913 }
Chris Lattner80a3e942005-07-29 00:33:32 +00004914 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004915
Evan Cheng56966222007-01-12 02:11:51 +00004916 RTLIB::Libcall LC;
Chris Lattner4e6c7462005-01-08 19:27:05 +00004917 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00004918 LC = RTLIB::FPTOUINT_F32_I64;
Chris Lattner4e6c7462005-01-08 19:27:05 +00004919 else
Evan Cheng56966222007-01-12 02:11:51 +00004920 LC = RTLIB::FPTOUINT_F64_I64;
4921 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
4922 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004923 break;
Evan Cheng56966222007-01-12 02:11:51 +00004924 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00004925
Evan Cheng05a2d562006-01-09 18:31:59 +00004926 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004927 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004928 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004929 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004930 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004931 Op = TLI.LowerOperation(Op, DAG);
4932 if (Op.Val) {
4933 // Now that the custom expander is done, expand the result, which is
4934 // still VT.
4935 ExpandOp(Op, Lo, Hi);
4936 break;
4937 }
4938 }
4939
Chris Lattner79980b02006-09-13 03:50:39 +00004940 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
4941 // this X << 1 as X+X.
4942 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
4943 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
4944 TLI.isOperationLegal(ISD::ADDE, NVT)) {
4945 SDOperand LoOps[2], HiOps[3];
4946 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
4947 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
4948 LoOps[1] = LoOps[0];
4949 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
4950
4951 HiOps[1] = HiOps[0];
4952 HiOps[2] = Lo.getValue(1);
4953 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
4954 break;
4955 }
4956 }
4957
Chris Lattnere34b3962005-01-19 04:19:40 +00004958 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004959 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004960 break;
Chris Lattner47599822005-04-02 03:38:53 +00004961
4962 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004963 TargetLowering::LegalizeAction Action =
4964 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
4965 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4966 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004967 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004968 break;
4969 }
4970
Chris Lattnere34b3962005-01-19 04:19:40 +00004971 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00004972 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SHL_I64), Node,
4973 false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004974 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004975 }
Chris Lattnere34b3962005-01-19 04:19:40 +00004976
Evan Cheng05a2d562006-01-09 18:31:59 +00004977 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004978 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004979 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004980 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004981 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004982 Op = TLI.LowerOperation(Op, DAG);
4983 if (Op.Val) {
4984 // Now that the custom expander is done, expand the result, which is
4985 // still VT.
4986 ExpandOp(Op, Lo, Hi);
4987 break;
4988 }
4989 }
4990
Chris Lattnere34b3962005-01-19 04:19:40 +00004991 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004992 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004993 break;
Chris Lattner47599822005-04-02 03:38:53 +00004994
4995 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004996 TargetLowering::LegalizeAction Action =
4997 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
4998 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4999 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005000 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005001 break;
5002 }
5003
Chris Lattnere34b3962005-01-19 04:19:40 +00005004 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005005 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRA_I64), Node,
5006 true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005007 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005008 }
5009
5010 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005011 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005012 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005013 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005014 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005015 Op = TLI.LowerOperation(Op, DAG);
5016 if (Op.Val) {
5017 // Now that the custom expander is done, expand the result, which is
5018 // still VT.
5019 ExpandOp(Op, Lo, Hi);
5020 break;
5021 }
5022 }
5023
Chris Lattnere34b3962005-01-19 04:19:40 +00005024 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005025 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005026 break;
Chris Lattner47599822005-04-02 03:38:53 +00005027
5028 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005029 TargetLowering::LegalizeAction Action =
5030 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
5031 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5032 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005033 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005034 break;
5035 }
5036
Chris Lattnere34b3962005-01-19 04:19:40 +00005037 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005038 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRL_I64), Node,
5039 false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005040 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005041 }
Chris Lattnere34b3962005-01-19 04:19:40 +00005042
Misha Brukmanedf128a2005-04-21 22:36:52 +00005043 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005044 case ISD::SUB: {
5045 // If the target wants to custom expand this, let them.
5046 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
5047 TargetLowering::Custom) {
5048 Op = TLI.LowerOperation(Op, DAG);
5049 if (Op.Val) {
5050 ExpandOp(Op, Lo, Hi);
5051 break;
5052 }
5053 }
5054
5055 // Expand the subcomponents.
5056 SDOperand LHSL, LHSH, RHSL, RHSH;
5057 ExpandOp(Node->getOperand(0), LHSL, LHSH);
5058 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00005059 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
5060 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005061 LoOps[0] = LHSL;
5062 LoOps[1] = RHSL;
5063 HiOps[0] = LHSH;
5064 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00005065 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00005066 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005067 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00005068 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00005069 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00005070 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005071 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00005072 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00005073 }
Chris Lattner84f67882005-01-20 18:52:28 +00005074 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00005075 }
Nate Begemanc7c16572005-04-11 03:01:51 +00005076 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00005077 // If the target wants to custom expand this, let them.
5078 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00005079 SDOperand New = TLI.LowerOperation(Op, DAG);
5080 if (New.Val) {
5081 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00005082 break;
5083 }
5084 }
5085
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005086 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
5087 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005088 if (HasMULHS || HasMULHU) {
Nate Begemanc7c16572005-04-11 03:01:51 +00005089 SDOperand LL, LH, RL, RH;
5090 ExpandOp(Node->getOperand(0), LL, LH);
5091 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman56eb8682005-08-30 02:44:00 +00005092 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
Nate Begeman2cbba892006-12-11 02:23:46 +00005093 // FIXME: Move this to the dag combiner.
Nate Begeman56eb8682005-08-30 02:44:00 +00005094 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
5095 // extended the sign bit of the low half through the upper half, and if so
5096 // emit a MULHS instead of the alternate sequence that is valid for any
5097 // i64 x i64 multiply.
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005098 if (HasMULHS &&
Nate Begeman56eb8682005-08-30 02:44:00 +00005099 // is RH an extension of the sign bit of RL?
5100 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
5101 RH.getOperand(1).getOpcode() == ISD::Constant &&
5102 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
5103 // is LH an extension of the sign bit of LL?
5104 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
5105 LH.getOperand(1).getOpcode() == ISD::Constant &&
5106 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
Chris Lattnera89654b2006-09-16 00:21:44 +00005107 // Low part:
5108 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
5109 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00005110 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
Chris Lattnera89654b2006-09-16 00:21:44 +00005111 break;
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005112 } else if (HasMULHU) {
Chris Lattnera89654b2006-09-16 00:21:44 +00005113 // Low part:
5114 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
5115
5116 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00005117 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
5118 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
5119 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
5120 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
5121 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00005122 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00005123 }
Nate Begemanc7c16572005-04-11 03:01:51 +00005124 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005125
Evan Cheng56966222007-01-12 02:11:51 +00005126 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::MUL_I64), Node,
5127 false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00005128 break;
5129 }
Evan Cheng56966222007-01-12 02:11:51 +00005130 case ISD::SDIV:
5131 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SDIV_I64), Node, true, Hi);
5132 break;
5133 case ISD::UDIV:
5134 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UDIV_I64), Node, true, Hi);
5135 break;
5136 case ISD::SREM:
5137 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SREM_I64), Node, true, Hi);
5138 break;
5139 case ISD::UREM:
5140 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UREM_I64), Node, true, Hi);
5141 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00005142
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005143 case ISD::FADD:
Evan Cheng56966222007-01-12 02:11:51 +00005144 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5145 ? RTLIB::ADD_F32 : RTLIB::ADD_F64),
5146 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005147 break;
5148 case ISD::FSUB:
Evan Cheng56966222007-01-12 02:11:51 +00005149 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5150 ? RTLIB::SUB_F32 : RTLIB::SUB_F64),
5151 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005152 break;
5153 case ISD::FMUL:
Evan Cheng56966222007-01-12 02:11:51 +00005154 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5155 ? RTLIB::MUL_F32 : RTLIB::MUL_F64),
5156 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005157 break;
5158 case ISD::FDIV:
Evan Cheng56966222007-01-12 02:11:51 +00005159 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5160 ? RTLIB::DIV_F32 : RTLIB::DIV_F64),
5161 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005162 break;
5163 case ISD::FP_EXTEND:
Evan Cheng56966222007-01-12 02:11:51 +00005164 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPEXT_F32_F64), Node, true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005165 break;
5166 case ISD::FP_ROUND:
Evan Cheng56966222007-01-12 02:11:51 +00005167 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPROUND_F64_F32),Node,true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005168 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00005169 case ISD::FSQRT:
5170 case ISD::FSIN:
5171 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00005172 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00005173 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00005174 case ISD::FSQRT:
5175 LC = (VT == MVT::f32) ? RTLIB::SQRT_F32 : RTLIB::SQRT_F64;
5176 break;
5177 case ISD::FSIN:
5178 LC = (VT == MVT::f32) ? RTLIB::SIN_F32 : RTLIB::SIN_F64;
5179 break;
5180 case ISD::FCOS:
5181 LC = (VT == MVT::f32) ? RTLIB::COS_F32 : RTLIB::COS_F64;
5182 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00005183 default: assert(0 && "Unreachable!");
5184 }
Evan Cheng56966222007-01-12 02:11:51 +00005185 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00005186 break;
5187 }
Evan Cheng966bf242006-12-16 00:52:40 +00005188 case ISD::FABS: {
5189 SDOperand Mask = (VT == MVT::f64)
5190 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
5191 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
5192 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
5193 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
5194 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
5195 if (getTypeAction(NVT) == Expand)
5196 ExpandOp(Lo, Lo, Hi);
5197 break;
5198 }
5199 case ISD::FNEG: {
5200 SDOperand Mask = (VT == MVT::f64)
5201 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
5202 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
5203 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
5204 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
5205 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
5206 if (getTypeAction(NVT) == Expand)
5207 ExpandOp(Lo, Lo, Hi);
5208 break;
5209 }
Evan Cheng912095b2007-01-04 21:56:39 +00005210 case ISD::FCOPYSIGN: {
5211 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
5212 if (getTypeAction(NVT) == Expand)
5213 ExpandOp(Lo, Lo, Hi);
5214 break;
5215 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00005216 case ISD::SINT_TO_FP:
5217 case ISD::UINT_TO_FP: {
5218 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
5219 MVT::ValueType SrcVT = Node->getOperand(0).getValueType();
Evan Cheng56966222007-01-12 02:11:51 +00005220 RTLIB::Libcall LC;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005221 if (Node->getOperand(0).getValueType() == MVT::i64) {
5222 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005223 LC = isSigned ? RTLIB::SINTTOFP_I64_F32 : RTLIB::UINTTOFP_I64_F32;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005224 else
Evan Cheng56966222007-01-12 02:11:51 +00005225 LC = isSigned ? RTLIB::SINTTOFP_I64_F64 : RTLIB::UINTTOFP_I64_F64;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005226 } else {
5227 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005228 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005229 else
Evan Cheng56966222007-01-12 02:11:51 +00005230 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005231 }
5232
5233 // Promote the operand if needed.
5234 if (getTypeAction(SrcVT) == Promote) {
5235 SDOperand Tmp = PromoteOp(Node->getOperand(0));
5236 Tmp = isSigned
5237 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
5238 DAG.getValueType(SrcVT))
5239 : DAG.getZeroExtendInReg(Tmp, SrcVT);
5240 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
5241 }
Evan Cheng56966222007-01-12 02:11:51 +00005242 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00005243 break;
5244 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00005245 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005246
Chris Lattner83397362005-12-21 18:02:52 +00005247 // Make sure the resultant values have been legalized themselves, unless this
5248 // is a type that requires multi-step expansion.
5249 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
5250 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00005251 if (Hi.Val)
5252 // Don't legalize the high part if it is expanded to a single node.
5253 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00005254 }
Evan Cheng05a2d562006-01-09 18:31:59 +00005255
5256 // Remember in a map if the values will be reused later.
5257 bool isNew =
5258 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
5259 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005260}
5261
Chris Lattnerc7029802006-03-18 01:44:44 +00005262/// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
5263/// two smaller values of MVT::Vector type.
5264void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
5265 SDOperand &Hi) {
5266 assert(Op.getValueType() == MVT::Vector && "Cannot split non-vector type!");
5267 SDNode *Node = Op.Val;
5268 unsigned NumElements = cast<ConstantSDNode>(*(Node->op_end()-2))->getValue();
5269 assert(NumElements > 1 && "Cannot split a single element vector!");
5270 unsigned NewNumElts = NumElements/2;
5271 SDOperand NewNumEltsNode = DAG.getConstant(NewNumElts, MVT::i32);
5272 SDOperand TypeNode = *(Node->op_end()-1);
5273
5274 // See if we already split it.
5275 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
5276 = SplitNodes.find(Op);
5277 if (I != SplitNodes.end()) {
5278 Lo = I->second.first;
5279 Hi = I->second.second;
5280 return;
5281 }
5282
5283 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005284 default:
5285#ifndef NDEBUG
5286 Node->dump();
5287#endif
5288 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerb2827b02006-03-19 00:52:58 +00005289 case ISD::VBUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005290 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
5291 Node->op_begin()+NewNumElts);
Chris Lattnerc7029802006-03-18 01:44:44 +00005292 LoOps.push_back(NewNumEltsNode);
5293 LoOps.push_back(TypeNode);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005294 Lo = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00005295
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005296 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts,
5297 Node->op_end()-2);
Chris Lattnerc7029802006-03-18 01:44:44 +00005298 HiOps.push_back(NewNumEltsNode);
5299 HiOps.push_back(TypeNode);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005300 Hi = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00005301 break;
5302 }
5303 case ISD::VADD:
5304 case ISD::VSUB:
5305 case ISD::VMUL:
5306 case ISD::VSDIV:
5307 case ISD::VUDIV:
5308 case ISD::VAND:
5309 case ISD::VOR:
5310 case ISD::VXOR: {
5311 SDOperand LL, LH, RL, RH;
5312 SplitVectorOp(Node->getOperand(0), LL, LH);
5313 SplitVectorOp(Node->getOperand(1), RL, RH);
5314
5315 Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, LL, RL,
5316 NewNumEltsNode, TypeNode);
5317 Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, LH, RH,
5318 NewNumEltsNode, TypeNode);
5319 break;
5320 }
5321 case ISD::VLOAD: {
5322 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5323 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
5324 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
5325
5326 Lo = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
5327 unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(EVT)/8;
5328 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
5329 getIntPtrConstant(IncrementSize));
5330 // FIXME: This creates a bogus srcvalue!
5331 Hi = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
5332
5333 // Build a factor node to remember that this load is independent of the
5334 // other one.
5335 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5336 Hi.getValue(1));
5337
5338 // Remember that we legalized the chain.
5339 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00005340 break;
5341 }
Chris Lattner7692eb42006-03-23 21:16:34 +00005342 case ISD::VBIT_CONVERT: {
5343 // We know the result is a vector. The input may be either a vector or a
5344 // scalar value.
5345 if (Op.getOperand(0).getValueType() != MVT::Vector) {
5346 // Lower to a store/load. FIXME: this could be improved probably.
5347 SDOperand Ptr = CreateStackTemporary(Op.getOperand(0).getValueType());
5348
Evan Cheng786225a2006-10-05 23:01:46 +00005349 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005350 Op.getOperand(0), Ptr, NULL, 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00005351 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
5352 St = DAG.getVecLoad(NumElements, EVT, St, Ptr, DAG.getSrcValue(0));
5353 SplitVectorOp(St, Lo, Hi);
5354 } else {
5355 // If the input is a vector type, we have to either scalarize it, pack it
5356 // or convert it based on whether the input vector type is legal.
5357 SDNode *InVal = Node->getOperand(0).Val;
5358 unsigned NumElems =
5359 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5360 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5361
5362 // If the input is from a single element vector, scalarize the vector,
5363 // then treat like a scalar.
5364 if (NumElems == 1) {
5365 SDOperand Scalar = PackVectorOp(Op.getOperand(0), EVT);
5366 Scalar = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Scalar,
5367 Op.getOperand(1), Op.getOperand(2));
5368 SplitVectorOp(Scalar, Lo, Hi);
5369 } else {
5370 // Split the input vector.
5371 SplitVectorOp(Op.getOperand(0), Lo, Hi);
5372
5373 // Convert each of the pieces now.
5374 Lo = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Lo,
5375 NewNumEltsNode, TypeNode);
5376 Hi = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Hi,
5377 NewNumEltsNode, TypeNode);
5378 }
5379 break;
5380 }
5381 }
Chris Lattnerc7029802006-03-18 01:44:44 +00005382 }
5383
5384 // Remember in a map if the values will be reused later.
5385 bool isNew =
5386 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
5387 assert(isNew && "Value already expanded?!?");
5388}
5389
5390
5391/// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
5392/// equivalent operation that returns a scalar (e.g. F32) or packed value
5393/// (e.g. MVT::V4F32). When this is called, we know that PackedVT is the right
5394/// type for the result.
5395SDOperand SelectionDAGLegalize::PackVectorOp(SDOperand Op,
5396 MVT::ValueType NewVT) {
5397 assert(Op.getValueType() == MVT::Vector && "Bad PackVectorOp invocation!");
5398 SDNode *Node = Op.Val;
5399
5400 // See if we already packed it.
5401 std::map<SDOperand, SDOperand>::iterator I = PackedNodes.find(Op);
5402 if (I != PackedNodes.end()) return I->second;
5403
5404 SDOperand Result;
5405 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00005406 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005407#ifndef NDEBUG
Bill Wendling832171c2006-12-07 20:04:42 +00005408 Node->dump(); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005409#endif
Chris Lattner2332b9f2006-03-19 01:17:20 +00005410 assert(0 && "Unknown vector operation in PackVectorOp!");
Chris Lattnerc7029802006-03-18 01:44:44 +00005411 case ISD::VADD:
5412 case ISD::VSUB:
5413 case ISD::VMUL:
5414 case ISD::VSDIV:
5415 case ISD::VUDIV:
5416 case ISD::VAND:
5417 case ISD::VOR:
5418 case ISD::VXOR:
5419 Result = DAG.getNode(getScalarizedOpcode(Node->getOpcode(), NewVT),
5420 NewVT,
5421 PackVectorOp(Node->getOperand(0), NewVT),
5422 PackVectorOp(Node->getOperand(1), NewVT));
5423 break;
5424 case ISD::VLOAD: {
Chris Lattner4794a6b2006-03-19 00:07:49 +00005425 SDOperand Ch = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
5426 SDOperand Ptr = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00005427
Evan Cheng466685d2006-10-09 20:57:25 +00005428 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
5429 Result = DAG.getLoad(NewVT, Ch, Ptr, SV->getValue(), SV->getOffset());
Chris Lattnerc7029802006-03-18 01:44:44 +00005430
5431 // Remember that we legalized the chain.
5432 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
5433 break;
5434 }
Chris Lattnerb2827b02006-03-19 00:52:58 +00005435 case ISD::VBUILD_VECTOR:
Chris Lattner70c2a612006-03-31 02:06:56 +00005436 if (Node->getOperand(0).getValueType() == NewVT) {
Chris Lattnerb2827b02006-03-19 00:52:58 +00005437 // Returning a scalar?
Chris Lattnerc7029802006-03-18 01:44:44 +00005438 Result = Node->getOperand(0);
5439 } else {
Chris Lattnerb2827b02006-03-19 00:52:58 +00005440 // Returning a BUILD_VECTOR?
Chris Lattner17614ea2006-04-08 05:34:25 +00005441
5442 // If all elements of the build_vector are undefs, return an undef.
5443 bool AllUndef = true;
5444 for (unsigned i = 0, e = Node->getNumOperands()-2; i != e; ++i)
5445 if (Node->getOperand(i).getOpcode() != ISD::UNDEF) {
5446 AllUndef = false;
5447 break;
5448 }
5449 if (AllUndef) {
5450 Result = DAG.getNode(ISD::UNDEF, NewVT);
5451 } else {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005452 Result = DAG.getNode(ISD::BUILD_VECTOR, NewVT, Node->op_begin(),
5453 Node->getNumOperands()-2);
Chris Lattner17614ea2006-04-08 05:34:25 +00005454 }
Chris Lattnerc7029802006-03-18 01:44:44 +00005455 }
5456 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00005457 case ISD::VINSERT_VECTOR_ELT:
5458 if (!MVT::isVector(NewVT)) {
5459 // Returning a scalar? Must be the inserted element.
5460 Result = Node->getOperand(1);
5461 } else {
5462 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT,
5463 PackVectorOp(Node->getOperand(0), NewVT),
5464 Node->getOperand(1), Node->getOperand(2));
5465 }
5466 break;
Chris Lattner5b2316e2006-03-28 20:24:43 +00005467 case ISD::VVECTOR_SHUFFLE:
5468 if (!MVT::isVector(NewVT)) {
5469 // Returning a scalar? Figure out if it is the LHS or RHS and return it.
5470 SDOperand EltNum = Node->getOperand(2).getOperand(0);
5471 if (cast<ConstantSDNode>(EltNum)->getValue())
5472 Result = PackVectorOp(Node->getOperand(1), NewVT);
5473 else
5474 Result = PackVectorOp(Node->getOperand(0), NewVT);
5475 } else {
5476 // Otherwise, return a VECTOR_SHUFFLE node. First convert the index
5477 // vector from a VBUILD_VECTOR to a BUILD_VECTOR.
5478 std::vector<SDOperand> BuildVecIdx(Node->getOperand(2).Val->op_begin(),
5479 Node->getOperand(2).Val->op_end()-2);
5480 MVT::ValueType BVT = MVT::getIntVectorWithNumElements(BuildVecIdx.size());
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005481 SDOperand BV = DAG.getNode(ISD::BUILD_VECTOR, BVT,
5482 Node->getOperand(2).Val->op_begin(),
5483 Node->getOperand(2).Val->getNumOperands()-2);
Chris Lattner5b2316e2006-03-28 20:24:43 +00005484
5485 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT,
5486 PackVectorOp(Node->getOperand(0), NewVT),
5487 PackVectorOp(Node->getOperand(1), NewVT), BV);
5488 }
5489 break;
Chris Lattnere25ca692006-03-22 20:09:35 +00005490 case ISD::VBIT_CONVERT:
5491 if (Op.getOperand(0).getValueType() != MVT::Vector)
5492 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
5493 else {
5494 // If the input is a vector type, we have to either scalarize it, pack it
5495 // or convert it based on whether the input vector type is legal.
5496 SDNode *InVal = Node->getOperand(0).Val;
5497 unsigned NumElems =
5498 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
5499 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
5500
5501 // Figure out if there is a Packed type corresponding to this Vector
5502 // type. If so, convert to the packed type.
5503 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
5504 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
5505 // Turn this into a bit convert of the packed input.
5506 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5507 PackVectorOp(Node->getOperand(0), TVT));
5508 break;
5509 } else if (NumElems == 1) {
5510 // Turn this into a bit convert of the scalar input.
5511 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
5512 PackVectorOp(Node->getOperand(0), EVT));
5513 break;
5514 } else {
5515 // FIXME: UNIMP!
5516 assert(0 && "Cast from unsupported vector type not implemented yet!");
5517 }
5518 }
Evan Chengdb3c6262006-04-10 18:54:36 +00005519 break;
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005520 case ISD::VSELECT:
5521 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
5522 PackVectorOp(Op.getOperand(1), NewVT),
5523 PackVectorOp(Op.getOperand(2), NewVT));
5524 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00005525 }
5526
5527 if (TLI.isTypeLegal(NewVT))
5528 Result = LegalizeOp(Result);
5529 bool isNew = PackedNodes.insert(std::make_pair(Op, Result)).second;
5530 assert(isNew && "Value already packed?");
5531 return Result;
5532}
5533
Chris Lattner3e928bb2005-01-07 07:47:09 +00005534
5535// SelectionDAG::Legalize - This is the entry point for the file.
5536//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005537void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00005538 if (ViewLegalizeDAGs) viewGraph();
5539
Chris Lattner3e928bb2005-01-07 07:47:09 +00005540 /// run - This is the main entry point to this class.
5541 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00005542 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005543}
5544