blob: c7803caa8391ab20246f453fc12c9220d4450ee5 [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"
Evan Cheng61bbbab2007-08-16 23:50:06 +000018#include "llvm/Target/TargetFrameInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000019#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000020#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000021#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000022#include "llvm/Target/TargetOptions.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000023#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000024#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000025#include "llvm/DerivedTypes.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000026#include "llvm/Support/MathExtras.h"
27#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000028#include "llvm/Support/Compiler.h"
Chris Lattner79715142007-02-03 01:12:36 +000029#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000030#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000031#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng033e6812006-03-24 01:17:21 +000032#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000033using namespace llvm;
34
Chris Lattner5e46a192006-04-02 03:07:27 +000035#ifndef NDEBUG
36static cl::opt<bool>
37ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
38 cl::desc("Pop up a window to show dags before legalize"));
39#else
40static const bool ViewLegalizeDAGs = 0;
41#endif
42
Chris Lattner3e928bb2005-01-07 07:47:09 +000043//===----------------------------------------------------------------------===//
44/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
45/// hacks on it until the target machine can handle it. This involves
46/// eliminating value sizes the machine cannot handle (promoting small sizes to
47/// large sizes or splitting up large values into small values) as well as
48/// eliminating operations the machine cannot handle.
49///
50/// This code also does a small amount of optimization and recognition of idioms
51/// as part of its processing. For example, if a target does not support a
52/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
53/// will attempt merge setcc and brc instructions into brcc's.
54///
55namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000056class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000057 TargetLowering &TLI;
58 SelectionDAG &DAG;
59
Chris Lattner6831a812006-02-13 09:18:02 +000060 // Libcall insertion helpers.
61
62 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
63 /// legalized. We use this to ensure that calls are properly serialized
64 /// against each other, including inserted libcalls.
65 SDOperand LastCALLSEQ_END;
66
67 /// IsLegalizingCall - This member is used *only* for purposes of providing
68 /// helpful assertions that a libcall isn't created while another call is
69 /// being legalized (which could lead to non-serialized call sequences).
70 bool IsLegalizingCall;
71
Chris Lattner3e928bb2005-01-07 07:47:09 +000072 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000073 Legal, // The target natively supports this operation.
74 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000075 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000076 };
Chris Lattner6831a812006-02-13 09:18:02 +000077
Chris Lattner3e928bb2005-01-07 07:47:09 +000078 /// ValueTypeActions - This is a bitvector that contains two bits for each
79 /// value type, where the two bits correspond to the LegalizeAction enum.
80 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000081 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000082
Chris Lattner3e928bb2005-01-07 07:47:09 +000083 /// LegalizedNodes - For nodes that are of legal width, and that have more
84 /// than one use, this map indicates what regularized operand to use. This
85 /// allows us to avoid legalizing the same thing more than once.
Chris Lattner718071c2007-02-04 00:50:02 +000086 DenseMap<SDOperand, SDOperand> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000087
Chris Lattner03c85462005-01-15 05:21:40 +000088 /// PromotedNodes - For nodes that are below legal width, and that have more
89 /// than one use, this map indicates what promoted value to use. This allows
90 /// us to avoid promoting the same thing more than once.
Chris Lattner40030bf2007-02-04 01:17:38 +000091 DenseMap<SDOperand, SDOperand> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +000092
Chris Lattnerc7029802006-03-18 01:44:44 +000093 /// ExpandedNodes - For nodes that need to be expanded this map indicates
94 /// which which operands are the expanded version of the input. This allows
95 /// us to avoid expanding the same node more than once.
Chris Lattner40030bf2007-02-04 01:17:38 +000096 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000097
Chris Lattnerc7029802006-03-18 01:44:44 +000098 /// SplitNodes - For vector nodes that need to be split, this map indicates
99 /// which which operands are the split version of the input. This allows us
100 /// to avoid splitting the same node more than once.
101 std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
102
Dan Gohman7f321562007-06-25 16:23:39 +0000103 /// ScalarizedNodes - For nodes that need to be converted from vector types to
104 /// scalar types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000105 /// processed to the result.
Dan Gohman7f321562007-06-25 16:23:39 +0000106 std::map<SDOperand, SDOperand> ScalarizedNodes;
Chris Lattnerc7029802006-03-18 01:44:44 +0000107
Chris Lattner8afc48e2005-01-07 22:28:47 +0000108 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000109 LegalizedNodes.insert(std::make_pair(From, To));
110 // If someone requests legalization of the new node, return itself.
111 if (From != To)
112 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000113 }
Chris Lattner03c85462005-01-15 05:21:40 +0000114 void AddPromotedOperand(SDOperand From, SDOperand To) {
Chris Lattner40030bf2007-02-04 01:17:38 +0000115 bool isNew = PromotedNodes.insert(std::make_pair(From, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000116 assert(isNew && "Got into the map somehow?");
Chris Lattner69a889e2005-12-20 00:53:54 +0000117 // If someone requests legalization of the new node, return itself.
118 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000119 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000120
Chris Lattner3e928bb2005-01-07 07:47:09 +0000121public:
122
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000123 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000124
Chris Lattner3e928bb2005-01-07 07:47:09 +0000125 /// getTypeAction - Return how we should legalize values of this type, either
126 /// it is already legal or we need to expand it into multiple registers of
127 /// smaller integer type, or we need to promote it to a larger type.
128 LegalizeAction getTypeAction(MVT::ValueType VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000129 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000130 }
131
132 /// isTypeLegal - Return true if this type is legal on this target.
133 ///
134 bool isTypeLegal(MVT::ValueType VT) const {
135 return getTypeAction(VT) == Legal;
136 }
137
Chris Lattner3e928bb2005-01-07 07:47:09 +0000138 void LegalizeDAG();
139
Chris Lattner456a93a2006-01-28 07:39:30 +0000140private:
Dan Gohman7f321562007-06-25 16:23:39 +0000141 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000142 /// appropriate for its type.
143 void HandleOp(SDOperand Op);
144
145 /// LegalizeOp - We know that the specified value has a legal type.
146 /// Recursively ensure that the operands have legal types, then return the
147 /// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000148 SDOperand LegalizeOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000149
150 /// PromoteOp - Given an operation that produces a value in an invalid type,
151 /// promote it to compute the value into a larger type. The produced value
152 /// will have the correct bits for the low portion of the register, but no
153 /// guarantee is made about the top bits: it may be zero, sign-extended, or
154 /// garbage.
Chris Lattner03c85462005-01-15 05:21:40 +0000155 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000156
Chris Lattnerc7029802006-03-18 01:44:44 +0000157 /// ExpandOp - Expand the specified SDOperand into its two component pieces
158 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
159 /// the LegalizeNodes map is filled in for any results that are not expanded,
160 /// the ExpandedNodes map is filled in for any results that are expanded, and
161 /// the Lo/Hi values are returned. This applies to integer types and Vector
162 /// types.
163 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
164
Dan Gohman7f321562007-06-25 16:23:39 +0000165 /// SplitVectorOp - Given an operand of vector type, break it down into
166 /// two smaller values.
Chris Lattnerc7029802006-03-18 01:44:44 +0000167 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
168
Dan Gohman89b20c02007-06-27 14:06:22 +0000169 /// ScalarizeVectorOp - Given an operand of single-element vector type
170 /// (e.g. v1f32), convert it into the equivalent operation that returns a
171 /// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +0000172 SDOperand ScalarizeVectorOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000173
Chris Lattner4352cc92006-04-04 17:23:26 +0000174 /// isShuffleLegal - Return true if a vector shuffle is legal with the
175 /// specified mask and type. Targets can specify exactly which masks they
176 /// support and the code generator is tasked with not creating illegal masks.
177 ///
178 /// Note that this will also return true for shuffles that are promoted to a
179 /// different type.
180 ///
181 /// If this is a legal shuffle, this method returns the (possibly promoted)
182 /// build_vector Mask. If it's not a legal shuffle, it returns null.
183 SDNode *isShuffleLegal(MVT::ValueType VT, SDOperand Mask) const;
184
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000185 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000186 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000187
Nate Begeman750ac1b2006-02-01 07:19:44 +0000188 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
189
Chris Lattnerce872152006-03-19 06:31:19 +0000190 SDOperand CreateStackTemporary(MVT::ValueType VT);
191
Reid Spencer47857812006-12-31 05:55:36 +0000192 SDOperand ExpandLibCall(const char *Name, SDNode *Node, bool isSigned,
Chris Lattner77e77a62005-01-21 06:05:23 +0000193 SDOperand &Hi);
194 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
195 SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000196
Chris Lattner35481892005-12-23 00:16:34 +0000197 SDOperand ExpandBIT_CONVERT(MVT::ValueType DestVT, SDOperand SrcOp);
Chris Lattnerce872152006-03-19 06:31:19 +0000198 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000199 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskey6269ed12005-08-17 00:39:29 +0000200 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
201 SDOperand LegalOp,
202 MVT::ValueType DestVT);
Nate Begeman5a8441e2005-07-16 02:02:34 +0000203 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
204 bool isSigned);
Chris Lattner1618beb2005-07-29 00:11:56 +0000205 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
206 bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000207
Chris Lattner456a93a2006-01-28 07:39:30 +0000208 SDOperand ExpandBSWAP(SDOperand Op);
209 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000210 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
211 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000212 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
213 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000214
Dan Gohman7f321562007-06-25 16:23:39 +0000215 SDOperand ExpandEXTRACT_SUBVECTOR(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000216 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner15972212006-03-31 17:55:51 +0000217
Chris Lattner3e928bb2005-01-07 07:47:09 +0000218 SDOperand getIntPtrConstant(uint64_t Val) {
219 return DAG.getConstant(Val, TLI.getPointerTy());
220 }
221};
222}
223
Chris Lattner4352cc92006-04-04 17:23:26 +0000224/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
225/// specified mask and type. Targets can specify exactly which masks they
226/// support and the code generator is tasked with not creating illegal masks.
227///
228/// Note that this will also return true for shuffles that are promoted to a
229/// different type.
230SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT,
231 SDOperand Mask) const {
232 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
233 default: return 0;
234 case TargetLowering::Legal:
235 case TargetLowering::Custom:
236 break;
237 case TargetLowering::Promote: {
238 // If this is promoted to a different type, convert the shuffle mask and
239 // ask if it is legal in the promoted type!
240 MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
241
242 // If we changed # elements, change the shuffle mask.
243 unsigned NumEltsGrowth =
244 MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT);
245 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
246 if (NumEltsGrowth > 1) {
247 // Renumber the elements.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000248 SmallVector<SDOperand, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000249 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
250 SDOperand InOp = Mask.getOperand(i);
251 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
252 if (InOp.getOpcode() == ISD::UNDEF)
253 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
254 else {
255 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
256 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
257 }
258 }
259 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000260 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000261 }
262 VT = NVT;
263 break;
264 }
265 }
266 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
267}
268
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000269SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
270 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
271 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000272 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000273 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000274}
275
Chris Lattnere10e6f72007-06-18 21:28:10 +0000276/// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order
277/// contains all of a nodes operands before it contains the node.
278static void ComputeTopDownOrdering(SelectionDAG &DAG,
279 SmallVector<SDNode*, 64> &Order) {
280
281 DenseMap<SDNode*, unsigned> Visited;
282 std::vector<SDNode*> Worklist;
283 Worklist.reserve(128);
Chris Lattner32fca002005-10-06 01:20:27 +0000284
Chris Lattnere10e6f72007-06-18 21:28:10 +0000285 // Compute ordering from all of the leaves in the graphs, those (like the
286 // entry node) that have no operands.
287 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
288 E = DAG.allnodes_end(); I != E; ++I) {
289 if (I->getNumOperands() == 0) {
290 Visited[I] = 0 - 1U;
291 Worklist.push_back(I);
292 }
Chris Lattner32fca002005-10-06 01:20:27 +0000293 }
294
Chris Lattnere10e6f72007-06-18 21:28:10 +0000295 while (!Worklist.empty()) {
296 SDNode *N = Worklist.back();
297 Worklist.pop_back();
298
299 if (++Visited[N] != N->getNumOperands())
300 continue; // Haven't visited all operands yet
301
302 Order.push_back(N);
303
304 // Now that we have N in, add anything that uses it if all of their operands
305 // are now done.
306 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
307 UI != E; ++UI)
308 Worklist.push_back(*UI);
309 }
310
311 assert(Order.size() == Visited.size() &&
312 Order.size() ==
313 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
314 "Error: DAG is cyclic!");
Chris Lattner32fca002005-10-06 01:20:27 +0000315}
316
Chris Lattner1618beb2005-07-29 00:11:56 +0000317
Chris Lattner3e928bb2005-01-07 07:47:09 +0000318void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000319 LastCALLSEQ_END = DAG.getEntryNode();
320 IsLegalizingCall = false;
321
Chris Lattnerab510a72005-10-02 17:49:46 +0000322 // The legalize process is inherently a bottom-up recursive process (users
323 // legalize their uses before themselves). Given infinite stack space, we
324 // could just start legalizing on the root and traverse the whole graph. In
325 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000326 // blocks. To avoid this problem, compute an ordering of the nodes where each
327 // node is only legalized after all of its operands are legalized.
Chris Lattner0ed44172007-02-04 01:20:02 +0000328 SmallVector<SDNode*, 64> Order;
Chris Lattnere10e6f72007-06-18 21:28:10 +0000329 ComputeTopDownOrdering(DAG, Order);
Chris Lattnerab510a72005-10-02 17:49:46 +0000330
Chris Lattnerc7029802006-03-18 01:44:44 +0000331 for (unsigned i = 0, e = Order.size(); i != e; ++i)
332 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000333
334 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000335 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000336 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
337 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000338
339 ExpandedNodes.clear();
340 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000341 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000342 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000343 ScalarizedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000344
345 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000346 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000347}
348
Chris Lattner6831a812006-02-13 09:18:02 +0000349
350/// FindCallEndFromCallStart - Given a chained node that is part of a call
351/// sequence, find the CALLSEQ_END node that terminates the call sequence.
352static SDNode *FindCallEndFromCallStart(SDNode *Node) {
353 if (Node->getOpcode() == ISD::CALLSEQ_END)
354 return Node;
355 if (Node->use_empty())
356 return 0; // No CallSeqEnd
357
358 // The chain is usually at the end.
359 SDOperand TheChain(Node, Node->getNumValues()-1);
360 if (TheChain.getValueType() != MVT::Other) {
361 // Sometimes it's at the beginning.
362 TheChain = SDOperand(Node, 0);
363 if (TheChain.getValueType() != MVT::Other) {
364 // Otherwise, hunt for it.
365 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
366 if (Node->getValueType(i) == MVT::Other) {
367 TheChain = SDOperand(Node, i);
368 break;
369 }
370
371 // Otherwise, we walked into a node without a chain.
372 if (TheChain.getValueType() != MVT::Other)
373 return 0;
374 }
375 }
376
377 for (SDNode::use_iterator UI = Node->use_begin(),
378 E = Node->use_end(); UI != E; ++UI) {
379
380 // Make sure to only follow users of our token chain.
381 SDNode *User = *UI;
382 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
383 if (User->getOperand(i) == TheChain)
384 if (SDNode *Result = FindCallEndFromCallStart(User))
385 return Result;
386 }
387 return 0;
388}
389
390/// FindCallStartFromCallEnd - Given a chained node that is part of a call
391/// sequence, find the CALLSEQ_START node that initiates the call sequence.
392static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
393 assert(Node && "Didn't find callseq_start for a call??");
394 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
395
396 assert(Node->getOperand(0).getValueType() == MVT::Other &&
397 "Node doesn't have a token chain argument!");
398 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
399}
400
401/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
402/// see if any uses can reach Dest. If no dest operands can get to dest,
403/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000404///
405/// Keep track of the nodes we fine that actually do lead to Dest in
406/// NodesLeadingTo. This avoids retraversing them exponential number of times.
407///
408bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000409 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000410 if (N == Dest) return true; // N certainly leads to Dest :)
411
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000412 // If we've already processed this node and it does lead to Dest, there is no
413 // need to reprocess it.
414 if (NodesLeadingTo.count(N)) return true;
415
Chris Lattner6831a812006-02-13 09:18:02 +0000416 // If the first result of this node has been already legalized, then it cannot
417 // reach N.
418 switch (getTypeAction(N->getValueType(0))) {
419 case Legal:
420 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
421 break;
422 case Promote:
423 if (PromotedNodes.count(SDOperand(N, 0))) return false;
424 break;
425 case Expand:
426 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
427 break;
428 }
429
430 // Okay, this node has not already been legalized. Check and legalize all
431 // operands. If none lead to Dest, then we can legalize this node.
432 bool OperandsLeadToDest = false;
433 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
434 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000435 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000436
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000437 if (OperandsLeadToDest) {
438 NodesLeadingTo.insert(N);
439 return true;
440 }
Chris Lattner6831a812006-02-13 09:18:02 +0000441
442 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000443 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000444 return false;
445}
446
Dan Gohman7f321562007-06-25 16:23:39 +0000447/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000448/// appropriate for its type.
449void SelectionDAGLegalize::HandleOp(SDOperand Op) {
Dan Gohman7f321562007-06-25 16:23:39 +0000450 MVT::ValueType VT = Op.getValueType();
451 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000452 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000453 case Legal: (void)LegalizeOp(Op); break;
454 case Promote: (void)PromoteOp(Op); break;
Chris Lattnerc7029802006-03-18 01:44:44 +0000455 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +0000456 if (!MVT::isVector(VT)) {
457 // If this is an illegal scalar, expand it into its two component
458 // pieces.
Chris Lattnerc7029802006-03-18 01:44:44 +0000459 SDOperand X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000460 if (Op.getOpcode() == ISD::TargetConstant)
461 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000462 ExpandOp(Op, X, Y);
Dan Gohman7f321562007-06-25 16:23:39 +0000463 } else if (MVT::getVectorNumElements(VT) == 1) {
464 // If this is an illegal single element vector, convert it to a
465 // scalar operation.
466 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000467 } else {
Dan Gohman7f321562007-06-25 16:23:39 +0000468 // Otherwise, this is an illegal multiple element vector.
469 // Split it in half and legalize both parts.
470 SDOperand X, Y;
471 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000472 }
473 break;
474 }
475}
Chris Lattner6831a812006-02-13 09:18:02 +0000476
Evan Cheng9f877882006-12-13 20:57:08 +0000477/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
478/// a load from the constant pool.
479static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000480 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000481 bool Extend = false;
482
483 // If a FP immediate is precise when represented as a float and if the
484 // target can do an extending load from float to double, we put it into
485 // the constant pool as a float, even if it's is statically typed as a
486 // double.
487 MVT::ValueType VT = CFP->getValueType(0);
488 bool isDouble = VT == MVT::f64;
489 ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
490 Type::FloatTy, CFP->getValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000491 if (!UseCP) {
Evan Cheng279101e2006-12-12 22:19:28 +0000492 double Val = LLVMC->getValue();
493 return isDouble
494 ? DAG.getConstant(DoubleToBits(Val), MVT::i64)
495 : DAG.getConstant(FloatToBits(Val), MVT::i32);
496 }
497
Evan Cheng00495212006-12-12 21:32:44 +0000498 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
499 // Only do this if the target has a native EXTLOAD instruction from f32.
500 TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
501 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC,Type::FloatTy));
502 VT = MVT::f32;
503 Extend = true;
504 }
505
506 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
507 if (Extend) {
508 return DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
509 CPIdx, NULL, 0, MVT::f32);
510 } else {
511 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
512 }
513}
514
Chris Lattner6831a812006-02-13 09:18:02 +0000515
Evan Cheng912095b2007-01-04 21:56:39 +0000516/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
517/// operations.
518static
519SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT::ValueType NVT,
520 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng068c5f42007-01-05 21:31:51 +0000521 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng912095b2007-01-04 21:56:39 +0000522 MVT::ValueType SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000523 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
524 "fcopysign expansion only supported for f32 and f64");
Evan Cheng912095b2007-01-04 21:56:39 +0000525 MVT::ValueType SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000526
Evan Cheng912095b2007-01-04 21:56:39 +0000527 // First get the sign bit of second operand.
Evan Cheng068c5f42007-01-05 21:31:51 +0000528 SDOperand Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000529 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
530 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000531 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000532 SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000533 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000534 // Shift right or sign-extend it if the two operands have different types.
535 int SizeDiff = MVT::getSizeInBits(SrcNVT) - MVT::getSizeInBits(NVT);
536 if (SizeDiff > 0) {
537 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
538 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
539 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
540 } else if (SizeDiff < 0)
541 SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
Evan Cheng068c5f42007-01-05 21:31:51 +0000542
543 // Clear the sign bit of first operand.
544 SDOperand Mask2 = (VT == MVT::f64)
545 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
546 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
547 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng912095b2007-01-04 21:56:39 +0000548 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000549 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
550
551 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000552 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
553 return Result;
554}
555
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000556/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
557static
558SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
559 TargetLowering &TLI) {
560 assert(MVT::isInteger(ST->getStoredVT()) &&
561 "Non integer unaligned stores not implemented.");
562 int SVOffset = ST->getSrcValueOffset();
563 SDOperand Chain = ST->getChain();
564 SDOperand Ptr = ST->getBasePtr();
565 SDOperand Val = ST->getValue();
566 MVT::ValueType VT = Val.getValueType();
567 // Get the half-size VT
568 MVT::ValueType NewStoredVT = ST->getStoredVT() - 1;
569 int NumBits = MVT::getSizeInBits(NewStoredVT);
570 int Alignment = ST->getAlignment();
571 int IncrementSize = NumBits / 8;
572
573 // Divide the stored value in two parts.
574 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
575 SDOperand Lo = Val;
576 SDOperand Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
577
578 // Store the two parts
579 SDOperand Store1, Store2;
580 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
581 ST->getSrcValue(), SVOffset, NewStoredVT,
582 ST->isVolatile(), Alignment);
583 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
584 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
585 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
586 ST->getSrcValue(), SVOffset + IncrementSize,
587 NewStoredVT, ST->isVolatile(), Alignment);
588
589 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
590}
591
592/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
593static
594SDOperand ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
595 TargetLowering &TLI) {
596 assert(MVT::isInteger(LD->getLoadedVT()) &&
597 "Non integer unaligned loads not implemented.");
598 int SVOffset = LD->getSrcValueOffset();
599 SDOperand Chain = LD->getChain();
600 SDOperand Ptr = LD->getBasePtr();
601 MVT::ValueType VT = LD->getValueType(0);
602 MVT::ValueType NewLoadedVT = LD->getLoadedVT() - 1;
603 int NumBits = MVT::getSizeInBits(NewLoadedVT);
604 int Alignment = LD->getAlignment();
605 int IncrementSize = NumBits / 8;
606 ISD::LoadExtType HiExtType = LD->getExtensionType();
607
608 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
609 if (HiExtType == ISD::NON_EXTLOAD)
610 HiExtType = ISD::ZEXTLOAD;
611
612 // Load the value in two parts
613 SDOperand Lo, Hi;
614 if (TLI.isLittleEndian()) {
615 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
616 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
617 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
618 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
619 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
620 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
621 Alignment);
622 } else {
623 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
624 NewLoadedVT,LD->isVolatile(), Alignment);
625 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
626 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
627 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
628 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
629 Alignment);
630 }
631
632 // aggregate the two parts
633 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
634 SDOperand Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
635 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
636
637 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
638 Hi.getValue(1));
639
640 SDOperand Ops[] = { Result, TF };
641 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other), Ops, 2);
642}
Evan Cheng912095b2007-01-04 21:56:39 +0000643
Dan Gohmana3466152007-07-13 20:14:11 +0000644/// LegalizeOp - We know that the specified value has a legal type, and
645/// that its operands are legal. Now ensure that the operation itself
646/// is legal, recursively ensuring that the operands' operations remain
647/// legal.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000648SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000649 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
650 return Op;
651
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000652 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000653 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000654 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000655
Chris Lattner3e928bb2005-01-07 07:47:09 +0000656 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000657 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000658 if (Node->getNumValues() > 1) {
659 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000660 if (getTypeAction(Node->getValueType(i)) != Legal) {
661 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000662 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000663 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000664 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000665 }
666 }
667
Chris Lattner45982da2005-05-12 16:53:42 +0000668 // Note that LegalizeOp may be reentered even from single-use nodes, which
669 // means that we always must cache transformed nodes.
Chris Lattner718071c2007-02-04 00:50:02 +0000670 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000671 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000672
Nate Begeman9373a812005-08-10 20:51:12 +0000673 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000674 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000675 bool isCustom = false;
676
Chris Lattner3e928bb2005-01-07 07:47:09 +0000677 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000678 case ISD::FrameIndex:
679 case ISD::EntryToken:
680 case ISD::Register:
681 case ISD::BasicBlock:
682 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000683 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000684 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000685 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000686 case ISD::TargetConstantPool:
687 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000688 case ISD::TargetGlobalTLSAddress:
Chris Lattner948c1b12006-01-28 08:31:04 +0000689 case ISD::TargetExternalSymbol:
690 case ISD::VALUETYPE:
691 case ISD::SRCVALUE:
692 case ISD::STRING:
693 case ISD::CONDCODE:
694 // Primitives must all be legal.
695 assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
696 "This must be legal!");
697 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000698 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000699 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
700 // If this is a target node, legalize it by legalizing the operands then
701 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000702 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000703 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000704 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000705
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000706 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000707
708 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
709 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
710 return Result.getValue(Op.ResNo);
711 }
712 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000713#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000714 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000715#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000716 assert(0 && "Do not know how to legalize this operator!");
717 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000718 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000719 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000720 case ISD::GlobalTLSAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000721 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000722 case ISD::ConstantPool:
723 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000724 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
725 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000726 case TargetLowering::Custom:
727 Tmp1 = TLI.LowerOperation(Op, DAG);
728 if (Tmp1.Val) Result = Tmp1;
729 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000730 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000731 break;
732 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000733 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000734 case ISD::FRAMEADDR:
735 case ISD::RETURNADDR:
736 // The only option for these nodes is to custom lower them. If the target
737 // does not custom lower them, then return zero.
738 Tmp1 = TLI.LowerOperation(Op, DAG);
739 if (Tmp1.Val)
740 Result = Tmp1;
741 else
742 Result = DAG.getConstant(0, TLI.getPointerTy());
743 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000744 case ISD::FRAME_TO_ARGS_OFFSET: {
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000745 MVT::ValueType VT = Node->getValueType(0);
746 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
747 default: assert(0 && "This action is not supported yet!");
748 case TargetLowering::Custom:
749 Result = TLI.LowerOperation(Op, DAG);
750 if (Result.Val) break;
751 // Fall Thru
752 case TargetLowering::Legal:
753 Result = DAG.getConstant(0, VT);
754 break;
755 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000756 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000757 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000758 case ISD::EXCEPTIONADDR: {
759 Tmp1 = LegalizeOp(Node->getOperand(0));
760 MVT::ValueType VT = Node->getValueType(0);
761 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
762 default: assert(0 && "This action is not supported yet!");
763 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000764 unsigned Reg = TLI.getExceptionAddressRegister();
Jim Laskey2bc210d2007-02-22 15:37:19 +0000765 Result = DAG.getCopyFromReg(Tmp1, Reg, VT).getValue(Op.ResNo);
766 }
767 break;
768 case TargetLowering::Custom:
769 Result = TLI.LowerOperation(Op, DAG);
770 if (Result.Val) break;
771 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000772 case TargetLowering::Legal: {
773 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 };
774 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
775 Ops, 2).getValue(Op.ResNo);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000776 break;
777 }
778 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000779 }
Jim Laskey2bc210d2007-02-22 15:37:19 +0000780 break;
Jim Laskey8782d482007-02-28 20:43:58 +0000781 case ISD::EHSELECTION: {
782 Tmp1 = LegalizeOp(Node->getOperand(0));
783 Tmp2 = LegalizeOp(Node->getOperand(1));
784 MVT::ValueType VT = Node->getValueType(0);
785 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
786 default: assert(0 && "This action is not supported yet!");
787 case TargetLowering::Expand: {
788 unsigned Reg = TLI.getExceptionSelectorRegister();
789 Result = DAG.getCopyFromReg(Tmp2, Reg, VT).getValue(Op.ResNo);
790 }
791 break;
792 case TargetLowering::Custom:
793 Result = TLI.LowerOperation(Op, DAG);
794 if (Result.Val) break;
795 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000796 case TargetLowering::Legal: {
797 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 };
798 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
799 Ops, 2).getValue(Op.ResNo);
Jim Laskey8782d482007-02-28 20:43:58 +0000800 break;
801 }
802 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000803 }
Jim Laskey8782d482007-02-28 20:43:58 +0000804 break;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000805 case ISD::EH_RETURN: {
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000806 MVT::ValueType VT = Node->getValueType(0);
807 // The only "good" option for this node is to custom lower it.
808 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
809 default: assert(0 && "This action is not supported at all!");
810 case TargetLowering::Custom:
811 Result = TLI.LowerOperation(Op, DAG);
812 if (Result.Val) break;
813 // Fall Thru
814 case TargetLowering::Legal:
815 // Target does not know, how to lower this, lower to noop
816 Result = LegalizeOp(Node->getOperand(0));
817 break;
818 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000819 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000820 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000821 case ISD::AssertSext:
822 case ISD::AssertZext:
823 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000824 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000825 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000826 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000827 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000828 Result = Node->getOperand(Op.ResNo);
829 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000830 case ISD::CopyFromReg:
831 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000832 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000833 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000834 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000835 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000836 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000837 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000838 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000839 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
840 } else {
841 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
842 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000843 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
844 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000845 // Since CopyFromReg produces two values, make sure to remember that we
846 // legalized both of them.
847 AddLegalizedOperand(Op.getValue(0), Result);
848 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
849 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000850 case ISD::UNDEF: {
851 MVT::ValueType VT = Op.getValueType();
852 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000853 default: assert(0 && "This action is not supported yet!");
854 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000855 if (MVT::isInteger(VT))
856 Result = DAG.getConstant(0, VT);
857 else if (MVT::isFloatingPoint(VT))
858 Result = DAG.getConstantFP(0, VT);
859 else
860 assert(0 && "Unknown value type!");
861 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000862 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000863 break;
864 }
865 break;
866 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000867
Chris Lattner48b61a72006-03-28 00:40:33 +0000868 case ISD::INTRINSIC_W_CHAIN:
869 case ISD::INTRINSIC_WO_CHAIN:
870 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000871 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000872 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
873 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000874 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +0000875
876 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +0000877 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +0000878 TargetLowering::Custom) {
879 Tmp3 = TLI.LowerOperation(Result, DAG);
880 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +0000881 }
882
883 if (Result.Val->getNumValues() == 1) break;
884
885 // Must have return value and chain result.
886 assert(Result.Val->getNumValues() == 2 &&
887 "Cannot return more than two values!");
888
889 // Since loads produce two values, make sure to remember that we
890 // legalized both of them.
891 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
892 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
893 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000894 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000895
896 case ISD::LOCATION:
897 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
898 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
899
900 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
901 case TargetLowering::Promote:
902 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000903 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000904 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000905 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Jim Laskey1ee29252007-01-26 14:34:52 +0000906 bool useLABEL = TLI.isOperationLegal(ISD::LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000907
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000908 if (MMI && (useDEBUG_LOC || useLABEL)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000909 const std::string &FName =
910 cast<StringSDNode>(Node->getOperand(3))->getValue();
911 const std::string &DirName =
912 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000913 unsigned SrcFile = MMI->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000914
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000915 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +0000916 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +0000917 SDOperand LineOp = Node->getOperand(1);
918 SDOperand ColOp = Node->getOperand(2);
919
920 if (useDEBUG_LOC) {
921 Ops.push_back(LineOp); // line #
922 Ops.push_back(ColOp); // col #
923 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000924 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000925 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +0000926 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
927 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000928 unsigned ID = MMI->RecordLabel(Line, Col, SrcFile);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000929 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Jim Laskey1ee29252007-01-26 14:34:52 +0000930 Result = DAG.getNode(ISD::LABEL, MVT::Other,&Ops[0],Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000931 }
Jim Laskeye81aecb2005-12-21 20:51:37 +0000932 } else {
933 Result = Tmp1; // chain
934 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000935 break;
Chris Lattnere7736732005-12-18 23:54:29 +0000936 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000937 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +0000938 if (Tmp1 != Node->getOperand(0) ||
939 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000940 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +0000941 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +0000942 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
943 Ops.push_back(Node->getOperand(1)); // line # must be legal.
944 Ops.push_back(Node->getOperand(2)); // col # must be legal.
945 } else {
946 // Otherwise promote them.
947 Ops.push_back(PromoteOp(Node->getOperand(1)));
948 Ops.push_back(PromoteOp(Node->getOperand(2)));
949 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000950 Ops.push_back(Node->getOperand(3)); // filename must be legal.
951 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000952 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +0000953 }
954 break;
955 }
956 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000957
958 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +0000959 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000960 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000961 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +0000962 case TargetLowering::Legal:
963 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
964 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
965 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
966 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000967 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000968 break;
969 }
970 break;
971
Jim Laskey1ee29252007-01-26 14:34:52 +0000972 case ISD::LABEL:
973 assert(Node->getNumOperands() == 2 && "Invalid LABEL node!");
974 switch (TLI.getOperationAction(ISD::LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000975 default: assert(0 && "This action is not supported yet!");
976 case TargetLowering::Legal:
977 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
978 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000979 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000980 break;
Chris Lattnera9569f12007-03-03 19:21:38 +0000981 case TargetLowering::Expand:
982 Result = LegalizeOp(Node->getOperand(0));
983 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000984 }
Nate Begeman551bf3f2006-02-17 05:43:56 +0000985 break;
Chris Lattner36ce6912005-11-29 06:21:05 +0000986
Scott Michelc1513d22007-08-08 23:23:31 +0000987 case ISD::Constant: {
988 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
989 unsigned opAction =
990 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
991
Chris Lattner3e928bb2005-01-07 07:47:09 +0000992 // We know we don't need to expand constants here, constants only have one
993 // value and we check that it is fine above.
994
Scott Michelc1513d22007-08-08 23:23:31 +0000995 if (opAction == TargetLowering::Custom) {
996 Tmp1 = TLI.LowerOperation(Result, DAG);
997 if (Tmp1.Val)
998 Result = Tmp1;
999 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001000 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001001 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001002 case ISD::ConstantFP: {
1003 // Spill FP immediates to the constant pool if the target cannot directly
1004 // codegen them. Targets often have some immediate values that can be
1005 // efficiently generated into an FP register without a load. We explicitly
1006 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001007 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1008
1009 // Check to see if this FP immediate is already legal.
1010 bool isLegal = false;
1011 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1012 E = TLI.legal_fpimm_end(); I != E; ++I)
1013 if (CFP->isExactlyValue(*I)) {
1014 isLegal = true;
1015 break;
1016 }
1017
Chris Lattner3181a772006-01-29 06:26:56 +00001018 // If this is a legal constant, turn it into a TargetConstantFP node.
1019 if (isLegal) {
1020 Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
1021 break;
1022 }
1023
1024 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1025 default: assert(0 && "This action is not supported yet!");
1026 case TargetLowering::Custom:
1027 Tmp3 = TLI.LowerOperation(Result, DAG);
1028 if (Tmp3.Val) {
1029 Result = Tmp3;
1030 break;
1031 }
1032 // FALLTHROUGH
1033 case TargetLowering::Expand:
Evan Cheng279101e2006-12-12 22:19:28 +00001034 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001035 }
1036 break;
1037 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001038 case ISD::TokenFactor:
1039 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001040 Tmp1 = LegalizeOp(Node->getOperand(0));
1041 Tmp2 = LegalizeOp(Node->getOperand(1));
1042 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1043 } else if (Node->getNumOperands() == 3) {
1044 Tmp1 = LegalizeOp(Node->getOperand(0));
1045 Tmp2 = LegalizeOp(Node->getOperand(1));
1046 Tmp3 = LegalizeOp(Node->getOperand(2));
1047 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001048 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001049 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001050 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001051 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1052 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001053 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001054 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001055 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001056
1057 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001058 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001059 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001060 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1061 assert(Tmp3.Val && "Target didn't custom lower this node!");
1062 assert(Tmp3.Val->getNumValues() == Result.Val->getNumValues() &&
1063 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001064
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001065 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001066 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001067 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
1068 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001069 if (Op.ResNo == i)
1070 Tmp2 = Tmp1;
1071 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1072 }
1073 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001074 case ISD::EXTRACT_SUBREG: {
1075 Tmp1 = LegalizeOp(Node->getOperand(0));
1076 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1077 assert(idx && "Operand must be a constant");
1078 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1079 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1080 }
1081 break;
1082 case ISD::INSERT_SUBREG: {
1083 Tmp1 = LegalizeOp(Node->getOperand(0));
1084 Tmp2 = LegalizeOp(Node->getOperand(1));
1085 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1086 assert(idx && "Operand must be a constant");
1087 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1088 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1089 }
1090 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001091 case ISD::BUILD_VECTOR:
1092 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001093 default: assert(0 && "This action is not supported yet!");
1094 case TargetLowering::Custom:
1095 Tmp3 = TLI.LowerOperation(Result, DAG);
1096 if (Tmp3.Val) {
1097 Result = Tmp3;
1098 break;
1099 }
1100 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001101 case TargetLowering::Expand:
1102 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001103 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001104 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001105 break;
1106 case ISD::INSERT_VECTOR_ELT:
1107 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
1108 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
1109 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
1110 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1111
1112 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1113 Node->getValueType(0))) {
1114 default: assert(0 && "This action is not supported yet!");
1115 case TargetLowering::Legal:
1116 break;
1117 case TargetLowering::Custom:
1118 Tmp3 = TLI.LowerOperation(Result, DAG);
1119 if (Tmp3.Val) {
1120 Result = Tmp3;
1121 break;
1122 }
1123 // FALLTHROUGH
1124 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001125 // If the insert index is a constant, codegen this as a scalar_to_vector,
1126 // then a shuffle that inserts it into the right position in the vector.
1127 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
1128 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1129 Tmp1.getValueType(), Tmp2);
1130
1131 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
1132 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
Dan Gohman51eaa862007-06-14 22:58:02 +00001133 MVT::ValueType ShufMaskEltVT = MVT::getVectorElementType(ShufMaskVT);
Chris Lattner8d5a8942006-04-17 19:21:01 +00001134
1135 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
1136 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
1137 // the RHS.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001138 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001139 for (unsigned i = 0; i != NumElts; ++i) {
1140 if (i != InsertPos->getValue())
1141 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1142 else
1143 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1144 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001145 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1146 &ShufOps[0], ShufOps.size());
Chris Lattner8d5a8942006-04-17 19:21:01 +00001147
1148 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1149 Tmp1, ScVec, ShufMask);
1150 Result = LegalizeOp(Result);
1151 break;
1152 }
1153
Chris Lattner2332b9f2006-03-19 01:17:20 +00001154 // If the target doesn't support this, we have to spill the input vector
1155 // to a temporary stack slot, update the element, then reload it. This is
1156 // badness. We could also load the value into a vector register (either
1157 // with a "move to register" or "extload into register" instruction, then
1158 // permute it into place, if the idx is a constant and if the idx is
1159 // supported by the target.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001160 MVT::ValueType VT = Tmp1.getValueType();
1161 MVT::ValueType EltVT = Tmp2.getValueType();
1162 MVT::ValueType IdxVT = Tmp3.getValueType();
1163 MVT::ValueType PtrVT = TLI.getPointerTy();
1164 SDOperand StackPtr = CreateStackTemporary(VT);
Evan Chengeb0b4612006-03-31 01:27:51 +00001165 // Store the vector.
Evan Cheng8b2794a2006-10-13 21:14:26 +00001166 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +00001167
1168 // Truncate or zero extend offset to target pointer type.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001169 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
1170 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Chengeb0b4612006-03-31 01:27:51 +00001171 // Add the offset to the index.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001172 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
1173 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
1174 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Chengeb0b4612006-03-31 01:27:51 +00001175 // Store the scalar value.
Evan Cheng8b2794a2006-10-13 21:14:26 +00001176 Ch = DAG.getStore(Ch, Tmp2, StackPtr2, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +00001177 // Load the updated vector.
Evan Cheng466685d2006-10-09 20:57:25 +00001178 Result = DAG.getLoad(VT, Ch, StackPtr, NULL, 0);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001179 break;
1180 }
1181 }
1182 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001183 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001184 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1185 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1186 break;
1187 }
1188
Chris Lattnerce872152006-03-19 06:31:19 +00001189 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1190 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1191 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1192 Node->getValueType(0))) {
1193 default: assert(0 && "This action is not supported yet!");
1194 case TargetLowering::Legal:
1195 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001196 case TargetLowering::Custom:
1197 Tmp3 = TLI.LowerOperation(Result, DAG);
1198 if (Tmp3.Val) {
1199 Result = Tmp3;
1200 break;
1201 }
1202 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001203 case TargetLowering::Expand:
1204 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001205 break;
1206 }
Chris Lattnerce872152006-03-19 06:31:19 +00001207 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001208 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001209 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1210 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1211 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1212
1213 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001214 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1215 default: assert(0 && "Unknown operation action!");
1216 case TargetLowering::Legal:
1217 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1218 "vector shuffle should not be created if not legal!");
1219 break;
1220 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001221 Tmp3 = TLI.LowerOperation(Result, DAG);
1222 if (Tmp3.Val) {
1223 Result = Tmp3;
1224 break;
1225 }
1226 // FALLTHROUGH
1227 case TargetLowering::Expand: {
1228 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman51eaa862007-06-14 22:58:02 +00001229 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001230 MVT::ValueType PtrVT = TLI.getPointerTy();
1231 SDOperand Mask = Node->getOperand(2);
1232 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001233 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001234 for (unsigned i = 0; i != NumElems; ++i) {
1235 SDOperand Arg = Mask.getOperand(i);
1236 if (Arg.getOpcode() == ISD::UNDEF) {
1237 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1238 } else {
1239 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1240 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1241 if (Idx < NumElems)
1242 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1243 DAG.getConstant(Idx, PtrVT)));
1244 else
1245 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1246 DAG.getConstant(Idx - NumElems, PtrVT)));
1247 }
1248 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001249 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001250 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001251 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001252 case TargetLowering::Promote: {
1253 // Change base type to a different vector type.
1254 MVT::ValueType OVT = Node->getValueType(0);
1255 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1256
1257 // Cast the two input vectors.
1258 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1259 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1260
1261 // Convert the shuffle mask to the right # elements.
1262 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1263 assert(Tmp3.Val && "Shuffle not legal?");
1264 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1265 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1266 break;
1267 }
Chris Lattner87100e02006-03-20 01:52:29 +00001268 }
1269 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001270
1271 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001272 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001273 Tmp2 = LegalizeOp(Node->getOperand(1));
1274 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001275 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001276 break;
1277
Dan Gohman7f321562007-06-25 16:23:39 +00001278 case ISD::EXTRACT_SUBVECTOR:
1279 Tmp1 = Node->getOperand(0);
1280 Tmp2 = LegalizeOp(Node->getOperand(1));
1281 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1282 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001283 break;
1284
Chris Lattner6831a812006-02-13 09:18:02 +00001285 case ISD::CALLSEQ_START: {
1286 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1287
1288 // Recursively Legalize all of the inputs of the call end that do not lead
1289 // to this call start. This ensures that any libcalls that need be inserted
1290 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001291 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001292 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001293 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1294 NodesLeadingTo);
1295 }
Chris Lattner6831a812006-02-13 09:18:02 +00001296
1297 // Now that we legalized all of the inputs (which may have inserted
1298 // libcalls) create the new CALLSEQ_START node.
1299 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1300
1301 // Merge in the last call, to ensure that this call start after the last
1302 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001303 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001304 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1305 Tmp1 = LegalizeOp(Tmp1);
1306 }
Chris Lattner6831a812006-02-13 09:18:02 +00001307
1308 // Do not try to legalize the target-specific arguments (#1+).
1309 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001310 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001311 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001312 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001313 }
1314
1315 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001316 AddLegalizedOperand(Op.getValue(0), Result);
1317 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1318 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1319
Chris Lattner6831a812006-02-13 09:18:02 +00001320 // Now that the callseq_start and all of the non-call nodes above this call
1321 // sequence have been legalized, legalize the call itself. During this
1322 // process, no libcalls can/will be inserted, guaranteeing that no calls
1323 // can overlap.
1324 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1325 SDOperand InCallSEQ = LastCALLSEQ_END;
1326 // Note that we are selecting this call!
1327 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1328 IsLegalizingCall = true;
1329
1330 // Legalize the call, starting from the CALLSEQ_END.
1331 LegalizeOp(LastCALLSEQ_END);
1332 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1333 return Result;
1334 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001335 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001336 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1337 // will cause this node to be legalized as well as handling libcalls right.
1338 if (LastCALLSEQ_END.Val != Node) {
1339 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Chris Lattner718071c2007-02-04 00:50:02 +00001340 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001341 assert(I != LegalizedNodes.end() &&
1342 "Legalizing the call start should have legalized this node!");
1343 return I->second;
1344 }
1345
1346 // Otherwise, the call start has been legalized and everything is going
1347 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001348 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001349 // Do not try to legalize the target-specific arguments (#1+), except for
1350 // an optional flag input.
1351 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1352 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001353 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001354 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001355 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001356 }
1357 } else {
1358 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1359 if (Tmp1 != Node->getOperand(0) ||
1360 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001361 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001362 Ops[0] = Tmp1;
1363 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001364 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001365 }
Chris Lattner6a542892006-01-24 05:48:21 +00001366 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001367 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001368 // This finishes up call legalization.
1369 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001370
1371 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1372 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1373 if (Node->getNumValues() == 2)
1374 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1375 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001376 case ISD::DYNAMIC_STACKALLOC: {
Evan Cheng61bbbab2007-08-16 23:50:06 +00001377 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001378 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1379 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1380 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001381 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001382
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001383 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001384 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001385 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001386 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001387 case TargetLowering::Expand: {
1388 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1389 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1390 " not tell us which reg is the stack pointer!");
1391 SDOperand Chain = Tmp1.getOperand(0);
1392 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001393 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1394 Chain = SP.getValue(1);
1395 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1396 unsigned StackAlign =
1397 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1398 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001399 SP = DAG.getNode(ISD::AND, VT, SP,
1400 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001401 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
1402 Tmp2 = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001403 Tmp1 = LegalizeOp(Tmp1);
1404 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001405 break;
1406 }
1407 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001408 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1409 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001410 Tmp1 = LegalizeOp(Tmp3);
1411 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001412 }
Chris Lattner903d2782006-01-15 08:54:32 +00001413 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001414 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001415 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001416 }
Chris Lattner903d2782006-01-15 08:54:32 +00001417 // Since this op produce two values, make sure to remember that we
1418 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001419 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1420 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001421 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001422 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001423 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001424 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001425 bool Changed = false;
1426 // Legalize all of the operands of the inline asm, in case they are nodes
1427 // that need to be expanded or something. Note we skip the asm string and
1428 // all of the TargetConstant flags.
1429 SDOperand Op = LegalizeOp(Ops[0]);
1430 Changed = Op != Ops[0];
1431 Ops[0] = Op;
1432
1433 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1434 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1435 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1436 for (++i; NumVals; ++i, --NumVals) {
1437 SDOperand Op = LegalizeOp(Ops[i]);
1438 if (Op != Ops[i]) {
1439 Changed = true;
1440 Ops[i] = Op;
1441 }
1442 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001443 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001444
1445 if (HasInFlag) {
1446 Op = LegalizeOp(Ops.back());
1447 Changed |= Op != Ops.back();
1448 Ops.back() = Op;
1449 }
1450
1451 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001452 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001453
1454 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001455 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001456 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1457 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001458 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001459 case ISD::BR:
1460 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001461 // Ensure that libcalls are emitted before a branch.
1462 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1463 Tmp1 = LegalizeOp(Tmp1);
1464 LastCALLSEQ_END = DAG.getEntryNode();
1465
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001466 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001467 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001468 case ISD::BRIND:
1469 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1470 // Ensure that libcalls are emitted before a branch.
1471 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1472 Tmp1 = LegalizeOp(Tmp1);
1473 LastCALLSEQ_END = DAG.getEntryNode();
1474
1475 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1476 default: assert(0 && "Indirect target must be legal type (pointer)!");
1477 case Legal:
1478 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1479 break;
1480 }
1481 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1482 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001483 case ISD::BR_JT:
1484 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1485 // Ensure that libcalls are emitted before a branch.
1486 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1487 Tmp1 = LegalizeOp(Tmp1);
1488 LastCALLSEQ_END = DAG.getEntryNode();
1489
1490 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1491 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1492
1493 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1494 default: assert(0 && "This action is not supported yet!");
1495 case TargetLowering::Legal: break;
1496 case TargetLowering::Custom:
1497 Tmp1 = TLI.LowerOperation(Result, DAG);
1498 if (Tmp1.Val) Result = Tmp1;
1499 break;
1500 case TargetLowering::Expand: {
1501 SDOperand Chain = Result.getOperand(0);
1502 SDOperand Table = Result.getOperand(1);
1503 SDOperand Index = Result.getOperand(2);
1504
1505 MVT::ValueType PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001506 MachineFunction &MF = DAG.getMachineFunction();
1507 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001508 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1509 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001510
1511 SDOperand LD;
1512 switch (EntrySize) {
1513 default: assert(0 && "Size of jump table not supported yet."); break;
1514 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr, NULL, 0); break;
1515 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr, NULL, 0); break;
1516 }
1517
1518 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001519 // For PIC, the sequence is:
1520 // BRIND(load(Jumptable + index) + RelocBase)
1521 // RelocBase is the JumpTable on PPC and X86, GOT on Alpha
1522 SDOperand Reloc;
1523 if (TLI.usesGlobalOffsetTable())
1524 Reloc = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, PTy);
1525 else
1526 Reloc = Table;
Evan Chengd0631892006-10-31 02:31:00 +00001527 Addr = (PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001528 Addr = DAG.getNode(ISD::ADD, PTy, Addr, Reloc);
1529 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
1530 } else {
1531 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD);
1532 }
1533 }
1534 }
1535 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001536 case ISD::BRCOND:
1537 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001538 // Ensure that libcalls are emitted before a return.
1539 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1540 Tmp1 = LegalizeOp(Tmp1);
1541 LastCALLSEQ_END = DAG.getEntryNode();
1542
Chris Lattner47e92232005-01-18 19:27:06 +00001543 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1544 case Expand: assert(0 && "It's impossible to expand bools");
1545 case Legal:
1546 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1547 break;
1548 case Promote:
1549 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001550
1551 // The top bits of the promoted condition are not necessarily zero, ensure
1552 // that the value is properly zero extended.
Dan Gohmanea859be2007-06-22 14:59:07 +00001553 if (!DAG.MaskedValueIsZero(Tmp2,
Chris Lattnerf9908172006-11-27 04:39:56 +00001554 MVT::getIntVTBitMask(Tmp2.getValueType())^1))
1555 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001556 break;
1557 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001558
1559 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001560 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001561
1562 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1563 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001564 case TargetLowering::Legal: break;
1565 case TargetLowering::Custom:
1566 Tmp1 = TLI.LowerOperation(Result, DAG);
1567 if (Tmp1.Val) Result = Tmp1;
1568 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001569 case TargetLowering::Expand:
1570 // Expand brcond's setcc into its constituent parts and create a BR_CC
1571 // Node.
1572 if (Tmp2.getOpcode() == ISD::SETCC) {
1573 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1574 Tmp2.getOperand(0), Tmp2.getOperand(1),
1575 Node->getOperand(2));
1576 } else {
1577 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1578 DAG.getCondCode(ISD::SETNE), Tmp2,
1579 DAG.getConstant(0, Tmp2.getValueType()),
1580 Node->getOperand(2));
1581 }
1582 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001583 }
1584 break;
1585 case ISD::BR_CC:
1586 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001587 // Ensure that libcalls are emitted before a branch.
1588 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1589 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001590 Tmp2 = Node->getOperand(2); // LHS
1591 Tmp3 = Node->getOperand(3); // RHS
1592 Tmp4 = Node->getOperand(1); // CC
1593
1594 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001595 LastCALLSEQ_END = DAG.getEntryNode();
1596
Nate Begeman750ac1b2006-02-01 07:19:44 +00001597 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1598 // the LHS is a legal SETCC itself. In this case, we need to compare
1599 // the result against zero to select between true and false values.
1600 if (Tmp3.Val == 0) {
1601 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1602 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001603 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001604
1605 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1606 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001607
Chris Lattner181b7a32005-12-17 23:46:46 +00001608 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1609 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001610 case TargetLowering::Legal: break;
1611 case TargetLowering::Custom:
1612 Tmp4 = TLI.LowerOperation(Result, DAG);
1613 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001614 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001615 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001616 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001617 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001618 LoadSDNode *LD = cast<LoadSDNode>(Node);
1619 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1620 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001621
Evan Cheng466685d2006-10-09 20:57:25 +00001622 ISD::LoadExtType ExtType = LD->getExtensionType();
1623 if (ExtType == ISD::NON_EXTLOAD) {
1624 MVT::ValueType VT = Node->getValueType(0);
1625 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1626 Tmp3 = Result.getValue(0);
1627 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001628
Evan Cheng466685d2006-10-09 20:57:25 +00001629 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1630 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001631 case TargetLowering::Legal:
1632 // If this is an unaligned load and the target doesn't support it,
1633 // expand it.
1634 if (!TLI.allowsUnalignedMemoryAccesses()) {
1635 unsigned ABIAlignment = TLI.getTargetData()->
1636 getABITypeAlignment(MVT::getTypeForValueType(LD->getLoadedVT()));
1637 if (LD->getAlignment() < ABIAlignment){
1638 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1639 TLI);
1640 Tmp3 = Result.getOperand(0);
1641 Tmp4 = Result.getOperand(1);
1642 LegalizeOp(Tmp3);
1643 LegalizeOp(Tmp4);
1644 }
1645 }
1646 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001647 case TargetLowering::Custom:
1648 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1649 if (Tmp1.Val) {
1650 Tmp3 = LegalizeOp(Tmp1);
1651 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001652 }
Evan Cheng466685d2006-10-09 20:57:25 +00001653 break;
1654 case TargetLowering::Promote: {
1655 // Only promote a load of vector type to another.
1656 assert(MVT::isVector(VT) && "Cannot promote this load!");
1657 // Change base type to a different vector type.
1658 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1659
1660 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001661 LD->getSrcValueOffset(),
1662 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001663 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1664 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001665 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001666 }
Evan Cheng466685d2006-10-09 20:57:25 +00001667 }
1668 // Since loads produce two values, make sure to remember that we
1669 // legalized both of them.
1670 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1671 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1672 return Op.ResNo ? Tmp4 : Tmp3;
1673 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00001674 MVT::ValueType SrcVT = LD->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00001675 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
1676 default: assert(0 && "This action is not supported yet!");
1677 case TargetLowering::Promote:
1678 assert(SrcVT == MVT::i1 &&
1679 "Can only promote extending LOAD from i1 -> i8!");
1680 Result = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1681 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001682 MVT::i8, LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001683 Tmp1 = Result.getValue(0);
1684 Tmp2 = Result.getValue(1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001685 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001686 case TargetLowering::Custom:
1687 isCustom = true;
1688 // FALLTHROUGH
1689 case TargetLowering::Legal:
1690 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1691 Tmp1 = Result.getValue(0);
1692 Tmp2 = Result.getValue(1);
1693
1694 if (isCustom) {
1695 Tmp3 = TLI.LowerOperation(Result, DAG);
1696 if (Tmp3.Val) {
1697 Tmp1 = LegalizeOp(Tmp3);
1698 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1699 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001700 } else {
1701 // If this is an unaligned load and the target doesn't support it,
1702 // expand it.
1703 if (!TLI.allowsUnalignedMemoryAccesses()) {
1704 unsigned ABIAlignment = TLI.getTargetData()->
1705 getABITypeAlignment(MVT::getTypeForValueType(LD->getLoadedVT()));
1706 if (LD->getAlignment() < ABIAlignment){
1707 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1708 TLI);
1709 Tmp1 = Result.getOperand(0);
1710 Tmp2 = Result.getOperand(1);
1711 LegalizeOp(Tmp1);
1712 LegalizeOp(Tmp2);
1713 }
1714 }
Evan Cheng466685d2006-10-09 20:57:25 +00001715 }
1716 break;
1717 case TargetLowering::Expand:
1718 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
1719 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1720 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001721 LD->getSrcValueOffset(),
1722 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001723 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
1724 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1725 Tmp2 = LegalizeOp(Load.getValue(1));
1726 break;
1727 }
Chris Lattnerfea997a2007-02-01 04:55:59 +00001728 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
Evan Cheng466685d2006-10-09 20:57:25 +00001729 // Turn the unsupported load into an EXTLOAD followed by an explicit
1730 // zero/sign extend inreg.
1731 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1732 Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001733 LD->getSrcValueOffset(), SrcVT,
1734 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001735 SDOperand ValRes;
1736 if (ExtType == ISD::SEXTLOAD)
1737 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1738 Result, DAG.getValueType(SrcVT));
1739 else
1740 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
1741 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1742 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1743 break;
1744 }
1745 // Since loads produce two values, make sure to remember that we legalized
1746 // both of them.
1747 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1748 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1749 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00001750 }
Chris Lattner01ff7212005-04-10 22:54:25 +00001751 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001752 case ISD::EXTRACT_ELEMENT: {
1753 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1754 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001755 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00001756 case Legal:
1757 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1758 // 1 -> Hi
1759 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1760 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1761 TLI.getShiftAmountTy()));
1762 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1763 } else {
1764 // 0 -> Lo
1765 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1766 Node->getOperand(0));
1767 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001768 break;
1769 case Expand:
1770 // Get both the low and high parts.
1771 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1772 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1773 Result = Tmp2; // 1 -> Hi
1774 else
1775 Result = Tmp1; // 0 -> Lo
1776 break;
1777 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001778 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00001779 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001780
1781 case ISD::CopyToReg:
1782 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00001783
Chris Lattnerc9c60f62005-08-24 16:35:28 +00001784 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001785 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00001786 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001787 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001788 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001789 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001790 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001791 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001792 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001793 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001794 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1795 Tmp3);
1796 } else {
1797 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001798 }
1799
1800 // Since this produces two values, make sure to remember that we legalized
1801 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001802 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001803 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001804 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00001805 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001806 break;
1807
1808 case ISD::RET:
1809 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001810
1811 // Ensure that libcalls are emitted before a return.
1812 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1813 Tmp1 = LegalizeOp(Tmp1);
1814 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00001815
Chris Lattner3e928bb2005-01-07 07:47:09 +00001816 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00001817 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00001818 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001819 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00001820 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001821 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00001822 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001823 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00001824 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +00001825 if (!MVT::isVector(Tmp2.getValueType())) {
Chris Lattnerf87324e2006-04-11 01:31:51 +00001826 SDOperand Lo, Hi;
1827 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00001828
1829 // Big endian systems want the hi reg first.
1830 if (!TLI.isLittleEndian())
1831 std::swap(Lo, Hi);
1832
Evan Cheng13acce32006-12-11 19:27:14 +00001833 if (Hi.Val)
1834 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
1835 else
1836 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00001837 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001838 } else {
1839 SDNode *InVal = Tmp2.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00001840 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(0));
1841 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(0));
Chris Lattnerf87324e2006-04-11 01:31:51 +00001842
Dan Gohman7f321562007-06-25 16:23:39 +00001843 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00001844 // type. If so, convert to the vector type.
Chris Lattnerf87324e2006-04-11 01:31:51 +00001845 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00001846 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00001847 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00001848 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001849 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001850 } else if (NumElems == 1) {
1851 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00001852 Tmp2 = ScalarizeVectorOp(Tmp2);
1853 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001854 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001855
1856 // FIXME: Returns of gcc generic vectors smaller than a legal type
1857 // should be returned in integer registers!
1858
Chris Lattnerf87324e2006-04-11 01:31:51 +00001859 // The scalarized value type may not be legal, e.g. it might require
1860 // promotion or expansion. Relegalize the return.
1861 Result = LegalizeOp(Result);
1862 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001863 // FIXME: Returns of gcc generic vectors larger than a legal vector
1864 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00001865 SDOperand Lo, Hi;
1866 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00001867 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001868 Result = LegalizeOp(Result);
1869 }
1870 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001871 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001872 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001873 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001874 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001875 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001876 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001877 }
1878 break;
1879 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001880 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001881 break;
1882 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001883 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001884 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001885 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00001886 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1887 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00001888 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001889 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001890 break;
1891 case Expand: {
1892 SDOperand Lo, Hi;
Dan Gohman6595cb32007-06-27 16:08:04 +00001893 assert(!MVT::isExtendedVT(Node->getOperand(i).getValueType()) &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001894 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001895 ExpandOp(Node->getOperand(i), Lo, Hi);
1896 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001897 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00001898 if (Hi.Val) {
1899 NewValues.push_back(Hi);
1900 NewValues.push_back(Node->getOperand(i+1));
1901 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001902 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001903 }
1904 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001905 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001906 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001907
1908 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001909 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001910 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001911 Result = DAG.getNode(ISD::RET, MVT::Other,
1912 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00001913 break;
1914 }
1915 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001916
Chris Lattner6862dbc2006-01-29 21:02:23 +00001917 if (Result.getOpcode() == ISD::RET) {
1918 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1919 default: assert(0 && "This action is not supported yet!");
1920 case TargetLowering::Legal: break;
1921 case TargetLowering::Custom:
1922 Tmp1 = TLI.LowerOperation(Result, DAG);
1923 if (Tmp1.Val) Result = Tmp1;
1924 break;
1925 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001926 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001927 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001928 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00001929 StoreSDNode *ST = cast<StoreSDNode>(Node);
1930 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
1931 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001932 int SVOffset = ST->getSrcValueOffset();
1933 unsigned Alignment = ST->getAlignment();
1934 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00001935
Evan Cheng8b2794a2006-10-13 21:14:26 +00001936 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00001937 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
1938 // FIXME: We shouldn't do this for TargetConstantFP's.
1939 // FIXME: move this to the DAG Combiner! Note that we can't regress due
1940 // to phase ordering between legalized code and the dag combiner. This
1941 // probably means that we need to integrate dag combiner and legalizer
1942 // together.
1943 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
1944 if (CFP->getValueType(0) == MVT::f32) {
1945 Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
1946 } else {
1947 assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
1948 Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
1949 }
1950 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001951 SVOffset, isVolatile, Alignment);
Chris Lattnerd93d46e2006-12-12 04:18:56 +00001952 break;
1953 }
1954
Evan Cheng8b2794a2006-10-13 21:14:26 +00001955 switch (getTypeAction(ST->getStoredVT())) {
1956 case Legal: {
1957 Tmp3 = LegalizeOp(ST->getValue());
1958 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1959 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001960
Evan Cheng8b2794a2006-10-13 21:14:26 +00001961 MVT::ValueType VT = Tmp3.getValueType();
1962 switch (TLI.getOperationAction(ISD::STORE, VT)) {
1963 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001964 case TargetLowering::Legal:
1965 // If this is an unaligned store and the target doesn't support it,
1966 // expand it.
1967 if (!TLI.allowsUnalignedMemoryAccesses()) {
1968 unsigned ABIAlignment = TLI.getTargetData()->
1969 getABITypeAlignment(MVT::getTypeForValueType(ST->getStoredVT()));
1970 if (ST->getAlignment() < ABIAlignment)
1971 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
1972 TLI);
1973 }
1974 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00001975 case TargetLowering::Custom:
1976 Tmp1 = TLI.LowerOperation(Result, DAG);
1977 if (Tmp1.Val) Result = Tmp1;
1978 break;
1979 case TargetLowering::Promote:
1980 assert(MVT::isVector(VT) && "Unknown legal promote case!");
1981 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
1982 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
1983 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001984 ST->getSrcValue(), SVOffset, isVolatile,
1985 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001986 break;
1987 }
1988 break;
1989 }
1990 case Promote:
1991 // Truncate the value and store the result.
1992 Tmp3 = PromoteOp(ST->getValue());
1993 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001994 SVOffset, ST->getStoredVT(),
1995 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001996 break;
1997
1998 case Expand:
1999 unsigned IncrementSize = 0;
2000 SDOperand Lo, Hi;
2001
2002 // If this is a vector type, then we have to calculate the increment as
2003 // the product of the element size in bytes, and the number of elements
2004 // in the high half of the vector.
Dan Gohman7f321562007-06-25 16:23:39 +00002005 if (MVT::isVector(ST->getValue().getValueType())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002006 SDNode *InVal = ST->getValue().Val;
Dan Gohman7f321562007-06-25 16:23:39 +00002007 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(0));
2008 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(0));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002009
Dan Gohman7f321562007-06-25 16:23:39 +00002010 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002011 // type. If so, convert to the vector type.
Evan Cheng8b2794a2006-10-13 21:14:26 +00002012 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002013 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002014 // Turn this into a normal store of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002015 Tmp3 = LegalizeOp(Node->getOperand(1));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002016 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002017 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002018 Result = LegalizeOp(Result);
2019 break;
2020 } else if (NumElems == 1) {
2021 // Turn this into a normal store of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002022 Tmp3 = ScalarizeVectorOp(Node->getOperand(1));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002023 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002024 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002025 // The scalarized value type may not be legal, e.g. it might require
2026 // promotion or expansion. Relegalize the scalar store.
2027 Result = LegalizeOp(Result);
2028 break;
2029 } else {
2030 SplitVectorOp(Node->getOperand(1), Lo, Hi);
2031 IncrementSize = NumElems/2 * MVT::getSizeInBits(EVT)/8;
2032 }
2033 } else {
2034 ExpandOp(Node->getOperand(1), Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002035 IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002036
2037 if (!TLI.isLittleEndian())
2038 std::swap(Lo, Hi);
2039 }
2040
2041 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002042 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002043
2044 if (Hi.Val == NULL) {
2045 // Must be int <-> float one-to-one expansion.
2046 Result = Lo;
2047 break;
2048 }
2049
Evan Cheng8b2794a2006-10-13 21:14:26 +00002050 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2051 getIntPtrConstant(IncrementSize));
2052 assert(isTypeLegal(Tmp2.getValueType()) &&
2053 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002054 SVOffset += IncrementSize;
2055 if (Alignment > IncrementSize)
2056 Alignment = IncrementSize;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002057 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002058 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002059 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2060 break;
2061 }
2062 } else {
2063 // Truncating store
2064 assert(isTypeLegal(ST->getValue().getValueType()) &&
2065 "Cannot handle illegal TRUNCSTORE yet!");
2066 Tmp3 = LegalizeOp(ST->getValue());
2067
2068 // The only promote case we handle is TRUNCSTORE:i1 X into
2069 // -> TRUNCSTORE:i8 (and X, 1)
2070 if (ST->getStoredVT() == MVT::i1 &&
2071 TLI.getStoreXAction(MVT::i1) == TargetLowering::Promote) {
2072 // Promote the bool to a mask then store.
2073 Tmp3 = DAG.getNode(ISD::AND, Tmp3.getValueType(), Tmp3,
2074 DAG.getConstant(1, Tmp3.getValueType()));
2075 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002076 SVOffset, MVT::i8,
2077 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002078 } else if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2079 Tmp2 != ST->getBasePtr()) {
2080 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2081 ST->getOffset());
2082 }
2083
2084 MVT::ValueType StVT = cast<StoreSDNode>(Result.Val)->getStoredVT();
2085 switch (TLI.getStoreXAction(StVT)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002086 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002087 case TargetLowering::Legal:
2088 // If this is an unaligned store and the target doesn't support it,
2089 // expand it.
2090 if (!TLI.allowsUnalignedMemoryAccesses()) {
2091 unsigned ABIAlignment = TLI.getTargetData()->
2092 getABITypeAlignment(MVT::getTypeForValueType(ST->getStoredVT()));
2093 if (ST->getAlignment() < ABIAlignment)
2094 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2095 TLI);
2096 }
2097 break;
Chris Lattner456a93a2006-01-28 07:39:30 +00002098 case TargetLowering::Custom:
2099 Tmp1 = TLI.LowerOperation(Result, DAG);
2100 if (Tmp1.Val) Result = Tmp1;
2101 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002102 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002103 }
2104 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002105 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002106 case ISD::PCMARKER:
2107 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002108 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002109 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002110 case ISD::STACKSAVE:
2111 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002112 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2113 Tmp1 = Result.getValue(0);
2114 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002115
Chris Lattner140d53c2006-01-13 02:50:02 +00002116 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2117 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002118 case TargetLowering::Legal: break;
2119 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002120 Tmp3 = TLI.LowerOperation(Result, DAG);
2121 if (Tmp3.Val) {
2122 Tmp1 = LegalizeOp(Tmp3);
2123 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002124 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002125 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002126 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002127 // Expand to CopyFromReg if the target set
2128 // StackPointerRegisterToSaveRestore.
2129 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002130 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002131 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002132 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002133 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002134 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2135 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002136 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002137 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002138 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002139
2140 // Since stacksave produce two values, make sure to remember that we
2141 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002142 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2143 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2144 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002145
Chris Lattner140d53c2006-01-13 02:50:02 +00002146 case ISD::STACKRESTORE:
2147 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2148 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002149 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002150
2151 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2152 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002153 case TargetLowering::Legal: break;
2154 case TargetLowering::Custom:
2155 Tmp1 = TLI.LowerOperation(Result, DAG);
2156 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002157 break;
2158 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002159 // Expand to CopyToReg if the target set
2160 // StackPointerRegisterToSaveRestore.
2161 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2162 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2163 } else {
2164 Result = Tmp1;
2165 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002166 break;
2167 }
2168 break;
2169
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002170 case ISD::READCYCLECOUNTER:
2171 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002172 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002173 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2174 Node->getValueType(0))) {
2175 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002176 case TargetLowering::Legal:
2177 Tmp1 = Result.getValue(0);
2178 Tmp2 = Result.getValue(1);
2179 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002180 case TargetLowering::Custom:
2181 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002182 Tmp1 = LegalizeOp(Result.getValue(0));
2183 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002184 break;
2185 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002186
2187 // Since rdcc produce two values, make sure to remember that we legalized
2188 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002189 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2190 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002191 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002192
Chris Lattner2ee743f2005-01-14 22:08:15 +00002193 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002194 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2195 case Expand: assert(0 && "It's impossible to expand bools");
2196 case Legal:
2197 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2198 break;
2199 case Promote:
2200 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002201 // Make sure the condition is either zero or one.
Dan Gohmanea859be2007-06-22 14:59:07 +00002202 if (!DAG.MaskedValueIsZero(Tmp1,
Chris Lattnerb6c80602006-11-28 01:03:30 +00002203 MVT::getIntVTBitMask(Tmp1.getValueType())^1))
2204 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002205 break;
2206 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002207 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002208 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002209
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002210 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002211
Nate Begemanb942a3d2005-08-23 04:29:48 +00002212 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002213 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002214 case TargetLowering::Legal: break;
2215 case TargetLowering::Custom: {
2216 Tmp1 = TLI.LowerOperation(Result, DAG);
2217 if (Tmp1.Val) Result = Tmp1;
2218 break;
2219 }
Nate Begeman9373a812005-08-10 20:51:12 +00002220 case TargetLowering::Expand:
2221 if (Tmp1.getOpcode() == ISD::SETCC) {
2222 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2223 Tmp2, Tmp3,
2224 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2225 } else {
2226 Result = DAG.getSelectCC(Tmp1,
2227 DAG.getConstant(0, Tmp1.getValueType()),
2228 Tmp2, Tmp3, ISD::SETNE);
2229 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002230 break;
2231 case TargetLowering::Promote: {
2232 MVT::ValueType NVT =
2233 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2234 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002235 if (MVT::isVector(Tmp2.getValueType())) {
2236 ExtOp = ISD::BIT_CONVERT;
2237 TruncOp = ISD::BIT_CONVERT;
2238 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002239 ExtOp = ISD::ANY_EXTEND;
2240 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002241 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002242 ExtOp = ISD::FP_EXTEND;
2243 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002244 }
2245 // Promote each of the values to the new type.
2246 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2247 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2248 // Perform the larger operation, then round down.
2249 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
2250 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2251 break;
2252 }
2253 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002254 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002255 case ISD::SELECT_CC: {
2256 Tmp1 = Node->getOperand(0); // LHS
2257 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002258 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2259 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002260 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002261
Nate Begeman750ac1b2006-02-01 07:19:44 +00002262 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2263
2264 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2265 // the LHS is a legal SETCC itself. In this case, we need to compare
2266 // the result against zero to select between true and false values.
2267 if (Tmp2.Val == 0) {
2268 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2269 CC = DAG.getCondCode(ISD::SETNE);
2270 }
2271 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2272
2273 // Everything is legal, see if we should expand this op or something.
2274 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2275 default: assert(0 && "This action is not supported yet!");
2276 case TargetLowering::Legal: break;
2277 case TargetLowering::Custom:
2278 Tmp1 = TLI.LowerOperation(Result, DAG);
2279 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002280 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002281 }
2282 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002283 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002284 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002285 Tmp1 = Node->getOperand(0);
2286 Tmp2 = Node->getOperand(1);
2287 Tmp3 = Node->getOperand(2);
2288 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2289
2290 // If we had to Expand the SetCC operands into a SELECT node, then it may
2291 // not always be possible to return a true LHS & RHS. In this case, just
2292 // return the value we legalized, returned in the LHS
2293 if (Tmp2.Val == 0) {
2294 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002295 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002296 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002297
Chris Lattner73e142f2006-01-30 22:43:50 +00002298 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002299 default: assert(0 && "Cannot handle this action for SETCC yet!");
2300 case TargetLowering::Custom:
2301 isCustom = true;
2302 // FALLTHROUGH.
2303 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002304 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002305 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002306 Tmp4 = TLI.LowerOperation(Result, DAG);
2307 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002308 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002309 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002310 case TargetLowering::Promote: {
2311 // First step, figure out the appropriate operation to use.
2312 // Allow SETCC to not be supported for all legal data types
2313 // Mostly this targets FP
2314 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
Chris Lattner00755df2007-02-04 00:27:56 +00002315 MVT::ValueType OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002316
2317 // Scan for the appropriate larger type to use.
2318 while (1) {
2319 NewInTy = (MVT::ValueType)(NewInTy+1);
2320
2321 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
2322 "Fell off of the edge of the integer world");
2323 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2324 "Fell off of the edge of the floating point world");
2325
2326 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002327 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002328 break;
2329 }
2330 if (MVT::isInteger(NewInTy))
2331 assert(0 && "Cannot promote Legal Integer SETCC yet");
2332 else {
2333 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2334 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2335 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002336 Tmp1 = LegalizeOp(Tmp1);
2337 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002338 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002339 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002340 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002341 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002342 case TargetLowering::Expand:
2343 // Expand a setcc node into a select_cc of the same condition, lhs, and
2344 // rhs that selects between const 1 (true) and const 0 (false).
2345 MVT::ValueType VT = Node->getValueType(0);
2346 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2347 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002348 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002349 break;
2350 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002351 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002352 case ISD::MEMSET:
2353 case ISD::MEMCPY:
2354 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002355 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +00002356 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
2357
2358 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
2359 switch (getTypeAction(Node->getOperand(2).getValueType())) {
2360 case Expand: assert(0 && "Cannot expand a byte!");
2361 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002362 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002363 break;
2364 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002365 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002366 break;
2367 }
2368 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002369 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +00002370 }
Chris Lattner272455b2005-02-02 03:44:41 +00002371
2372 SDOperand Tmp4;
2373 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattner6814f152005-07-13 01:42:45 +00002374 case Expand: {
2375 // Length is too big, just take the lo-part of the length.
2376 SDOperand HiPart;
Chris Lattnerfa9aa2b2006-11-07 04:11:44 +00002377 ExpandOp(Node->getOperand(3), Tmp4, HiPart);
Chris Lattner6814f152005-07-13 01:42:45 +00002378 break;
2379 }
Chris Lattnere5605212005-01-28 22:29:18 +00002380 case Legal:
2381 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +00002382 break;
2383 case Promote:
2384 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +00002385 break;
2386 }
2387
2388 SDOperand Tmp5;
2389 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2390 case Expand: assert(0 && "Cannot expand this yet!");
2391 case Legal:
2392 Tmp5 = LegalizeOp(Node->getOperand(4));
2393 break;
2394 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +00002395 Tmp5 = PromoteOp(Node->getOperand(4));
2396 break;
2397 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002398
2399 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2400 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002401 case TargetLowering::Custom:
2402 isCustom = true;
2403 // FALLTHROUGH
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002404 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002405 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner456a93a2006-01-28 07:39:30 +00002406 if (isCustom) {
2407 Tmp1 = TLI.LowerOperation(Result, DAG);
2408 if (Tmp1.Val) Result = Tmp1;
2409 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002410 break;
2411 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +00002412 // Otherwise, the target does not support this operation. Lower the
2413 // operation to an explicit libcall as appropriate.
2414 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Andersona69571c2006-05-03 01:29:57 +00002415 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00002416 TargetLowering::ArgListTy Args;
2417 TargetLowering::ArgListEntry Entry;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002418
Reid Spencer3bfbf4e2005-01-12 14:53:45 +00002419 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002420 if (Node->getOpcode() == ISD::MEMSET) {
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002421 Entry.Node = Tmp2; Entry.Ty = IntPtrTy;
Reid Spencer47857812006-12-31 05:55:36 +00002422 Args.push_back(Entry);
Chris Lattnerdca7abe2006-02-20 06:38:35 +00002423 // Extend the (previously legalized) ubyte argument to be an int value
2424 // for the call.
2425 if (Tmp3.getValueType() > MVT::i32)
2426 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2427 else
2428 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002429 Entry.Node = Tmp3; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
Reid Spencer47857812006-12-31 05:55:36 +00002430 Args.push_back(Entry);
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002431 Entry.Node = Tmp4; Entry.Ty = IntPtrTy; Entry.isSExt = false;
Reid Spencer47857812006-12-31 05:55:36 +00002432 Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002433
2434 FnName = "memset";
2435 } else if (Node->getOpcode() == ISD::MEMCPY ||
2436 Node->getOpcode() == ISD::MEMMOVE) {
Anton Korobeynikovb25fe822007-02-01 08:39:52 +00002437 Entry.Ty = IntPtrTy;
Reid Spencerb47b25c2007-01-03 04:22:32 +00002438 Entry.Node = Tmp2; Args.push_back(Entry);
2439 Entry.Node = Tmp3; Args.push_back(Entry);
2440 Entry.Node = Tmp4; Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002441 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2442 } else {
2443 assert(0 && "Unknown op!");
2444 }
Chris Lattner45982da2005-05-12 16:53:42 +00002445
Chris Lattnere1bd8222005-01-11 05:57:22 +00002446 std::pair<SDOperand,SDOperand> CallResult =
Reid Spencer47857812006-12-31 05:55:36 +00002447 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, false, CallingConv::C, false,
Chris Lattnere1bd8222005-01-11 05:57:22 +00002448 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00002449 Result = CallResult.second;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002450 break;
2451 }
Chris Lattnere1bd8222005-01-11 05:57:22 +00002452 }
2453 break;
2454 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002455
Chris Lattner5b359c62005-04-02 04:00:59 +00002456 case ISD::SHL_PARTS:
2457 case ISD::SRA_PARTS:
2458 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002459 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002460 bool Changed = false;
2461 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2462 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2463 Changed |= Ops.back() != Node->getOperand(i);
2464 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002465 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002466 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002467
Evan Cheng05a2d562006-01-09 18:31:59 +00002468 switch (TLI.getOperationAction(Node->getOpcode(),
2469 Node->getValueType(0))) {
2470 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002471 case TargetLowering::Legal: break;
2472 case TargetLowering::Custom:
2473 Tmp1 = TLI.LowerOperation(Result, DAG);
2474 if (Tmp1.Val) {
2475 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002476 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002477 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002478 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2479 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002480 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002481 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002482 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002483 return RetVal;
2484 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002485 break;
2486 }
2487
Chris Lattner2c8086f2005-04-02 05:00:07 +00002488 // Since these produce multiple values, make sure to remember that we
2489 // legalized all of them.
2490 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2491 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2492 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002493 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002494
2495 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002496 case ISD::ADD:
2497 case ISD::SUB:
2498 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002499 case ISD::MULHS:
2500 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002501 case ISD::UDIV:
2502 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002503 case ISD::AND:
2504 case ISD::OR:
2505 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002506 case ISD::SHL:
2507 case ISD::SRL:
2508 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002509 case ISD::FADD:
2510 case ISD::FSUB:
2511 case ISD::FMUL:
2512 case ISD::FDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002513 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002514 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2515 case Expand: assert(0 && "Not possible");
2516 case Legal:
2517 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2518 break;
2519 case Promote:
2520 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2521 break;
2522 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002523
2524 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002525
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002526 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002527 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002528 case TargetLowering::Legal: break;
2529 case TargetLowering::Custom:
2530 Tmp1 = TLI.LowerOperation(Result, DAG);
2531 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002532 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002533 case TargetLowering::Expand: {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002534 if (Node->getValueType(0) == MVT::i32) {
2535 switch (Node->getOpcode()) {
2536 default: assert(0 && "Do not know how to expand this integer BinOp!");
2537 case ISD::UDIV:
2538 case ISD::SDIV:
Evan Cheng56966222007-01-12 02:11:51 +00002539 RTLIB::Libcall LC = Node->getOpcode() == ISD::UDIV
2540 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002541 SDOperand Dummy;
Reid Spencer47857812006-12-31 05:55:36 +00002542 bool isSigned = Node->getOpcode() == ISD::SDIV;
Evan Cheng56966222007-01-12 02:11:51 +00002543 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002544 };
2545 break;
2546 }
2547
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002548 assert(MVT::isVector(Node->getValueType(0)) &&
2549 "Cannot expand this binary operator!");
2550 // Expand the operation into a bunch of nasty scalar code.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002551 SmallVector<SDOperand, 8> Ops;
Dan Gohman51eaa862007-06-14 22:58:02 +00002552 MVT::ValueType EltVT = MVT::getVectorElementType(Node->getValueType(0));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002553 MVT::ValueType PtrVT = TLI.getPointerTy();
2554 for (unsigned i = 0, e = MVT::getVectorNumElements(Node->getValueType(0));
2555 i != e; ++i) {
2556 SDOperand Idx = DAG.getConstant(i, PtrVT);
2557 SDOperand LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, Idx);
2558 SDOperand RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, Idx);
2559 Ops.push_back(DAG.getNode(Node->getOpcode(), EltVT, LHS, RHS));
2560 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002561 Result = DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0),
2562 &Ops[0], Ops.size());
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002563 break;
2564 }
Evan Chengcc987612006-04-12 21:20:24 +00002565 case TargetLowering::Promote: {
2566 switch (Node->getOpcode()) {
2567 default: assert(0 && "Do not know how to promote this BinOp!");
2568 case ISD::AND:
2569 case ISD::OR:
2570 case ISD::XOR: {
2571 MVT::ValueType OVT = Node->getValueType(0);
2572 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2573 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2574 // Bit convert each of the values to the new type.
2575 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2576 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2577 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2578 // Bit convert the result back the original type.
2579 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2580 break;
2581 }
2582 }
2583 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002584 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002585 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002586
2587 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2588 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2589 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2590 case Expand: assert(0 && "Not possible");
2591 case Legal:
2592 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2593 break;
2594 case Promote:
2595 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2596 break;
2597 }
2598
2599 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2600
2601 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2602 default: assert(0 && "Operation not supported");
2603 case TargetLowering::Custom:
2604 Tmp1 = TLI.LowerOperation(Result, DAG);
2605 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00002606 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002607 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00002608 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00002609 // If this target supports fabs/fneg natively and select is cheap,
2610 // do this efficiently.
2611 if (!TLI.isSelectExpensive() &&
2612 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
2613 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00002614 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00002615 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00002616 // Get the sign bit of the RHS.
2617 MVT::ValueType IVT =
2618 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2619 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2620 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2621 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2622 // Get the absolute value of the result.
2623 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2624 // Select between the nabs and abs value based on the sign bit of
2625 // the input.
2626 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2627 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2628 AbsVal),
2629 AbsVal);
2630 Result = LegalizeOp(Result);
2631 break;
2632 }
2633
2634 // Otherwise, do bitwise ops!
Evan Cheng912095b2007-01-04 21:56:39 +00002635 MVT::ValueType NVT =
2636 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
2637 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
2638 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
2639 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00002640 break;
2641 }
Evan Cheng912095b2007-01-04 21:56:39 +00002642 }
Chris Lattnera09f8482006-03-05 05:09:38 +00002643 break;
2644
Nate Begeman551bf3f2006-02-17 05:43:56 +00002645 case ISD::ADDC:
2646 case ISD::SUBC:
2647 Tmp1 = LegalizeOp(Node->getOperand(0));
2648 Tmp2 = LegalizeOp(Node->getOperand(1));
2649 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2650 // Since this produces two values, make sure to remember that we legalized
2651 // both of them.
2652 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2653 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2654 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002655
Nate Begeman551bf3f2006-02-17 05:43:56 +00002656 case ISD::ADDE:
2657 case ISD::SUBE:
2658 Tmp1 = LegalizeOp(Node->getOperand(0));
2659 Tmp2 = LegalizeOp(Node->getOperand(1));
2660 Tmp3 = LegalizeOp(Node->getOperand(2));
2661 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2662 // Since this produces two values, make sure to remember that we legalized
2663 // both of them.
2664 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2665 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2666 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002667
Nate Begeman419f8b62005-10-18 00:27:41 +00002668 case ISD::BUILD_PAIR: {
2669 MVT::ValueType PairTy = Node->getValueType(0);
2670 // TODO: handle the case where the Lo and Hi operands are not of legal type
2671 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
2672 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
2673 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002674 case TargetLowering::Promote:
2675 case TargetLowering::Custom:
2676 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00002677 case TargetLowering::Legal:
2678 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2679 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2680 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00002681 case TargetLowering::Expand:
2682 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2683 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2684 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2685 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
2686 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00002687 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00002688 break;
2689 }
2690 break;
2691 }
2692
Nate Begemanc105e192005-04-06 00:23:54 +00002693 case ISD::UREM:
2694 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002695 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00002696 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2697 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002698
Nate Begemanc105e192005-04-06 00:23:54 +00002699 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002700 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2701 case TargetLowering::Custom:
2702 isCustom = true;
2703 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00002704 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002705 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002706 if (isCustom) {
2707 Tmp1 = TLI.LowerOperation(Result, DAG);
2708 if (Tmp1.Val) Result = Tmp1;
2709 }
Nate Begemanc105e192005-04-06 00:23:54 +00002710 break;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002711 case TargetLowering::Expand:
Evan Cheng6b5578f2006-09-18 23:28:33 +00002712 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00002713 bool isSigned = DivOpc == ISD::SDIV;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002714 if (MVT::isInteger(Node->getValueType(0))) {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002715 if (TLI.getOperationAction(DivOpc, Node->getValueType(0)) ==
2716 TargetLowering::Legal) {
2717 // X % Y -> X-X/Y*Y
2718 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng6b5578f2006-09-18 23:28:33 +00002719 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002720 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2721 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2722 } else {
2723 assert(Node->getValueType(0) == MVT::i32 &&
2724 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00002725 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
2726 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002727 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002728 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002729 }
Chris Lattner4c64dd72005-08-03 20:31:37 +00002730 } else {
2731 // Floating point mod -> fmod libcall.
Evan Cheng56966222007-01-12 02:11:51 +00002732 RTLIB::Libcall LC = Node->getValueType(0) == MVT::f32
2733 ? RTLIB::REM_F32 : RTLIB::REM_F64;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002734 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002735 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2736 false/*sign irrelevant*/, Dummy);
Nate Begemanc105e192005-04-06 00:23:54 +00002737 }
2738 break;
2739 }
2740 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00002741 case ISD::VAARG: {
2742 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2743 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2744
Chris Lattner5c62f332006-01-28 07:42:08 +00002745 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00002746 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2747 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002748 case TargetLowering::Custom:
2749 isCustom = true;
2750 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002751 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002752 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2753 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002754 Tmp1 = Result.getValue(1);
2755
2756 if (isCustom) {
2757 Tmp2 = TLI.LowerOperation(Result, DAG);
2758 if (Tmp2.Val) {
2759 Result = LegalizeOp(Tmp2);
2760 Tmp1 = LegalizeOp(Tmp2.getValue(1));
2761 }
2762 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002763 break;
2764 case TargetLowering::Expand: {
Evan Cheng466685d2006-10-09 20:57:25 +00002765 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00002766 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00002767 SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002768 // Increment the pointer, VAList, to the next vaarg
2769 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2770 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2771 TLI.getPointerTy()));
2772 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00002773 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
2774 SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002775 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00002776 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002777 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00002778 Result = LegalizeOp(Result);
2779 break;
2780 }
2781 }
2782 // Since VAARG produces two values, make sure to remember that we
2783 // legalized both of them.
2784 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00002785 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2786 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00002787 }
2788
2789 case ISD::VACOPY:
2790 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2791 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
2792 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
2793
2794 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
2795 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002796 case TargetLowering::Custom:
2797 isCustom = true;
2798 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002799 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002800 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
2801 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00002802 if (isCustom) {
2803 Tmp1 = TLI.LowerOperation(Result, DAG);
2804 if (Tmp1.Val) Result = Tmp1;
2805 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002806 break;
2807 case TargetLowering::Expand:
2808 // This defaults to loading a pointer from the input and storing it to the
2809 // output, returning the chain.
Evan Cheng466685d2006-10-09 20:57:25 +00002810 SrcValueSDNode *SVD = cast<SrcValueSDNode>(Node->getOperand(3));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002811 SrcValueSDNode *SVS = cast<SrcValueSDNode>(Node->getOperand(4));
Evan Cheng466685d2006-10-09 20:57:25 +00002812 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, SVD->getValue(),
2813 SVD->getOffset());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002814 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, SVS->getValue(),
2815 SVS->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002816 break;
2817 }
2818 break;
2819
2820 case ISD::VAEND:
2821 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2822 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2823
2824 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2825 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002826 case TargetLowering::Custom:
2827 isCustom = true;
2828 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002829 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002830 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00002831 if (isCustom) {
2832 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2833 if (Tmp1.Val) Result = Tmp1;
2834 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002835 break;
2836 case TargetLowering::Expand:
2837 Result = Tmp1; // Default to a no-op, return the chain
2838 break;
2839 }
2840 break;
2841
2842 case ISD::VASTART:
2843 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2844 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2845
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002846 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2847
Nate Begemanacc398c2006-01-25 18:21:52 +00002848 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2849 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002850 case TargetLowering::Legal: break;
2851 case TargetLowering::Custom:
2852 Tmp1 = TLI.LowerOperation(Result, DAG);
2853 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00002854 break;
2855 }
2856 break;
2857
Nate Begeman35ef9132006-01-11 21:21:00 +00002858 case ISD::ROTL:
2859 case ISD::ROTR:
2860 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2861 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002862 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00002863 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2864 default:
2865 assert(0 && "ROTL/ROTR legalize operation not supported");
2866 break;
2867 case TargetLowering::Legal:
2868 break;
2869 case TargetLowering::Custom:
2870 Tmp1 = TLI.LowerOperation(Result, DAG);
2871 if (Tmp1.Val) Result = Tmp1;
2872 break;
2873 case TargetLowering::Promote:
2874 assert(0 && "Do not know how to promote ROTL/ROTR");
2875 break;
2876 case TargetLowering::Expand:
2877 assert(0 && "Do not know how to expand ROTL/ROTR");
2878 break;
2879 }
Nate Begeman35ef9132006-01-11 21:21:00 +00002880 break;
2881
Nate Begemand88fc032006-01-14 03:14:10 +00002882 case ISD::BSWAP:
2883 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2884 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002885 case TargetLowering::Custom:
2886 assert(0 && "Cannot custom legalize this yet!");
2887 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002888 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002889 break;
2890 case TargetLowering::Promote: {
2891 MVT::ValueType OVT = Tmp1.getValueType();
2892 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanb55757e2007-05-18 17:52:13 +00002893 unsigned DiffBits = MVT::getSizeInBits(NVT) - MVT::getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00002894
Chris Lattner456a93a2006-01-28 07:39:30 +00002895 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2896 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2897 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2898 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2899 break;
2900 }
2901 case TargetLowering::Expand:
2902 Result = ExpandBSWAP(Tmp1);
2903 break;
Nate Begemand88fc032006-01-14 03:14:10 +00002904 }
2905 break;
2906
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002907 case ISD::CTPOP:
2908 case ISD::CTTZ:
2909 case ISD::CTLZ:
2910 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2911 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00002912 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002913 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002914 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00002915 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00002916 TargetLowering::Custom) {
2917 Tmp1 = TLI.LowerOperation(Result, DAG);
2918 if (Tmp1.Val) {
2919 Result = Tmp1;
2920 }
Scott Michel910b66d2007-07-30 21:00:31 +00002921 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002922 break;
2923 case TargetLowering::Promote: {
2924 MVT::ValueType OVT = Tmp1.getValueType();
2925 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00002926
2927 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002928 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2929 // Perform the larger operation, then subtract if needed.
2930 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002931 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002932 case ISD::CTPOP:
2933 Result = Tmp1;
2934 break;
2935 case ISD::CTTZ:
2936 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002937 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00002938 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002939 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00002940 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Scott Michel910b66d2007-07-30 21:00:31 +00002941 DAG.getConstant(MVT::getSizeInBits(OVT),NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002942 break;
2943 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00002944 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00002945 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00002946 DAG.getConstant(MVT::getSizeInBits(NVT) -
2947 MVT::getSizeInBits(OVT), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002948 break;
2949 }
2950 break;
2951 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002952 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002953 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002954 break;
2955 }
2956 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00002957
Chris Lattner2c8086f2005-04-02 05:00:07 +00002958 // Unary operators
2959 case ISD::FABS:
2960 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00002961 case ISD::FSQRT:
2962 case ISD::FSIN:
2963 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002964 Tmp1 = LegalizeOp(Node->getOperand(0));
2965 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002966 case TargetLowering::Promote:
2967 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00002968 isCustom = true;
2969 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00002970 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002971 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00002972 if (isCustom) {
2973 Tmp1 = TLI.LowerOperation(Result, DAG);
2974 if (Tmp1.Val) Result = Tmp1;
2975 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002976 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00002977 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002978 switch (Node->getOpcode()) {
2979 default: assert(0 && "Unreachable!");
2980 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002981 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2982 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002983 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002984 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002985 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002986 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2987 MVT::ValueType VT = Node->getValueType(0);
2988 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002989 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002990 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2991 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002992 break;
2993 }
2994 case ISD::FSQRT:
2995 case ISD::FSIN:
2996 case ISD::FCOS: {
2997 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng56966222007-01-12 02:11:51 +00002998 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002999 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003000 case ISD::FSQRT:
3001 LC = VT == MVT::f32 ? RTLIB::SQRT_F32 : RTLIB::SQRT_F64;
3002 break;
3003 case ISD::FSIN:
3004 LC = VT == MVT::f32 ? RTLIB::SIN_F32 : RTLIB::SIN_F64;
3005 break;
3006 case ISD::FCOS:
3007 LC = VT == MVT::f32 ? RTLIB::COS_F32 : RTLIB::COS_F64;
3008 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003009 default: assert(0 && "Unreachable!");
3010 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00003011 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003012 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3013 false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003014 break;
3015 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003016 }
3017 break;
3018 }
3019 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003020 case ISD::FPOWI: {
3021 // We always lower FPOWI into a libcall. No target support it yet.
Evan Cheng56966222007-01-12 02:11:51 +00003022 RTLIB::Libcall LC = Node->getValueType(0) == MVT::f32
3023 ? RTLIB::POWI_F32 : RTLIB::POWI_F64;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003024 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003025 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3026 false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003027 break;
3028 }
Chris Lattner35481892005-12-23 00:16:34 +00003029 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003030 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner35481892005-12-23 00:16:34 +00003031 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Dan Gohman7f321562007-06-25 16:23:39 +00003032 } else if (MVT::isVector(Op.getOperand(0).getValueType())) {
3033 // The input has to be a vector type, we have to either scalarize it, pack
3034 // it, or convert it based on whether the input vector type is legal.
3035 SDNode *InVal = Node->getOperand(0).Val;
3036 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(0));
3037 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(0));
3038
3039 // Figure out if there is a simple type corresponding to this Vector
3040 // type. If so, convert to the vector type.
3041 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3042 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003043 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003044 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3045 LegalizeOp(Node->getOperand(0)));
3046 break;
3047 } else if (NumElems == 1) {
3048 // Turn this into a bit convert of the scalar input.
3049 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3050 ScalarizeVectorOp(Node->getOperand(0)));
3051 break;
3052 } else {
3053 // FIXME: UNIMP! Store then reload
3054 assert(0 && "Cast from unsupported vector type not implemented yet!");
3055 }
Chris Lattner67993f72006-01-23 07:30:46 +00003056 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003057 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3058 Node->getOperand(0).getValueType())) {
3059 default: assert(0 && "Unknown operation action!");
3060 case TargetLowering::Expand:
3061 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3062 break;
3063 case TargetLowering::Legal:
3064 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003065 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003066 break;
3067 }
3068 }
3069 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003070
Chris Lattner2c8086f2005-04-02 05:00:07 +00003071 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003072 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003073 case ISD::UINT_TO_FP: {
3074 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003075 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3076 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003077 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003078 Node->getOperand(0).getValueType())) {
3079 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003080 case TargetLowering::Custom:
3081 isCustom = true;
3082 // FALLTHROUGH
3083 case TargetLowering::Legal:
3084 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003085 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003086 if (isCustom) {
3087 Tmp1 = TLI.LowerOperation(Result, DAG);
3088 if (Tmp1.Val) Result = Tmp1;
3089 }
3090 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003091 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00003092 Result = ExpandLegalINT_TO_FP(isSigned,
3093 LegalizeOp(Node->getOperand(0)),
3094 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003095 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003096 case TargetLowering::Promote:
3097 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3098 Node->getValueType(0),
3099 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003100 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00003101 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003102 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00003103 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003104 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3105 Node->getValueType(0), Node->getOperand(0));
3106 break;
3107 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003108 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003109 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003110 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3111 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003112 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003113 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3114 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003115 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003116 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3117 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003118 break;
3119 }
3120 break;
3121 }
3122 case ISD::TRUNCATE:
3123 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3124 case Legal:
3125 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003126 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003127 break;
3128 case Expand:
3129 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3130
3131 // Since the result is legal, we should just be able to truncate the low
3132 // part of the source.
3133 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3134 break;
3135 case Promote:
3136 Result = PromoteOp(Node->getOperand(0));
3137 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3138 break;
3139 }
3140 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003141
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003142 case ISD::FP_TO_SINT:
3143 case ISD::FP_TO_UINT:
3144 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3145 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003146 Tmp1 = LegalizeOp(Node->getOperand(0));
3147
Chris Lattner1618beb2005-07-29 00:11:56 +00003148 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3149 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003150 case TargetLowering::Custom:
3151 isCustom = true;
3152 // FALLTHROUGH
3153 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003154 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003155 if (isCustom) {
3156 Tmp1 = TLI.LowerOperation(Result, DAG);
3157 if (Tmp1.Val) Result = Tmp1;
3158 }
3159 break;
3160 case TargetLowering::Promote:
3161 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3162 Node->getOpcode() == ISD::FP_TO_SINT);
3163 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003164 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003165 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3166 SDOperand True, False;
3167 MVT::ValueType VT = Node->getOperand(0).getValueType();
3168 MVT::ValueType NVT = Node->getValueType(0);
3169 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
3170 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
3171 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
3172 Node->getOperand(0), Tmp2, ISD::SETLT);
3173 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3174 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003175 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003176 Tmp2));
3177 False = DAG.getNode(ISD::XOR, NVT, False,
3178 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003179 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3180 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003181 } else {
3182 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3183 }
3184 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003185 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003186 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003187 case Expand: {
3188 // Convert f32 / f64 to i32 / i64.
3189 MVT::ValueType VT = Op.getValueType();
Evan Cheng56966222007-01-12 02:11:51 +00003190 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00003191 switch (Node->getOpcode()) {
3192 case ISD::FP_TO_SINT:
3193 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00003194 LC = (VT == MVT::i32)
3195 ? RTLIB::FPTOSINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00003196 else
Evan Cheng56966222007-01-12 02:11:51 +00003197 LC = (VT == MVT::i32)
3198 ? RTLIB::FPTOSINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00003199 break;
3200 case ISD::FP_TO_UINT:
3201 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00003202 LC = (VT == MVT::i32)
3203 ? RTLIB::FPTOUINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00003204 else
Evan Cheng56966222007-01-12 02:11:51 +00003205 LC = (VT == MVT::i32)
3206 ? RTLIB::FPTOUINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00003207 break;
3208 default: assert(0 && "Unreachable!");
3209 }
3210 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003211 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3212 false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003213 break;
3214 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003215 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003216 Tmp1 = PromoteOp(Node->getOperand(0));
3217 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3218 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003219 break;
3220 }
3221 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003222
Dale Johannesenab081c72007-08-09 17:27:48 +00003223 case ISD::FP_EXTEND:
Dale Johannesen5411a392007-08-09 01:04:01 +00003224 case ISD::FP_ROUND: {
3225 MVT::ValueType newVT = Op.getValueType();
3226 MVT::ValueType oldVT = Op.getOperand(0).getValueType();
3227 if (TLI.getConvertAction(oldVT, newVT) == TargetLowering::Expand) {
Dale Johannesenab081c72007-08-09 17:27:48 +00003228 // The only way we can lower this is to turn it into a STORE,
Dale Johannesen5411a392007-08-09 01:04:01 +00003229 // LOAD pair, targetting a temporary location (a stack slot).
3230
3231 // NOTE: there is a choice here between constantly creating new stack
3232 // slots and always reusing the same one. We currently always create
3233 // new ones, as reuse may inhibit scheduling.
Dale Johannesenab081c72007-08-09 17:27:48 +00003234 MVT::ValueType slotVT =
3235 (Node->getOpcode() == ISD::FP_EXTEND) ? oldVT : newVT;
3236 const Type *Ty = MVT::getTypeForValueType(slotVT);
Dale Johannesen5411a392007-08-09 01:04:01 +00003237 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
3238 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
3239 MachineFunction &MF = DAG.getMachineFunction();
3240 int SSFI =
3241 MF.getFrameInfo()->CreateStackObject(TySize, Align);
3242 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesenab081c72007-08-09 17:27:48 +00003243 if (Node->getOpcode() == ISD::FP_EXTEND) {
3244 Result = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0),
3245 StackSlot, NULL, 0);
3246 Result = DAG.getExtLoad(ISD::EXTLOAD, newVT,
3247 Result, StackSlot, NULL, 0, oldVT);
3248 } else {
3249 Result = DAG.getTruncStore(DAG.getEntryNode(), Node->getOperand(0),
3250 StackSlot, NULL, 0, newVT);
3251 Result = DAG.getLoad(newVT, Result, StackSlot, NULL, 0, newVT);
3252 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003253 break;
3254 }
Dale Johannesen849f2142007-07-03 00:53:03 +00003255 }
3256 // FALL THROUGH
Chris Lattner13c78e22005-09-02 00:18:10 +00003257 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003258 case ISD::ZERO_EXTEND:
3259 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003260 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003261 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003262 case Legal:
3263 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003264 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003265 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003266 case Promote:
3267 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003268 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003269 Tmp1 = PromoteOp(Node->getOperand(0));
3270 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003271 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003272 case ISD::ZERO_EXTEND:
3273 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003274 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003275 Result = DAG.getZeroExtendInReg(Result,
3276 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003277 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003278 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003279 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003280 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003281 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003282 Result,
3283 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003284 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003285 case ISD::FP_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003286 Result = PromoteOp(Node->getOperand(0));
3287 if (Result.getValueType() != Op.getValueType())
3288 // Dynamically dead while we have only 2 FP types.
3289 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
3290 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003291 case ISD::FP_ROUND:
Chris Lattnerf8161d82005-01-16 05:06:12 +00003292 Result = PromoteOp(Node->getOperand(0));
3293 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
3294 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003295 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003296 }
3297 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003298 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003299 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003300 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003301 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003302
3303 // If this operation is not supported, convert it to a shl/shr or load/store
3304 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003305 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3306 default: assert(0 && "This action not supported for this op yet!");
3307 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003308 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003309 break;
3310 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003311 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003312 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003313 // NOTE: we could fall back on load/store here too for targets without
3314 // SAR. However, it is doubtful that any exist.
3315 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
3316 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00003317 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003318 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3319 Node->getOperand(0), ShiftCst);
3320 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3321 Result, ShiftCst);
3322 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003323 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003324 // EXTLOAD pair, targetting a temporary location (a stack slot).
3325
3326 // NOTE: there is a choice here between constantly creating new stack
3327 // slots and always reusing the same one. We currently always create
3328 // new ones, as reuse may inhibit scheduling.
3329 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
Chris Lattner44b2c502007-04-28 06:42:38 +00003330 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00003331 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
Chris Lattner45b8caf2005-01-15 07:15:18 +00003332 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukmanedf128a2005-04-21 22:36:52 +00003333 int SSFI =
Chris Lattner44b2c502007-04-28 06:42:38 +00003334 MF.getFrameInfo()->CreateStackObject(TySize, Align);
Chris Lattner45b8caf2005-01-15 07:15:18 +00003335 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Evan Cheng8b2794a2006-10-13 21:14:26 +00003336 Result = DAG.getTruncStore(DAG.getEntryNode(), Node->getOperand(0),
3337 StackSlot, NULL, 0, ExtraVT);
Chris Lattner5f056bf2005-07-10 01:55:33 +00003338 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
Evan Cheng466685d2006-10-09 20:57:25 +00003339 Result, StackSlot, NULL, 0, ExtraVT);
Chris Lattner45b8caf2005-01-15 07:15:18 +00003340 } else {
3341 assert(0 && "Unknown op");
3342 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003343 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003344 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003345 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003346 }
Duncan Sands36397f52007-07-27 12:58:54 +00003347 case ISD::ADJUST_TRAMP: {
3348 Tmp1 = LegalizeOp(Node->getOperand(0));
3349 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3350 default: assert(0 && "This action is not supported yet!");
3351 case TargetLowering::Custom:
3352 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3353 Result = TLI.LowerOperation(Result, DAG);
3354 if (Result.Val) break;
3355 // FALL THROUGH
3356 case TargetLowering::Expand:
3357 Result = Tmp1;
3358 break;
3359 }
3360 break;
3361 }
3362 case ISD::TRAMPOLINE: {
3363 SDOperand Ops[6];
3364 for (unsigned i = 0; i != 6; ++i)
3365 Ops[i] = LegalizeOp(Node->getOperand(i));
3366 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3367 // The only option for this node is to custom lower it.
3368 Result = TLI.LowerOperation(Result, DAG);
3369 assert(Result.Val && "Should always custom lower!");
3370 break;
3371 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003372 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003373
Chris Lattner4ddd2832006-04-08 04:13:17 +00003374 assert(Result.getValueType() == Op.getValueType() &&
3375 "Bad legalization!");
3376
Chris Lattner456a93a2006-01-28 07:39:30 +00003377 // Make sure that the generated code is itself legal.
3378 if (Result != Op)
3379 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003380
Chris Lattner45982da2005-05-12 16:53:42 +00003381 // Note that LegalizeOp may be reentered even from single-use nodes, which
3382 // means that we always must cache transformed nodes.
3383 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003384 return Result;
3385}
3386
Chris Lattner8b6fa222005-01-15 22:16:26 +00003387/// PromoteOp - Given an operation that produces a value in an invalid type,
3388/// promote it to compute the value into a larger type. The produced value will
3389/// have the correct bits for the low portion of the register, but no guarantee
3390/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00003391SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
3392 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00003393 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00003394 assert(getTypeAction(VT) == Promote &&
3395 "Caller should expand or legalize operands that are not promotable!");
3396 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
3397 "Cannot promote to smaller type!");
3398
Chris Lattner03c85462005-01-15 05:21:40 +00003399 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00003400 SDOperand Result;
3401 SDNode *Node = Op.Val;
3402
Chris Lattner40030bf2007-02-04 01:17:38 +00003403 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00003404 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00003405
Chris Lattner03c85462005-01-15 05:21:40 +00003406 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003407 case ISD::CopyFromReg:
3408 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00003409 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003410#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00003411 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003412#endif
Chris Lattner03c85462005-01-15 05:21:40 +00003413 assert(0 && "Do not know how to promote this operator!");
3414 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003415 case ISD::UNDEF:
3416 Result = DAG.getNode(ISD::UNDEF, NVT);
3417 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003418 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00003419 if (VT != MVT::i1)
3420 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
3421 else
3422 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00003423 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
3424 break;
3425 case ISD::ConstantFP:
3426 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
3427 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
3428 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00003429
Chris Lattner82fbfb62005-01-18 02:59:52 +00003430 case ISD::SETCC:
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003431 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003432 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
3433 Node->getOperand(1), Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00003434 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00003435
Chris Lattner03c85462005-01-15 05:21:40 +00003436 case ISD::TRUNCATE:
3437 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3438 case Legal:
3439 Result = LegalizeOp(Node->getOperand(0));
3440 assert(Result.getValueType() >= NVT &&
3441 "This truncation doesn't make sense!");
3442 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
3443 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
3444 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00003445 case Promote:
3446 // The truncation is not required, because we don't guarantee anything
3447 // about high bits anyway.
3448 Result = PromoteOp(Node->getOperand(0));
3449 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003450 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00003451 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3452 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00003453 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00003454 }
3455 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003456 case ISD::SIGN_EXTEND:
3457 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00003458 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003459 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3460 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
3461 case Legal:
3462 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00003463 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003464 break;
3465 case Promote:
3466 // Promote the reg if it's smaller.
3467 Result = PromoteOp(Node->getOperand(0));
3468 // The high bits are not guaranteed to be anything. Insert an extend.
3469 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00003470 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00003471 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00003472 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00003473 Result = DAG.getZeroExtendInReg(Result,
3474 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00003475 break;
3476 }
3477 break;
Chris Lattner35481892005-12-23 00:16:34 +00003478 case ISD::BIT_CONVERT:
3479 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3480 Result = PromoteOp(Result);
3481 break;
3482
Chris Lattner8b6fa222005-01-15 22:16:26 +00003483 case ISD::FP_EXTEND:
3484 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
3485 case ISD::FP_ROUND:
3486 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3487 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
3488 case Promote: assert(0 && "Unreachable with 2 FP types!");
3489 case Legal:
3490 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner456a93a2006-01-28 07:39:30 +00003491 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner15e4b012005-07-10 00:07:11 +00003492 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003493 break;
3494 }
3495 break;
3496
3497 case ISD::SINT_TO_FP:
3498 case ISD::UINT_TO_FP:
3499 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3500 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00003501 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00003502 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003503 break;
3504
3505 case Promote:
3506 Result = PromoteOp(Node->getOperand(0));
3507 if (Node->getOpcode() == ISD::SINT_TO_FP)
3508 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003509 Result,
3510 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003511 else
Chris Lattner23993562005-04-13 02:38:47 +00003512 Result = DAG.getZeroExtendInReg(Result,
3513 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003514 // No extra round required here.
3515 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003516 break;
3517 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00003518 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3519 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00003520 // Round if we cannot tolerate excess precision.
3521 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003522 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3523 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00003524 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003525 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003526 break;
3527
Chris Lattner5e3c5b42005-12-09 17:32:47 +00003528 case ISD::SIGN_EXTEND_INREG:
3529 Result = PromoteOp(Node->getOperand(0));
3530 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3531 Node->getOperand(1));
3532 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003533 case ISD::FP_TO_SINT:
3534 case ISD::FP_TO_UINT:
3535 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3536 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00003537 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003538 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003539 break;
3540 case Promote:
3541 // The input result is prerounded, so we don't have to do anything
3542 // special.
3543 Tmp1 = PromoteOp(Node->getOperand(0));
3544 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003545 }
Nate Begemand2558e32005-08-14 01:20:53 +00003546 // If we're promoting a UINT to a larger size, check to see if the new node
3547 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
3548 // we can use that instead. This allows us to generate better code for
3549 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3550 // legal, such as PowerPC.
3551 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003552 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00003553 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3554 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00003555 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3556 } else {
3557 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3558 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003559 break;
3560
Chris Lattner2c8086f2005-04-02 05:00:07 +00003561 case ISD::FABS:
3562 case ISD::FNEG:
3563 Tmp1 = PromoteOp(Node->getOperand(0));
3564 assert(Tmp1.getValueType() == NVT);
3565 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3566 // NOTE: we do not have to do any extra rounding here for
3567 // NoExcessFPPrecision, because we know the input will have the appropriate
3568 // precision, and these operations don't modify precision at all.
3569 break;
3570
Chris Lattnerda6ba872005-04-28 21:44:33 +00003571 case ISD::FSQRT:
3572 case ISD::FSIN:
3573 case ISD::FCOS:
3574 Tmp1 = PromoteOp(Node->getOperand(0));
3575 assert(Tmp1.getValueType() == NVT);
3576 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003577 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003578 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3579 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00003580 break;
3581
Chris Lattner8b2d42c2007-03-03 23:43:21 +00003582 case ISD::FPOWI: {
3583 // Promote f32 powi to f64 powi. Note that this could insert a libcall
3584 // directly as well, which may be better.
3585 Tmp1 = PromoteOp(Node->getOperand(0));
3586 assert(Tmp1.getValueType() == NVT);
3587 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
3588 if (NoExcessFPPrecision)
3589 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3590 DAG.getValueType(VT));
3591 break;
3592 }
3593
Chris Lattner03c85462005-01-15 05:21:40 +00003594 case ISD::AND:
3595 case ISD::OR:
3596 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00003597 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003598 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00003599 case ISD::MUL:
3600 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00003601 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00003602 // that too is okay if they are integer operations.
3603 Tmp1 = PromoteOp(Node->getOperand(0));
3604 Tmp2 = PromoteOp(Node->getOperand(1));
3605 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3606 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00003607 break;
3608 case ISD::FADD:
3609 case ISD::FSUB:
3610 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00003611 Tmp1 = PromoteOp(Node->getOperand(0));
3612 Tmp2 = PromoteOp(Node->getOperand(1));
3613 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3614 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3615
3616 // Floating point operations will give excess precision that we may not be
3617 // able to tolerate. If we DO allow excess precision, just leave it,
3618 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00003619 // FIXME: Why would we need to round FP ops more than integer ones?
3620 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00003621 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003622 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3623 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00003624 break;
3625
Chris Lattner8b6fa222005-01-15 22:16:26 +00003626 case ISD::SDIV:
3627 case ISD::SREM:
3628 // These operators require that their input be sign extended.
3629 Tmp1 = PromoteOp(Node->getOperand(0));
3630 Tmp2 = PromoteOp(Node->getOperand(1));
3631 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00003632 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3633 DAG.getValueType(VT));
3634 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3635 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003636 }
3637 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3638
3639 // Perform FP_ROUND: this is probably overly pessimistic.
3640 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003641 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3642 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003643 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00003644 case ISD::FDIV:
3645 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00003646 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00003647 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00003648 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3649 case Legal:
3650 Tmp1 = LegalizeOp(Node->getOperand(0));
3651 break;
3652 case Promote:
3653 Tmp1 = PromoteOp(Node->getOperand(0));
3654 break;
3655 case Expand:
3656 assert(0 && "not implemented");
3657 }
3658 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3659 case Legal:
3660 Tmp2 = LegalizeOp(Node->getOperand(1));
3661 break;
3662 case Promote:
3663 Tmp2 = PromoteOp(Node->getOperand(1));
3664 break;
3665 case Expand:
3666 assert(0 && "not implemented");
3667 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003668 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3669
3670 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00003671 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00003672 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3673 DAG.getValueType(VT));
3674 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003675
3676 case ISD::UDIV:
3677 case ISD::UREM:
3678 // These operators require that their input be zero extended.
3679 Tmp1 = PromoteOp(Node->getOperand(0));
3680 Tmp2 = PromoteOp(Node->getOperand(1));
3681 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00003682 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3683 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003684 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3685 break;
3686
3687 case ISD::SHL:
3688 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003689 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003690 break;
3691 case ISD::SRA:
3692 // The input value must be properly sign extended.
3693 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003694 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3695 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003696 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003697 break;
3698 case ISD::SRL:
3699 // The input value must be properly zero extended.
3700 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00003701 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00003702 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003703 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00003704
3705 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00003706 Tmp1 = Node->getOperand(0); // Get the chain.
3707 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00003708 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3709 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3710 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3711 } else {
Evan Cheng466685d2006-10-09 20:57:25 +00003712 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begeman0aed7842006-01-28 03:14:31 +00003713 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00003714 SV->getValue(), SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003715 // Increment the pointer, VAList, to the next vaarg
3716 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3717 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3718 TLI.getPointerTy()));
3719 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00003720 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
3721 SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003722 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003723 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00003724 }
3725 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003726 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00003727 break;
3728
Evan Cheng466685d2006-10-09 20:57:25 +00003729 case ISD::LOAD: {
3730 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00003731 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
3732 ? ISD::EXTLOAD : LD->getExtensionType();
3733 Result = DAG.getExtLoad(ExtType, NVT,
3734 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00003735 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00003736 LD->getLoadedVT(),
3737 LD->isVolatile(),
3738 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00003739 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003740 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00003741 break;
Evan Cheng466685d2006-10-09 20:57:25 +00003742 }
Chris Lattner03c85462005-01-15 05:21:40 +00003743 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00003744 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
3745 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00003746 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00003747 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003748 case ISD::SELECT_CC:
3749 Tmp2 = PromoteOp(Node->getOperand(2)); // True
3750 Tmp3 = PromoteOp(Node->getOperand(3)); // False
3751 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00003752 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00003753 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003754 case ISD::BSWAP:
3755 Tmp1 = Node->getOperand(0);
3756 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3757 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3758 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003759 DAG.getConstant(MVT::getSizeInBits(NVT) -
3760 MVT::getSizeInBits(VT),
Nate Begemand88fc032006-01-14 03:14:10 +00003761 TLI.getShiftAmountTy()));
3762 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003763 case ISD::CTPOP:
3764 case ISD::CTTZ:
3765 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003766 // Zero extend the argument
3767 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003768 // Perform the larger operation, then subtract if needed.
3769 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003770 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003771 case ISD::CTPOP:
3772 Result = Tmp1;
3773 break;
3774 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003775 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begemand2558e32005-08-14 01:20:53 +00003776 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003777 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
3778 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003779 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003780 DAG.getConstant(MVT::getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003781 break;
3782 case ISD::CTLZ:
3783 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003784 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003785 DAG.getConstant(MVT::getSizeInBits(NVT) -
3786 MVT::getSizeInBits(VT), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003787 break;
3788 }
3789 break;
Dan Gohman7f321562007-06-25 16:23:39 +00003790 case ISD::EXTRACT_SUBVECTOR:
3791 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00003792 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00003793 case ISD::EXTRACT_VECTOR_ELT:
3794 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
3795 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003796 }
3797
3798 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003799
3800 // Make sure the result is itself legal.
3801 Result = LegalizeOp(Result);
3802
3803 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00003804 AddPromotedOperand(Op, Result);
3805 return Result;
3806}
Chris Lattner3e928bb2005-01-07 07:47:09 +00003807
Dan Gohman7f321562007-06-25 16:23:39 +00003808/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
3809/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
3810/// based on the vector type. The return type of this matches the element type
3811/// of the vector, which may not be legal for the target.
3812SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner15972212006-03-31 17:55:51 +00003813 // We know that operand #0 is the Vec vector. If the index is a constant
3814 // or if the invec is a supported hardware type, we can use it. Otherwise,
3815 // lower to a store then an indexed load.
3816 SDOperand Vec = Op.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00003817 SDOperand Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00003818
3819 SDNode *InVal = Vec.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00003820 MVT::ValueType TVT = InVal->getValueType(0);
3821 unsigned NumElems = MVT::getVectorNumElements(TVT);
Chris Lattner15972212006-03-31 17:55:51 +00003822
Dan Gohman7f321562007-06-25 16:23:39 +00003823 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
3824 default: assert(0 && "This action is not supported yet!");
3825 case TargetLowering::Custom: {
3826 Vec = LegalizeOp(Vec);
3827 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
3828 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
3829 if (Tmp3.Val)
3830 return Tmp3;
3831 break;
3832 }
3833 case TargetLowering::Legal:
3834 if (isTypeLegal(TVT)) {
3835 Vec = LegalizeOp(Vec);
3836 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00003837 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00003838 }
3839 break;
3840 case TargetLowering::Expand:
3841 break;
3842 }
3843
3844 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00003845 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00003846 Op = ScalarizeVectorOp(Vec);
3847 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
3848 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner15972212006-03-31 17:55:51 +00003849 SDOperand Lo, Hi;
3850 SplitVectorOp(Vec, Lo, Hi);
3851 if (CIdx->getValue() < NumElems/2) {
3852 Vec = Lo;
3853 } else {
3854 Vec = Hi;
Dan Gohman7f321562007-06-25 16:23:39 +00003855 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2,
3856 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00003857 }
Dan Gohman7f321562007-06-25 16:23:39 +00003858
Chris Lattner15972212006-03-31 17:55:51 +00003859 // It's now an extract from the appropriate high or low part. Recurse.
3860 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00003861 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00003862 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00003863 // Store the value to a temporary stack slot, then LOAD the scalar
3864 // element back out.
3865 SDOperand StackPtr = CreateStackTemporary(Vec.getValueType());
3866 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
3867
3868 // Add the offset to the index.
3869 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
3870 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
3871 DAG.getConstant(EltSize, Idx.getValueType()));
3872 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
3873
3874 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00003875 }
Dan Gohman7f321562007-06-25 16:23:39 +00003876 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00003877}
3878
Dan Gohman7f321562007-06-25 16:23:39 +00003879/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00003880/// we assume the operation can be split if it is not already legal.
Dan Gohman7f321562007-06-25 16:23:39 +00003881SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman65956352007-06-13 15:12:02 +00003882 // We know that operand #0 is the Vec vector. For now we assume the index
3883 // is a constant and that the extracted result is a supported hardware type.
3884 SDOperand Vec = Op.getOperand(0);
3885 SDOperand Idx = LegalizeOp(Op.getOperand(1));
3886
Dan Gohman7f321562007-06-25 16:23:39 +00003887 unsigned NumElems = MVT::getVectorNumElements(Vec.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00003888
3889 if (NumElems == MVT::getVectorNumElements(Op.getValueType())) {
3890 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00003891 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00003892 }
3893
3894 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
3895 SDOperand Lo, Hi;
3896 SplitVectorOp(Vec, Lo, Hi);
3897 if (CIdx->getValue() < NumElems/2) {
3898 Vec = Lo;
3899 } else {
3900 Vec = Hi;
3901 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
3902 }
3903
3904 // It's now an extract from the appropriate high or low part. Recurse.
3905 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00003906 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00003907}
3908
Nate Begeman750ac1b2006-02-01 07:19:44 +00003909/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
3910/// with condition CC on the current target. This usually involves legalizing
3911/// or promoting the arguments. In the case where LHS and RHS must be expanded,
3912/// there may be no choice but to create a new SetCC node to represent the
3913/// legalized value of setcc lhs, rhs. In this case, the value is returned in
3914/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
3915void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
3916 SDOperand &RHS,
3917 SDOperand &CC) {
3918 SDOperand Tmp1, Tmp2, Result;
3919
3920 switch (getTypeAction(LHS.getValueType())) {
3921 case Legal:
3922 Tmp1 = LegalizeOp(LHS); // LHS
3923 Tmp2 = LegalizeOp(RHS); // RHS
3924 break;
3925 case Promote:
3926 Tmp1 = PromoteOp(LHS); // LHS
3927 Tmp2 = PromoteOp(RHS); // RHS
3928
3929 // If this is an FP compare, the operands have already been extended.
3930 if (MVT::isInteger(LHS.getValueType())) {
3931 MVT::ValueType VT = LHS.getValueType();
3932 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3933
3934 // Otherwise, we have to insert explicit sign or zero extends. Note
3935 // that we could insert sign extends for ALL conditions, but zero extend
3936 // is cheaper on many machines (an AND instead of two shifts), so prefer
3937 // it.
3938 switch (cast<CondCodeSDNode>(CC)->get()) {
3939 default: assert(0 && "Unknown integer comparison!");
3940 case ISD::SETEQ:
3941 case ISD::SETNE:
3942 case ISD::SETUGE:
3943 case ISD::SETUGT:
3944 case ISD::SETULE:
3945 case ISD::SETULT:
3946 // ALL of these operations will work if we either sign or zero extend
3947 // the operands (including the unsigned comparisons!). Zero extend is
3948 // usually a simpler/cheaper operation, so prefer it.
3949 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3950 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3951 break;
3952 case ISD::SETGE:
3953 case ISD::SETGT:
3954 case ISD::SETLT:
3955 case ISD::SETLE:
3956 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3957 DAG.getValueType(VT));
3958 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3959 DAG.getValueType(VT));
3960 break;
3961 }
3962 }
3963 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00003964 case Expand: {
3965 MVT::ValueType VT = LHS.getValueType();
3966 if (VT == MVT::f32 || VT == MVT::f64) {
3967 // Expand into one or more soft-fp libcall(s).
Evan Cheng56966222007-01-12 02:11:51 +00003968 RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00003969 switch (cast<CondCodeSDNode>(CC)->get()) {
3970 case ISD::SETEQ:
3971 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00003972 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003973 break;
3974 case ISD::SETNE:
3975 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00003976 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003977 break;
3978 case ISD::SETGE:
3979 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00003980 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003981 break;
3982 case ISD::SETLT:
3983 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00003984 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003985 break;
3986 case ISD::SETLE:
3987 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00003988 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003989 break;
3990 case ISD::SETGT:
3991 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00003992 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003993 break;
3994 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00003995 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
3996 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00003997 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00003998 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003999 break;
4000 default:
Evan Cheng56966222007-01-12 02:11:51 +00004001 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004002 switch (cast<CondCodeSDNode>(CC)->get()) {
4003 case ISD::SETONE:
4004 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004005 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004006 // Fallthrough
4007 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004008 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004009 break;
4010 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004011 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004012 break;
4013 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004014 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004015 break;
4016 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004017 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004018 break;
Evan Cheng56966222007-01-12 02:11:51 +00004019 case ISD::SETUEQ:
4020 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004021 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004022 default: assert(0 && "Unsupported FP setcc!");
4023 }
4024 }
4025
4026 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00004027 Tmp1 = ExpandLibCall(TLI.getLibcallName(LC1),
Reid Spencer47857812006-12-31 05:55:36 +00004028 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004029 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004030 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004031 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004032 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Evan Cheng2b49c502006-12-15 02:59:56 +00004033 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), Tmp1, Tmp2, CC);
Evan Cheng56966222007-01-12 02:11:51 +00004034 LHS = ExpandLibCall(TLI.getLibcallName(LC2),
Reid Spencer47857812006-12-31 05:55:36 +00004035 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004036 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004037 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004038 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004039 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4040 Tmp2 = SDOperand();
4041 }
4042 LHS = Tmp1;
4043 RHS = Tmp2;
4044 return;
4045 }
4046
Nate Begeman750ac1b2006-02-01 07:19:44 +00004047 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4048 ExpandOp(LHS, LHSLo, LHSHi);
Evan Cheng2b49c502006-12-15 02:59:56 +00004049 ExpandOp(RHS, RHSLo, RHSHi);
Nate Begeman750ac1b2006-02-01 07:19:44 +00004050 switch (cast<CondCodeSDNode>(CC)->get()) {
4051 case ISD::SETEQ:
4052 case ISD::SETNE:
4053 if (RHSLo == RHSHi)
4054 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4055 if (RHSCST->isAllOnesValue()) {
4056 // Comparison to -1.
4057 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4058 Tmp2 = RHSLo;
4059 break;
4060 }
4061
4062 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4063 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4064 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4065 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4066 break;
4067 default:
4068 // If this is a comparison of the sign bit, just look at the top part.
4069 // X > -1, x < 0
4070 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4071 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
4072 CST->getValue() == 0) || // X < 0
4073 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4074 CST->isAllOnesValue())) { // X > -1
4075 Tmp1 = LHSHi;
4076 Tmp2 = RHSHi;
4077 break;
4078 }
4079
4080 // FIXME: This generated code sucks.
4081 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004082 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4083 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004084 default: assert(0 && "Unknown integer setcc!");
4085 case ISD::SETLT:
4086 case ISD::SETULT: LowCC = ISD::SETULT; break;
4087 case ISD::SETGT:
4088 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4089 case ISD::SETLE:
4090 case ISD::SETULE: LowCC = ISD::SETULE; break;
4091 case ISD::SETGE:
4092 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4093 }
4094
4095 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4096 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4097 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4098
4099 // NOTE: on targets without efficient SELECT of bools, we can always use
4100 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004101 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
4102 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC,
4103 false, DagCombineInfo);
4104 if (!Tmp1.Val)
4105 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
4106 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi,
4107 CCCode, false, DagCombineInfo);
4108 if (!Tmp2.Val)
4109 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
4110
4111 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4112 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
4113 if ((Tmp1C && Tmp1C->getValue() == 0) ||
4114 (Tmp2C && Tmp2C->getValue() == 0 &&
4115 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4116 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
4117 (Tmp2C && Tmp2C->getValue() == 1 &&
4118 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4119 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4120 // low part is known false, returns high part.
4121 // For LE / GE, if high part is known false, ignore the low part.
4122 // For LT / GT, if high part is known true, ignore the low part.
4123 Tmp1 = Tmp2;
4124 Tmp2 = SDOperand();
4125 } else {
4126 Result = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi,
4127 ISD::SETEQ, false, DagCombineInfo);
4128 if (!Result.Val)
4129 Result=DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
4130 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4131 Result, Tmp1, Tmp2));
4132 Tmp1 = Result;
4133 Tmp2 = SDOperand();
4134 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004135 }
4136 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004137 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004138 LHS = Tmp1;
4139 RHS = Tmp2;
4140}
4141
Chris Lattner35481892005-12-23 00:16:34 +00004142/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner232348d2005-12-23 00:52:30 +00004143/// The resultant code need not be legal. Note that SrcOp is the input operand
4144/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner35481892005-12-23 00:16:34 +00004145SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
4146 SDOperand SrcOp) {
4147 // Create the stack frame object.
Chris Lattnerce872152006-03-19 06:31:19 +00004148 SDOperand FIPtr = CreateStackTemporary(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00004149
4150 // Emit a store to the stack slot.
Evan Cheng8b2794a2006-10-13 21:14:26 +00004151 SDOperand Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00004152 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00004153 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00004154}
4155
Chris Lattner4352cc92006-04-04 17:23:26 +00004156SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4157 // Create a vector sized/aligned stack slot, store the value to element #0,
4158 // then load the whole vector back out.
4159 SDOperand StackPtr = CreateStackTemporary(Node->getValueType(0));
Evan Cheng786225a2006-10-05 23:01:46 +00004160 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Evan Cheng8b2794a2006-10-13 21:14:26 +00004161 NULL, 0);
Evan Cheng466685d2006-10-09 20:57:25 +00004162 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, NULL, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00004163}
4164
4165
Chris Lattnerce872152006-03-19 06:31:19 +00004166/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004167/// support the operation, but do support the resultant vector type.
Chris Lattnerce872152006-03-19 06:31:19 +00004168SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4169
4170 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004171 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004172 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004173 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00004174 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng033e6812006-03-24 01:17:21 +00004175 std::map<SDOperand, std::vector<unsigned> > Values;
4176 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004177 bool isConstant = true;
4178 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4179 SplatValue.getOpcode() != ISD::UNDEF)
4180 isConstant = false;
4181
Evan Cheng033e6812006-03-24 01:17:21 +00004182 for (unsigned i = 1; i < NumElems; ++i) {
4183 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004184 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004185 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004186 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004187 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00004188 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004189
4190 // If this isn't a constant element or an undef, we can't use a constant
4191 // pool load.
4192 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4193 V.getOpcode() != ISD::UNDEF)
4194 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004195 }
4196
4197 if (isOnlyLowElement) {
4198 // If the low element is an undef too, then this whole things is an undef.
4199 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4200 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4201 // Otherwise, turn this into a scalar_to_vector node.
4202 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4203 Node->getOperand(0));
4204 }
4205
Chris Lattner2eb86532006-03-24 07:29:17 +00004206 // If all elements are constants, create a load from the constant pool.
4207 if (isConstant) {
4208 MVT::ValueType VT = Node->getValueType(0);
4209 const Type *OpNTy =
4210 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
4211 std::vector<Constant*> CV;
4212 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4213 if (ConstantFPSDNode *V =
4214 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
4215 CV.push_back(ConstantFP::get(OpNTy, V->getValue()));
4216 } else if (ConstantSDNode *V =
4217 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Reid Spencerb83eb642006-10-20 07:07:24 +00004218 CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004219 } else {
4220 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
4221 CV.push_back(UndefValue::get(OpNTy));
4222 }
4223 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004224 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00004225 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng466685d2006-10-09 20:57:25 +00004226 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004227 }
4228
Chris Lattner87100e02006-03-20 01:52:29 +00004229 if (SplatValue.Val) { // Splat of one value?
4230 // Build the shuffle constant vector: <0, 0, 0, 0>
4231 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00004232 MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00004233 SDOperand Zero = DAG.getConstant(0, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004234 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004235 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4236 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00004237
4238 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004239 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00004240 // Get the splatted value into the low element of a vector register.
4241 SDOperand LowValVec =
4242 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
4243
4244 // Return shuffle(LowValVec, undef, <0,0,0,0>)
4245 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
4246 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
4247 SplatMask);
4248 }
4249 }
4250
Evan Cheng033e6812006-03-24 01:17:21 +00004251 // If there are only two unique elements, we may be able to turn this into a
4252 // vector shuffle.
4253 if (Values.size() == 2) {
4254 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
4255 MVT::ValueType MaskVT =
4256 MVT::getIntVectorWithNumElements(NumElems);
4257 std::vector<SDOperand> MaskVec(NumElems);
4258 unsigned i = 0;
4259 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
4260 E = Values.end(); I != E; ++I) {
4261 for (std::vector<unsigned>::iterator II = I->second.begin(),
4262 EE = I->second.end(); II != EE; ++II)
Dan Gohman51eaa862007-06-14 22:58:02 +00004263 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004264 i += NumElems;
4265 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004266 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4267 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004268
4269 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004270 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
4271 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004272 SmallVector<SDOperand, 8> Ops;
Evan Cheng033e6812006-03-24 01:17:21 +00004273 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
4274 E = Values.end(); I != E; ++I) {
4275 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4276 I->first);
4277 Ops.push_back(Op);
4278 }
4279 Ops.push_back(ShuffleMask);
4280
4281 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004282 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
4283 &Ops[0], Ops.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004284 }
4285 }
Chris Lattnerce872152006-03-19 06:31:19 +00004286
4287 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
4288 // aligned object on the stack, store each element into it, then load
4289 // the result as a vector.
4290 MVT::ValueType VT = Node->getValueType(0);
4291 // Create the stack frame object.
4292 SDOperand FIPtr = CreateStackTemporary(VT);
4293
4294 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004295 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00004296 unsigned TypeByteSize =
4297 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattnerce872152006-03-19 06:31:19 +00004298 // Store (in the right endianness) the elements to memory.
4299 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
4300 // Ignore undef elements.
4301 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4302
Chris Lattner841c8822006-03-22 01:46:54 +00004303 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00004304
4305 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
4306 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
4307
Evan Cheng786225a2006-10-05 23:01:46 +00004308 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00004309 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00004310 }
4311
4312 SDOperand StoreChain;
4313 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004314 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4315 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00004316 else
4317 StoreChain = DAG.getEntryNode();
4318
4319 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00004320 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00004321}
4322
4323/// CreateStackTemporary - Create a stack temporary, suitable for holding the
4324/// specified value type.
4325SDOperand SelectionDAGLegalize::CreateStackTemporary(MVT::ValueType VT) {
4326 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
4327 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
Chris Lattner58092e32007-01-20 22:35:55 +00004328 const Type *Ty = MVT::getTypeForValueType(VT);
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00004329 unsigned StackAlign = (unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty);
Chris Lattner58092e32007-01-20 22:35:55 +00004330 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
Chris Lattnerce872152006-03-19 06:31:19 +00004331 return DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
4332}
4333
Chris Lattner5b359c62005-04-02 04:00:59 +00004334void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
4335 SDOperand Op, SDOperand Amt,
4336 SDOperand &Lo, SDOperand &Hi) {
4337 // Expand the subcomponents.
4338 SDOperand LHSL, LHSH;
4339 ExpandOp(Op, LHSL, LHSH);
4340
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004341 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004342 MVT::ValueType VT = LHSL.getValueType();
4343 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00004344 Hi = Lo.getValue(1);
4345}
4346
4347
Chris Lattnere34b3962005-01-19 04:19:40 +00004348/// ExpandShift - Try to find a clever way to expand this shift operation out to
4349/// smaller elements. If we can't find a way that is more efficient than a
4350/// libcall on this target, return false. Otherwise, return true with the
4351/// low-parts expanded into Lo and Hi.
4352bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
4353 SDOperand &Lo, SDOperand &Hi) {
4354 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
4355 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004356
Chris Lattnere34b3962005-01-19 04:19:40 +00004357 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004358 SDOperand ShAmt = LegalizeOp(Amt);
4359 MVT::ValueType ShTy = ShAmt.getValueType();
4360 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
4361 unsigned NVTBits = MVT::getSizeInBits(NVT);
4362
4363 // Handle the case when Amt is an immediate. Other cases are currently broken
4364 // and are disabled.
4365 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
4366 unsigned Cst = CN->getValue();
4367 // Expand the incoming operand to be shifted, so that we have its parts
4368 SDOperand InL, InH;
4369 ExpandOp(Op, InL, InH);
4370 switch(Opc) {
4371 case ISD::SHL:
4372 if (Cst > VTBits) {
4373 Lo = DAG.getConstant(0, NVT);
4374 Hi = DAG.getConstant(0, NVT);
4375 } else if (Cst > NVTBits) {
4376 Lo = DAG.getConstant(0, NVT);
4377 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00004378 } else if (Cst == NVTBits) {
4379 Lo = DAG.getConstant(0, NVT);
4380 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004381 } else {
4382 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
4383 Hi = DAG.getNode(ISD::OR, NVT,
4384 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
4385 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
4386 }
4387 return true;
4388 case ISD::SRL:
4389 if (Cst > VTBits) {
4390 Lo = DAG.getConstant(0, NVT);
4391 Hi = DAG.getConstant(0, NVT);
4392 } else if (Cst > NVTBits) {
4393 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
4394 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00004395 } else if (Cst == NVTBits) {
4396 Lo = InH;
4397 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004398 } else {
4399 Lo = DAG.getNode(ISD::OR, NVT,
4400 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
4401 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
4402 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
4403 }
4404 return true;
4405 case ISD::SRA:
4406 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00004407 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004408 DAG.getConstant(NVTBits-1, ShTy));
4409 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00004410 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004411 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004412 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004413 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00004414 } else if (Cst == NVTBits) {
4415 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00004416 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00004417 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004418 } else {
4419 Lo = DAG.getNode(ISD::OR, NVT,
4420 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
4421 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
4422 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
4423 }
4424 return true;
4425 }
4426 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00004427
4428 // Okay, the shift amount isn't constant. However, if we can tell that it is
4429 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
4430 uint64_t Mask = NVTBits, KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00004431 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00004432
4433 // If we know that the high bit of the shift amount is one, then we can do
4434 // this as a couple of simple shifts.
4435 if (KnownOne & Mask) {
4436 // Mask out the high bit, which we know is set.
4437 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
4438 DAG.getConstant(NVTBits-1, Amt.getValueType()));
4439
4440 // Expand the incoming operand to be shifted, so that we have its parts
4441 SDOperand InL, InH;
4442 ExpandOp(Op, InL, InH);
4443 switch(Opc) {
4444 case ISD::SHL:
4445 Lo = DAG.getConstant(0, NVT); // Low part is zero.
4446 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
4447 return true;
4448 case ISD::SRL:
4449 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
4450 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
4451 return true;
4452 case ISD::SRA:
4453 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
4454 DAG.getConstant(NVTBits-1, Amt.getValueType()));
4455 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
4456 return true;
4457 }
4458 }
4459
4460 // If we know that the high bit of the shift amount is zero, then we can do
4461 // this as a couple of simple shifts.
4462 if (KnownZero & Mask) {
4463 // Compute 32-amt.
4464 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
4465 DAG.getConstant(NVTBits, Amt.getValueType()),
4466 Amt);
4467
4468 // Expand the incoming operand to be shifted, so that we have its parts
4469 SDOperand InL, InH;
4470 ExpandOp(Op, InL, InH);
4471 switch(Opc) {
4472 case ISD::SHL:
4473 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
4474 Hi = DAG.getNode(ISD::OR, NVT,
4475 DAG.getNode(ISD::SHL, NVT, InH, Amt),
4476 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
4477 return true;
4478 case ISD::SRL:
4479 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
4480 Lo = DAG.getNode(ISD::OR, NVT,
4481 DAG.getNode(ISD::SRL, NVT, InL, Amt),
4482 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
4483 return true;
4484 case ISD::SRA:
4485 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
4486 Lo = DAG.getNode(ISD::OR, NVT,
4487 DAG.getNode(ISD::SRL, NVT, InL, Amt),
4488 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
4489 return true;
4490 }
4491 }
4492
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004493 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00004494}
Chris Lattner77e77a62005-01-21 06:05:23 +00004495
Chris Lattner9c32d3b2005-01-23 04:42:50 +00004496
Chris Lattner77e77a62005-01-21 06:05:23 +00004497// ExpandLibCall - Expand a node into a call to a libcall. If the result value
4498// does not fit into a register, return the lo part and set the hi part to the
4499// by-reg argument. If it does fit into a single register, return the result
4500// and leave the Hi part unset.
4501SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00004502 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00004503 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
4504 // The input chain to this libcall is the entry node of the function.
4505 // Legalizing the call will automatically add the previous call to the
4506 // dependence.
4507 SDOperand InChain = DAG.getEntryNode();
4508
Chris Lattner77e77a62005-01-21 06:05:23 +00004509 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00004510 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00004511 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
4512 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
4513 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
Reid Spencer47857812006-12-31 05:55:36 +00004514 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00004515 Entry.isSExt = isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00004516 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00004517 }
4518 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00004519
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004520 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00004521 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004522 std::pair<SDOperand,SDOperand> CallInfo =
Reid Spencer47857812006-12-31 05:55:36 +00004523 TLI.LowerCallTo(InChain, RetTy, isSigned, false, CallingConv::C, false,
Chris Lattneradf6a962005-05-13 18:50:42 +00004524 Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00004525
Chris Lattner6831a812006-02-13 09:18:02 +00004526 // Legalize the call sequence, starting with the chain. This will advance
4527 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
4528 // was added by LowerCallTo (guaranteeing proper serialization of calls).
4529 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00004530 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004531 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00004532 default: assert(0 && "Unknown thing");
4533 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00004534 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00004535 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00004536 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00004537 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00004538 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00004539 }
Chris Lattner99c25b82005-09-02 20:26:58 +00004540 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00004541}
4542
Chris Lattner9c32d3b2005-01-23 04:42:50 +00004543
Evan Cheng4c6cfad2007-04-27 07:33:31 +00004544/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
4545///
Chris Lattner77e77a62005-01-21 06:05:23 +00004546SDOperand SelectionDAGLegalize::
4547ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattner77e77a62005-01-21 06:05:23 +00004548 assert(getTypeAction(Source.getValueType()) == Expand &&
4549 "This is not an expansion!");
4550 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
4551
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004552 if (!isSigned) {
Chris Lattnere9c35e72005-04-13 05:09:42 +00004553 assert(Source.getValueType() == MVT::i64 &&
4554 "This only works for 64-bit -> FP");
4555 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
4556 // incoming integer is set. To handle this, we dynamically test to see if
4557 // it is set, and, if so, add a fudge factor.
4558 SDOperand Lo, Hi;
4559 ExpandOp(Source, Lo, Hi);
4560
Chris Lattner66de05b2005-05-13 04:45:13 +00004561 // If this is unsigned, and not supported, first perform the conversion to
4562 // signed, then adjust the result if the sign bit is set.
4563 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
4564 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
4565
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004566 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
4567 DAG.getConstant(0, Hi.getValueType()),
4568 ISD::SETLT);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004569 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4570 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4571 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00004572 uint64_t FF = 0x5f800000ULL;
4573 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00004574 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004575
Chris Lattner5839bf22005-08-26 17:15:30 +00004576 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00004577 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4578 SDOperand FudgeInReg;
4579 if (DestTy == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00004580 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004581 else {
4582 assert(DestTy == MVT::f64 && "Unexpected conversion");
Evan Cheng4c6cfad2007-04-27 07:33:31 +00004583 // FIXME: Avoid the extend by construction the right constantpool?
Chris Lattner5f056bf2005-07-10 01:55:33 +00004584 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Evan Cheng466685d2006-10-09 20:57:25 +00004585 CPIdx, NULL, 0, MVT::f32);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004586 }
Evan Cheng4c6cfad2007-04-27 07:33:31 +00004587 MVT::ValueType SCVT = SignedConv.getValueType();
4588 if (SCVT != DestTy) {
4589 // Destination type needs to be expanded as well. The FADD now we are
4590 // constructing will be expanded into a libcall.
4591 if (MVT::getSizeInBits(SCVT) != MVT::getSizeInBits(DestTy)) {
4592 assert(SCVT == MVT::i32 && DestTy == MVT::f64);
4593 SignedConv = DAG.getNode(ISD::BUILD_PAIR, MVT::i64,
4594 SignedConv, SignedConv.getValue(1));
4595 }
4596 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
4597 }
Chris Lattner473a9902005-09-29 06:44:39 +00004598 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00004599 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004600
Chris Lattnera88a2602005-05-14 05:33:54 +00004601 // Check to see if the target has a custom way to lower this. If so, use it.
4602 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
4603 default: assert(0 && "This action not implemented for this operation!");
4604 case TargetLowering::Legal:
4605 case TargetLowering::Expand:
4606 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00004607 case TargetLowering::Custom: {
4608 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
4609 Source), DAG);
4610 if (NV.Val)
4611 return LegalizeOp(NV);
4612 break; // The target decided this was legal after all
4613 }
Chris Lattnera88a2602005-05-14 05:33:54 +00004614 }
4615
Chris Lattner13689e22005-05-12 07:00:44 +00004616 // Expand the source, then glue it back together for the call. We must expand
4617 // the source in case it is shared (this pass of legalize must traverse it).
4618 SDOperand SrcLo, SrcHi;
4619 ExpandOp(Source, SrcLo, SrcHi);
4620 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
4621
Evan Cheng56966222007-01-12 02:11:51 +00004622 RTLIB::Libcall LC;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004623 if (DestTy == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00004624 LC = RTLIB::SINTTOFP_I64_F32;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004625 else {
4626 assert(DestTy == MVT::f64 && "Unknown fp value type!");
Evan Cheng56966222007-01-12 02:11:51 +00004627 LC = RTLIB::SINTTOFP_I64_F64;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004628 }
Chris Lattner6831a812006-02-13 09:18:02 +00004629
Evan Cheng4c6cfad2007-04-27 07:33:31 +00004630 assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!");
Chris Lattner6831a812006-02-13 09:18:02 +00004631 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
4632 SDOperand UnusedHiPart;
Evan Cheng56966222007-01-12 02:11:51 +00004633 return ExpandLibCall(TLI.getLibcallName(LC), Source.Val, isSigned,
4634 UnusedHiPart);
Chris Lattner77e77a62005-01-21 06:05:23 +00004635}
Misha Brukmanedf128a2005-04-21 22:36:52 +00004636
Chris Lattner22cde6a2006-01-28 08:25:58 +00004637/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
4638/// INT_TO_FP operation of the specified operand when the target requests that
4639/// we expand it. At this point, we know that the result and operand types are
4640/// legal for the target.
4641SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
4642 SDOperand Op0,
4643 MVT::ValueType DestVT) {
4644 if (Op0.getValueType() == MVT::i32) {
4645 // simple 32-bit [signed|unsigned] integer to float/double expansion
4646
Chris Lattner58092e32007-01-20 22:35:55 +00004647 // get the stack frame index of a 8 byte buffer, pessimistically aligned
Chris Lattner22cde6a2006-01-28 08:25:58 +00004648 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattner58092e32007-01-20 22:35:55 +00004649 const Type *F64Type = MVT::getTypeForValueType(MVT::f64);
4650 unsigned StackAlign =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00004651 (unsigned)TLI.getTargetData()->getPrefTypeAlignment(F64Type);
Chris Lattner58092e32007-01-20 22:35:55 +00004652 int SSFI = MF.getFrameInfo()->CreateStackObject(8, StackAlign);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004653 // get address of 8 byte buffer
4654 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4655 // word offset constant for Hi/Lo address computation
4656 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
4657 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00004658 SDOperand Hi = StackSlot;
4659 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
4660 if (TLI.isLittleEndian())
4661 std::swap(Hi, Lo);
4662
Chris Lattner22cde6a2006-01-28 08:25:58 +00004663 // if signed map to unsigned space
4664 SDOperand Op0Mapped;
4665 if (isSigned) {
4666 // constant used to invert sign bit (signed to unsigned mapping)
4667 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
4668 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
4669 } else {
4670 Op0Mapped = Op0;
4671 }
4672 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00004673 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004674 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004675 // initial hi portion of constructed double
4676 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
4677 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00004678 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004679 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00004680 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004681 // FP constant to bias correct the final result
4682 SDOperand Bias = DAG.getConstantFP(isSigned ?
4683 BitsToDouble(0x4330000080000000ULL)
4684 : BitsToDouble(0x4330000000000000ULL),
4685 MVT::f64);
4686 // subtract the bias
4687 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
4688 // final result
4689 SDOperand Result;
4690 // handle final rounding
4691 if (DestVT == MVT::f64) {
4692 // do nothing
4693 Result = Sub;
4694 } else {
4695 // if f32 then cast to f32
4696 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
4697 }
4698 return Result;
4699 }
4700 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
4701 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
4702
4703 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
4704 DAG.getConstant(0, Op0.getValueType()),
4705 ISD::SETLT);
4706 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4707 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4708 SignSet, Four, Zero);
4709
4710 // If the sign bit of the integer is set, the large number will be treated
4711 // as a negative number. To counteract this, the dynamic code adds an
4712 // offset depending on the data type.
4713 uint64_t FF;
4714 switch (Op0.getValueType()) {
4715 default: assert(0 && "Unsupported integer type!");
4716 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
4717 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
4718 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
4719 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
4720 }
4721 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00004722 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004723
4724 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
4725 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4726 SDOperand FudgeInReg;
4727 if (DestVT == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00004728 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004729 else {
4730 assert(DestVT == MVT::f64 && "Unexpected conversion");
4731 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
4732 DAG.getEntryNode(), CPIdx,
Evan Cheng466685d2006-10-09 20:57:25 +00004733 NULL, 0, MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00004734 }
4735
4736 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
4737}
4738
4739/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
4740/// *INT_TO_FP operation of the specified operand when the target requests that
4741/// we promote it. At this point, we know that the result and operand types are
4742/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
4743/// operation that takes a larger input.
4744SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
4745 MVT::ValueType DestVT,
4746 bool isSigned) {
4747 // First step, figure out the appropriate *INT_TO_FP operation to use.
4748 MVT::ValueType NewInTy = LegalOp.getValueType();
4749
4750 unsigned OpToUse = 0;
4751
4752 // Scan for the appropriate larger type to use.
4753 while (1) {
4754 NewInTy = (MVT::ValueType)(NewInTy+1);
4755 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
4756
4757 // If the target supports SINT_TO_FP of this type, use it.
4758 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
4759 default: break;
4760 case TargetLowering::Legal:
4761 if (!TLI.isTypeLegal(NewInTy))
4762 break; // Can't use this datatype.
4763 // FALL THROUGH.
4764 case TargetLowering::Custom:
4765 OpToUse = ISD::SINT_TO_FP;
4766 break;
4767 }
4768 if (OpToUse) break;
4769 if (isSigned) continue;
4770
4771 // If the target supports UINT_TO_FP of this type, use it.
4772 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
4773 default: break;
4774 case TargetLowering::Legal:
4775 if (!TLI.isTypeLegal(NewInTy))
4776 break; // Can't use this datatype.
4777 // FALL THROUGH.
4778 case TargetLowering::Custom:
4779 OpToUse = ISD::UINT_TO_FP;
4780 break;
4781 }
4782 if (OpToUse) break;
4783
4784 // Otherwise, try a larger type.
4785 }
4786
4787 // Okay, we found the operation and type to use. Zero extend our input to the
4788 // desired type then run the operation on it.
4789 return DAG.getNode(OpToUse, DestVT,
4790 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
4791 NewInTy, LegalOp));
4792}
4793
4794/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
4795/// FP_TO_*INT operation of the specified operand when the target requests that
4796/// we promote it. At this point, we know that the result and operand types are
4797/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
4798/// operation that returns a larger result.
4799SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
4800 MVT::ValueType DestVT,
4801 bool isSigned) {
4802 // First step, figure out the appropriate FP_TO*INT operation to use.
4803 MVT::ValueType NewOutTy = DestVT;
4804
4805 unsigned OpToUse = 0;
4806
4807 // Scan for the appropriate larger type to use.
4808 while (1) {
4809 NewOutTy = (MVT::ValueType)(NewOutTy+1);
4810 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
4811
4812 // If the target supports FP_TO_SINT returning this type, use it.
4813 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
4814 default: break;
4815 case TargetLowering::Legal:
4816 if (!TLI.isTypeLegal(NewOutTy))
4817 break; // Can't use this datatype.
4818 // FALL THROUGH.
4819 case TargetLowering::Custom:
4820 OpToUse = ISD::FP_TO_SINT;
4821 break;
4822 }
4823 if (OpToUse) break;
4824
4825 // If the target supports FP_TO_UINT of this type, use it.
4826 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
4827 default: break;
4828 case TargetLowering::Legal:
4829 if (!TLI.isTypeLegal(NewOutTy))
4830 break; // Can't use this datatype.
4831 // FALL THROUGH.
4832 case TargetLowering::Custom:
4833 OpToUse = ISD::FP_TO_UINT;
4834 break;
4835 }
4836 if (OpToUse) break;
4837
4838 // Otherwise, try a larger type.
4839 }
4840
4841 // Okay, we found the operation and type to use. Truncate the result of the
4842 // extended FP_TO_*INT operation to the desired size.
4843 return DAG.getNode(ISD::TRUNCATE, DestVT,
4844 DAG.getNode(OpToUse, NewOutTy, LegalOp));
4845}
4846
4847/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
4848///
4849SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
4850 MVT::ValueType VT = Op.getValueType();
4851 MVT::ValueType SHVT = TLI.getShiftAmountTy();
4852 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
4853 switch (VT) {
4854 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
4855 case MVT::i16:
4856 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4857 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4858 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
4859 case MVT::i32:
4860 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4861 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4862 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4863 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4864 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
4865 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
4866 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4867 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4868 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4869 case MVT::i64:
4870 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
4871 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
4872 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4873 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4874 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4875 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4876 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
4877 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
4878 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
4879 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
4880 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
4881 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
4882 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
4883 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
4884 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
4885 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
4886 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4887 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4888 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
4889 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4890 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
4891 }
4892}
4893
4894/// ExpandBitCount - Expand the specified bitcount instruction into operations.
4895///
4896SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
4897 switch (Opc) {
4898 default: assert(0 && "Cannot expand this yet!");
4899 case ISD::CTPOP: {
4900 static const uint64_t mask[6] = {
4901 0x5555555555555555ULL, 0x3333333333333333ULL,
4902 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
4903 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
4904 };
4905 MVT::ValueType VT = Op.getValueType();
4906 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00004907 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004908 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4909 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
4910 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
4911 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4912 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
4913 DAG.getNode(ISD::AND, VT,
4914 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
4915 }
4916 return Op;
4917 }
4918 case ISD::CTLZ: {
4919 // for now, we do this:
4920 // x = x | (x >> 1);
4921 // x = x | (x >> 2);
4922 // ...
4923 // x = x | (x >>16);
4924 // x = x | (x >>32); // for 64-bit input
4925 // return popcount(~x);
4926 //
4927 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
4928 MVT::ValueType VT = Op.getValueType();
4929 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00004930 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004931 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4932 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4933 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
4934 }
4935 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
4936 return DAG.getNode(ISD::CTPOP, VT, Op);
4937 }
4938 case ISD::CTTZ: {
4939 // for now, we use: { return popcount(~x & (x - 1)); }
4940 // unless the target has ctlz but not ctpop, in which case we use:
4941 // { return 32 - nlz(~x & (x-1)); }
4942 // see also http://www.hackersdelight.org/HDcode/ntz.cc
4943 MVT::ValueType VT = Op.getValueType();
4944 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
4945 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
4946 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
4947 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
4948 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
4949 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
4950 TLI.isOperationLegal(ISD::CTLZ, VT))
4951 return DAG.getNode(ISD::SUB, VT,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004952 DAG.getConstant(MVT::getSizeInBits(VT), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00004953 DAG.getNode(ISD::CTLZ, VT, Tmp3));
4954 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
4955 }
4956 }
4957}
Chris Lattnere34b3962005-01-19 04:19:40 +00004958
Chris Lattner3e928bb2005-01-07 07:47:09 +00004959/// ExpandOp - Expand the specified SDOperand into its two component pieces
4960/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
4961/// LegalizeNodes map is filled in for any results that are not expanded, the
4962/// ExpandedNodes map is filled in for any results that are expanded, and the
4963/// Lo/Hi values are returned.
4964void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
4965 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00004966 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004967 SDNode *Node = Op.Val;
4968 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004969 assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
Dan Gohman7f321562007-06-25 16:23:39 +00004970 MVT::isVector(VT)) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00004971 "Cannot expand to FP value or to larger int value!");
4972
Chris Lattner6fdcb252005-09-02 20:32:45 +00004973 // See if we already expanded it.
Chris Lattner40030bf2007-02-04 01:17:38 +00004974 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00004975 = ExpandedNodes.find(Op);
4976 if (I != ExpandedNodes.end()) {
4977 Lo = I->second.first;
4978 Hi = I->second.second;
4979 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004980 }
4981
Chris Lattner3e928bb2005-01-07 07:47:09 +00004982 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004983 case ISD::CopyFromReg:
4984 assert(0 && "CopyFromReg must be legal!");
4985 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004986#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004987 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004988#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00004989 assert(0 && "Do not know how to expand this operator!");
4990 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004991 case ISD::UNDEF:
Evan Chengaa975c12006-12-16 02:20:50 +00004992 NVT = TLI.getTypeToExpandTo(VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004993 Lo = DAG.getNode(ISD::UNDEF, NVT);
4994 Hi = DAG.getNode(ISD::UNDEF, NVT);
4995 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004996 case ISD::Constant: {
4997 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
4998 Lo = DAG.getConstant(Cst, NVT);
4999 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
5000 break;
5001 }
Evan Cheng00495212006-12-12 21:32:44 +00005002 case ISD::ConstantFP: {
5003 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Evan Cheng279101e2006-12-12 22:19:28 +00005004 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005005 if (getTypeAction(Lo.getValueType()) == Expand)
5006 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005007 break;
5008 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005009 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005010 // Return the operands.
5011 Lo = Node->getOperand(0);
5012 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005013 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005014
5015 case ISD::SIGN_EXTEND_INREG:
5016 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005017 // sext_inreg the low part if needed.
5018 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5019
5020 // The high part gets the sign extension from the lo-part. This handles
5021 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005022 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5023 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
5024 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005025 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005026
Nate Begemand88fc032006-01-14 03:14:10 +00005027 case ISD::BSWAP: {
5028 ExpandOp(Node->getOperand(0), Lo, Hi);
5029 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5030 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5031 Lo = TempLo;
5032 break;
5033 }
5034
Chris Lattneredb1add2005-05-11 04:51:16 +00005035 case ISD::CTPOP:
5036 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005037 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5038 DAG.getNode(ISD::CTPOP, NVT, Lo),
5039 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005040 Hi = DAG.getConstant(0, NVT);
5041 break;
5042
Chris Lattner39a8f332005-05-12 19:05:01 +00005043 case ISD::CTLZ: {
5044 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005045 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005046 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5047 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005048 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
5049 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005050 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5051 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5052
5053 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5054 Hi = DAG.getConstant(0, NVT);
5055 break;
5056 }
5057
5058 case ISD::CTTZ: {
5059 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005060 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005061 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5062 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005063 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
5064 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005065 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5066 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5067
5068 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5069 Hi = DAG.getConstant(0, NVT);
5070 break;
5071 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005072
Nate Begemanacc398c2006-01-25 18:21:52 +00005073 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005074 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5075 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005076 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5077 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5078
5079 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005080 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005081 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
5082 if (!TLI.isLittleEndian())
5083 std::swap(Lo, Hi);
5084 break;
5085 }
5086
Chris Lattner3e928bb2005-01-07 07:47:09 +00005087 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005088 LoadSDNode *LD = cast<LoadSDNode>(Node);
5089 SDOperand Ch = LD->getChain(); // Legalize the chain.
5090 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5091 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005092 int SVOffset = LD->getSrcValueOffset();
5093 unsigned Alignment = LD->getAlignment();
5094 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005095
Evan Cheng466685d2006-10-09 20:57:25 +00005096 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005097 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5098 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005099 if (VT == MVT::f32 || VT == MVT::f64) {
5100 // f32->i32 or f64->i64 one to one expansion.
5101 // Remember that we legalized the chain.
5102 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005103 // Recursively expand the new load.
5104 if (getTypeAction(NVT) == Expand)
5105 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005106 break;
5107 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005108
Evan Cheng466685d2006-10-09 20:57:25 +00005109 // Increment the pointer to the other half.
5110 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
5111 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
5112 getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005113 SVOffset += IncrementSize;
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005114 if (Alignment > IncrementSize)
5115 Alignment = IncrementSize;
5116 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5117 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005118
Evan Cheng466685d2006-10-09 20:57:25 +00005119 // Build a factor node to remember that this load is independent of the
5120 // other one.
5121 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5122 Hi.getValue(1));
5123
5124 // Remember that we legalized the chain.
5125 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
5126 if (!TLI.isLittleEndian())
5127 std::swap(Lo, Hi);
5128 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00005129 MVT::ValueType EVT = LD->getLoadedVT();
Evan Cheng548f6112006-12-13 03:19:57 +00005130
5131 if (VT == MVT::f64 && EVT == MVT::f32) {
5132 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5133 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005134 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00005135 // Remember that we legalized the chain.
5136 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
5137 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
5138 break;
5139 }
Evan Cheng466685d2006-10-09 20:57:25 +00005140
5141 if (EVT == NVT)
5142 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005143 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005144 else
5145 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005146 SVOffset, EVT, isVolatile,
5147 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005148
5149 // Remember that we legalized the chain.
5150 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
5151
5152 if (ExtType == ISD::SEXTLOAD) {
5153 // The high part is obtained by SRA'ing all but one of the bits of the
5154 // lo part.
5155 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
5156 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5157 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
5158 } else if (ExtType == ISD::ZEXTLOAD) {
5159 // The high part is just a zero.
5160 Hi = DAG.getConstant(0, NVT);
5161 } else /* if (ExtType == ISD::EXTLOAD) */ {
5162 // The high part is undefined.
5163 Hi = DAG.getNode(ISD::UNDEF, NVT);
5164 }
5165 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005166 break;
5167 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005168 case ISD::AND:
5169 case ISD::OR:
5170 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
5171 SDOperand LL, LH, RL, RH;
5172 ExpandOp(Node->getOperand(0), LL, LH);
5173 ExpandOp(Node->getOperand(1), RL, RH);
5174 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
5175 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
5176 break;
5177 }
5178 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00005179 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005180 ExpandOp(Node->getOperand(1), LL, LH);
5181 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00005182 if (getTypeAction(NVT) == Expand)
5183 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00005184 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00005185 if (VT != MVT::f32)
5186 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005187 break;
5188 }
Nate Begeman9373a812005-08-10 20:51:12 +00005189 case ISD::SELECT_CC: {
5190 SDOperand TL, TH, FL, FH;
5191 ExpandOp(Node->getOperand(2), TL, TH);
5192 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00005193 if (getTypeAction(NVT) == Expand)
5194 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00005195 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5196 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00005197 if (VT != MVT::f32)
5198 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5199 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00005200 break;
5201 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00005202 case ISD::ANY_EXTEND:
5203 // The low part is any extension of the input (which degenerates to a copy).
5204 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
5205 // The high part is undefined.
5206 Hi = DAG.getNode(ISD::UNDEF, NVT);
5207 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005208 case ISD::SIGN_EXTEND: {
5209 // The low part is just a sign extension of the input (which degenerates to
5210 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00005211 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005212
Chris Lattner3e928bb2005-01-07 07:47:09 +00005213 // The high part is obtained by SRA'ing all but one of the bits of the lo
5214 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00005215 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00005216 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5217 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00005218 break;
5219 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00005220 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00005221 // The low part is just a zero extension of the input (which degenerates to
5222 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00005223 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005224
Chris Lattner3e928bb2005-01-07 07:47:09 +00005225 // The high part is just a zero.
5226 Hi = DAG.getConstant(0, NVT);
5227 break;
Chris Lattner35481892005-12-23 00:16:34 +00005228
Chris Lattner4c948eb2007-02-13 23:55:16 +00005229 case ISD::TRUNCATE: {
5230 // The input value must be larger than this value. Expand *it*.
5231 SDOperand NewLo;
5232 ExpandOp(Node->getOperand(0), NewLo, Hi);
5233
5234 // The low part is now either the right size, or it is closer. If not the
5235 // right size, make an illegal truncate so we recursively expand it.
5236 if (NewLo.getValueType() != Node->getValueType(0))
5237 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
5238 ExpandOp(NewLo, Lo, Hi);
5239 break;
5240 }
5241
Chris Lattner35481892005-12-23 00:16:34 +00005242 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005243 SDOperand Tmp;
5244 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
5245 // If the target wants to, allow it to lower this itself.
5246 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5247 case Expand: assert(0 && "cannot expand FP!");
5248 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
5249 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
5250 }
5251 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
5252 }
5253
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005254 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00005255 if (VT == MVT::f32 || VT == MVT::f64) {
5256 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00005257 if (getTypeAction(NVT) == Expand)
5258 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00005259 break;
5260 }
5261
5262 // If source operand will be expanded to the same type as VT, i.e.
5263 // i64 <- f64, i32 <- f32, expand the source operand instead.
5264 MVT::ValueType VT0 = Node->getOperand(0).getValueType();
5265 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
5266 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005267 break;
5268 }
5269
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005270 // Turn this into a load/store pair by default.
5271 if (Tmp.Val == 0)
Evan Cheng13acce32006-12-11 19:27:14 +00005272 Tmp = ExpandBIT_CONVERT(VT, Node->getOperand(0));
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005273
Chris Lattner35481892005-12-23 00:16:34 +00005274 ExpandOp(Tmp, Lo, Hi);
5275 break;
5276 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005277
Chris Lattner8137c9e2006-01-28 05:07:51 +00005278 case ISD::READCYCLECOUNTER:
Chris Lattner308575b2005-11-20 22:56:56 +00005279 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
5280 TargetLowering::Custom &&
5281 "Must custom expand ReadCycleCounter");
Chris Lattner8137c9e2006-01-28 05:07:51 +00005282 Lo = TLI.LowerOperation(Op, DAG);
5283 assert(Lo.Val && "Node must be custom expanded!");
5284 Hi = Lo.getValue(1);
Chris Lattner308575b2005-11-20 22:56:56 +00005285 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005286 LegalizeOp(Lo.getValue(2)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005287 break;
5288
Chris Lattner4e6c7462005-01-08 19:27:05 +00005289 // These operators cannot be expanded directly, emit them as calls to
5290 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00005291 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00005292 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00005293 SDOperand Op;
5294 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5295 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00005296 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
5297 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00005298 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005299
Chris Lattnerf20d1832005-07-30 01:40:57 +00005300 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
5301
Chris Lattner80a3e942005-07-29 00:33:32 +00005302 // Now that the custom expander is done, expand the result, which is still
5303 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00005304 if (Op.Val) {
5305 ExpandOp(Op, Lo, Hi);
5306 break;
5307 }
Chris Lattner80a3e942005-07-29 00:33:32 +00005308 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005309
Evan Cheng56966222007-01-12 02:11:51 +00005310 RTLIB::Libcall LC;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005311 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005312 LC = RTLIB::FPTOSINT_F32_I64;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005313 else
Evan Cheng56966222007-01-12 02:11:51 +00005314 LC = RTLIB::FPTOSINT_F64_I64;
5315 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
5316 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00005317 break;
Evan Cheng56966222007-01-12 02:11:51 +00005318 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005319
Evan Cheng56966222007-01-12 02:11:51 +00005320 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00005321 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005322 SDOperand Op;
5323 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5324 case Expand: assert(0 && "cannot expand FP!");
5325 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
5326 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
5327 }
5328
5329 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
5330
5331 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00005332 if (Op.Val) {
5333 ExpandOp(Op, Lo, Hi);
5334 break;
5335 }
Chris Lattner80a3e942005-07-29 00:33:32 +00005336 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005337
Evan Cheng56966222007-01-12 02:11:51 +00005338 RTLIB::Libcall LC;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005339 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005340 LC = RTLIB::FPTOUINT_F32_I64;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005341 else
Evan Cheng56966222007-01-12 02:11:51 +00005342 LC = RTLIB::FPTOUINT_F64_I64;
5343 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
5344 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00005345 break;
Evan Cheng56966222007-01-12 02:11:51 +00005346 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00005347
Evan Cheng05a2d562006-01-09 18:31:59 +00005348 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005349 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005350 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005351 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005352 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005353 Op = TLI.LowerOperation(Op, DAG);
5354 if (Op.Val) {
5355 // Now that the custom expander is done, expand the result, which is
5356 // still VT.
5357 ExpandOp(Op, Lo, Hi);
5358 break;
5359 }
5360 }
5361
Chris Lattner79980b02006-09-13 03:50:39 +00005362 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
5363 // this X << 1 as X+X.
5364 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
5365 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
5366 TLI.isOperationLegal(ISD::ADDE, NVT)) {
5367 SDOperand LoOps[2], HiOps[3];
5368 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
5369 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
5370 LoOps[1] = LoOps[0];
5371 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
5372
5373 HiOps[1] = HiOps[0];
5374 HiOps[2] = Lo.getValue(1);
5375 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
5376 break;
5377 }
5378 }
5379
Chris Lattnere34b3962005-01-19 04:19:40 +00005380 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005381 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005382 break;
Chris Lattner47599822005-04-02 03:38:53 +00005383
5384 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005385 TargetLowering::LegalizeAction Action =
5386 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
5387 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5388 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005389 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005390 break;
5391 }
5392
Chris Lattnere34b3962005-01-19 04:19:40 +00005393 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005394 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SHL_I64), Node,
5395 false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005396 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005397 }
Chris Lattnere34b3962005-01-19 04:19:40 +00005398
Evan Cheng05a2d562006-01-09 18:31:59 +00005399 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005400 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005401 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005402 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005403 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005404 Op = TLI.LowerOperation(Op, DAG);
5405 if (Op.Val) {
5406 // Now that the custom expander is done, expand the result, which is
5407 // still VT.
5408 ExpandOp(Op, Lo, Hi);
5409 break;
5410 }
5411 }
5412
Chris Lattnere34b3962005-01-19 04:19:40 +00005413 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005414 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005415 break;
Chris Lattner47599822005-04-02 03:38:53 +00005416
5417 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005418 TargetLowering::LegalizeAction Action =
5419 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
5420 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5421 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005422 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005423 break;
5424 }
5425
Chris Lattnere34b3962005-01-19 04:19:40 +00005426 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005427 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRA_I64), Node,
5428 true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005429 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005430 }
5431
5432 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005433 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005434 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005435 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005436 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005437 Op = TLI.LowerOperation(Op, DAG);
5438 if (Op.Val) {
5439 // Now that the custom expander is done, expand the result, which is
5440 // still VT.
5441 ExpandOp(Op, Lo, Hi);
5442 break;
5443 }
5444 }
5445
Chris Lattnere34b3962005-01-19 04:19:40 +00005446 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005447 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005448 break;
Chris Lattner47599822005-04-02 03:38:53 +00005449
5450 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005451 TargetLowering::LegalizeAction Action =
5452 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
5453 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5454 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005455 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005456 break;
5457 }
5458
Chris Lattnere34b3962005-01-19 04:19:40 +00005459 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005460 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRL_I64), Node,
5461 false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005462 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005463 }
Chris Lattnere34b3962005-01-19 04:19:40 +00005464
Misha Brukmanedf128a2005-04-21 22:36:52 +00005465 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005466 case ISD::SUB: {
5467 // If the target wants to custom expand this, let them.
5468 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
5469 TargetLowering::Custom) {
5470 Op = TLI.LowerOperation(Op, DAG);
5471 if (Op.Val) {
5472 ExpandOp(Op, Lo, Hi);
5473 break;
5474 }
5475 }
5476
5477 // Expand the subcomponents.
5478 SDOperand LHSL, LHSH, RHSL, RHSH;
5479 ExpandOp(Node->getOperand(0), LHSL, LHSH);
5480 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00005481 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
5482 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005483 LoOps[0] = LHSL;
5484 LoOps[1] = RHSL;
5485 HiOps[0] = LHSH;
5486 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00005487 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00005488 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005489 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00005490 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00005491 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00005492 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005493 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00005494 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00005495 }
Chris Lattner84f67882005-01-20 18:52:28 +00005496 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00005497 }
Chris Lattnerb429f732007-05-17 18:15:41 +00005498
5499 case ISD::ADDC:
5500 case ISD::SUBC: {
5501 // Expand the subcomponents.
5502 SDOperand LHSL, LHSH, RHSL, RHSH;
5503 ExpandOp(Node->getOperand(0), LHSL, LHSH);
5504 ExpandOp(Node->getOperand(1), RHSL, RHSH);
5505 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
5506 SDOperand LoOps[2] = { LHSL, RHSL };
5507 SDOperand HiOps[3] = { LHSH, RHSH };
5508
5509 if (Node->getOpcode() == ISD::ADDC) {
5510 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
5511 HiOps[2] = Lo.getValue(1);
5512 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
5513 } else {
5514 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
5515 HiOps[2] = Lo.getValue(1);
5516 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
5517 }
5518 // Remember that we legalized the flag.
5519 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
5520 break;
5521 }
5522 case ISD::ADDE:
5523 case ISD::SUBE: {
5524 // Expand the subcomponents.
5525 SDOperand LHSL, LHSH, RHSL, RHSH;
5526 ExpandOp(Node->getOperand(0), LHSL, LHSH);
5527 ExpandOp(Node->getOperand(1), RHSL, RHSH);
5528 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
5529 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
5530 SDOperand HiOps[3] = { LHSH, RHSH };
5531
5532 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
5533 HiOps[2] = Lo.getValue(1);
5534 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
5535
5536 // Remember that we legalized the flag.
5537 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
5538 break;
5539 }
Nate Begemanc7c16572005-04-11 03:01:51 +00005540 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00005541 // If the target wants to custom expand this, let them.
5542 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00005543 SDOperand New = TLI.LowerOperation(Op, DAG);
5544 if (New.Val) {
5545 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00005546 break;
5547 }
5548 }
5549
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005550 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
5551 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005552 if (HasMULHS || HasMULHU) {
Nate Begemanc7c16572005-04-11 03:01:51 +00005553 SDOperand LL, LH, RL, RH;
5554 ExpandOp(Node->getOperand(0), LL, LH);
5555 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman56eb8682005-08-30 02:44:00 +00005556 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
Nate Begeman2cbba892006-12-11 02:23:46 +00005557 // FIXME: Move this to the dag combiner.
Nate Begeman56eb8682005-08-30 02:44:00 +00005558 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
5559 // extended the sign bit of the low half through the upper half, and if so
5560 // emit a MULHS instead of the alternate sequence that is valid for any
5561 // i64 x i64 multiply.
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005562 if (HasMULHS &&
Nate Begeman56eb8682005-08-30 02:44:00 +00005563 // is RH an extension of the sign bit of RL?
5564 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
5565 RH.getOperand(1).getOpcode() == ISD::Constant &&
5566 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
5567 // is LH an extension of the sign bit of LL?
5568 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
5569 LH.getOperand(1).getOpcode() == ISD::Constant &&
5570 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
Chris Lattnera89654b2006-09-16 00:21:44 +00005571 // Low part:
5572 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
5573 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00005574 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
Chris Lattnera89654b2006-09-16 00:21:44 +00005575 break;
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005576 } else if (HasMULHU) {
Chris Lattnera89654b2006-09-16 00:21:44 +00005577 // Low part:
5578 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
5579
5580 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00005581 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
5582 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
5583 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
5584 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
5585 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00005586 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00005587 }
Nate Begemanc7c16572005-04-11 03:01:51 +00005588 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005589
Evan Cheng56966222007-01-12 02:11:51 +00005590 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::MUL_I64), Node,
5591 false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00005592 break;
5593 }
Evan Cheng56966222007-01-12 02:11:51 +00005594 case ISD::SDIV:
5595 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SDIV_I64), Node, true, Hi);
5596 break;
5597 case ISD::UDIV:
5598 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UDIV_I64), Node, true, Hi);
5599 break;
5600 case ISD::SREM:
5601 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SREM_I64), Node, true, Hi);
5602 break;
5603 case ISD::UREM:
5604 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UREM_I64), Node, true, Hi);
5605 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00005606
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005607 case ISD::FADD:
Evan Cheng56966222007-01-12 02:11:51 +00005608 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5609 ? RTLIB::ADD_F32 : RTLIB::ADD_F64),
5610 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005611 break;
5612 case ISD::FSUB:
Evan Cheng56966222007-01-12 02:11:51 +00005613 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5614 ? RTLIB::SUB_F32 : RTLIB::SUB_F64),
5615 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005616 break;
5617 case ISD::FMUL:
Evan Cheng56966222007-01-12 02:11:51 +00005618 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5619 ? RTLIB::MUL_F32 : RTLIB::MUL_F64),
5620 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005621 break;
5622 case ISD::FDIV:
Evan Cheng56966222007-01-12 02:11:51 +00005623 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5624 ? RTLIB::DIV_F32 : RTLIB::DIV_F64),
5625 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005626 break;
5627 case ISD::FP_EXTEND:
Evan Cheng56966222007-01-12 02:11:51 +00005628 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPEXT_F32_F64), Node, true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005629 break;
5630 case ISD::FP_ROUND:
Evan Cheng56966222007-01-12 02:11:51 +00005631 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPROUND_F64_F32),Node,true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005632 break;
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00005633 case ISD::FPOWI:
5634 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5635 ? RTLIB::POWI_F32 : RTLIB::POWI_F64),
5636 Node, false, Hi);
5637 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00005638 case ISD::FSQRT:
5639 case ISD::FSIN:
5640 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00005641 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00005642 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00005643 case ISD::FSQRT:
5644 LC = (VT == MVT::f32) ? RTLIB::SQRT_F32 : RTLIB::SQRT_F64;
5645 break;
5646 case ISD::FSIN:
5647 LC = (VT == MVT::f32) ? RTLIB::SIN_F32 : RTLIB::SIN_F64;
5648 break;
5649 case ISD::FCOS:
5650 LC = (VT == MVT::f32) ? RTLIB::COS_F32 : RTLIB::COS_F64;
5651 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00005652 default: assert(0 && "Unreachable!");
5653 }
Evan Cheng56966222007-01-12 02:11:51 +00005654 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00005655 break;
5656 }
Evan Cheng966bf242006-12-16 00:52:40 +00005657 case ISD::FABS: {
5658 SDOperand Mask = (VT == MVT::f64)
5659 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
5660 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
5661 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
5662 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
5663 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
5664 if (getTypeAction(NVT) == Expand)
5665 ExpandOp(Lo, Lo, Hi);
5666 break;
5667 }
5668 case ISD::FNEG: {
5669 SDOperand Mask = (VT == MVT::f64)
5670 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
5671 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
5672 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
5673 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
5674 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
5675 if (getTypeAction(NVT) == Expand)
5676 ExpandOp(Lo, Lo, Hi);
5677 break;
5678 }
Evan Cheng912095b2007-01-04 21:56:39 +00005679 case ISD::FCOPYSIGN: {
5680 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
5681 if (getTypeAction(NVT) == Expand)
5682 ExpandOp(Lo, Lo, Hi);
5683 break;
5684 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00005685 case ISD::SINT_TO_FP:
5686 case ISD::UINT_TO_FP: {
5687 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
5688 MVT::ValueType SrcVT = Node->getOperand(0).getValueType();
Evan Cheng56966222007-01-12 02:11:51 +00005689 RTLIB::Libcall LC;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005690 if (Node->getOperand(0).getValueType() == MVT::i64) {
5691 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005692 LC = isSigned ? RTLIB::SINTTOFP_I64_F32 : RTLIB::UINTTOFP_I64_F32;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005693 else
Evan Cheng56966222007-01-12 02:11:51 +00005694 LC = isSigned ? RTLIB::SINTTOFP_I64_F64 : RTLIB::UINTTOFP_I64_F64;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005695 } else {
5696 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005697 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005698 else
Evan Cheng56966222007-01-12 02:11:51 +00005699 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005700 }
5701
5702 // Promote the operand if needed.
5703 if (getTypeAction(SrcVT) == Promote) {
5704 SDOperand Tmp = PromoteOp(Node->getOperand(0));
5705 Tmp = isSigned
5706 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
5707 DAG.getValueType(SrcVT))
5708 : DAG.getZeroExtendInReg(Tmp, SrcVT);
5709 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
5710 }
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005711
5712 const char *LibCall = TLI.getLibcallName(LC);
5713 if (LibCall)
5714 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Hi);
5715 else {
5716 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
5717 Node->getOperand(0));
5718 if (getTypeAction(Lo.getValueType()) == Expand)
5719 ExpandOp(Lo, Lo, Hi);
5720 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00005721 break;
5722 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00005723 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005724
Chris Lattner83397362005-12-21 18:02:52 +00005725 // Make sure the resultant values have been legalized themselves, unless this
5726 // is a type that requires multi-step expansion.
5727 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
5728 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00005729 if (Hi.Val)
5730 // Don't legalize the high part if it is expanded to a single node.
5731 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00005732 }
Evan Cheng05a2d562006-01-09 18:31:59 +00005733
5734 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00005735 bool isNew = ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi)));
Evan Cheng05a2d562006-01-09 18:31:59 +00005736 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005737}
5738
Dan Gohman7f321562007-06-25 16:23:39 +00005739/// SplitVectorOp - Given an operand of vector type, break it down into
5740/// two smaller values, still of vector type.
Chris Lattnerc7029802006-03-18 01:44:44 +00005741void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
5742 SDOperand &Hi) {
Dan Gohman7f321562007-06-25 16:23:39 +00005743 assert(MVT::isVector(Op.getValueType()) && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00005744 SDNode *Node = Op.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00005745 unsigned NumElements = MVT::getVectorNumElements(Node->getValueType(0));
Chris Lattnerc7029802006-03-18 01:44:44 +00005746 assert(NumElements > 1 && "Cannot split a single element vector!");
5747 unsigned NewNumElts = NumElements/2;
Dan Gohman7f321562007-06-25 16:23:39 +00005748 MVT::ValueType NewEltVT = MVT::getVectorElementType(Node->getValueType(0));
5749 MVT::ValueType NewVT = MVT::getVectorType(NewEltVT, NewNumElts);
Chris Lattnerc7029802006-03-18 01:44:44 +00005750
5751 // See if we already split it.
5752 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
5753 = SplitNodes.find(Op);
5754 if (I != SplitNodes.end()) {
5755 Lo = I->second.first;
5756 Hi = I->second.second;
5757 return;
5758 }
5759
5760 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005761 default:
5762#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005763 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005764#endif
5765 assert(0 && "Unhandled operation in SplitVectorOp!");
Dan Gohman7f321562007-06-25 16:23:39 +00005766 case ISD::BUILD_PAIR:
5767 Lo = Node->getOperand(0);
5768 Hi = Node->getOperand(1);
5769 break;
5770 case ISD::BUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005771 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
5772 Node->op_begin()+NewNumElts);
Dan Gohman7f321562007-06-25 16:23:39 +00005773 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00005774
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005775 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts,
Dan Gohman7f321562007-06-25 16:23:39 +00005776 Node->op_end());
5777 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00005778 break;
5779 }
Dan Gohman7f321562007-06-25 16:23:39 +00005780 case ISD::CONCAT_VECTORS: {
5781 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
5782 if (NewNumSubvectors == 1) {
5783 Lo = Node->getOperand(0);
5784 Hi = Node->getOperand(1);
5785 } else {
5786 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
5787 Node->op_begin()+NewNumSubvectors);
5788 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00005789
Dan Gohman7f321562007-06-25 16:23:39 +00005790 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
5791 Node->op_end());
5792 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT, &HiOps[0], HiOps.size());
5793 }
Dan Gohman65956352007-06-13 15:12:02 +00005794 break;
5795 }
Dan Gohman7f321562007-06-25 16:23:39 +00005796 case ISD::ADD:
5797 case ISD::SUB:
5798 case ISD::MUL:
5799 case ISD::FADD:
5800 case ISD::FSUB:
5801 case ISD::FMUL:
5802 case ISD::SDIV:
5803 case ISD::UDIV:
5804 case ISD::FDIV:
5805 case ISD::AND:
5806 case ISD::OR:
5807 case ISD::XOR: {
Chris Lattnerc7029802006-03-18 01:44:44 +00005808 SDOperand LL, LH, RL, RH;
5809 SplitVectorOp(Node->getOperand(0), LL, LH);
5810 SplitVectorOp(Node->getOperand(1), RL, RH);
5811
Dan Gohman7f321562007-06-25 16:23:39 +00005812 Lo = DAG.getNode(Node->getOpcode(), NewVT, LL, RL);
5813 Hi = DAG.getNode(Node->getOpcode(), NewVT, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00005814 break;
5815 }
Dan Gohman7f321562007-06-25 16:23:39 +00005816 case ISD::LOAD: {
5817 LoadSDNode *LD = cast<LoadSDNode>(Node);
5818 SDOperand Ch = LD->getChain();
5819 SDOperand Ptr = LD->getBasePtr();
5820 const Value *SV = LD->getSrcValue();
5821 int SVOffset = LD->getSrcValueOffset();
5822 unsigned Alignment = LD->getAlignment();
5823 bool isVolatile = LD->isVolatile();
5824
5825 Lo = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
5826 unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(NewEltVT)/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00005827 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
5828 getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005829 SVOffset += IncrementSize;
5830 if (Alignment > IncrementSize)
5831 Alignment = IncrementSize;
5832 Hi = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00005833
5834 // Build a factor node to remember that this load is independent of the
5835 // other one.
5836 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5837 Hi.getValue(1));
5838
5839 // Remember that we legalized the chain.
5840 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00005841 break;
5842 }
Dan Gohman7f321562007-06-25 16:23:39 +00005843 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00005844 // We know the result is a vector. The input may be either a vector or a
5845 // scalar value.
Dan Gohman10a7aa62007-06-29 00:09:08 +00005846 SDOperand InOp = Node->getOperand(0);
5847 if (!MVT::isVector(InOp.getValueType()) ||
5848 MVT::getVectorNumElements(InOp.getValueType()) == 1) {
5849 // The input is a scalar or single-element vector.
5850 // Lower to a store/load so that it can be split.
5851 // FIXME: this could be improved probably.
5852 SDOperand Ptr = CreateStackTemporary(InOp.getValueType());
Chris Lattner7692eb42006-03-23 21:16:34 +00005853
Evan Cheng786225a2006-10-05 23:01:46 +00005854 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman10a7aa62007-06-29 00:09:08 +00005855 InOp, Ptr, NULL, 0);
5856 InOp = DAG.getLoad(Op.getValueType(), St, Ptr, NULL, 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00005857 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00005858 // Split the vector and convert each of the pieces now.
5859 SplitVectorOp(InOp, Lo, Hi);
5860 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT, Lo);
5861 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT, Hi);
5862 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00005863 }
Chris Lattnerc7029802006-03-18 01:44:44 +00005864 }
5865
5866 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00005867 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00005868 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00005869 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00005870}
5871
5872
Dan Gohman89b20c02007-06-27 14:06:22 +00005873/// ScalarizeVectorOp - Given an operand of single-element vector type
5874/// (e.g. v1f32), convert it into the equivalent operation that returns a
5875/// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +00005876SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
5877 assert(MVT::isVector(Op.getValueType()) &&
5878 "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00005879 SDNode *Node = Op.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00005880 MVT::ValueType NewVT = MVT::getVectorElementType(Op.getValueType());
5881 assert(MVT::getVectorNumElements(Op.getValueType()) == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00005882
Dan Gohman7f321562007-06-25 16:23:39 +00005883 // See if we already scalarized it.
5884 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
5885 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00005886
5887 SDOperand Result;
5888 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00005889 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005890#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005891 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005892#endif
Dan Gohman7f321562007-06-25 16:23:39 +00005893 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
5894 case ISD::ADD:
5895 case ISD::FADD:
5896 case ISD::SUB:
5897 case ISD::FSUB:
5898 case ISD::MUL:
5899 case ISD::FMUL:
5900 case ISD::SDIV:
5901 case ISD::UDIV:
5902 case ISD::FDIV:
5903 case ISD::SREM:
5904 case ISD::UREM:
5905 case ISD::FREM:
5906 case ISD::AND:
5907 case ISD::OR:
5908 case ISD::XOR:
5909 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00005910 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00005911 ScalarizeVectorOp(Node->getOperand(0)),
5912 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00005913 break;
Dan Gohman7f321562007-06-25 16:23:39 +00005914 case ISD::FNEG:
5915 case ISD::FABS:
5916 case ISD::FSQRT:
5917 case ISD::FSIN:
5918 case ISD::FCOS:
5919 Result = DAG.getNode(Node->getOpcode(),
5920 NewVT,
5921 ScalarizeVectorOp(Node->getOperand(0)));
5922 break;
5923 case ISD::LOAD: {
5924 LoadSDNode *LD = cast<LoadSDNode>(Node);
5925 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
5926 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00005927
Dan Gohman7f321562007-06-25 16:23:39 +00005928 const Value *SV = LD->getSrcValue();
5929 int SVOffset = LD->getSrcValueOffset();
5930 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
5931 LD->isVolatile(), LD->getAlignment());
5932
Chris Lattnerc7029802006-03-18 01:44:44 +00005933 // Remember that we legalized the chain.
5934 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
5935 break;
5936 }
Dan Gohman7f321562007-06-25 16:23:39 +00005937 case ISD::BUILD_VECTOR:
5938 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00005939 break;
Dan Gohman7f321562007-06-25 16:23:39 +00005940 case ISD::INSERT_VECTOR_ELT:
5941 // Returning the inserted scalar element.
5942 Result = Node->getOperand(1);
5943 break;
5944 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00005945 assert(Node->getOperand(0).getValueType() == NewVT &&
5946 "Concat of non-legal vectors not yet supported!");
5947 Result = Node->getOperand(0);
5948 break;
Dan Gohman7f321562007-06-25 16:23:39 +00005949 case ISD::VECTOR_SHUFFLE: {
5950 // Figure out if the scalar is the LHS or RHS and return it.
5951 SDOperand EltNum = Node->getOperand(2).getOperand(0);
5952 if (cast<ConstantSDNode>(EltNum)->getValue())
5953 Result = ScalarizeVectorOp(Node->getOperand(1));
5954 else
5955 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00005956 break;
Dan Gohman7f321562007-06-25 16:23:39 +00005957 }
5958 case ISD::EXTRACT_SUBVECTOR:
5959 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00005960 assert(Result.getValueType() == NewVT);
5961 break;
Dan Gohman7f321562007-06-25 16:23:39 +00005962 case ISD::BIT_CONVERT:
5963 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
Chris Lattner5b2316e2006-03-28 20:24:43 +00005964 break;
Dan Gohman7f321562007-06-25 16:23:39 +00005965 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005966 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00005967 ScalarizeVectorOp(Op.getOperand(1)),
5968 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005969 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00005970 }
5971
5972 if (TLI.isTypeLegal(NewVT))
5973 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00005974 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
5975 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00005976 return Result;
5977}
5978
Chris Lattner3e928bb2005-01-07 07:47:09 +00005979
5980// SelectionDAG::Legalize - This is the entry point for the file.
5981//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005982void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00005983 if (ViewLegalizeDAGs) viewGraph();
5984
Chris Lattner3e928bb2005-01-07 07:47:09 +00005985 /// run - This is the main entry point to this class.
5986 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00005987 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005988}
5989