blob: 71633fe7cd5abdebf3761d957996cceb43bb997e [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//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner45b8caf2005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000017#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000019#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Cheng61bbbab2007-08-16 23:50:06 +000020#include "llvm/Target/TargetFrameInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000021#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000022#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000023#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000024#include "llvm/Target/TargetOptions.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000025#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000026#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000027#include "llvm/DerivedTypes.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000028#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000029#include "llvm/Support/Compiler.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000030#include "llvm/Support/MathExtras.h"
Chris Lattner79715142007-02-03 01:12:36 +000031#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000032#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000033#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng033e6812006-03-24 01:17:21 +000034#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000035using namespace llvm;
36
Chris Lattner5e46a192006-04-02 03:07:27 +000037#ifndef NDEBUG
38static cl::opt<bool>
39ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
40 cl::desc("Pop up a window to show dags before legalize"));
41#else
42static const bool ViewLegalizeDAGs = 0;
43#endif
44
Chris Lattner3e928bb2005-01-07 07:47:09 +000045//===----------------------------------------------------------------------===//
46/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
47/// hacks on it until the target machine can handle it. This involves
48/// eliminating value sizes the machine cannot handle (promoting small sizes to
49/// large sizes or splitting up large values into small values) as well as
50/// eliminating operations the machine cannot handle.
51///
52/// This code also does a small amount of optimization and recognition of idioms
53/// as part of its processing. For example, if a target does not support a
54/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
55/// will attempt merge setcc and brc instructions into brcc's.
56///
57namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000058class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000059 TargetLowering &TLI;
60 SelectionDAG &DAG;
61
Chris Lattner6831a812006-02-13 09:18:02 +000062 // Libcall insertion helpers.
63
64 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
65 /// legalized. We use this to ensure that calls are properly serialized
66 /// against each other, including inserted libcalls.
67 SDOperand LastCALLSEQ_END;
68
69 /// IsLegalizingCall - This member is used *only* for purposes of providing
70 /// helpful assertions that a libcall isn't created while another call is
71 /// being legalized (which could lead to non-serialized call sequences).
72 bool IsLegalizingCall;
73
Chris Lattner3e928bb2005-01-07 07:47:09 +000074 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000075 Legal, // The target natively supports this operation.
76 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000077 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000078 };
Chris Lattner6831a812006-02-13 09:18:02 +000079
Chris Lattner3e928bb2005-01-07 07:47:09 +000080 /// ValueTypeActions - This is a bitvector that contains two bits for each
81 /// value type, where the two bits correspond to the LegalizeAction enum.
82 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000083 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000084
Chris Lattner3e928bb2005-01-07 07:47:09 +000085 /// LegalizedNodes - For nodes that are of legal width, and that have more
86 /// than one use, this map indicates what regularized operand to use. This
87 /// allows us to avoid legalizing the same thing more than once.
Chris Lattner718071c2007-02-04 00:50:02 +000088 DenseMap<SDOperand, SDOperand> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000089
Chris Lattner03c85462005-01-15 05:21:40 +000090 /// PromotedNodes - For nodes that are below legal width, and that have more
91 /// than one use, this map indicates what promoted value to use. This allows
92 /// us to avoid promoting the same thing more than once.
Chris Lattner40030bf2007-02-04 01:17:38 +000093 DenseMap<SDOperand, SDOperand> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +000094
Chris Lattnerc7029802006-03-18 01:44:44 +000095 /// ExpandedNodes - For nodes that need to be expanded this map indicates
96 /// which which operands are the expanded version of the input. This allows
97 /// us to avoid expanding the same node more than once.
Chris Lattner40030bf2007-02-04 01:17:38 +000098 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000099
Chris Lattnerc7029802006-03-18 01:44:44 +0000100 /// SplitNodes - For vector nodes that need to be split, this map indicates
101 /// which which operands are the split version of the input. This allows us
102 /// to avoid splitting the same node more than once.
103 std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
104
Dan Gohman7f321562007-06-25 16:23:39 +0000105 /// ScalarizedNodes - For nodes that need to be converted from vector types to
106 /// scalar types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000107 /// processed to the result.
Dan Gohman7f321562007-06-25 16:23:39 +0000108 std::map<SDOperand, SDOperand> ScalarizedNodes;
Chris Lattnerc7029802006-03-18 01:44:44 +0000109
Chris Lattner8afc48e2005-01-07 22:28:47 +0000110 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000111 LegalizedNodes.insert(std::make_pair(From, To));
112 // If someone requests legalization of the new node, return itself.
113 if (From != To)
114 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000115 }
Chris Lattner03c85462005-01-15 05:21:40 +0000116 void AddPromotedOperand(SDOperand From, SDOperand To) {
Chris Lattner40030bf2007-02-04 01:17:38 +0000117 bool isNew = PromotedNodes.insert(std::make_pair(From, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000118 assert(isNew && "Got into the map somehow?");
Chris Lattner69a889e2005-12-20 00:53:54 +0000119 // If someone requests legalization of the new node, return itself.
120 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000121 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000122
Chris Lattner3e928bb2005-01-07 07:47:09 +0000123public:
124
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000125 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000126
Chris Lattner3e928bb2005-01-07 07:47:09 +0000127 /// getTypeAction - Return how we should legalize values of this type, either
128 /// it is already legal or we need to expand it into multiple registers of
129 /// smaller integer type, or we need to promote it to a larger type.
130 LegalizeAction getTypeAction(MVT::ValueType VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000131 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000132 }
133
134 /// isTypeLegal - Return true if this type is legal on this target.
135 ///
136 bool isTypeLegal(MVT::ValueType VT) const {
137 return getTypeAction(VT) == Legal;
138 }
139
Chris Lattner3e928bb2005-01-07 07:47:09 +0000140 void LegalizeDAG();
141
Chris Lattner456a93a2006-01-28 07:39:30 +0000142private:
Dan Gohman7f321562007-06-25 16:23:39 +0000143 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000144 /// appropriate for its type.
145 void HandleOp(SDOperand Op);
146
147 /// LegalizeOp - We know that the specified value has a legal type.
148 /// Recursively ensure that the operands have legal types, then return the
149 /// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000150 SDOperand LegalizeOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000151
Dan Gohman82669522007-10-11 23:57:53 +0000152 /// UnrollVectorOp - We know that the given vector has a legal type, however
153 /// the operation it performs is not legal and is an operation that we have
154 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
155 /// operating on each element individually.
156 SDOperand UnrollVectorOp(SDOperand O);
157
Chris Lattnerc7029802006-03-18 01:44:44 +0000158 /// PromoteOp - Given an operation that produces a value in an invalid type,
159 /// promote it to compute the value into a larger type. The produced value
160 /// will have the correct bits for the low portion of the register, but no
161 /// guarantee is made about the top bits: it may be zero, sign-extended, or
162 /// garbage.
Chris Lattner03c85462005-01-15 05:21:40 +0000163 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000164
Chris Lattnerc7029802006-03-18 01:44:44 +0000165 /// ExpandOp - Expand the specified SDOperand into its two component pieces
166 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
167 /// the LegalizeNodes map is filled in for any results that are not expanded,
168 /// the ExpandedNodes map is filled in for any results that are expanded, and
169 /// the Lo/Hi values are returned. This applies to integer types and Vector
170 /// types.
171 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
172
Dan Gohman7f321562007-06-25 16:23:39 +0000173 /// SplitVectorOp - Given an operand of vector type, break it down into
174 /// two smaller values.
Chris Lattnerc7029802006-03-18 01:44:44 +0000175 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
176
Dan Gohman89b20c02007-06-27 14:06:22 +0000177 /// ScalarizeVectorOp - Given an operand of single-element vector type
178 /// (e.g. v1f32), convert it into the equivalent operation that returns a
179 /// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +0000180 SDOperand ScalarizeVectorOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000181
Chris Lattner4352cc92006-04-04 17:23:26 +0000182 /// isShuffleLegal - Return true if a vector shuffle is legal with the
183 /// specified mask and type. Targets can specify exactly which masks they
184 /// support and the code generator is tasked with not creating illegal masks.
185 ///
186 /// Note that this will also return true for shuffles that are promoted to a
187 /// different type.
188 ///
189 /// If this is a legal shuffle, this method returns the (possibly promoted)
190 /// build_vector Mask. If it's not a legal shuffle, it returns null.
191 SDNode *isShuffleLegal(MVT::ValueType VT, SDOperand Mask) const;
192
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000193 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000194 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000195
Nate Begeman750ac1b2006-02-01 07:19:44 +0000196 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
197
Reid Spencer47857812006-12-31 05:55:36 +0000198 SDOperand ExpandLibCall(const char *Name, SDNode *Node, bool isSigned,
Chris Lattner77e77a62005-01-21 06:05:23 +0000199 SDOperand &Hi);
200 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
201 SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000202
Chris Lattner1401d152008-01-16 07:45:30 +0000203 SDOperand EmitStackConvert(SDOperand SrcOp, MVT::ValueType SlotVT,
204 MVT::ValueType DestVT);
Chris Lattnerce872152006-03-19 06:31:19 +0000205 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000206 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskey6269ed12005-08-17 00:39:29 +0000207 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
208 SDOperand LegalOp,
209 MVT::ValueType DestVT);
Nate Begeman5a8441e2005-07-16 02:02:34 +0000210 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
211 bool isSigned);
Chris Lattner1618beb2005-07-29 00:11:56 +0000212 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
213 bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000214
Chris Lattner456a93a2006-01-28 07:39:30 +0000215 SDOperand ExpandBSWAP(SDOperand Op);
216 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000217 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
218 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000219 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
220 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000221
Dan Gohman7f321562007-06-25 16:23:39 +0000222 SDOperand ExpandEXTRACT_SUBVECTOR(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000223 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000224};
225}
226
Chris Lattner4352cc92006-04-04 17:23:26 +0000227/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
228/// specified mask and type. Targets can specify exactly which masks they
229/// support and the code generator is tasked with not creating illegal masks.
230///
231/// Note that this will also return true for shuffles that are promoted to a
232/// different type.
233SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT,
234 SDOperand Mask) const {
235 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
236 default: return 0;
237 case TargetLowering::Legal:
238 case TargetLowering::Custom:
239 break;
240 case TargetLowering::Promote: {
241 // If this is promoted to a different type, convert the shuffle mask and
242 // ask if it is legal in the promoted type!
243 MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
244
245 // If we changed # elements, change the shuffle mask.
246 unsigned NumEltsGrowth =
247 MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT);
248 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
249 if (NumEltsGrowth > 1) {
250 // Renumber the elements.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000251 SmallVector<SDOperand, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000252 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
253 SDOperand InOp = Mask.getOperand(i);
254 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
255 if (InOp.getOpcode() == ISD::UNDEF)
256 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
257 else {
258 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
259 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
260 }
261 }
262 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000263 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000264 }
265 VT = NVT;
266 break;
267 }
268 }
269 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
270}
271
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000272SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
273 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
274 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000275 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000276 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000277}
278
Chris Lattnere10e6f72007-06-18 21:28:10 +0000279/// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order
280/// contains all of a nodes operands before it contains the node.
281static void ComputeTopDownOrdering(SelectionDAG &DAG,
282 SmallVector<SDNode*, 64> &Order) {
283
284 DenseMap<SDNode*, unsigned> Visited;
285 std::vector<SDNode*> Worklist;
286 Worklist.reserve(128);
Chris Lattner32fca002005-10-06 01:20:27 +0000287
Chris Lattnere10e6f72007-06-18 21:28:10 +0000288 // Compute ordering from all of the leaves in the graphs, those (like the
289 // entry node) that have no operands.
290 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
291 E = DAG.allnodes_end(); I != E; ++I) {
292 if (I->getNumOperands() == 0) {
293 Visited[I] = 0 - 1U;
294 Worklist.push_back(I);
295 }
Chris Lattner32fca002005-10-06 01:20:27 +0000296 }
297
Chris Lattnere10e6f72007-06-18 21:28:10 +0000298 while (!Worklist.empty()) {
299 SDNode *N = Worklist.back();
300 Worklist.pop_back();
301
302 if (++Visited[N] != N->getNumOperands())
303 continue; // Haven't visited all operands yet
304
305 Order.push_back(N);
306
307 // Now that we have N in, add anything that uses it if all of their operands
308 // are now done.
309 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
310 UI != E; ++UI)
311 Worklist.push_back(*UI);
312 }
313
314 assert(Order.size() == Visited.size() &&
315 Order.size() ==
316 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
317 "Error: DAG is cyclic!");
Chris Lattner32fca002005-10-06 01:20:27 +0000318}
319
Chris Lattner1618beb2005-07-29 00:11:56 +0000320
Chris Lattner3e928bb2005-01-07 07:47:09 +0000321void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000322 LastCALLSEQ_END = DAG.getEntryNode();
323 IsLegalizingCall = false;
324
Chris Lattnerab510a72005-10-02 17:49:46 +0000325 // The legalize process is inherently a bottom-up recursive process (users
326 // legalize their uses before themselves). Given infinite stack space, we
327 // could just start legalizing on the root and traverse the whole graph. In
328 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000329 // blocks. To avoid this problem, compute an ordering of the nodes where each
330 // node is only legalized after all of its operands are legalized.
Chris Lattner0ed44172007-02-04 01:20:02 +0000331 SmallVector<SDNode*, 64> Order;
Chris Lattnere10e6f72007-06-18 21:28:10 +0000332 ComputeTopDownOrdering(DAG, Order);
Chris Lattnerab510a72005-10-02 17:49:46 +0000333
Chris Lattnerc7029802006-03-18 01:44:44 +0000334 for (unsigned i = 0, e = Order.size(); i != e; ++i)
335 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000336
337 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000338 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000339 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
340 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000341
342 ExpandedNodes.clear();
343 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000344 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000345 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000346 ScalarizedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000347
348 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000349 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000350}
351
Chris Lattner6831a812006-02-13 09:18:02 +0000352
353/// FindCallEndFromCallStart - Given a chained node that is part of a call
354/// sequence, find the CALLSEQ_END node that terminates the call sequence.
355static SDNode *FindCallEndFromCallStart(SDNode *Node) {
356 if (Node->getOpcode() == ISD::CALLSEQ_END)
357 return Node;
358 if (Node->use_empty())
359 return 0; // No CallSeqEnd
360
361 // The chain is usually at the end.
362 SDOperand TheChain(Node, Node->getNumValues()-1);
363 if (TheChain.getValueType() != MVT::Other) {
364 // Sometimes it's at the beginning.
365 TheChain = SDOperand(Node, 0);
366 if (TheChain.getValueType() != MVT::Other) {
367 // Otherwise, hunt for it.
368 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
369 if (Node->getValueType(i) == MVT::Other) {
370 TheChain = SDOperand(Node, i);
371 break;
372 }
373
374 // Otherwise, we walked into a node without a chain.
375 if (TheChain.getValueType() != MVT::Other)
376 return 0;
377 }
378 }
379
380 for (SDNode::use_iterator UI = Node->use_begin(),
381 E = Node->use_end(); UI != E; ++UI) {
382
383 // Make sure to only follow users of our token chain.
384 SDNode *User = *UI;
385 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
386 if (User->getOperand(i) == TheChain)
387 if (SDNode *Result = FindCallEndFromCallStart(User))
388 return Result;
389 }
390 return 0;
391}
392
393/// FindCallStartFromCallEnd - Given a chained node that is part of a call
394/// sequence, find the CALLSEQ_START node that initiates the call sequence.
395static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
396 assert(Node && "Didn't find callseq_start for a call??");
397 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
398
399 assert(Node->getOperand(0).getValueType() == MVT::Other &&
400 "Node doesn't have a token chain argument!");
401 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
402}
403
404/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
405/// see if any uses can reach Dest. If no dest operands can get to dest,
406/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000407///
408/// Keep track of the nodes we fine that actually do lead to Dest in
409/// NodesLeadingTo. This avoids retraversing them exponential number of times.
410///
411bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000412 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000413 if (N == Dest) return true; // N certainly leads to Dest :)
414
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000415 // If we've already processed this node and it does lead to Dest, there is no
416 // need to reprocess it.
417 if (NodesLeadingTo.count(N)) return true;
418
Chris Lattner6831a812006-02-13 09:18:02 +0000419 // If the first result of this node has been already legalized, then it cannot
420 // reach N.
421 switch (getTypeAction(N->getValueType(0))) {
422 case Legal:
423 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
424 break;
425 case Promote:
426 if (PromotedNodes.count(SDOperand(N, 0))) return false;
427 break;
428 case Expand:
429 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
430 break;
431 }
432
433 // Okay, this node has not already been legalized. Check and legalize all
434 // operands. If none lead to Dest, then we can legalize this node.
435 bool OperandsLeadToDest = false;
436 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
437 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000438 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000439
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000440 if (OperandsLeadToDest) {
441 NodesLeadingTo.insert(N);
442 return true;
443 }
Chris Lattner6831a812006-02-13 09:18:02 +0000444
445 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000446 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000447 return false;
448}
449
Dan Gohman7f321562007-06-25 16:23:39 +0000450/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000451/// appropriate for its type.
452void SelectionDAGLegalize::HandleOp(SDOperand Op) {
Dan Gohman7f321562007-06-25 16:23:39 +0000453 MVT::ValueType VT = Op.getValueType();
454 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000455 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000456 case Legal: (void)LegalizeOp(Op); break;
457 case Promote: (void)PromoteOp(Op); break;
Chris Lattnerc7029802006-03-18 01:44:44 +0000458 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +0000459 if (!MVT::isVector(VT)) {
460 // If this is an illegal scalar, expand it into its two component
461 // pieces.
Chris Lattnerc7029802006-03-18 01:44:44 +0000462 SDOperand X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000463 if (Op.getOpcode() == ISD::TargetConstant)
464 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000465 ExpandOp(Op, X, Y);
Dan Gohman7f321562007-06-25 16:23:39 +0000466 } else if (MVT::getVectorNumElements(VT) == 1) {
467 // If this is an illegal single element vector, convert it to a
468 // scalar operation.
469 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000470 } else {
Dan Gohman7f321562007-06-25 16:23:39 +0000471 // Otherwise, this is an illegal multiple element vector.
472 // Split it in half and legalize both parts.
473 SDOperand X, Y;
474 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000475 }
476 break;
477 }
478}
Chris Lattner6831a812006-02-13 09:18:02 +0000479
Evan Cheng9f877882006-12-13 20:57:08 +0000480/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
481/// a load from the constant pool.
482static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000483 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000484 bool Extend = false;
485
486 // If a FP immediate is precise when represented as a float and if the
487 // target can do an extending load from float to double, we put it into
488 // the constant pool as a float, even if it's is statically typed as a
489 // double.
490 MVT::ValueType VT = CFP->getValueType(0);
491 bool isDouble = VT == MVT::f64;
Dale Johannesen118cd9d2007-09-16 16:51:49 +0000492 ConstantFP *LLVMC = ConstantFP::get(MVT::getTypeForValueType(VT),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000493 CFP->getValueAPF());
Evan Cheng9f877882006-12-13 20:57:08 +0000494 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000495 if (VT!=MVT::f64 && VT!=MVT::f32)
496 assert(0 && "Invalid type expansion");
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000497 return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt().getZExtValue(),
498 isDouble ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000499 }
500
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000501 if (isDouble && CFP->isValueValidForType(MVT::f32, CFP->getValueAPF()) &&
Evan Cheng00495212006-12-12 21:32:44 +0000502 // Only do this if the target has a native EXTLOAD instruction from f32.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000503 // Do not try to be clever about long doubles (so far)
Evan Cheng00495212006-12-12 21:32:44 +0000504 TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
505 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC,Type::FloatTy));
506 VT = MVT::f32;
507 Extend = true;
508 }
509
510 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
511 if (Extend) {
512 return DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +0000513 CPIdx, &PseudoSourceValue::getConstantPool(),
514 0, MVT::f32);
Evan Cheng00495212006-12-12 21:32:44 +0000515 } else {
Dan Gohman69de1932008-02-06 22:27:42 +0000516 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
517 &PseudoSourceValue::getConstantPool(), 0);
Evan Cheng00495212006-12-12 21:32:44 +0000518 }
519}
520
Chris Lattner6831a812006-02-13 09:18:02 +0000521
Evan Cheng912095b2007-01-04 21:56:39 +0000522/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
523/// operations.
524static
525SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT::ValueType NVT,
526 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng068c5f42007-01-05 21:31:51 +0000527 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng912095b2007-01-04 21:56:39 +0000528 MVT::ValueType SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000529 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
530 "fcopysign expansion only supported for f32 and f64");
Evan Cheng912095b2007-01-04 21:56:39 +0000531 MVT::ValueType SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000532
Evan Cheng912095b2007-01-04 21:56:39 +0000533 // First get the sign bit of second operand.
Evan Cheng068c5f42007-01-05 21:31:51 +0000534 SDOperand Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000535 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
536 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000537 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000538 SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000539 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000540 // Shift right or sign-extend it if the two operands have different types.
541 int SizeDiff = MVT::getSizeInBits(SrcNVT) - MVT::getSizeInBits(NVT);
542 if (SizeDiff > 0) {
543 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
544 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
545 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
546 } else if (SizeDiff < 0)
547 SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
Evan Cheng068c5f42007-01-05 21:31:51 +0000548
549 // Clear the sign bit of first operand.
550 SDOperand Mask2 = (VT == MVT::f64)
551 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
552 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
553 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng912095b2007-01-04 21:56:39 +0000554 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000555 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
556
557 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000558 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
559 return Result;
560}
561
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000562/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
563static
564SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
565 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000566 SDOperand Chain = ST->getChain();
567 SDOperand Ptr = ST->getBasePtr();
568 SDOperand Val = ST->getValue();
569 MVT::ValueType VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000570 int Alignment = ST->getAlignment();
571 int SVOffset = ST->getSrcValueOffset();
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000572 if (MVT::isFloatingPoint(ST->getMemoryVT())) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000573 // Expand to a bitconvert of the value to the integer type of the
574 // same size, then a (misaligned) int store.
575 MVT::ValueType intVT;
576 if (VT==MVT::f64)
577 intVT = MVT::i64;
578 else if (VT==MVT::f32)
579 intVT = MVT::i32;
580 else
581 assert(0 && "Unaligned load of unsupported floating point type");
582
583 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
584 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
585 SVOffset, ST->isVolatile(), Alignment);
586 }
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000587 assert(MVT::isInteger(ST->getMemoryVT()) &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000588 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000589 // Get the half-size VT
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000590 MVT::ValueType NewStoredVT = ST->getMemoryVT() - 1;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000591 int NumBits = MVT::getSizeInBits(NewStoredVT);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000592 int IncrementSize = NumBits / 8;
593
594 // Divide the stored value in two parts.
595 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
596 SDOperand Lo = Val;
597 SDOperand Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
598
599 // Store the two parts
600 SDOperand Store1, Store2;
601 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
602 ST->getSrcValue(), SVOffset, NewStoredVT,
603 ST->isVolatile(), Alignment);
604 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
605 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000606 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000607 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
608 ST->getSrcValue(), SVOffset + IncrementSize,
609 NewStoredVT, ST->isVolatile(), Alignment);
610
611 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
612}
613
614/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
615static
616SDOperand ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
617 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000618 int SVOffset = LD->getSrcValueOffset();
619 SDOperand Chain = LD->getChain();
620 SDOperand Ptr = LD->getBasePtr();
621 MVT::ValueType VT = LD->getValueType(0);
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000622 MVT::ValueType LoadedVT = LD->getMemoryVT();
Chris Lattnere400af82007-11-19 21:38:03 +0000623 if (MVT::isFloatingPoint(VT) && !MVT::isVector(VT)) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000624 // Expand to a (misaligned) integer load of the same size,
625 // then bitconvert to floating point.
626 MVT::ValueType intVT;
Chris Lattnere400af82007-11-19 21:38:03 +0000627 if (LoadedVT == MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000628 intVT = MVT::i64;
Chris Lattnere400af82007-11-19 21:38:03 +0000629 else if (LoadedVT == MVT::f32)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000630 intVT = MVT::i32;
631 else
632 assert(0 && "Unaligned load of unsupported floating point type");
633
634 SDOperand newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
635 SVOffset, LD->isVolatile(),
636 LD->getAlignment());
637 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
638 if (LoadedVT != VT)
639 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
640
641 SDOperand Ops[] = { Result, Chain };
642 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
643 Ops, 2);
644 }
Chris Lattnere400af82007-11-19 21:38:03 +0000645 assert((MVT::isInteger(LoadedVT) || MVT::isVector(LoadedVT)) &&
646 "Unaligned load of unsupported type.");
647
648 // Compute the new VT that is half the size of the old one. We either have an
649 // integer MVT or we have a vector MVT.
650 unsigned NumBits = MVT::getSizeInBits(LoadedVT);
651 MVT::ValueType NewLoadedVT;
652 if (!MVT::isVector(LoadedVT)) {
653 NewLoadedVT = MVT::getIntegerType(NumBits/2);
654 } else {
655 // FIXME: This is not right for <1 x anything> it is also not right for
656 // non-power-of-two vectors.
657 NewLoadedVT = MVT::getVectorType(MVT::getVectorElementType(LoadedVT),
658 MVT::getVectorNumElements(LoadedVT)/2);
659 }
660 NumBits >>= 1;
661
662 unsigned Alignment = LD->getAlignment();
663 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000664 ISD::LoadExtType HiExtType = LD->getExtensionType();
665
666 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
667 if (HiExtType == ISD::NON_EXTLOAD)
668 HiExtType = ISD::ZEXTLOAD;
669
670 // Load the value in two parts
671 SDOperand Lo, Hi;
672 if (TLI.isLittleEndian()) {
673 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
674 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
675 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
676 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
677 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
678 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000679 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000680 } else {
681 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
682 NewLoadedVT,LD->isVolatile(), Alignment);
683 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
684 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
685 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
686 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000687 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000688 }
689
690 // aggregate the two parts
691 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
692 SDOperand Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
693 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
694
695 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
696 Hi.getValue(1));
697
698 SDOperand Ops[] = { Result, TF };
699 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other), Ops, 2);
700}
Evan Cheng912095b2007-01-04 21:56:39 +0000701
Dan Gohman82669522007-10-11 23:57:53 +0000702/// UnrollVectorOp - We know that the given vector has a legal type, however
703/// the operation it performs is not legal and is an operation that we have
704/// no way of lowering. "Unroll" the vector, splitting out the scalars and
705/// operating on each element individually.
706SDOperand SelectionDAGLegalize::UnrollVectorOp(SDOperand Op) {
707 MVT::ValueType VT = Op.getValueType();
708 assert(isTypeLegal(VT) &&
709 "Caller should expand or promote operands that are not legal!");
710 assert(Op.Val->getNumValues() == 1 &&
711 "Can't unroll a vector with multiple results!");
712 unsigned NE = MVT::getVectorNumElements(VT);
713 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
714
715 SmallVector<SDOperand, 8> Scalars;
716 SmallVector<SDOperand, 4> Operands(Op.getNumOperands());
717 for (unsigned i = 0; i != NE; ++i) {
718 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
719 SDOperand Operand = Op.getOperand(j);
720 MVT::ValueType OperandVT = Operand.getValueType();
721 if (MVT::isVector(OperandVT)) {
722 // A vector operand; extract a single element.
723 MVT::ValueType OperandEltVT = MVT::getVectorElementType(OperandVT);
724 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
725 OperandEltVT,
726 Operand,
727 DAG.getConstant(i, MVT::i32));
728 } else {
729 // A scalar operand; just use it as is.
730 Operands[j] = Operand;
731 }
732 }
733 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
734 &Operands[0], Operands.size()));
735 }
736
737 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
738}
739
Duncan Sands007f9842008-01-10 10:28:30 +0000740/// GetFPLibCall - Return the right libcall for the given floating point type.
741static RTLIB::Libcall GetFPLibCall(MVT::ValueType VT,
742 RTLIB::Libcall Call_F32,
743 RTLIB::Libcall Call_F64,
744 RTLIB::Libcall Call_F80,
745 RTLIB::Libcall Call_PPCF128) {
746 return
747 VT == MVT::f32 ? Call_F32 :
748 VT == MVT::f64 ? Call_F64 :
749 VT == MVT::f80 ? Call_F80 :
750 VT == MVT::ppcf128 ? Call_PPCF128 :
751 RTLIB::UNKNOWN_LIBCALL;
752}
753
Dan Gohmana3466152007-07-13 20:14:11 +0000754/// LegalizeOp - We know that the specified value has a legal type, and
755/// that its operands are legal. Now ensure that the operation itself
756/// is legal, recursively ensuring that the operands' operations remain
757/// legal.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000758SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000759 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
760 return Op;
761
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000762 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000763 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000764 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000765
Chris Lattner3e928bb2005-01-07 07:47:09 +0000766 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000767 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000768 if (Node->getNumValues() > 1) {
769 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000770 if (getTypeAction(Node->getValueType(i)) != Legal) {
771 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000772 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000773 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000774 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000775 }
776 }
777
Chris Lattner45982da2005-05-12 16:53:42 +0000778 // Note that LegalizeOp may be reentered even from single-use nodes, which
779 // means that we always must cache transformed nodes.
Chris Lattner718071c2007-02-04 00:50:02 +0000780 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000781 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000782
Nate Begeman9373a812005-08-10 20:51:12 +0000783 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000784 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000785 bool isCustom = false;
786
Chris Lattner3e928bb2005-01-07 07:47:09 +0000787 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000788 case ISD::FrameIndex:
789 case ISD::EntryToken:
790 case ISD::Register:
791 case ISD::BasicBlock:
792 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000793 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000794 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000795 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000796 case ISD::TargetConstantPool:
797 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000798 case ISD::TargetGlobalTLSAddress:
Chris Lattner948c1b12006-01-28 08:31:04 +0000799 case ISD::TargetExternalSymbol:
800 case ISD::VALUETYPE:
801 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +0000802 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +0000803 case ISD::STRING:
804 case ISD::CONDCODE:
805 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000806 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000807 "This must be legal!");
808 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000809 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000810 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
811 // If this is a target node, legalize it by legalizing the operands then
812 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000813 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000814 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000815 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000816
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000817 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000818
819 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
820 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
821 return Result.getValue(Op.ResNo);
822 }
823 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000824#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000825 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000826#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000827 assert(0 && "Do not know how to legalize this operator!");
828 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000829 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000830 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000831 case ISD::GlobalTLSAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000832 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000833 case ISD::ConstantPool:
834 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000835 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
836 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000837 case TargetLowering::Custom:
838 Tmp1 = TLI.LowerOperation(Op, DAG);
839 if (Tmp1.Val) Result = Tmp1;
840 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000841 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000842 break;
843 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000844 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000845 case ISD::FRAMEADDR:
846 case ISD::RETURNADDR:
847 // The only option for these nodes is to custom lower them. If the target
848 // does not custom lower them, then return zero.
849 Tmp1 = TLI.LowerOperation(Op, DAG);
850 if (Tmp1.Val)
851 Result = Tmp1;
852 else
853 Result = DAG.getConstant(0, TLI.getPointerTy());
854 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000855 case ISD::FRAME_TO_ARGS_OFFSET: {
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000856 MVT::ValueType VT = Node->getValueType(0);
857 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
858 default: assert(0 && "This action is not supported yet!");
859 case TargetLowering::Custom:
860 Result = TLI.LowerOperation(Op, DAG);
861 if (Result.Val) break;
862 // Fall Thru
863 case TargetLowering::Legal:
864 Result = DAG.getConstant(0, VT);
865 break;
866 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000867 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000868 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000869 case ISD::EXCEPTIONADDR: {
870 Tmp1 = LegalizeOp(Node->getOperand(0));
871 MVT::ValueType VT = Node->getValueType(0);
872 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
873 default: assert(0 && "This action is not supported yet!");
874 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000875 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000876 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000877 }
878 break;
879 case TargetLowering::Custom:
880 Result = TLI.LowerOperation(Op, DAG);
881 if (Result.Val) break;
882 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000883 case TargetLowering::Legal: {
884 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 };
885 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
Duncan Sandsb027fa02007-12-31 18:35:50 +0000886 Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000887 break;
888 }
889 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000890 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000891 if (Result.Val->getNumValues() == 1) break;
892
893 assert(Result.Val->getNumValues() == 2 &&
894 "Cannot return more than two values!");
895
896 // Since we produced two values, make sure to remember that we
897 // legalized both of them.
898 Tmp1 = LegalizeOp(Result);
899 Tmp2 = LegalizeOp(Result.getValue(1));
900 AddLegalizedOperand(Op.getValue(0), Tmp1);
901 AddLegalizedOperand(Op.getValue(1), Tmp2);
902 return Op.ResNo ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +0000903 case ISD::EHSELECTION: {
904 Tmp1 = LegalizeOp(Node->getOperand(0));
905 Tmp2 = LegalizeOp(Node->getOperand(1));
906 MVT::ValueType VT = Node->getValueType(0);
907 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
908 default: assert(0 && "This action is not supported yet!");
909 case TargetLowering::Expand: {
910 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000911 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +0000912 }
913 break;
914 case TargetLowering::Custom:
915 Result = TLI.LowerOperation(Op, DAG);
916 if (Result.Val) break;
917 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000918 case TargetLowering::Legal: {
919 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 };
920 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
Duncan Sandsb027fa02007-12-31 18:35:50 +0000921 Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +0000922 break;
923 }
924 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000925 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000926 if (Result.Val->getNumValues() == 1) break;
927
928 assert(Result.Val->getNumValues() == 2 &&
929 "Cannot return more than two values!");
930
931 // Since we produced two values, make sure to remember that we
932 // legalized both of them.
933 Tmp1 = LegalizeOp(Result);
934 Tmp2 = LegalizeOp(Result.getValue(1));
935 AddLegalizedOperand(Op.getValue(0), Tmp1);
936 AddLegalizedOperand(Op.getValue(1), Tmp2);
937 return Op.ResNo ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000938 case ISD::EH_RETURN: {
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000939 MVT::ValueType VT = Node->getValueType(0);
940 // The only "good" option for this node is to custom lower it.
941 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
942 default: assert(0 && "This action is not supported at all!");
943 case TargetLowering::Custom:
944 Result = TLI.LowerOperation(Op, DAG);
945 if (Result.Val) break;
946 // Fall Thru
947 case TargetLowering::Legal:
948 // Target does not know, how to lower this, lower to noop
949 Result = LegalizeOp(Node->getOperand(0));
950 break;
951 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000952 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000953 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000954 case ISD::AssertSext:
955 case ISD::AssertZext:
956 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000957 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000958 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000959 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000960 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000961 Result = Node->getOperand(Op.ResNo);
962 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000963 case ISD::CopyFromReg:
964 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000965 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000966 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000967 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000968 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000969 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000970 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000971 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000972 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
973 } else {
974 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
975 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000976 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
977 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000978 // Since CopyFromReg produces two values, make sure to remember that we
979 // legalized both of them.
980 AddLegalizedOperand(Op.getValue(0), Result);
981 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
982 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000983 case ISD::UNDEF: {
984 MVT::ValueType VT = Op.getValueType();
985 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000986 default: assert(0 && "This action is not supported yet!");
987 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000988 if (MVT::isInteger(VT))
989 Result = DAG.getConstant(0, VT);
990 else if (MVT::isFloatingPoint(VT))
Dale Johannesenf41db212007-09-26 17:26:49 +0000991 Result = DAG.getConstantFP(APFloat(APInt(MVT::getSizeInBits(VT), 0)),
992 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000993 else
994 assert(0 && "Unknown value type!");
995 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000996 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000997 break;
998 }
999 break;
1000 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001001
Chris Lattner48b61a72006-03-28 00:40:33 +00001002 case ISD::INTRINSIC_W_CHAIN:
1003 case ISD::INTRINSIC_WO_CHAIN:
1004 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001005 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001006 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1007 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001008 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001009
1010 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001011 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001012 TargetLowering::Custom) {
1013 Tmp3 = TLI.LowerOperation(Result, DAG);
1014 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001015 }
1016
1017 if (Result.Val->getNumValues() == 1) break;
1018
1019 // Must have return value and chain result.
1020 assert(Result.Val->getNumValues() == 2 &&
1021 "Cannot return more than two values!");
1022
1023 // Since loads produce two values, make sure to remember that we
1024 // legalized both of them.
1025 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1026 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1027 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001028 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001029
1030 case ISD::LOCATION:
1031 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
1032 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1033
1034 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
1035 case TargetLowering::Promote:
1036 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001037 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001038 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001039 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Jim Laskey1ee29252007-01-26 14:34:52 +00001040 bool useLABEL = TLI.isOperationLegal(ISD::LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001041
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001042 if (MMI && (useDEBUG_LOC || useLABEL)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001043 const std::string &FName =
1044 cast<StringSDNode>(Node->getOperand(3))->getValue();
1045 const std::string &DirName =
1046 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001047 unsigned SrcFile = MMI->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001048
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001049 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +00001050 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +00001051 SDOperand LineOp = Node->getOperand(1);
1052 SDOperand ColOp = Node->getOperand(2);
1053
1054 if (useDEBUG_LOC) {
1055 Ops.push_back(LineOp); // line #
1056 Ops.push_back(ColOp); // col #
1057 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001058 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001059 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +00001060 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
1061 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Evan Chenga647c922008-02-01 02:05:57 +00001062 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001063 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Evan Chengbb81d972008-01-31 09:59:15 +00001064 Ops.push_back(DAG.getConstant(0, MVT::i32)); // a debug label
1065 Result = DAG.getNode(ISD::LABEL, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001066 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001067 } else {
1068 Result = Tmp1; // chain
1069 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001070 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001071 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001072 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +00001073 if (Tmp1 != Node->getOperand(0) ||
1074 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001075 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001076 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +00001077 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
1078 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1079 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1080 } else {
1081 // Otherwise promote them.
1082 Ops.push_back(PromoteOp(Node->getOperand(1)));
1083 Ops.push_back(PromoteOp(Node->getOperand(2)));
1084 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001085 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1086 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001087 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001088 }
1089 break;
1090 }
1091 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001092
1093 case ISD::DECLARE:
1094 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1095 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1096 default: assert(0 && "This action is not supported yet!");
1097 case TargetLowering::Legal:
1098 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1099 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1100 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1101 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1102 break;
1103 }
1104 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001105
1106 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001107 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001108 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001109 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +00001110 case TargetLowering::Legal:
1111 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1112 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1113 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1114 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001115 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001116 break;
1117 }
1118 break;
1119
Jim Laskey1ee29252007-01-26 14:34:52 +00001120 case ISD::LABEL:
Evan Chengbb81d972008-01-31 09:59:15 +00001121 assert(Node->getNumOperands() == 3 && "Invalid LABEL node!");
Jim Laskey1ee29252007-01-26 14:34:52 +00001122 switch (TLI.getOperationAction(ISD::LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001123 default: assert(0 && "This action is not supported yet!");
1124 case TargetLowering::Legal:
1125 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1126 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Evan Chengbb81d972008-01-31 09:59:15 +00001127 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the "flavor" operand.
1128 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001129 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001130 case TargetLowering::Expand:
1131 Result = LegalizeOp(Node->getOperand(0));
1132 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001133 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001134 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001135
Scott Michelc1513d22007-08-08 23:23:31 +00001136 case ISD::Constant: {
1137 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1138 unsigned opAction =
1139 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1140
Chris Lattner3e928bb2005-01-07 07:47:09 +00001141 // We know we don't need to expand constants here, constants only have one
1142 // value and we check that it is fine above.
1143
Scott Michelc1513d22007-08-08 23:23:31 +00001144 if (opAction == TargetLowering::Custom) {
1145 Tmp1 = TLI.LowerOperation(Result, DAG);
1146 if (Tmp1.Val)
1147 Result = Tmp1;
1148 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001149 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001150 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001151 case ISD::ConstantFP: {
1152 // Spill FP immediates to the constant pool if the target cannot directly
1153 // codegen them. Targets often have some immediate values that can be
1154 // efficiently generated into an FP register without a load. We explicitly
1155 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001156 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1157
1158 // Check to see if this FP immediate is already legal.
1159 bool isLegal = false;
1160 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1161 E = TLI.legal_fpimm_end(); I != E; ++I)
1162 if (CFP->isExactlyValue(*I)) {
1163 isLegal = true;
1164 break;
1165 }
1166
Chris Lattner3181a772006-01-29 06:26:56 +00001167 // If this is a legal constant, turn it into a TargetConstantFP node.
1168 if (isLegal) {
Dale Johannesenf04afdb2007-08-30 00:23:21 +00001169 Result = DAG.getTargetConstantFP(CFP->getValueAPF(),
1170 CFP->getValueType(0));
Chris Lattner3181a772006-01-29 06:26:56 +00001171 break;
1172 }
1173
1174 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1175 default: assert(0 && "This action is not supported yet!");
1176 case TargetLowering::Custom:
1177 Tmp3 = TLI.LowerOperation(Result, DAG);
1178 if (Tmp3.Val) {
1179 Result = Tmp3;
1180 break;
1181 }
1182 // FALLTHROUGH
1183 case TargetLowering::Expand:
Evan Cheng279101e2006-12-12 22:19:28 +00001184 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001185 }
1186 break;
1187 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001188 case ISD::TokenFactor:
1189 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001190 Tmp1 = LegalizeOp(Node->getOperand(0));
1191 Tmp2 = LegalizeOp(Node->getOperand(1));
1192 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1193 } else if (Node->getNumOperands() == 3) {
1194 Tmp1 = LegalizeOp(Node->getOperand(0));
1195 Tmp2 = LegalizeOp(Node->getOperand(1));
1196 Tmp3 = LegalizeOp(Node->getOperand(2));
1197 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001198 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001199 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001200 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001201 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1202 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001203 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001204 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001205 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001206
1207 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001208 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001209 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001210 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1211 assert(Tmp3.Val && "Target didn't custom lower this node!");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001212
1213 // The number of incoming and outgoing values should match; unless the final
1214 // outgoing value is a flag.
1215 assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1216 (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1217 Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1218 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001219 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001220
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001221 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001222 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001223 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001224 if (Tmp3.Val->getValueType(i) == MVT::Flag)
1225 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001226 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001227 if (Op.ResNo == i)
1228 Tmp2 = Tmp1;
1229 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1230 }
1231 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001232 case ISD::EXTRACT_SUBREG: {
1233 Tmp1 = LegalizeOp(Node->getOperand(0));
1234 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1235 assert(idx && "Operand must be a constant");
1236 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1237 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1238 }
1239 break;
1240 case ISD::INSERT_SUBREG: {
1241 Tmp1 = LegalizeOp(Node->getOperand(0));
1242 Tmp2 = LegalizeOp(Node->getOperand(1));
1243 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1244 assert(idx && "Operand must be a constant");
1245 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1246 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1247 }
1248 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001249 case ISD::BUILD_VECTOR:
1250 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001251 default: assert(0 && "This action is not supported yet!");
1252 case TargetLowering::Custom:
1253 Tmp3 = TLI.LowerOperation(Result, DAG);
1254 if (Tmp3.Val) {
1255 Result = Tmp3;
1256 break;
1257 }
1258 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001259 case TargetLowering::Expand:
1260 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001261 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001262 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001263 break;
1264 case ISD::INSERT_VECTOR_ELT:
1265 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
1266 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
1267 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
1268 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1269
1270 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1271 Node->getValueType(0))) {
1272 default: assert(0 && "This action is not supported yet!");
1273 case TargetLowering::Legal:
1274 break;
1275 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001276 Tmp4 = TLI.LowerOperation(Result, DAG);
1277 if (Tmp4.Val) {
1278 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001279 break;
1280 }
1281 // FALLTHROUGH
1282 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001283 // If the insert index is a constant, codegen this as a scalar_to_vector,
1284 // then a shuffle that inserts it into the right position in the vector.
1285 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
1286 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1287 Tmp1.getValueType(), Tmp2);
1288
1289 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
1290 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
Dan Gohman51eaa862007-06-14 22:58:02 +00001291 MVT::ValueType ShufMaskEltVT = MVT::getVectorElementType(ShufMaskVT);
Chris Lattner8d5a8942006-04-17 19:21:01 +00001292
1293 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
1294 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
1295 // the RHS.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001296 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001297 for (unsigned i = 0; i != NumElts; ++i) {
1298 if (i != InsertPos->getValue())
1299 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1300 else
1301 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1302 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001303 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1304 &ShufOps[0], ShufOps.size());
Chris Lattner8d5a8942006-04-17 19:21:01 +00001305
1306 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1307 Tmp1, ScVec, ShufMask);
1308 Result = LegalizeOp(Result);
1309 break;
1310 }
1311
Chris Lattner2332b9f2006-03-19 01:17:20 +00001312 // If the target doesn't support this, we have to spill the input vector
1313 // to a temporary stack slot, update the element, then reload it. This is
1314 // badness. We could also load the value into a vector register (either
1315 // with a "move to register" or "extload into register" instruction, then
1316 // permute it into place, if the idx is a constant and if the idx is
1317 // supported by the target.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001318 MVT::ValueType VT = Tmp1.getValueType();
1319 MVT::ValueType EltVT = Tmp2.getValueType();
1320 MVT::ValueType IdxVT = Tmp3.getValueType();
1321 MVT::ValueType PtrVT = TLI.getPointerTy();
Chris Lattner85dd3be2007-10-15 17:48:57 +00001322 SDOperand StackPtr = DAG.CreateStackTemporary(VT);
Dan Gohman69de1932008-02-06 22:27:42 +00001323
1324 FrameIndexSDNode *StackPtrFI = dyn_cast<FrameIndexSDNode>(StackPtr.Val);
1325 assert(StackPtrFI);
1326 int SPFI = StackPtrFI->getIndex();
1327
Evan Chengeb0b4612006-03-31 01:27:51 +00001328 // Store the vector.
Dan Gohman69de1932008-02-06 22:27:42 +00001329 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
1330 &PseudoSourceValue::getFixedStack(),
1331 SPFI);
Evan Chengeb0b4612006-03-31 01:27:51 +00001332
1333 // Truncate or zero extend offset to target pointer type.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001334 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
1335 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Chengeb0b4612006-03-31 01:27:51 +00001336 // Add the offset to the index.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001337 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
1338 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
1339 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Chengeb0b4612006-03-31 01:27:51 +00001340 // Store the scalar value.
Dan Gohman69de1932008-02-06 22:27:42 +00001341 Ch = DAG.getStore(Ch, Tmp2, StackPtr2,
1342 &PseudoSourceValue::getFixedStack(), SPFI);
Evan Chengeb0b4612006-03-31 01:27:51 +00001343 // Load the updated vector.
Dan Gohman69de1932008-02-06 22:27:42 +00001344 Result = DAG.getLoad(VT, Ch, StackPtr,
1345 &PseudoSourceValue::getFixedStack(), SPFI);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001346 break;
1347 }
1348 }
1349 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001350 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001351 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1352 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1353 break;
1354 }
1355
Chris Lattnerce872152006-03-19 06:31:19 +00001356 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1357 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1358 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1359 Node->getValueType(0))) {
1360 default: assert(0 && "This action is not supported yet!");
1361 case TargetLowering::Legal:
1362 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001363 case TargetLowering::Custom:
1364 Tmp3 = TLI.LowerOperation(Result, DAG);
1365 if (Tmp3.Val) {
1366 Result = Tmp3;
1367 break;
1368 }
1369 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001370 case TargetLowering::Expand:
1371 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001372 break;
1373 }
Chris Lattnerce872152006-03-19 06:31:19 +00001374 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001375 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001376 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1377 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1378 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1379
1380 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001381 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1382 default: assert(0 && "Unknown operation action!");
1383 case TargetLowering::Legal:
1384 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1385 "vector shuffle should not be created if not legal!");
1386 break;
1387 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001388 Tmp3 = TLI.LowerOperation(Result, DAG);
1389 if (Tmp3.Val) {
1390 Result = Tmp3;
1391 break;
1392 }
1393 // FALLTHROUGH
1394 case TargetLowering::Expand: {
1395 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman51eaa862007-06-14 22:58:02 +00001396 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001397 MVT::ValueType PtrVT = TLI.getPointerTy();
1398 SDOperand Mask = Node->getOperand(2);
1399 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001400 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001401 for (unsigned i = 0; i != NumElems; ++i) {
1402 SDOperand Arg = Mask.getOperand(i);
1403 if (Arg.getOpcode() == ISD::UNDEF) {
1404 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1405 } else {
1406 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1407 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1408 if (Idx < NumElems)
1409 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1410 DAG.getConstant(Idx, PtrVT)));
1411 else
1412 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1413 DAG.getConstant(Idx - NumElems, PtrVT)));
1414 }
1415 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001416 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001417 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001418 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001419 case TargetLowering::Promote: {
1420 // Change base type to a different vector type.
1421 MVT::ValueType OVT = Node->getValueType(0);
1422 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1423
1424 // Cast the two input vectors.
1425 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1426 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1427
1428 // Convert the shuffle mask to the right # elements.
1429 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1430 assert(Tmp3.Val && "Shuffle not legal?");
1431 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1432 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1433 break;
1434 }
Chris Lattner87100e02006-03-20 01:52:29 +00001435 }
1436 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001437
1438 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001439 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001440 Tmp2 = LegalizeOp(Node->getOperand(1));
1441 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001442 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001443 break;
1444
Dan Gohman7f321562007-06-25 16:23:39 +00001445 case ISD::EXTRACT_SUBVECTOR:
1446 Tmp1 = Node->getOperand(0);
1447 Tmp2 = LegalizeOp(Node->getOperand(1));
1448 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1449 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001450 break;
1451
Chris Lattner6831a812006-02-13 09:18:02 +00001452 case ISD::CALLSEQ_START: {
1453 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1454
1455 // Recursively Legalize all of the inputs of the call end that do not lead
1456 // to this call start. This ensures that any libcalls that need be inserted
1457 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001458 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001459 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001460 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1461 NodesLeadingTo);
1462 }
Chris Lattner6831a812006-02-13 09:18:02 +00001463
1464 // Now that we legalized all of the inputs (which may have inserted
1465 // libcalls) create the new CALLSEQ_START node.
1466 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1467
1468 // Merge in the last call, to ensure that this call start after the last
1469 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001470 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001471 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1472 Tmp1 = LegalizeOp(Tmp1);
1473 }
Chris Lattner6831a812006-02-13 09:18:02 +00001474
1475 // Do not try to legalize the target-specific arguments (#1+).
1476 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001477 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001478 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001479 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001480 }
1481
1482 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001483 AddLegalizedOperand(Op.getValue(0), Result);
1484 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1485 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1486
Chris Lattner6831a812006-02-13 09:18:02 +00001487 // Now that the callseq_start and all of the non-call nodes above this call
1488 // sequence have been legalized, legalize the call itself. During this
1489 // process, no libcalls can/will be inserted, guaranteeing that no calls
1490 // can overlap.
1491 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1492 SDOperand InCallSEQ = LastCALLSEQ_END;
1493 // Note that we are selecting this call!
1494 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1495 IsLegalizingCall = true;
1496
1497 // Legalize the call, starting from the CALLSEQ_END.
1498 LegalizeOp(LastCALLSEQ_END);
1499 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1500 return Result;
1501 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001502 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001503 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1504 // will cause this node to be legalized as well as handling libcalls right.
1505 if (LastCALLSEQ_END.Val != Node) {
1506 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Chris Lattner718071c2007-02-04 00:50:02 +00001507 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001508 assert(I != LegalizedNodes.end() &&
1509 "Legalizing the call start should have legalized this node!");
1510 return I->second;
1511 }
1512
1513 // Otherwise, the call start has been legalized and everything is going
1514 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001515 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001516 // Do not try to legalize the target-specific arguments (#1+), except for
1517 // an optional flag input.
1518 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1519 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001520 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001521 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001522 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001523 }
1524 } else {
1525 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1526 if (Tmp1 != Node->getOperand(0) ||
1527 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001528 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001529 Ops[0] = Tmp1;
1530 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001531 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001532 }
Chris Lattner6a542892006-01-24 05:48:21 +00001533 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001534 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001535 // This finishes up call legalization.
1536 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001537
1538 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1539 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1540 if (Node->getNumValues() == 2)
1541 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1542 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001543 case ISD::DYNAMIC_STACKALLOC: {
Evan Cheng61bbbab2007-08-16 23:50:06 +00001544 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001545 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1546 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1547 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001548 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001549
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001550 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001551 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001552 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001553 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001554 case TargetLowering::Expand: {
1555 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1556 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1557 " not tell us which reg is the stack pointer!");
1558 SDOperand Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001559
1560 // Chain the dynamic stack allocation so that it doesn't modify the stack
1561 // pointer when other instructions are using the stack.
1562 Chain = DAG.getCALLSEQ_START(Chain,
1563 DAG.getConstant(0, TLI.getPointerTy()));
1564
Chris Lattner903d2782006-01-15 08:54:32 +00001565 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001566 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1567 Chain = SP.getValue(1);
1568 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1569 unsigned StackAlign =
1570 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1571 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001572 SP = DAG.getNode(ISD::AND, VT, SP,
1573 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001574 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001575 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1576
1577 Tmp2 =
1578 DAG.getCALLSEQ_END(Chain,
1579 DAG.getConstant(0, TLI.getPointerTy()),
1580 DAG.getConstant(0, TLI.getPointerTy()),
1581 SDOperand());
1582
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001583 Tmp1 = LegalizeOp(Tmp1);
1584 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001585 break;
1586 }
1587 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001588 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1589 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001590 Tmp1 = LegalizeOp(Tmp3);
1591 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001592 }
Chris Lattner903d2782006-01-15 08:54:32 +00001593 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001594 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001595 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001596 }
Chris Lattner903d2782006-01-15 08:54:32 +00001597 // Since this op produce two values, make sure to remember that we
1598 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001599 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1600 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001601 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001602 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001603 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001604 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001605 bool Changed = false;
1606 // Legalize all of the operands of the inline asm, in case they are nodes
1607 // that need to be expanded or something. Note we skip the asm string and
1608 // all of the TargetConstant flags.
1609 SDOperand Op = LegalizeOp(Ops[0]);
1610 Changed = Op != Ops[0];
1611 Ops[0] = Op;
1612
1613 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1614 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1615 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1616 for (++i; NumVals; ++i, --NumVals) {
1617 SDOperand Op = LegalizeOp(Ops[i]);
1618 if (Op != Ops[i]) {
1619 Changed = true;
1620 Ops[i] = Op;
1621 }
1622 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001623 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001624
1625 if (HasInFlag) {
1626 Op = LegalizeOp(Ops.back());
1627 Changed |= Op != Ops.back();
1628 Ops.back() = Op;
1629 }
1630
1631 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001632 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001633
1634 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001635 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001636 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1637 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001638 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001639 case ISD::BR:
1640 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001641 // Ensure that libcalls are emitted before a branch.
1642 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1643 Tmp1 = LegalizeOp(Tmp1);
1644 LastCALLSEQ_END = DAG.getEntryNode();
1645
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001646 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001647 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001648 case ISD::BRIND:
1649 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1650 // Ensure that libcalls are emitted before a branch.
1651 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1652 Tmp1 = LegalizeOp(Tmp1);
1653 LastCALLSEQ_END = DAG.getEntryNode();
1654
1655 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1656 default: assert(0 && "Indirect target must be legal type (pointer)!");
1657 case Legal:
1658 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1659 break;
1660 }
1661 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1662 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001663 case ISD::BR_JT:
1664 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1665 // Ensure that libcalls are emitted before a branch.
1666 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1667 Tmp1 = LegalizeOp(Tmp1);
1668 LastCALLSEQ_END = DAG.getEntryNode();
1669
1670 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1671 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1672
1673 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1674 default: assert(0 && "This action is not supported yet!");
1675 case TargetLowering::Legal: break;
1676 case TargetLowering::Custom:
1677 Tmp1 = TLI.LowerOperation(Result, DAG);
1678 if (Tmp1.Val) Result = Tmp1;
1679 break;
1680 case TargetLowering::Expand: {
1681 SDOperand Chain = Result.getOperand(0);
1682 SDOperand Table = Result.getOperand(1);
1683 SDOperand Index = Result.getOperand(2);
1684
1685 MVT::ValueType PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001686 MachineFunction &MF = DAG.getMachineFunction();
1687 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001688 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1689 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001690
1691 SDOperand LD;
1692 switch (EntrySize) {
1693 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001694 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
1695 &PseudoSourceValue::getJumpTable(), 0); break;
1696 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
1697 &PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001698 }
1699
Evan Chengcc415862007-11-09 01:32:10 +00001700 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001701 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001702 // For PIC, the sequence is:
1703 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001704 // RelocBase can be JumpTable, GOT or some sort of global base.
1705 if (PTy != MVT::i32)
1706 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1707 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1708 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001709 }
Evan Chengcc415862007-11-09 01:32:10 +00001710 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001711 }
1712 }
1713 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001714 case ISD::BRCOND:
1715 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001716 // Ensure that libcalls are emitted before a return.
1717 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1718 Tmp1 = LegalizeOp(Tmp1);
1719 LastCALLSEQ_END = DAG.getEntryNode();
1720
Chris Lattner47e92232005-01-18 19:27:06 +00001721 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1722 case Expand: assert(0 && "It's impossible to expand bools");
1723 case Legal:
1724 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1725 break;
1726 case Promote:
1727 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001728
1729 // The top bits of the promoted condition are not necessarily zero, ensure
1730 // that the value is properly zero extended.
Dan Gohmanea859be2007-06-22 14:59:07 +00001731 if (!DAG.MaskedValueIsZero(Tmp2,
Chris Lattnerf9908172006-11-27 04:39:56 +00001732 MVT::getIntVTBitMask(Tmp2.getValueType())^1))
1733 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001734 break;
1735 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001736
1737 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001738 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001739
1740 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1741 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001742 case TargetLowering::Legal: break;
1743 case TargetLowering::Custom:
1744 Tmp1 = TLI.LowerOperation(Result, DAG);
1745 if (Tmp1.Val) Result = Tmp1;
1746 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001747 case TargetLowering::Expand:
1748 // Expand brcond's setcc into its constituent parts and create a BR_CC
1749 // Node.
1750 if (Tmp2.getOpcode() == ISD::SETCC) {
1751 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1752 Tmp2.getOperand(0), Tmp2.getOperand(1),
1753 Node->getOperand(2));
1754 } else {
1755 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1756 DAG.getCondCode(ISD::SETNE), Tmp2,
1757 DAG.getConstant(0, Tmp2.getValueType()),
1758 Node->getOperand(2));
1759 }
1760 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001761 }
1762 break;
1763 case ISD::BR_CC:
1764 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001765 // Ensure that libcalls are emitted before a branch.
1766 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1767 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001768 Tmp2 = Node->getOperand(2); // LHS
1769 Tmp3 = Node->getOperand(3); // RHS
1770 Tmp4 = Node->getOperand(1); // CC
1771
1772 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001773 LastCALLSEQ_END = DAG.getEntryNode();
1774
Nate Begeman750ac1b2006-02-01 07:19:44 +00001775 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1776 // the LHS is a legal SETCC itself. In this case, we need to compare
1777 // the result against zero to select between true and false values.
1778 if (Tmp3.Val == 0) {
1779 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1780 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001781 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001782
1783 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1784 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001785
Chris Lattner181b7a32005-12-17 23:46:46 +00001786 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1787 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001788 case TargetLowering::Legal: break;
1789 case TargetLowering::Custom:
1790 Tmp4 = TLI.LowerOperation(Result, DAG);
1791 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001792 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001793 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001794 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001795 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001796 LoadSDNode *LD = cast<LoadSDNode>(Node);
1797 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1798 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001799
Evan Cheng466685d2006-10-09 20:57:25 +00001800 ISD::LoadExtType ExtType = LD->getExtensionType();
1801 if (ExtType == ISD::NON_EXTLOAD) {
1802 MVT::ValueType VT = Node->getValueType(0);
1803 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1804 Tmp3 = Result.getValue(0);
1805 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001806
Evan Cheng466685d2006-10-09 20:57:25 +00001807 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1808 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001809 case TargetLowering::Legal:
1810 // If this is an unaligned load and the target doesn't support it,
1811 // expand it.
1812 if (!TLI.allowsUnalignedMemoryAccesses()) {
1813 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001814 getABITypeAlignment(MVT::getTypeForValueType(LD->getMemoryVT()));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001815 if (LD->getAlignment() < ABIAlignment){
1816 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1817 TLI);
1818 Tmp3 = Result.getOperand(0);
1819 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001820 Tmp3 = LegalizeOp(Tmp3);
1821 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001822 }
1823 }
1824 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001825 case TargetLowering::Custom:
1826 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1827 if (Tmp1.Val) {
1828 Tmp3 = LegalizeOp(Tmp1);
1829 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001830 }
Evan Cheng466685d2006-10-09 20:57:25 +00001831 break;
1832 case TargetLowering::Promote: {
1833 // Only promote a load of vector type to another.
1834 assert(MVT::isVector(VT) && "Cannot promote this load!");
1835 // Change base type to a different vector type.
1836 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1837
1838 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001839 LD->getSrcValueOffset(),
1840 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001841 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1842 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001843 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001844 }
Evan Cheng466685d2006-10-09 20:57:25 +00001845 }
1846 // Since loads produce two values, make sure to remember that we
1847 // legalized both of them.
1848 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1849 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1850 return Op.ResNo ? Tmp4 : Tmp3;
1851 } else {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001852 MVT::ValueType SrcVT = LD->getMemoryVT();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001853 unsigned SrcWidth = MVT::getSizeInBits(SrcVT);
1854 int SVOffset = LD->getSrcValueOffset();
1855 unsigned Alignment = LD->getAlignment();
1856 bool isVolatile = LD->isVolatile();
1857
1858 if (SrcWidth != MVT::getStoreSizeInBits(SrcVT) &&
1859 // Some targets pretend to have an i1 loading operation, and actually
1860 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1861 // bits are guaranteed to be zero; it helps the optimizers understand
1862 // that these bits are zero. It is also useful for EXTLOAD, since it
1863 // tells the optimizers that those bits are undefined. It would be
1864 // nice to have an effective generic way of getting these benefits...
1865 // Until such a way is found, don't insist on promoting i1 here.
1866 (SrcVT != MVT::i1 ||
1867 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
1868 // Promote to a byte-sized load if not loading an integral number of
1869 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
1870 unsigned NewWidth = MVT::getStoreSizeInBits(SrcVT);
1871 MVT::ValueType NVT = MVT::getIntegerType(NewWidth);
1872 SDOperand Ch;
1873
1874 // The extra bits are guaranteed to be zero, since we stored them that
1875 // way. A zext load from NVT thus automatically gives zext from SrcVT.
1876
1877 ISD::LoadExtType NewExtType =
1878 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
1879
1880 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
1881 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
1882 NVT, isVolatile, Alignment);
1883
1884 Ch = Result.getValue(1); // The chain.
1885
1886 if (ExtType == ISD::SEXTLOAD)
1887 // Having the top bits zero doesn't help when sign extending.
1888 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1889 Result, DAG.getValueType(SrcVT));
1890 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
1891 // All the top bits are guaranteed to be zero - inform the optimizers.
1892 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
1893 DAG.getValueType(SrcVT));
1894
1895 Tmp1 = LegalizeOp(Result);
1896 Tmp2 = LegalizeOp(Ch);
1897 } else if (SrcWidth & (SrcWidth - 1)) {
1898 // If not loading a power-of-2 number of bits, expand as two loads.
1899 assert(MVT::isExtendedVT(SrcVT) && !MVT::isVector(SrcVT) &&
1900 "Unsupported extload!");
1901 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
1902 assert(RoundWidth < SrcWidth);
1903 unsigned ExtraWidth = SrcWidth - RoundWidth;
1904 assert(ExtraWidth < RoundWidth);
1905 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
1906 "Load size not an integral number of bytes!");
1907 MVT::ValueType RoundVT = MVT::getIntegerType(RoundWidth);
1908 MVT::ValueType ExtraVT = MVT::getIntegerType(ExtraWidth);
1909 SDOperand Lo, Hi, Ch;
1910 unsigned IncrementSize;
1911
1912 if (TLI.isLittleEndian()) {
1913 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
1914 // Load the bottom RoundWidth bits.
1915 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
1916 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
1917 Alignment);
1918
1919 // Load the remaining ExtraWidth bits.
1920 IncrementSize = RoundWidth / 8;
1921 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1922 DAG.getIntPtrConstant(IncrementSize));
1923 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1924 LD->getSrcValue(), SVOffset + IncrementSize,
1925 ExtraVT, isVolatile,
1926 MinAlign(Alignment, IncrementSize));
1927
1928 // Build a factor node to remember that this load is independent of the
1929 // other one.
1930 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
1931 Hi.getValue(1));
1932
1933 // Move the top bits to the right place.
1934 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
1935 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
1936
1937 // Join the hi and lo parts.
1938 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001939 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001940 // Big endian - avoid unaligned loads.
1941 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1942 // Load the top RoundWidth bits.
1943 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1944 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
1945 Alignment);
1946
1947 // Load the remaining ExtraWidth bits.
1948 IncrementSize = RoundWidth / 8;
1949 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1950 DAG.getIntPtrConstant(IncrementSize));
1951 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
1952 LD->getSrcValue(), SVOffset + IncrementSize,
1953 ExtraVT, isVolatile,
1954 MinAlign(Alignment, IncrementSize));
1955
1956 // Build a factor node to remember that this load is independent of the
1957 // other one.
1958 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
1959 Hi.getValue(1));
1960
1961 // Move the top bits to the right place.
1962 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
1963 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
1964
1965 // Join the hi and lo parts.
1966 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
1967 }
1968
1969 Tmp1 = LegalizeOp(Result);
1970 Tmp2 = LegalizeOp(Ch);
1971 } else {
1972 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
1973 default: assert(0 && "This action is not supported yet!");
1974 case TargetLowering::Custom:
1975 isCustom = true;
1976 // FALLTHROUGH
1977 case TargetLowering::Legal:
1978 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1979 Tmp1 = Result.getValue(0);
1980 Tmp2 = Result.getValue(1);
1981
1982 if (isCustom) {
1983 Tmp3 = TLI.LowerOperation(Result, DAG);
1984 if (Tmp3.Val) {
1985 Tmp1 = LegalizeOp(Tmp3);
1986 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1987 }
1988 } else {
1989 // If this is an unaligned load and the target doesn't support it,
1990 // expand it.
1991 if (!TLI.allowsUnalignedMemoryAccesses()) {
1992 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001993 getABITypeAlignment(MVT::getTypeForValueType(LD->getMemoryVT()));
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001994 if (LD->getAlignment() < ABIAlignment){
1995 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1996 TLI);
1997 Tmp1 = Result.getOperand(0);
1998 Tmp2 = Result.getOperand(1);
1999 Tmp1 = LegalizeOp(Tmp1);
2000 Tmp2 = LegalizeOp(Tmp2);
2001 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002002 }
2003 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002004 break;
2005 case TargetLowering::Expand:
2006 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2007 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
2008 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
2009 LD->getSrcValueOffset(),
2010 LD->isVolatile(), LD->getAlignment());
2011 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2012 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2013 Tmp2 = LegalizeOp(Load.getValue(1));
2014 break;
2015 }
2016 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2017 // Turn the unsupported load into an EXTLOAD followed by an explicit
2018 // zero/sign extend inreg.
2019 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2020 Tmp1, Tmp2, LD->getSrcValue(),
2021 LD->getSrcValueOffset(), SrcVT,
2022 LD->isVolatile(), LD->getAlignment());
2023 SDOperand ValRes;
2024 if (ExtType == ISD::SEXTLOAD)
2025 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2026 Result, DAG.getValueType(SrcVT));
2027 else
2028 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2029 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2030 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002031 break;
2032 }
Evan Cheng466685d2006-10-09 20:57:25 +00002033 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002034
Evan Cheng466685d2006-10-09 20:57:25 +00002035 // Since loads produce two values, make sure to remember that we legalized
2036 // both of them.
2037 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2038 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2039 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002040 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002041 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002042 case ISD::EXTRACT_ELEMENT: {
2043 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
2044 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002045 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002046 case Legal:
2047 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
2048 // 1 -> Hi
2049 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
2050 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
2051 TLI.getShiftAmountTy()));
2052 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2053 } else {
2054 // 0 -> Lo
2055 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2056 Node->getOperand(0));
2057 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002058 break;
2059 case Expand:
2060 // Get both the low and high parts.
2061 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2062 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
2063 Result = Tmp2; // 1 -> Hi
2064 else
2065 Result = Tmp1; // 0 -> Lo
2066 break;
2067 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002068 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002069 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002070
2071 case ISD::CopyToReg:
2072 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002073
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002074 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002075 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002076 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002077 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002078 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002079 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002080 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002081 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002082 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002083 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002084 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2085 Tmp3);
2086 } else {
2087 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002088 }
2089
2090 // Since this produces two values, make sure to remember that we legalized
2091 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002092 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00002093 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002094 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002095 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002096 break;
2097
2098 case ISD::RET:
2099 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002100
2101 // Ensure that libcalls are emitted before a return.
2102 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2103 Tmp1 = LegalizeOp(Tmp1);
2104 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002105
Chris Lattner3e928bb2005-01-07 07:47:09 +00002106 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002107 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002108 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002109 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002110 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002111 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002112 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002113 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002114 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +00002115 if (!MVT::isVector(Tmp2.getValueType())) {
Chris Lattnerf87324e2006-04-11 01:31:51 +00002116 SDOperand Lo, Hi;
2117 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002118
2119 // Big endian systems want the hi reg first.
2120 if (!TLI.isLittleEndian())
2121 std::swap(Lo, Hi);
2122
Evan Cheng13acce32006-12-11 19:27:14 +00002123 if (Hi.Val)
2124 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2125 else
2126 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002127 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002128 } else {
2129 SDNode *InVal = Tmp2.Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002130 int InIx = Tmp2.ResNo;
2131 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
2132 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Chris Lattnerf87324e2006-04-11 01:31:51 +00002133
Dan Gohman7f321562007-06-25 16:23:39 +00002134 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002135 // type. If so, convert to the vector type.
Chris Lattnerf87324e2006-04-11 01:31:51 +00002136 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002137 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002138 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002139 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002140 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002141 } else if (NumElems == 1) {
2142 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002143 Tmp2 = ScalarizeVectorOp(Tmp2);
2144 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002145 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002146
2147 // FIXME: Returns of gcc generic vectors smaller than a legal type
2148 // should be returned in integer registers!
2149
Chris Lattnerf87324e2006-04-11 01:31:51 +00002150 // The scalarized value type may not be legal, e.g. it might require
2151 // promotion or expansion. Relegalize the return.
2152 Result = LegalizeOp(Result);
2153 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002154 // FIXME: Returns of gcc generic vectors larger than a legal vector
2155 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00002156 SDOperand Lo, Hi;
2157 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002158 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002159 Result = LegalizeOp(Result);
2160 }
2161 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002162 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002163 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002164 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002165 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002166 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002167 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002168 }
2169 break;
2170 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002171 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002172 break;
2173 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002174 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002175 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002176 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002177 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2178 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002179 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002180 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002181 break;
2182 case Expand: {
2183 SDOperand Lo, Hi;
Dan Gohman6595cb32007-06-27 16:08:04 +00002184 assert(!MVT::isExtendedVT(Node->getOperand(i).getValueType()) &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002185 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002186 ExpandOp(Node->getOperand(i), Lo, Hi);
2187 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002188 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00002189 if (Hi.Val) {
2190 NewValues.push_back(Hi);
2191 NewValues.push_back(Node->getOperand(i+1));
2192 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002193 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002194 }
2195 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002196 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002197 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002198
2199 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002200 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002201 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002202 Result = DAG.getNode(ISD::RET, MVT::Other,
2203 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002204 break;
2205 }
2206 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002207
Chris Lattner6862dbc2006-01-29 21:02:23 +00002208 if (Result.getOpcode() == ISD::RET) {
2209 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2210 default: assert(0 && "This action is not supported yet!");
2211 case TargetLowering::Legal: break;
2212 case TargetLowering::Custom:
2213 Tmp1 = TLI.LowerOperation(Result, DAG);
2214 if (Tmp1.Val) Result = Tmp1;
2215 break;
2216 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002217 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002218 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002219 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002220 StoreSDNode *ST = cast<StoreSDNode>(Node);
2221 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2222 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002223 int SVOffset = ST->getSrcValueOffset();
2224 unsigned Alignment = ST->getAlignment();
2225 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002226
Evan Cheng8b2794a2006-10-13 21:14:26 +00002227 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002228 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2229 // FIXME: We shouldn't do this for TargetConstantFP's.
2230 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2231 // to phase ordering between legalized code and the dag combiner. This
2232 // probably means that we need to integrate dag combiner and legalizer
2233 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002234 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002235 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002236 if (CFP->getValueType(0) == MVT::f32 &&
2237 getTypeAction(MVT::i32) == Legal) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00002238 Tmp3 = DAG.getConstant((uint32_t)CFP->getValueAPF().
2239 convertToAPInt().getZExtValue(),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002240 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002241 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2242 SVOffset, isVolatile, Alignment);
2243 break;
2244 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002245 // If this target supports 64-bit registers, do a single 64-bit store.
2246 if (getTypeAction(MVT::i64) == Legal) {
2247 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
2248 getZExtValue(), MVT::i64);
2249 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2250 SVOffset, isVolatile, Alignment);
2251 break;
2252 } else if (getTypeAction(MVT::i32) == Legal) {
2253 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2254 // stores. If the target supports neither 32- nor 64-bits, this
2255 // xform is certainly not worth it.
2256 uint64_t IntVal =CFP->getValueAPF().convertToAPInt().getZExtValue();
2257 SDOperand Lo = DAG.getConstant(uint32_t(IntVal), MVT::i32);
2258 SDOperand Hi = DAG.getConstant(uint32_t(IntVal >>32), MVT::i32);
2259 if (!TLI.isLittleEndian()) std::swap(Lo, Hi);
2260
2261 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2262 SVOffset, isVolatile, Alignment);
2263 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002264 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002265 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002266 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002267
2268 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2269 break;
2270 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002271 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002272 }
2273
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002274 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002275 case Legal: {
2276 Tmp3 = LegalizeOp(ST->getValue());
2277 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2278 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002279
Evan Cheng8b2794a2006-10-13 21:14:26 +00002280 MVT::ValueType VT = Tmp3.getValueType();
2281 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2282 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002283 case TargetLowering::Legal:
2284 // If this is an unaligned store and the target doesn't support it,
2285 // expand it.
2286 if (!TLI.allowsUnalignedMemoryAccesses()) {
2287 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002288 getABITypeAlignment(MVT::getTypeForValueType(ST->getMemoryVT()));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002289 if (ST->getAlignment() < ABIAlignment)
2290 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2291 TLI);
2292 }
2293 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002294 case TargetLowering::Custom:
2295 Tmp1 = TLI.LowerOperation(Result, DAG);
2296 if (Tmp1.Val) Result = Tmp1;
2297 break;
2298 case TargetLowering::Promote:
2299 assert(MVT::isVector(VT) && "Unknown legal promote case!");
2300 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2301 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2302 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002303 ST->getSrcValue(), SVOffset, isVolatile,
2304 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002305 break;
2306 }
2307 break;
2308 }
2309 case Promote:
2310 // Truncate the value and store the result.
2311 Tmp3 = PromoteOp(ST->getValue());
2312 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002313 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002314 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002315 break;
2316
2317 case Expand:
2318 unsigned IncrementSize = 0;
2319 SDOperand Lo, Hi;
2320
2321 // If this is a vector type, then we have to calculate the increment as
2322 // the product of the element size in bytes, and the number of elements
2323 // in the high half of the vector.
Dan Gohman7f321562007-06-25 16:23:39 +00002324 if (MVT::isVector(ST->getValue().getValueType())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002325 SDNode *InVal = ST->getValue().Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002326 int InIx = ST->getValue().ResNo;
Chris Lattner0bd48932008-01-17 07:00:52 +00002327 MVT::ValueType InVT = InVal->getValueType(InIx);
2328 unsigned NumElems = MVT::getVectorNumElements(InVT);
2329 MVT::ValueType EVT = MVT::getVectorElementType(InVT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002330
Dan Gohman7f321562007-06-25 16:23:39 +00002331 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002332 // type. If so, convert to the vector type.
Evan Cheng8b2794a2006-10-13 21:14:26 +00002333 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002334 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002335 // Turn this into a normal store of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002336 Tmp3 = LegalizeOp(Node->getOperand(1));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002337 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002338 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002339 Result = LegalizeOp(Result);
2340 break;
2341 } else if (NumElems == 1) {
2342 // Turn this into a normal store of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002343 Tmp3 = ScalarizeVectorOp(Node->getOperand(1));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002344 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002345 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002346 // The scalarized value type may not be legal, e.g. it might require
2347 // promotion or expansion. Relegalize the scalar store.
2348 Result = LegalizeOp(Result);
2349 break;
2350 } else {
2351 SplitVectorOp(Node->getOperand(1), Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00002352 IncrementSize = MVT::getVectorNumElements(Lo.Val->getValueType(0)) *
2353 MVT::getSizeInBits(EVT)/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002354 }
2355 } else {
2356 ExpandOp(Node->getOperand(1), Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002357 IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002358
2359 if (!TLI.isLittleEndian())
2360 std::swap(Lo, Hi);
2361 }
2362
2363 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002364 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002365
2366 if (Hi.Val == NULL) {
2367 // Must be int <-> float one-to-one expansion.
2368 Result = Lo;
2369 break;
2370 }
2371
Evan Cheng8b2794a2006-10-13 21:14:26 +00002372 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002373 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002374 assert(isTypeLegal(Tmp2.getValueType()) &&
2375 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002376 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002377 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002378 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002379 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002380 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2381 break;
2382 }
2383 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002384 switch (getTypeAction(ST->getValue().getValueType())) {
2385 case Legal:
2386 Tmp3 = LegalizeOp(ST->getValue());
2387 break;
2388 case Promote:
2389 // We can promote the value, the truncstore will still take care of it.
2390 Tmp3 = PromoteOp(ST->getValue());
2391 break;
2392 case Expand:
2393 // Just store the low part. This may become a non-trunc store, so make
2394 // sure to use getTruncStore, not UpdateNodeOperands below.
2395 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2396 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2397 SVOffset, MVT::i8, isVolatile, Alignment);
2398 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002399
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002400 MVT::ValueType StVT = ST->getMemoryVT();
Duncan Sands7e857202008-01-22 07:17:34 +00002401 unsigned StWidth = MVT::getSizeInBits(StVT);
2402
2403 if (StWidth != MVT::getStoreSizeInBits(StVT)) {
2404 // Promote to a byte-sized store with upper bits zero if not
2405 // storing an integral number of bytes. For example, promote
2406 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
2407 MVT::ValueType NVT = MVT::getIntegerType(MVT::getStoreSizeInBits(StVT));
2408 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2409 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2410 SVOffset, NVT, isVolatile, Alignment);
2411 } else if (StWidth & (StWidth - 1)) {
2412 // If not storing a power-of-2 number of bits, expand as two stores.
2413 assert(MVT::isExtendedVT(StVT) && !MVT::isVector(StVT) &&
2414 "Unsupported truncstore!");
2415 unsigned RoundWidth = 1 << Log2_32(StWidth);
2416 assert(RoundWidth < StWidth);
2417 unsigned ExtraWidth = StWidth - RoundWidth;
2418 assert(ExtraWidth < RoundWidth);
2419 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2420 "Store size not an integral number of bytes!");
2421 MVT::ValueType RoundVT = MVT::getIntegerType(RoundWidth);
2422 MVT::ValueType ExtraVT = MVT::getIntegerType(ExtraWidth);
2423 SDOperand Lo, Hi;
2424 unsigned IncrementSize;
2425
2426 if (TLI.isLittleEndian()) {
2427 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2428 // Store the bottom RoundWidth bits.
2429 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2430 SVOffset, RoundVT,
2431 isVolatile, Alignment);
2432
2433 // Store the remaining ExtraWidth bits.
2434 IncrementSize = RoundWidth / 8;
2435 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2436 DAG.getIntPtrConstant(IncrementSize));
2437 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2438 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2439 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2440 SVOffset + IncrementSize, ExtraVT, isVolatile,
2441 MinAlign(Alignment, IncrementSize));
2442 } else {
2443 // Big endian - avoid unaligned stores.
2444 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2445 // Store the top RoundWidth bits.
2446 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2447 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2448 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2449 RoundVT, isVolatile, Alignment);
2450
2451 // Store the remaining ExtraWidth bits.
2452 IncrementSize = RoundWidth / 8;
2453 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2454 DAG.getIntPtrConstant(IncrementSize));
2455 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2456 SVOffset + IncrementSize, ExtraVT, isVolatile,
2457 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002458 }
Duncan Sands7e857202008-01-22 07:17:34 +00002459
2460 // The order of the stores doesn't matter.
2461 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2462 } else {
2463 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2464 Tmp2 != ST->getBasePtr())
2465 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2466 ST->getOffset());
2467
2468 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2469 default: assert(0 && "This action is not supported yet!");
2470 case TargetLowering::Legal:
2471 // If this is an unaligned store and the target doesn't support it,
2472 // expand it.
2473 if (!TLI.allowsUnalignedMemoryAccesses()) {
2474 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002475 getABITypeAlignment(MVT::getTypeForValueType(ST->getMemoryVT()));
Duncan Sands7e857202008-01-22 07:17:34 +00002476 if (ST->getAlignment() < ABIAlignment)
2477 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2478 TLI);
2479 }
2480 break;
2481 case TargetLowering::Custom:
2482 Result = TLI.LowerOperation(Result, DAG);
2483 break;
2484 case Expand:
2485 // TRUNCSTORE:i16 i32 -> STORE i16
2486 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2487 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2488 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2489 isVolatile, Alignment);
2490 break;
2491 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002492 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002493 }
2494 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002495 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002496 case ISD::PCMARKER:
2497 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002498 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002499 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002500 case ISD::STACKSAVE:
2501 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002502 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2503 Tmp1 = Result.getValue(0);
2504 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002505
Chris Lattner140d53c2006-01-13 02:50:02 +00002506 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2507 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002508 case TargetLowering::Legal: break;
2509 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002510 Tmp3 = TLI.LowerOperation(Result, DAG);
2511 if (Tmp3.Val) {
2512 Tmp1 = LegalizeOp(Tmp3);
2513 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002514 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002515 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002516 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002517 // Expand to CopyFromReg if the target set
2518 // StackPointerRegisterToSaveRestore.
2519 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002520 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002521 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002522 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002523 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002524 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2525 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002526 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002527 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002528 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002529
2530 // Since stacksave produce two values, make sure to remember that we
2531 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002532 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2533 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2534 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002535
Chris Lattner140d53c2006-01-13 02:50:02 +00002536 case ISD::STACKRESTORE:
2537 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2538 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002539 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002540
2541 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2542 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002543 case TargetLowering::Legal: break;
2544 case TargetLowering::Custom:
2545 Tmp1 = TLI.LowerOperation(Result, DAG);
2546 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002547 break;
2548 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002549 // Expand to CopyToReg if the target set
2550 // StackPointerRegisterToSaveRestore.
2551 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2552 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2553 } else {
2554 Result = Tmp1;
2555 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002556 break;
2557 }
2558 break;
2559
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002560 case ISD::READCYCLECOUNTER:
2561 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002562 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002563 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2564 Node->getValueType(0))) {
2565 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002566 case TargetLowering::Legal:
2567 Tmp1 = Result.getValue(0);
2568 Tmp2 = Result.getValue(1);
2569 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002570 case TargetLowering::Custom:
2571 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002572 Tmp1 = LegalizeOp(Result.getValue(0));
2573 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002574 break;
2575 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002576
2577 // Since rdcc produce two values, make sure to remember that we legalized
2578 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002579 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2580 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002581 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002582
Chris Lattner2ee743f2005-01-14 22:08:15 +00002583 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002584 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2585 case Expand: assert(0 && "It's impossible to expand bools");
2586 case Legal:
2587 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2588 break;
2589 case Promote:
2590 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002591 // Make sure the condition is either zero or one.
Dan Gohmanea859be2007-06-22 14:59:07 +00002592 if (!DAG.MaskedValueIsZero(Tmp1,
Chris Lattnerb6c80602006-11-28 01:03:30 +00002593 MVT::getIntVTBitMask(Tmp1.getValueType())^1))
2594 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002595 break;
2596 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002597 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002598 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002599
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002600 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002601
Nate Begemanb942a3d2005-08-23 04:29:48 +00002602 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002603 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002604 case TargetLowering::Legal: break;
2605 case TargetLowering::Custom: {
2606 Tmp1 = TLI.LowerOperation(Result, DAG);
2607 if (Tmp1.Val) Result = Tmp1;
2608 break;
2609 }
Nate Begeman9373a812005-08-10 20:51:12 +00002610 case TargetLowering::Expand:
2611 if (Tmp1.getOpcode() == ISD::SETCC) {
2612 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2613 Tmp2, Tmp3,
2614 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2615 } else {
2616 Result = DAG.getSelectCC(Tmp1,
2617 DAG.getConstant(0, Tmp1.getValueType()),
2618 Tmp2, Tmp3, ISD::SETNE);
2619 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002620 break;
2621 case TargetLowering::Promote: {
2622 MVT::ValueType NVT =
2623 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2624 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002625 if (MVT::isVector(Tmp2.getValueType())) {
2626 ExtOp = ISD::BIT_CONVERT;
2627 TruncOp = ISD::BIT_CONVERT;
2628 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002629 ExtOp = ISD::ANY_EXTEND;
2630 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002631 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002632 ExtOp = ISD::FP_EXTEND;
2633 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002634 }
2635 // Promote each of the values to the new type.
2636 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2637 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2638 // Perform the larger operation, then round down.
2639 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002640 if (TruncOp != ISD::FP_ROUND)
2641 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2642 else
2643 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2644 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002645 break;
2646 }
2647 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002648 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002649 case ISD::SELECT_CC: {
2650 Tmp1 = Node->getOperand(0); // LHS
2651 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002652 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2653 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002654 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002655
Nate Begeman750ac1b2006-02-01 07:19:44 +00002656 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2657
2658 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2659 // the LHS is a legal SETCC itself. In this case, we need to compare
2660 // the result against zero to select between true and false values.
2661 if (Tmp2.Val == 0) {
2662 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2663 CC = DAG.getCondCode(ISD::SETNE);
2664 }
2665 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2666
2667 // Everything is legal, see if we should expand this op or something.
2668 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2669 default: assert(0 && "This action is not supported yet!");
2670 case TargetLowering::Legal: break;
2671 case TargetLowering::Custom:
2672 Tmp1 = TLI.LowerOperation(Result, DAG);
2673 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002674 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002675 }
2676 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002677 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002678 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002679 Tmp1 = Node->getOperand(0);
2680 Tmp2 = Node->getOperand(1);
2681 Tmp3 = Node->getOperand(2);
2682 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2683
2684 // If we had to Expand the SetCC operands into a SELECT node, then it may
2685 // not always be possible to return a true LHS & RHS. In this case, just
2686 // return the value we legalized, returned in the LHS
2687 if (Tmp2.Val == 0) {
2688 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002689 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002690 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002691
Chris Lattner73e142f2006-01-30 22:43:50 +00002692 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002693 default: assert(0 && "Cannot handle this action for SETCC yet!");
2694 case TargetLowering::Custom:
2695 isCustom = true;
2696 // FALLTHROUGH.
2697 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002698 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002699 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002700 Tmp4 = TLI.LowerOperation(Result, DAG);
2701 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002702 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002703 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002704 case TargetLowering::Promote: {
2705 // First step, figure out the appropriate operation to use.
2706 // Allow SETCC to not be supported for all legal data types
2707 // Mostly this targets FP
2708 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
Chris Lattner00755df2007-02-04 00:27:56 +00002709 MVT::ValueType OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002710
2711 // Scan for the appropriate larger type to use.
2712 while (1) {
2713 NewInTy = (MVT::ValueType)(NewInTy+1);
2714
2715 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
2716 "Fell off of the edge of the integer world");
2717 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2718 "Fell off of the edge of the floating point world");
2719
2720 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002721 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002722 break;
2723 }
2724 if (MVT::isInteger(NewInTy))
2725 assert(0 && "Cannot promote Legal Integer SETCC yet");
2726 else {
2727 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2728 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2729 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002730 Tmp1 = LegalizeOp(Tmp1);
2731 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002732 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002733 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002734 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002735 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002736 case TargetLowering::Expand:
2737 // Expand a setcc node into a select_cc of the same condition, lhs, and
2738 // rhs that selects between const 1 (true) and const 0 (false).
2739 MVT::ValueType VT = Node->getValueType(0);
2740 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2741 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002742 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002743 break;
2744 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002745 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002746 case ISD::MEMSET:
2747 case ISD::MEMCPY:
2748 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002749 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +00002750 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
2751
2752 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
2753 switch (getTypeAction(Node->getOperand(2).getValueType())) {
2754 case Expand: assert(0 && "Cannot expand a byte!");
2755 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002756 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002757 break;
2758 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002759 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002760 break;
2761 }
2762 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002763 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +00002764 }
Chris Lattner272455b2005-02-02 03:44:41 +00002765
2766 SDOperand Tmp4;
2767 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattner6814f152005-07-13 01:42:45 +00002768 case Expand: {
2769 // Length is too big, just take the lo-part of the length.
2770 SDOperand HiPart;
Chris Lattnerfa9aa2b2006-11-07 04:11:44 +00002771 ExpandOp(Node->getOperand(3), Tmp4, HiPart);
Chris Lattner6814f152005-07-13 01:42:45 +00002772 break;
2773 }
Chris Lattnere5605212005-01-28 22:29:18 +00002774 case Legal:
2775 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +00002776 break;
2777 case Promote:
2778 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +00002779 break;
2780 }
2781
2782 SDOperand Tmp5;
2783 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2784 case Expand: assert(0 && "Cannot expand this yet!");
2785 case Legal:
2786 Tmp5 = LegalizeOp(Node->getOperand(4));
2787 break;
2788 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +00002789 Tmp5 = PromoteOp(Node->getOperand(4));
2790 break;
2791 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002792
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002793 SDOperand Tmp6;
2794 switch (getTypeAction(Node->getOperand(5).getValueType())) { // bool
2795 case Expand: assert(0 && "Cannot expand this yet!");
2796 case Legal:
2797 Tmp6 = LegalizeOp(Node->getOperand(5));
2798 break;
2799 case Promote:
2800 Tmp6 = PromoteOp(Node->getOperand(5));
2801 break;
2802 }
2803
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002804 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2805 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002806 case TargetLowering::Custom:
2807 isCustom = true;
2808 // FALLTHROUGH
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002809 case TargetLowering::Legal: {
2810 SDOperand Ops[] = { Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6 };
2811 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
Chris Lattner456a93a2006-01-28 07:39:30 +00002812 if (isCustom) {
2813 Tmp1 = TLI.LowerOperation(Result, DAG);
2814 if (Tmp1.Val) Result = Tmp1;
2815 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002816 break;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002817 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002818 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +00002819 // Otherwise, the target does not support this operation. Lower the
2820 // operation to an explicit libcall as appropriate.
2821 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Andersona69571c2006-05-03 01:29:57 +00002822 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00002823 TargetLowering::ArgListTy Args;
2824 TargetLowering::ArgListEntry Entry;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002825
Reid Spencer3bfbf4e2005-01-12 14:53:45 +00002826 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002827 if (Node->getOpcode() == ISD::MEMSET) {
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002828 Entry.Node = Tmp2; Entry.Ty = IntPtrTy;
Reid Spencer47857812006-12-31 05:55:36 +00002829 Args.push_back(Entry);
Chris Lattnerdca7abe2006-02-20 06:38:35 +00002830 // Extend the (previously legalized) ubyte argument to be an int value
2831 // for the call.
2832 if (Tmp3.getValueType() > MVT::i32)
2833 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2834 else
2835 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002836 Entry.Node = Tmp3; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
Reid Spencer47857812006-12-31 05:55:36 +00002837 Args.push_back(Entry);
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002838 Entry.Node = Tmp4; Entry.Ty = IntPtrTy; Entry.isSExt = false;
Reid Spencer47857812006-12-31 05:55:36 +00002839 Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002840
2841 FnName = "memset";
2842 } else if (Node->getOpcode() == ISD::MEMCPY ||
2843 Node->getOpcode() == ISD::MEMMOVE) {
Anton Korobeynikovb25fe822007-02-01 08:39:52 +00002844 Entry.Ty = IntPtrTy;
Reid Spencerb47b25c2007-01-03 04:22:32 +00002845 Entry.Node = Tmp2; Args.push_back(Entry);
2846 Entry.Node = Tmp3; Args.push_back(Entry);
2847 Entry.Node = Tmp4; Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002848 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2849 } else {
2850 assert(0 && "Unknown op!");
2851 }
Chris Lattner45982da2005-05-12 16:53:42 +00002852
Chris Lattnere1bd8222005-01-11 05:57:22 +00002853 std::pair<SDOperand,SDOperand> CallResult =
Reid Spencer47857812006-12-31 05:55:36 +00002854 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, false, CallingConv::C, false,
Chris Lattnere1bd8222005-01-11 05:57:22 +00002855 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00002856 Result = CallResult.second;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002857 break;
2858 }
Chris Lattnere1bd8222005-01-11 05:57:22 +00002859 }
2860 break;
2861 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002862
Chris Lattner5b359c62005-04-02 04:00:59 +00002863 case ISD::SHL_PARTS:
2864 case ISD::SRA_PARTS:
2865 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002866 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002867 bool Changed = false;
2868 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2869 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2870 Changed |= Ops.back() != Node->getOperand(i);
2871 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002872 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002873 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002874
Evan Cheng05a2d562006-01-09 18:31:59 +00002875 switch (TLI.getOperationAction(Node->getOpcode(),
2876 Node->getValueType(0))) {
2877 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002878 case TargetLowering::Legal: break;
2879 case TargetLowering::Custom:
2880 Tmp1 = TLI.LowerOperation(Result, DAG);
2881 if (Tmp1.Val) {
2882 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002883 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002884 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002885 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2886 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002887 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002888 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002889 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002890 return RetVal;
2891 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002892 break;
2893 }
2894
Chris Lattner2c8086f2005-04-02 05:00:07 +00002895 // Since these produce multiple values, make sure to remember that we
2896 // legalized all of them.
2897 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2898 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2899 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002900 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002901
2902 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002903 case ISD::ADD:
2904 case ISD::SUB:
2905 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002906 case ISD::MULHS:
2907 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002908 case ISD::UDIV:
2909 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002910 case ISD::AND:
2911 case ISD::OR:
2912 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002913 case ISD::SHL:
2914 case ISD::SRL:
2915 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002916 case ISD::FADD:
2917 case ISD::FSUB:
2918 case ISD::FMUL:
2919 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002920 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002921 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002922 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2923 case Expand: assert(0 && "Not possible");
2924 case Legal:
2925 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2926 break;
2927 case Promote:
2928 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2929 break;
2930 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002931
2932 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002933
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002934 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002935 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002936 case TargetLowering::Legal: break;
2937 case TargetLowering::Custom:
2938 Tmp1 = TLI.LowerOperation(Result, DAG);
2939 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002940 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002941 case TargetLowering::Expand: {
Dan Gohman525178c2007-10-08 18:33:35 +00002942 MVT::ValueType VT = Op.getValueType();
2943
2944 // See if multiply or divide can be lowered using two-result operations.
2945 SDVTList VTs = DAG.getVTList(VT, VT);
2946 if (Node->getOpcode() == ISD::MUL) {
2947 // We just need the low half of the multiply; try both the signed
2948 // and unsigned forms. If the target supports both SMUL_LOHI and
2949 // UMUL_LOHI, form a preference by checking which forms of plain
2950 // MULH it supports.
2951 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2952 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2953 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2954 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2955 unsigned OpToUse = 0;
2956 if (HasSMUL_LOHI && !HasMULHS) {
2957 OpToUse = ISD::SMUL_LOHI;
2958 } else if (HasUMUL_LOHI && !HasMULHU) {
2959 OpToUse = ISD::UMUL_LOHI;
2960 } else if (HasSMUL_LOHI) {
2961 OpToUse = ISD::SMUL_LOHI;
2962 } else if (HasUMUL_LOHI) {
2963 OpToUse = ISD::UMUL_LOHI;
2964 }
2965 if (OpToUse) {
2966 Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
2967 break;
2968 }
2969 }
2970 if (Node->getOpcode() == ISD::MULHS &&
2971 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
2972 Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
2973 break;
2974 }
2975 if (Node->getOpcode() == ISD::MULHU &&
2976 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
2977 Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
2978 break;
2979 }
2980 if (Node->getOpcode() == ISD::SDIV &&
2981 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
2982 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
2983 break;
2984 }
2985 if (Node->getOpcode() == ISD::UDIV &&
2986 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
2987 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
2988 break;
2989 }
2990
Dan Gohman82669522007-10-11 23:57:53 +00002991 // Check to see if we have a libcall for this operator.
2992 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
2993 bool isSigned = false;
2994 switch (Node->getOpcode()) {
2995 case ISD::UDIV:
2996 case ISD::SDIV:
2997 if (VT == MVT::i32) {
2998 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00002999 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003000 isSigned = Node->getOpcode() == ISD::SDIV;
3001 }
3002 break;
3003 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003004 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3005 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003006 break;
3007 default: break;
3008 }
3009 if (LC != RTLIB::UNKNOWN_LIBCALL) {
3010 SDOperand Dummy;
3011 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003012 break;
3013 }
3014
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003015 assert(MVT::isVector(Node->getValueType(0)) &&
3016 "Cannot expand this binary operator!");
3017 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003018 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003019 break;
3020 }
Evan Chengcc987612006-04-12 21:20:24 +00003021 case TargetLowering::Promote: {
3022 switch (Node->getOpcode()) {
3023 default: assert(0 && "Do not know how to promote this BinOp!");
3024 case ISD::AND:
3025 case ISD::OR:
3026 case ISD::XOR: {
3027 MVT::ValueType OVT = Node->getValueType(0);
3028 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3029 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
3030 // Bit convert each of the values to the new type.
3031 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3032 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3033 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3034 // Bit convert the result back the original type.
3035 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3036 break;
3037 }
3038 }
3039 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003040 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003041 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003042
Dan Gohmane14ea862007-10-05 14:17:22 +00003043 case ISD::SMUL_LOHI:
3044 case ISD::UMUL_LOHI:
3045 case ISD::SDIVREM:
3046 case ISD::UDIVREM:
3047 // These nodes will only be produced by target-specific lowering, so
3048 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003049 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003050 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003051
3052 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3053 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3054 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003055 break;
3056
Chris Lattnera09f8482006-03-05 05:09:38 +00003057 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3058 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3059 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3060 case Expand: assert(0 && "Not possible");
3061 case Legal:
3062 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3063 break;
3064 case Promote:
3065 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3066 break;
3067 }
3068
3069 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3070
3071 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3072 default: assert(0 && "Operation not supported");
3073 case TargetLowering::Custom:
3074 Tmp1 = TLI.LowerOperation(Result, DAG);
3075 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003076 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003077 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003078 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003079 // If this target supports fabs/fneg natively and select is cheap,
3080 // do this efficiently.
3081 if (!TLI.isSelectExpensive() &&
3082 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3083 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003084 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003085 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003086 // Get the sign bit of the RHS.
3087 MVT::ValueType IVT =
3088 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
3089 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
3090 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
3091 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3092 // Get the absolute value of the result.
3093 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
3094 // Select between the nabs and abs value based on the sign bit of
3095 // the input.
3096 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3097 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3098 AbsVal),
3099 AbsVal);
3100 Result = LegalizeOp(Result);
3101 break;
3102 }
3103
3104 // Otherwise, do bitwise ops!
Evan Cheng912095b2007-01-04 21:56:39 +00003105 MVT::ValueType NVT =
3106 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3107 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3108 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3109 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003110 break;
3111 }
Evan Cheng912095b2007-01-04 21:56:39 +00003112 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003113 break;
3114
Nate Begeman551bf3f2006-02-17 05:43:56 +00003115 case ISD::ADDC:
3116 case ISD::SUBC:
3117 Tmp1 = LegalizeOp(Node->getOperand(0));
3118 Tmp2 = LegalizeOp(Node->getOperand(1));
3119 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3120 // Since this produces two values, make sure to remember that we legalized
3121 // both of them.
3122 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3123 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3124 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003125
Nate Begeman551bf3f2006-02-17 05:43:56 +00003126 case ISD::ADDE:
3127 case ISD::SUBE:
3128 Tmp1 = LegalizeOp(Node->getOperand(0));
3129 Tmp2 = LegalizeOp(Node->getOperand(1));
3130 Tmp3 = LegalizeOp(Node->getOperand(2));
3131 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3132 // Since this produces two values, make sure to remember that we legalized
3133 // both of them.
3134 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3135 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3136 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003137
Nate Begeman419f8b62005-10-18 00:27:41 +00003138 case ISD::BUILD_PAIR: {
3139 MVT::ValueType PairTy = Node->getValueType(0);
3140 // TODO: handle the case where the Lo and Hi operands are not of legal type
3141 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3142 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3143 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003144 case TargetLowering::Promote:
3145 case TargetLowering::Custom:
3146 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003147 case TargetLowering::Legal:
3148 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3149 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3150 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003151 case TargetLowering::Expand:
3152 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3153 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3154 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
3155 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
3156 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003157 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003158 break;
3159 }
3160 break;
3161 }
3162
Nate Begemanc105e192005-04-06 00:23:54 +00003163 case ISD::UREM:
3164 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003165 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003166 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3167 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003168
Nate Begemanc105e192005-04-06 00:23:54 +00003169 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003170 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3171 case TargetLowering::Custom:
3172 isCustom = true;
3173 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003174 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003175 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003176 if (isCustom) {
3177 Tmp1 = TLI.LowerOperation(Result, DAG);
3178 if (Tmp1.Val) Result = Tmp1;
3179 }
Nate Begemanc105e192005-04-06 00:23:54 +00003180 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003181 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003182 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003183 bool isSigned = DivOpc == ISD::SDIV;
Dan Gohman525178c2007-10-08 18:33:35 +00003184 MVT::ValueType VT = Node->getValueType(0);
3185
3186 // See if remainder can be lowered using two-result operations.
3187 SDVTList VTs = DAG.getVTList(VT, VT);
3188 if (Node->getOpcode() == ISD::SREM &&
3189 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3190 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3191 break;
3192 }
3193 if (Node->getOpcode() == ISD::UREM &&
3194 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3195 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3196 break;
3197 }
3198
3199 if (MVT::isInteger(VT)) {
3200 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003201 TargetLowering::Legal) {
3202 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003203 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003204 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3205 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Dan Gohman80176312007-11-05 23:35:22 +00003206 } else if (MVT::isVector(VT)) {
3207 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003208 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003209 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003210 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003211 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3212 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003213 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003214 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003215 }
Dan Gohman0d974262007-11-06 22:11:54 +00003216 } else {
3217 assert(MVT::isFloatingPoint(VT) &&
3218 "remainder op must have integer or floating-point type");
Dan Gohman80176312007-11-05 23:35:22 +00003219 if (MVT::isVector(VT)) {
3220 Result = LegalizeOp(UnrollVectorOp(Op));
3221 } else {
3222 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003223 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3224 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman80176312007-11-05 23:35:22 +00003225 SDOperand Dummy;
3226 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3227 false/*sign irrelevant*/, Dummy);
3228 }
Nate Begemanc105e192005-04-06 00:23:54 +00003229 }
3230 break;
3231 }
Dan Gohman525178c2007-10-08 18:33:35 +00003232 }
Nate Begemanc105e192005-04-06 00:23:54 +00003233 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003234 case ISD::VAARG: {
3235 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3236 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3237
Chris Lattner5c62f332006-01-28 07:42:08 +00003238 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003239 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3240 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003241 case TargetLowering::Custom:
3242 isCustom = true;
3243 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003244 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003245 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3246 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003247 Tmp1 = Result.getValue(1);
3248
3249 if (isCustom) {
3250 Tmp2 = TLI.LowerOperation(Result, DAG);
3251 if (Tmp2.Val) {
3252 Result = LegalizeOp(Tmp2);
3253 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3254 }
3255 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003256 break;
3257 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003258 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
3259 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003260 // Increment the pointer, VAList, to the next vaarg
3261 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3262 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3263 TLI.getPointerTy()));
3264 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003265 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003266 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003267 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003268 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003269 Result = LegalizeOp(Result);
3270 break;
3271 }
3272 }
3273 // Since VAARG produces two values, make sure to remember that we
3274 // legalized both of them.
3275 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00003276 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3277 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003278 }
3279
3280 case ISD::VACOPY:
3281 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3282 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3283 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3284
3285 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3286 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003287 case TargetLowering::Custom:
3288 isCustom = true;
3289 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003290 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003291 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3292 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003293 if (isCustom) {
3294 Tmp1 = TLI.LowerOperation(Result, DAG);
3295 if (Tmp1.Val) Result = Tmp1;
3296 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003297 break;
3298 case TargetLowering::Expand:
3299 // This defaults to loading a pointer from the input and storing it to the
3300 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003301 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3302 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
3303 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VD, 0);
3304 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VS, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003305 break;
3306 }
3307 break;
3308
3309 case ISD::VAEND:
3310 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3311 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3312
3313 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3314 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003315 case TargetLowering::Custom:
3316 isCustom = true;
3317 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003318 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003319 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003320 if (isCustom) {
3321 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3322 if (Tmp1.Val) Result = Tmp1;
3323 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003324 break;
3325 case TargetLowering::Expand:
3326 Result = Tmp1; // Default to a no-op, return the chain
3327 break;
3328 }
3329 break;
3330
3331 case ISD::VASTART:
3332 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3333 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3334
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003335 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3336
Nate Begemanacc398c2006-01-25 18:21:52 +00003337 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3338 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003339 case TargetLowering::Legal: break;
3340 case TargetLowering::Custom:
3341 Tmp1 = TLI.LowerOperation(Result, DAG);
3342 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003343 break;
3344 }
3345 break;
3346
Nate Begeman35ef9132006-01-11 21:21:00 +00003347 case ISD::ROTL:
3348 case ISD::ROTR:
3349 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3350 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003351 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003352 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3353 default:
3354 assert(0 && "ROTL/ROTR legalize operation not supported");
3355 break;
3356 case TargetLowering::Legal:
3357 break;
3358 case TargetLowering::Custom:
3359 Tmp1 = TLI.LowerOperation(Result, DAG);
3360 if (Tmp1.Val) Result = Tmp1;
3361 break;
3362 case TargetLowering::Promote:
3363 assert(0 && "Do not know how to promote ROTL/ROTR");
3364 break;
3365 case TargetLowering::Expand:
3366 assert(0 && "Do not know how to expand ROTL/ROTR");
3367 break;
3368 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003369 break;
3370
Nate Begemand88fc032006-01-14 03:14:10 +00003371 case ISD::BSWAP:
3372 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3373 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003374 case TargetLowering::Custom:
3375 assert(0 && "Cannot custom legalize this yet!");
3376 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003377 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003378 break;
3379 case TargetLowering::Promote: {
3380 MVT::ValueType OVT = Tmp1.getValueType();
3381 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanb55757e2007-05-18 17:52:13 +00003382 unsigned DiffBits = MVT::getSizeInBits(NVT) - MVT::getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00003383
Chris Lattner456a93a2006-01-28 07:39:30 +00003384 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3385 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3386 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3387 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3388 break;
3389 }
3390 case TargetLowering::Expand:
3391 Result = ExpandBSWAP(Tmp1);
3392 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003393 }
3394 break;
3395
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003396 case ISD::CTPOP:
3397 case ISD::CTTZ:
3398 case ISD::CTLZ:
3399 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3400 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003401 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003402 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003403 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003404 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003405 TargetLowering::Custom) {
3406 Tmp1 = TLI.LowerOperation(Result, DAG);
3407 if (Tmp1.Val) {
3408 Result = Tmp1;
3409 }
Scott Michel910b66d2007-07-30 21:00:31 +00003410 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003411 break;
3412 case TargetLowering::Promote: {
3413 MVT::ValueType OVT = Tmp1.getValueType();
3414 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003415
3416 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003417 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3418 // Perform the larger operation, then subtract if needed.
3419 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003420 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003421 case ISD::CTPOP:
3422 Result = Tmp1;
3423 break;
3424 case ISD::CTTZ:
3425 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003426 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003427 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003428 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003429 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Scott Michel910b66d2007-07-30 21:00:31 +00003430 DAG.getConstant(MVT::getSizeInBits(OVT),NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003431 break;
3432 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003433 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003434 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003435 DAG.getConstant(MVT::getSizeInBits(NVT) -
3436 MVT::getSizeInBits(OVT), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003437 break;
3438 }
3439 break;
3440 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003441 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003442 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003443 break;
3444 }
3445 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003446
Chris Lattner2c8086f2005-04-02 05:00:07 +00003447 // Unary operators
3448 case ISD::FABS:
3449 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003450 case ISD::FSQRT:
3451 case ISD::FSIN:
3452 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003453 Tmp1 = LegalizeOp(Node->getOperand(0));
3454 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003455 case TargetLowering::Promote:
3456 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003457 isCustom = true;
3458 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003459 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003460 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003461 if (isCustom) {
3462 Tmp1 = TLI.LowerOperation(Result, DAG);
3463 if (Tmp1.Val) Result = Tmp1;
3464 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003465 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003466 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003467 switch (Node->getOpcode()) {
3468 default: assert(0 && "Unreachable!");
3469 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003470 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3471 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003472 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003473 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003474 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003475 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
3476 MVT::ValueType VT = Node->getValueType(0);
3477 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003478 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003479 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3480 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003481 break;
3482 }
3483 case ISD::FSQRT:
3484 case ISD::FSIN:
3485 case ISD::FCOS: {
3486 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003487
3488 // Expand unsupported unary vector operators by unrolling them.
3489 if (MVT::isVector(VT)) {
3490 Result = LegalizeOp(UnrollVectorOp(Op));
3491 break;
3492 }
3493
Evan Cheng56966222007-01-12 02:11:51 +00003494 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003495 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003496 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003497 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3498 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003499 break;
3500 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003501 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3502 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003503 break;
3504 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003505 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3506 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003507 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003508 default: assert(0 && "Unreachable!");
3509 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00003510 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003511 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3512 false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003513 break;
3514 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003515 }
3516 break;
3517 }
3518 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003519 case ISD::FPOWI: {
Dan Gohman82669522007-10-11 23:57:53 +00003520 MVT::ValueType VT = Node->getValueType(0);
3521
3522 // Expand unsupported unary vector operators by unrolling them.
3523 if (MVT::isVector(VT)) {
3524 Result = LegalizeOp(UnrollVectorOp(Op));
3525 break;
3526 }
3527
3528 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003529 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3530 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003531 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003532 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3533 false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003534 break;
3535 }
Chris Lattner35481892005-12-23 00:16:34 +00003536 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003537 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003538 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3539 Node->getValueType(0));
Dan Gohman7f321562007-06-25 16:23:39 +00003540 } else if (MVT::isVector(Op.getOperand(0).getValueType())) {
3541 // The input has to be a vector type, we have to either scalarize it, pack
3542 // it, or convert it based on whether the input vector type is legal.
3543 SDNode *InVal = Node->getOperand(0).Val;
Dale Johannesene5269622007-10-20 00:07:52 +00003544 int InIx = Node->getOperand(0).ResNo;
3545 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
3546 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Dan Gohman7f321562007-06-25 16:23:39 +00003547
3548 // Figure out if there is a simple type corresponding to this Vector
3549 // type. If so, convert to the vector type.
3550 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3551 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003552 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003553 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3554 LegalizeOp(Node->getOperand(0)));
3555 break;
3556 } else if (NumElems == 1) {
3557 // Turn this into a bit convert of the scalar input.
3558 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3559 ScalarizeVectorOp(Node->getOperand(0)));
3560 break;
3561 } else {
3562 // FIXME: UNIMP! Store then reload
3563 assert(0 && "Cast from unsupported vector type not implemented yet!");
3564 }
Chris Lattner67993f72006-01-23 07:30:46 +00003565 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003566 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3567 Node->getOperand(0).getValueType())) {
3568 default: assert(0 && "Unknown operation action!");
3569 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003570 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3571 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003572 break;
3573 case TargetLowering::Legal:
3574 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003575 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003576 break;
3577 }
3578 }
3579 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003580
Chris Lattner2c8086f2005-04-02 05:00:07 +00003581 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003582 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003583 case ISD::UINT_TO_FP: {
3584 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003585 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3586 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003587 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003588 Node->getOperand(0).getValueType())) {
3589 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003590 case TargetLowering::Custom:
3591 isCustom = true;
3592 // FALLTHROUGH
3593 case TargetLowering::Legal:
3594 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003595 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003596 if (isCustom) {
3597 Tmp1 = TLI.LowerOperation(Result, DAG);
3598 if (Tmp1.Val) Result = Tmp1;
3599 }
3600 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003601 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00003602 Result = ExpandLegalINT_TO_FP(isSigned,
3603 LegalizeOp(Node->getOperand(0)),
3604 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003605 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003606 case TargetLowering::Promote:
3607 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3608 Node->getValueType(0),
3609 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003610 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00003611 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003612 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00003613 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003614 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3615 Node->getValueType(0), Node->getOperand(0));
3616 break;
3617 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003618 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003619 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003620 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3621 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003622 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003623 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3624 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003625 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003626 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3627 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003628 break;
3629 }
3630 break;
3631 }
3632 case ISD::TRUNCATE:
3633 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3634 case Legal:
3635 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003636 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003637 break;
3638 case Expand:
3639 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3640
3641 // Since the result is legal, we should just be able to truncate the low
3642 // part of the source.
3643 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3644 break;
3645 case Promote:
3646 Result = PromoteOp(Node->getOperand(0));
3647 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3648 break;
3649 }
3650 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003651
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003652 case ISD::FP_TO_SINT:
3653 case ISD::FP_TO_UINT:
3654 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3655 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003656 Tmp1 = LegalizeOp(Node->getOperand(0));
3657
Chris Lattner1618beb2005-07-29 00:11:56 +00003658 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3659 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003660 case TargetLowering::Custom:
3661 isCustom = true;
3662 // FALLTHROUGH
3663 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003664 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003665 if (isCustom) {
3666 Tmp1 = TLI.LowerOperation(Result, DAG);
3667 if (Tmp1.Val) Result = Tmp1;
3668 }
3669 break;
3670 case TargetLowering::Promote:
3671 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3672 Node->getOpcode() == ISD::FP_TO_SINT);
3673 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003674 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003675 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3676 SDOperand True, False;
3677 MVT::ValueType VT = Node->getOperand(0).getValueType();
3678 MVT::ValueType NVT = Node->getValueType(0);
Dale Johannesenf4d48322007-09-19 17:53:26 +00003679 unsigned ShiftAmt = MVT::getSizeInBits(NVT)-1;
Dale Johannesen73328d12007-09-19 23:55:34 +00003680 const uint64_t zero[] = {0, 0};
3681 APFloat apf = APFloat(APInt(MVT::getSizeInBits(VT), 2, zero));
3682 uint64_t x = 1ULL << ShiftAmt;
Neil Boothccf596a2007-10-07 11:45:55 +00003683 (void)apf.convertFromZeroExtendedInteger
3684 (&x, MVT::getSizeInBits(NVT), false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003685 Tmp2 = DAG.getConstantFP(apf, VT);
Nate Begemand2558e32005-08-14 01:20:53 +00003686 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
3687 Node->getOperand(0), Tmp2, ISD::SETLT);
3688 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3689 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003690 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003691 Tmp2));
3692 False = DAG.getNode(ISD::XOR, NVT, False,
3693 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003694 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3695 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003696 } else {
3697 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3698 }
3699 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003700 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003701 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003702 case Expand: {
Evan Cheng6af00d52006-12-13 01:57:55 +00003703 MVT::ValueType VT = Op.getValueType();
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003704 MVT::ValueType OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003705 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003706 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003707 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3708 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3709 Node->getOperand(0), DAG.getValueType(MVT::f64));
3710 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3711 DAG.getIntPtrConstant(1));
3712 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3713 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003714 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3715 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3716 Tmp2 = DAG.getConstantFP(apf, OVT);
3717 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3718 // FIXME: generated code sucks.
3719 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3720 DAG.getNode(ISD::ADD, MVT::i32,
3721 DAG.getNode(ISD::FP_TO_SINT, VT,
3722 DAG.getNode(ISD::FSUB, OVT,
3723 Node->getOperand(0), Tmp2)),
3724 DAG.getConstant(0x80000000, MVT::i32)),
3725 DAG.getNode(ISD::FP_TO_SINT, VT,
3726 Node->getOperand(0)),
3727 DAG.getCondCode(ISD::SETGE));
3728 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003729 break;
3730 }
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003731 // Convert f32 / f64 to i32 / i64.
Evan Cheng56966222007-01-12 02:11:51 +00003732 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00003733 switch (Node->getOpcode()) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003734 case ISD::FP_TO_SINT: {
Dale Johannesen73328d12007-09-19 23:55:34 +00003735 if (OVT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00003736 LC = (VT == MVT::i32)
3737 ? RTLIB::FPTOSINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003738 else if (OVT == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00003739 LC = (VT == MVT::i32)
3740 ? RTLIB::FPTOSINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00003741 else if (OVT == MVT::f80) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003742 assert(VT == MVT::i64);
Dale Johannesen161e8972007-10-05 20:04:43 +00003743 LC = RTLIB::FPTOSINT_F80_I64;
3744 }
3745 else if (OVT == MVT::ppcf128) {
3746 assert(VT == MVT::i64);
3747 LC = RTLIB::FPTOSINT_PPCF128_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003748 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003749 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003750 }
3751 case ISD::FP_TO_UINT: {
Dale Johannesen73328d12007-09-19 23:55:34 +00003752 if (OVT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00003753 LC = (VT == MVT::i32)
3754 ? RTLIB::FPTOUINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003755 else if (OVT == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00003756 LC = (VT == MVT::i32)
3757 ? RTLIB::FPTOUINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00003758 else if (OVT == MVT::f80) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003759 LC = (VT == MVT::i32)
Dale Johannesen161e8972007-10-05 20:04:43 +00003760 ? RTLIB::FPTOUINT_F80_I32 : RTLIB::FPTOUINT_F80_I64;
3761 }
3762 else if (OVT == MVT::ppcf128) {
3763 assert(VT == MVT::i64);
3764 LC = RTLIB::FPTOUINT_PPCF128_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003765 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003766 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003767 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003768 default: assert(0 && "Unreachable!");
3769 }
3770 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003771 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3772 false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003773 break;
3774 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003775 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003776 Tmp1 = PromoteOp(Node->getOperand(0));
3777 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3778 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003779 break;
3780 }
3781 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003782
Chris Lattnerf2670a82008-01-16 06:57:07 +00003783 case ISD::FP_EXTEND: {
Chris Lattner0bd48932008-01-17 07:00:52 +00003784 MVT::ValueType DstVT = Op.getValueType();
3785 MVT::ValueType SrcVT = Op.getOperand(0).getValueType();
3786 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3787 // The only other way we can lower this is to turn it into a STORE,
3788 // LOAD pair, targetting a temporary location (a stack slot).
3789 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3790 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003791 }
3792 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3793 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3794 case Legal:
3795 Tmp1 = LegalizeOp(Node->getOperand(0));
3796 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3797 break;
3798 case Promote:
3799 Tmp1 = PromoteOp(Node->getOperand(0));
3800 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3801 break;
3802 }
3803 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003804 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003805 case ISD::FP_ROUND: {
Chris Lattner0bd48932008-01-17 07:00:52 +00003806 MVT::ValueType DstVT = Op.getValueType();
3807 MVT::ValueType SrcVT = Op.getOperand(0).getValueType();
3808 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3809 if (SrcVT == MVT::ppcf128) {
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003810 SDOperand Lo;
3811 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003812 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003813 if (DstVT!=MVT::f64)
3814 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003815 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003816 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003817 // The only other way we can lower this is to turn it into a STORE,
3818 // LOAD pair, targetting a temporary location (a stack slot).
3819 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3820 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003821 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003822 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3823 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3824 case Legal:
3825 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003826 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003827 break;
3828 case Promote:
3829 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003830 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3831 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003832 break;
3833 }
3834 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003835 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003836 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003837 case ISD::ZERO_EXTEND:
3838 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003839 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003840 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003841 case Legal:
3842 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003843 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003844 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003845 case Promote:
3846 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003847 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003848 Tmp1 = PromoteOp(Node->getOperand(0));
3849 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003850 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003851 case ISD::ZERO_EXTEND:
3852 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003853 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003854 Result = DAG.getZeroExtendInReg(Result,
3855 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003856 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003857 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003858 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003859 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003860 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003861 Result,
3862 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003863 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003864 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003865 }
3866 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003867 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003868 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003869 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003870 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003871
3872 // If this operation is not supported, convert it to a shl/shr or load/store
3873 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003874 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3875 default: assert(0 && "This action not supported for this op yet!");
3876 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003877 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003878 break;
3879 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003880 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003881 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003882 // NOTE: we could fall back on load/store here too for targets without
3883 // SAR. However, it is doubtful that any exist.
3884 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
3885 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00003886 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003887 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3888 Node->getOperand(0), ShiftCst);
3889 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3890 Result, ShiftCst);
3891 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003892 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003893 // EXTLOAD pair, targetting a temporary location (a stack slot).
3894
3895 // NOTE: there is a choice here between constantly creating new stack
3896 // slots and always reusing the same one. We currently always create
3897 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003898 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3899 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003900 } else {
3901 assert(0 && "Unknown op");
3902 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003903 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003904 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003905 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003906 }
Duncan Sands36397f52007-07-27 12:58:54 +00003907 case ISD::TRAMPOLINE: {
3908 SDOperand Ops[6];
3909 for (unsigned i = 0; i != 6; ++i)
3910 Ops[i] = LegalizeOp(Node->getOperand(i));
3911 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3912 // The only option for this node is to custom lower it.
3913 Result = TLI.LowerOperation(Result, DAG);
3914 assert(Result.Val && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003915
3916 // Since trampoline produces two values, make sure to remember that we
3917 // legalized both of them.
3918 Tmp1 = LegalizeOp(Result.getValue(1));
3919 Result = LegalizeOp(Result);
3920 AddLegalizedOperand(SDOperand(Node, 0), Result);
3921 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3922 return Op.ResNo ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003923 }
Dan Gohman1a024862008-01-31 00:41:03 +00003924 case ISD::FLT_ROUNDS_: {
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003925 MVT::ValueType VT = Node->getValueType(0);
3926 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3927 default: assert(0 && "This action not supported for this op yet!");
3928 case TargetLowering::Custom:
3929 Result = TLI.LowerOperation(Op, DAG);
3930 if (Result.Val) break;
3931 // Fall Thru
3932 case TargetLowering::Legal:
3933 // If this operation is not supported, lower it to constant 1
3934 Result = DAG.getConstant(1, VT);
3935 break;
3936 }
3937 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003938 case ISD::TRAP: {
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003939 MVT::ValueType VT = Node->getValueType(0);
3940 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3941 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00003942 case TargetLowering::Legal:
3943 Tmp1 = LegalizeOp(Node->getOperand(0));
3944 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3945 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003946 case TargetLowering::Custom:
3947 Result = TLI.LowerOperation(Op, DAG);
3948 if (Result.Val) break;
3949 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00003950 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003951 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00003952 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003953 TargetLowering::ArgListTy Args;
3954 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattner41bab0b2008-01-15 21:58:08 +00003955 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, false, CallingConv::C, false,
Chris Lattner034f12e2008-01-15 22:09:33 +00003956 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
3957 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003958 Result = CallResult.second;
3959 break;
3960 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003961 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003962 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003963 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003964
Chris Lattner4ddd2832006-04-08 04:13:17 +00003965 assert(Result.getValueType() == Op.getValueType() &&
3966 "Bad legalization!");
3967
Chris Lattner456a93a2006-01-28 07:39:30 +00003968 // Make sure that the generated code is itself legal.
3969 if (Result != Op)
3970 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003971
Chris Lattner45982da2005-05-12 16:53:42 +00003972 // Note that LegalizeOp may be reentered even from single-use nodes, which
3973 // means that we always must cache transformed nodes.
3974 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003975 return Result;
3976}
3977
Chris Lattner8b6fa222005-01-15 22:16:26 +00003978/// PromoteOp - Given an operation that produces a value in an invalid type,
3979/// promote it to compute the value into a larger type. The produced value will
3980/// have the correct bits for the low portion of the register, but no guarantee
3981/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00003982SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
3983 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00003984 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00003985 assert(getTypeAction(VT) == Promote &&
3986 "Caller should expand or legalize operands that are not promotable!");
3987 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
3988 "Cannot promote to smaller type!");
3989
Chris Lattner03c85462005-01-15 05:21:40 +00003990 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00003991 SDOperand Result;
3992 SDNode *Node = Op.Val;
3993
Chris Lattner40030bf2007-02-04 01:17:38 +00003994 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00003995 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00003996
Chris Lattner03c85462005-01-15 05:21:40 +00003997 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003998 case ISD::CopyFromReg:
3999 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004000 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004001#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004002 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004003#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004004 assert(0 && "Do not know how to promote this operator!");
4005 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004006 case ISD::UNDEF:
4007 Result = DAG.getNode(ISD::UNDEF, NVT);
4008 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004009 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004010 if (VT != MVT::i1)
4011 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4012 else
4013 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004014 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4015 break;
4016 case ISD::ConstantFP:
4017 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4018 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4019 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004020
Chris Lattner82fbfb62005-01-18 02:59:52 +00004021 case ISD::SETCC:
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004022 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004023 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
4024 Node->getOperand(1), Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004025 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004026
Chris Lattner03c85462005-01-15 05:21:40 +00004027 case ISD::TRUNCATE:
4028 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4029 case Legal:
4030 Result = LegalizeOp(Node->getOperand(0));
4031 assert(Result.getValueType() >= NVT &&
4032 "This truncation doesn't make sense!");
4033 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
4034 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4035 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004036 case Promote:
4037 // The truncation is not required, because we don't guarantee anything
4038 // about high bits anyway.
4039 Result = PromoteOp(Node->getOperand(0));
4040 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004041 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004042 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4043 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004044 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004045 }
4046 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004047 case ISD::SIGN_EXTEND:
4048 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004049 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004050 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4051 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4052 case Legal:
4053 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004054 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004055 break;
4056 case Promote:
4057 // Promote the reg if it's smaller.
4058 Result = PromoteOp(Node->getOperand(0));
4059 // The high bits are not guaranteed to be anything. Insert an extend.
4060 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004061 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004062 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004063 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004064 Result = DAG.getZeroExtendInReg(Result,
4065 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004066 break;
4067 }
4068 break;
Chris Lattner35481892005-12-23 00:16:34 +00004069 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004070 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4071 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004072 Result = PromoteOp(Result);
4073 break;
4074
Chris Lattner8b6fa222005-01-15 22:16:26 +00004075 case ISD::FP_EXTEND:
4076 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4077 case ISD::FP_ROUND:
4078 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4079 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4080 case Promote: assert(0 && "Unreachable with 2 FP types!");
4081 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004082 if (Node->getConstantOperandVal(1) == 0) {
4083 // Input is legal? Do an FP_ROUND_INREG.
4084 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4085 DAG.getValueType(VT));
4086 } else {
4087 // Just remove the truncate, it isn't affecting the value.
4088 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4089 Node->getOperand(1));
4090 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004091 break;
4092 }
4093 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004094 case ISD::SINT_TO_FP:
4095 case ISD::UINT_TO_FP:
4096 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4097 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004098 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004099 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004100 break;
4101
4102 case Promote:
4103 Result = PromoteOp(Node->getOperand(0));
4104 if (Node->getOpcode() == ISD::SINT_TO_FP)
4105 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004106 Result,
4107 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004108 else
Chris Lattner23993562005-04-13 02:38:47 +00004109 Result = DAG.getZeroExtendInReg(Result,
4110 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004111 // No extra round required here.
4112 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004113 break;
4114 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004115 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4116 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004117 // Round if we cannot tolerate excess precision.
4118 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004119 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4120 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004121 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004122 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004123 break;
4124
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004125 case ISD::SIGN_EXTEND_INREG:
4126 Result = PromoteOp(Node->getOperand(0));
4127 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4128 Node->getOperand(1));
4129 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004130 case ISD::FP_TO_SINT:
4131 case ISD::FP_TO_UINT:
4132 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4133 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004134 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004135 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004136 break;
4137 case Promote:
4138 // The input result is prerounded, so we don't have to do anything
4139 // special.
4140 Tmp1 = PromoteOp(Node->getOperand(0));
4141 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004142 }
Nate Begemand2558e32005-08-14 01:20:53 +00004143 // If we're promoting a UINT to a larger size, check to see if the new node
4144 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4145 // we can use that instead. This allows us to generate better code for
4146 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4147 // legal, such as PowerPC.
4148 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004149 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004150 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4151 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004152 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4153 } else {
4154 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4155 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004156 break;
4157
Chris Lattner2c8086f2005-04-02 05:00:07 +00004158 case ISD::FABS:
4159 case ISD::FNEG:
4160 Tmp1 = PromoteOp(Node->getOperand(0));
4161 assert(Tmp1.getValueType() == NVT);
4162 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4163 // NOTE: we do not have to do any extra rounding here for
4164 // NoExcessFPPrecision, because we know the input will have the appropriate
4165 // precision, and these operations don't modify precision at all.
4166 break;
4167
Chris Lattnerda6ba872005-04-28 21:44:33 +00004168 case ISD::FSQRT:
4169 case ISD::FSIN:
4170 case ISD::FCOS:
4171 Tmp1 = PromoteOp(Node->getOperand(0));
4172 assert(Tmp1.getValueType() == NVT);
4173 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004174 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004175 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4176 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004177 break;
4178
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004179 case ISD::FPOWI: {
4180 // Promote f32 powi to f64 powi. Note that this could insert a libcall
4181 // directly as well, which may be better.
4182 Tmp1 = PromoteOp(Node->getOperand(0));
4183 assert(Tmp1.getValueType() == NVT);
4184 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4185 if (NoExcessFPPrecision)
4186 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4187 DAG.getValueType(VT));
4188 break;
4189 }
4190
Chris Lattner03c85462005-01-15 05:21:40 +00004191 case ISD::AND:
4192 case ISD::OR:
4193 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004194 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004195 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004196 case ISD::MUL:
4197 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004198 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004199 // that too is okay if they are integer operations.
4200 Tmp1 = PromoteOp(Node->getOperand(0));
4201 Tmp2 = PromoteOp(Node->getOperand(1));
4202 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4203 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004204 break;
4205 case ISD::FADD:
4206 case ISD::FSUB:
4207 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004208 Tmp1 = PromoteOp(Node->getOperand(0));
4209 Tmp2 = PromoteOp(Node->getOperand(1));
4210 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4211 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4212
4213 // Floating point operations will give excess precision that we may not be
4214 // able to tolerate. If we DO allow excess precision, just leave it,
4215 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004216 // FIXME: Why would we need to round FP ops more than integer ones?
4217 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004218 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004219 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4220 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004221 break;
4222
Chris Lattner8b6fa222005-01-15 22:16:26 +00004223 case ISD::SDIV:
4224 case ISD::SREM:
4225 // These operators require that their input be sign extended.
4226 Tmp1 = PromoteOp(Node->getOperand(0));
4227 Tmp2 = PromoteOp(Node->getOperand(1));
4228 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004229 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4230 DAG.getValueType(VT));
4231 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4232 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004233 }
4234 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4235
4236 // Perform FP_ROUND: this is probably overly pessimistic.
4237 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004238 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4239 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004240 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004241 case ISD::FDIV:
4242 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004243 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004244 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004245 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004246 case Expand: assert(0 && "not implemented");
4247 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4248 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004249 }
4250 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004251 case Expand: assert(0 && "not implemented");
4252 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4253 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004254 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004255 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4256
4257 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004258 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004259 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4260 DAG.getValueType(VT));
4261 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004262
4263 case ISD::UDIV:
4264 case ISD::UREM:
4265 // These operators require that their input be zero extended.
4266 Tmp1 = PromoteOp(Node->getOperand(0));
4267 Tmp2 = PromoteOp(Node->getOperand(1));
4268 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004269 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4270 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004271 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4272 break;
4273
4274 case ISD::SHL:
4275 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004276 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004277 break;
4278 case ISD::SRA:
4279 // The input value must be properly sign extended.
4280 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004281 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4282 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004283 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004284 break;
4285 case ISD::SRL:
4286 // The input value must be properly zero extended.
4287 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004288 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004289 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004290 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004291
4292 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004293 Tmp1 = Node->getOperand(0); // Get the chain.
4294 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004295 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4296 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
4297 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
4298 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004299 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
4300 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004301 // Increment the pointer, VAList, to the next vaarg
4302 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
4303 DAG.getConstant(MVT::getSizeInBits(VT)/8,
4304 TLI.getPointerTy()));
4305 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004306 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004307 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004308 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004309 }
4310 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004311 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004312 break;
4313
Evan Cheng466685d2006-10-09 20:57:25 +00004314 case ISD::LOAD: {
4315 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004316 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4317 ? ISD::EXTLOAD : LD->getExtensionType();
4318 Result = DAG.getExtLoad(ExtType, NVT,
4319 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004320 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004321 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004322 LD->isVolatile(),
4323 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004324 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004325 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004326 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004327 }
Chris Lattner03c85462005-01-15 05:21:40 +00004328 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00004329 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4330 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00004331 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004332 break;
Nate Begeman9373a812005-08-10 20:51:12 +00004333 case ISD::SELECT_CC:
4334 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4335 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4336 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004337 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004338 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004339 case ISD::BSWAP:
4340 Tmp1 = Node->getOperand(0);
4341 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4342 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4343 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004344 DAG.getConstant(MVT::getSizeInBits(NVT) -
4345 MVT::getSizeInBits(VT),
Nate Begemand88fc032006-01-14 03:14:10 +00004346 TLI.getShiftAmountTy()));
4347 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004348 case ISD::CTPOP:
4349 case ISD::CTTZ:
4350 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004351 // Zero extend the argument
4352 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004353 // Perform the larger operation, then subtract if needed.
4354 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004355 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004356 case ISD::CTPOP:
4357 Result = Tmp1;
4358 break;
4359 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004360 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begemand2558e32005-08-14 01:20:53 +00004361 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004362 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
4363 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004364 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004365 DAG.getConstant(MVT::getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004366 break;
4367 case ISD::CTLZ:
4368 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004369 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004370 DAG.getConstant(MVT::getSizeInBits(NVT) -
4371 MVT::getSizeInBits(VT), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004372 break;
4373 }
4374 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004375 case ISD::EXTRACT_SUBVECTOR:
4376 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004377 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004378 case ISD::EXTRACT_VECTOR_ELT:
4379 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4380 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004381 }
4382
4383 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004384
4385 // Make sure the result is itself legal.
4386 Result = LegalizeOp(Result);
4387
4388 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004389 AddPromotedOperand(Op, Result);
4390 return Result;
4391}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004392
Dan Gohman7f321562007-06-25 16:23:39 +00004393/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4394/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4395/// based on the vector type. The return type of this matches the element type
4396/// of the vector, which may not be legal for the target.
4397SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004398 // We know that operand #0 is the Vec vector. If the index is a constant
4399 // or if the invec is a supported hardware type, we can use it. Otherwise,
4400 // lower to a store then an indexed load.
4401 SDOperand Vec = Op.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004402 SDOperand Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004403
Dan Gohmane40c7b02007-09-24 15:54:53 +00004404 MVT::ValueType TVT = Vec.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00004405 unsigned NumElems = MVT::getVectorNumElements(TVT);
Chris Lattner15972212006-03-31 17:55:51 +00004406
Dan Gohman7f321562007-06-25 16:23:39 +00004407 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4408 default: assert(0 && "This action is not supported yet!");
4409 case TargetLowering::Custom: {
4410 Vec = LegalizeOp(Vec);
4411 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4412 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
4413 if (Tmp3.Val)
4414 return Tmp3;
4415 break;
4416 }
4417 case TargetLowering::Legal:
4418 if (isTypeLegal(TVT)) {
4419 Vec = LegalizeOp(Vec);
4420 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004421 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004422 }
4423 break;
4424 case TargetLowering::Expand:
4425 break;
4426 }
4427
4428 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004429 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004430 Op = ScalarizeVectorOp(Vec);
4431 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004432 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004433 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner15972212006-03-31 17:55:51 +00004434 SDOperand Lo, Hi;
4435 SplitVectorOp(Vec, Lo, Hi);
Nate Begeman55030dc2008-01-29 02:24:00 +00004436 if (CIdx->getValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004437 Vec = Lo;
4438 } else {
4439 Vec = Hi;
Nate Begeman55030dc2008-01-29 02:24:00 +00004440 Idx = DAG.getConstant(CIdx->getValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004441 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004442 }
Dan Gohman7f321562007-06-25 16:23:39 +00004443
Chris Lattner15972212006-03-31 17:55:51 +00004444 // It's now an extract from the appropriate high or low part. Recurse.
4445 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004446 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004447 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004448 // Store the value to a temporary stack slot, then LOAD the scalar
4449 // element back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004450 SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dan Gohman7f321562007-06-25 16:23:39 +00004451 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
4452
4453 // Add the offset to the index.
4454 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
4455 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4456 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004457
4458 if (MVT::getSizeInBits(Idx.getValueType()) >
4459 MVT::getSizeInBits(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004460 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004461 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004462 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004463
Dan Gohman7f321562007-06-25 16:23:39 +00004464 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4465
4466 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004467 }
Dan Gohman7f321562007-06-25 16:23:39 +00004468 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004469}
4470
Dan Gohman7f321562007-06-25 16:23:39 +00004471/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004472/// we assume the operation can be split if it is not already legal.
Dan Gohman7f321562007-06-25 16:23:39 +00004473SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004474 // We know that operand #0 is the Vec vector. For now we assume the index
4475 // is a constant and that the extracted result is a supported hardware type.
4476 SDOperand Vec = Op.getOperand(0);
4477 SDOperand Idx = LegalizeOp(Op.getOperand(1));
4478
Dan Gohman7f321562007-06-25 16:23:39 +00004479 unsigned NumElems = MVT::getVectorNumElements(Vec.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00004480
4481 if (NumElems == MVT::getVectorNumElements(Op.getValueType())) {
4482 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004483 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004484 }
4485
4486 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4487 SDOperand Lo, Hi;
4488 SplitVectorOp(Vec, Lo, Hi);
4489 if (CIdx->getValue() < NumElems/2) {
4490 Vec = Lo;
4491 } else {
4492 Vec = Hi;
4493 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4494 }
4495
4496 // It's now an extract from the appropriate high or low part. Recurse.
4497 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004498 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004499}
4500
Nate Begeman750ac1b2006-02-01 07:19:44 +00004501/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4502/// with condition CC on the current target. This usually involves legalizing
4503/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4504/// there may be no choice but to create a new SetCC node to represent the
4505/// legalized value of setcc lhs, rhs. In this case, the value is returned in
4506/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
4507void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
4508 SDOperand &RHS,
4509 SDOperand &CC) {
Dale Johannesen638ccd52007-10-06 01:24:11 +00004510 SDOperand Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004511
4512 switch (getTypeAction(LHS.getValueType())) {
4513 case Legal:
4514 Tmp1 = LegalizeOp(LHS); // LHS
4515 Tmp2 = LegalizeOp(RHS); // RHS
4516 break;
4517 case Promote:
4518 Tmp1 = PromoteOp(LHS); // LHS
4519 Tmp2 = PromoteOp(RHS); // RHS
4520
4521 // If this is an FP compare, the operands have already been extended.
4522 if (MVT::isInteger(LHS.getValueType())) {
4523 MVT::ValueType VT = LHS.getValueType();
4524 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
4525
4526 // Otherwise, we have to insert explicit sign or zero extends. Note
4527 // that we could insert sign extends for ALL conditions, but zero extend
4528 // is cheaper on many machines (an AND instead of two shifts), so prefer
4529 // it.
4530 switch (cast<CondCodeSDNode>(CC)->get()) {
4531 default: assert(0 && "Unknown integer comparison!");
4532 case ISD::SETEQ:
4533 case ISD::SETNE:
4534 case ISD::SETUGE:
4535 case ISD::SETUGT:
4536 case ISD::SETULE:
4537 case ISD::SETULT:
4538 // ALL of these operations will work if we either sign or zero extend
4539 // the operands (including the unsigned comparisons!). Zero extend is
4540 // usually a simpler/cheaper operation, so prefer it.
4541 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4542 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4543 break;
4544 case ISD::SETGE:
4545 case ISD::SETGT:
4546 case ISD::SETLT:
4547 case ISD::SETLE:
4548 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4549 DAG.getValueType(VT));
4550 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4551 DAG.getValueType(VT));
4552 break;
4553 }
4554 }
4555 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004556 case Expand: {
4557 MVT::ValueType VT = LHS.getValueType();
4558 if (VT == MVT::f32 || VT == MVT::f64) {
4559 // Expand into one or more soft-fp libcall(s).
Evan Cheng56966222007-01-12 02:11:51 +00004560 RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004561 switch (cast<CondCodeSDNode>(CC)->get()) {
4562 case ISD::SETEQ:
4563 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004564 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004565 break;
4566 case ISD::SETNE:
4567 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004568 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004569 break;
4570 case ISD::SETGE:
4571 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004572 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004573 break;
4574 case ISD::SETLT:
4575 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004576 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004577 break;
4578 case ISD::SETLE:
4579 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004580 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004581 break;
4582 case ISD::SETGT:
4583 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004584 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004585 break;
4586 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004587 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4588 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004589 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004590 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004591 break;
4592 default:
Evan Cheng56966222007-01-12 02:11:51 +00004593 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004594 switch (cast<CondCodeSDNode>(CC)->get()) {
4595 case ISD::SETONE:
4596 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004597 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004598 // Fallthrough
4599 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004600 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004601 break;
4602 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004603 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004604 break;
4605 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004606 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004607 break;
4608 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004609 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004610 break;
Evan Cheng56966222007-01-12 02:11:51 +00004611 case ISD::SETUEQ:
4612 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004613 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004614 default: assert(0 && "Unsupported FP setcc!");
4615 }
4616 }
4617
4618 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00004619 Tmp1 = ExpandLibCall(TLI.getLibcallName(LC1),
Reid Spencer47857812006-12-31 05:55:36 +00004620 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004621 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004622 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004623 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004624 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Evan Cheng2b49c502006-12-15 02:59:56 +00004625 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), Tmp1, Tmp2, CC);
Evan Cheng56966222007-01-12 02:11:51 +00004626 LHS = ExpandLibCall(TLI.getLibcallName(LC2),
Reid Spencer47857812006-12-31 05:55:36 +00004627 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004628 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004629 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004630 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004631 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4632 Tmp2 = SDOperand();
4633 }
4634 LHS = Tmp1;
4635 RHS = Tmp2;
4636 return;
4637 }
4638
Nate Begeman750ac1b2006-02-01 07:19:44 +00004639 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4640 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004641 ExpandOp(RHS, RHSLo, RHSHi);
4642 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4643
4644 if (VT==MVT::ppcf128) {
4645 // FIXME: This generated code sucks. We want to generate
4646 // FCMP crN, hi1, hi2
4647 // BNE crN, L:
4648 // FCMP crN, lo1, lo2
4649 // The following can be improved, but not that much.
4650 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
4651 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, CCCode);
4652 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4653 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETNE);
4654 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, CCCode);
4655 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4656 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
4657 Tmp2 = SDOperand();
4658 break;
4659 }
4660
4661 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004662 case ISD::SETEQ:
4663 case ISD::SETNE:
4664 if (RHSLo == RHSHi)
4665 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4666 if (RHSCST->isAllOnesValue()) {
4667 // Comparison to -1.
4668 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4669 Tmp2 = RHSLo;
4670 break;
4671 }
4672
4673 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4674 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4675 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4676 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4677 break;
4678 default:
4679 // If this is a comparison of the sign bit, just look at the top part.
4680 // X > -1, x < 0
4681 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4682 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
4683 CST->getValue() == 0) || // X < 0
4684 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4685 CST->isAllOnesValue())) { // X > -1
4686 Tmp1 = LHSHi;
4687 Tmp2 = RHSHi;
4688 break;
4689 }
4690
4691 // FIXME: This generated code sucks.
4692 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004693 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004694 default: assert(0 && "Unknown integer setcc!");
4695 case ISD::SETLT:
4696 case ISD::SETULT: LowCC = ISD::SETULT; break;
4697 case ISD::SETGT:
4698 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4699 case ISD::SETLE:
4700 case ISD::SETULE: LowCC = ISD::SETULE; break;
4701 case ISD::SETGE:
4702 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4703 }
4704
4705 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4706 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4707 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4708
4709 // NOTE: on targets without efficient SELECT of bools, we can always use
4710 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004711 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
4712 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC,
4713 false, DagCombineInfo);
4714 if (!Tmp1.Val)
4715 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
4716 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi,
4717 CCCode, false, DagCombineInfo);
4718 if (!Tmp2.Val)
Chris Lattner85dd3be2007-10-15 17:48:57 +00004719 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004720
4721 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4722 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
4723 if ((Tmp1C && Tmp1C->getValue() == 0) ||
4724 (Tmp2C && Tmp2C->getValue() == 0 &&
4725 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4726 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
4727 (Tmp2C && Tmp2C->getValue() == 1 &&
4728 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4729 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4730 // low part is known false, returns high part.
4731 // For LE / GE, if high part is known false, ignore the low part.
4732 // For LT / GT, if high part is known true, ignore the low part.
4733 Tmp1 = Tmp2;
4734 Tmp2 = SDOperand();
4735 } else {
4736 Result = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi,
4737 ISD::SETEQ, false, DagCombineInfo);
4738 if (!Result.Val)
4739 Result=DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
4740 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4741 Result, Tmp1, Tmp2));
4742 Tmp1 = Result;
4743 Tmp2 = SDOperand();
4744 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004745 }
4746 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004747 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004748 LHS = Tmp1;
4749 RHS = Tmp2;
4750}
4751
Chris Lattner1401d152008-01-16 07:45:30 +00004752/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4753/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4754/// a load from the stack slot to DestVT, extending it if needed.
4755/// The resultant code need not be legal.
4756SDOperand SelectionDAGLegalize::EmitStackConvert(SDOperand SrcOp,
4757 MVT::ValueType SlotVT,
4758 MVT::ValueType DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004759 // Create the stack frame object.
Chris Lattner1401d152008-01-16 07:45:30 +00004760 SDOperand FIPtr = DAG.CreateStackTemporary(SlotVT);
4761
Dan Gohman69de1932008-02-06 22:27:42 +00004762 FrameIndexSDNode *StackPtrFI = dyn_cast<FrameIndexSDNode>(FIPtr);
4763 assert(StackPtrFI);
4764 int SPFI = StackPtrFI->getIndex();
4765
Chris Lattner1401d152008-01-16 07:45:30 +00004766 unsigned SrcSize = MVT::getSizeInBits(SrcOp.getValueType());
4767 unsigned SlotSize = MVT::getSizeInBits(SlotVT);
4768 unsigned DestSize = MVT::getSizeInBits(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00004769
Chris Lattner1401d152008-01-16 07:45:30 +00004770 // Emit a store to the stack slot. Use a truncstore if the input value is
4771 // later than DestVT.
4772 SDOperand Store;
4773 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004774 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
4775 &PseudoSourceValue::getFixedStack(),
4776 SPFI, SlotVT);
Chris Lattner1401d152008-01-16 07:45:30 +00004777 else {
4778 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004779 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
4780 &PseudoSourceValue::getFixedStack(),
4781 SPFI, SlotVT);
Chris Lattner1401d152008-01-16 07:45:30 +00004782 }
4783
Chris Lattner35481892005-12-23 00:16:34 +00004784 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004785 if (SlotSize == DestSize)
4786 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
4787
4788 assert(SlotSize < DestSize && "Unknown extension!");
4789 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT);
Chris Lattner35481892005-12-23 00:16:34 +00004790}
4791
Chris Lattner4352cc92006-04-04 17:23:26 +00004792SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4793 // Create a vector sized/aligned stack slot, store the value to element #0,
4794 // then load the whole vector back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004795 SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004796
4797 FrameIndexSDNode *StackPtrFI = dyn_cast<FrameIndexSDNode>(StackPtr);
4798 assert(StackPtrFI);
4799 int SPFI = StackPtrFI->getIndex();
4800
Evan Cheng786225a2006-10-05 23:01:46 +00004801 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohman69de1932008-02-06 22:27:42 +00004802 &PseudoSourceValue::getFixedStack(), SPFI);
4803 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
4804 &PseudoSourceValue::getFixedStack(), SPFI);
Chris Lattner4352cc92006-04-04 17:23:26 +00004805}
4806
4807
Chris Lattnerce872152006-03-19 06:31:19 +00004808/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004809/// support the operation, but do support the resultant vector type.
Chris Lattnerce872152006-03-19 06:31:19 +00004810SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4811
4812 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004813 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004814 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004815 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00004816 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng033e6812006-03-24 01:17:21 +00004817 std::map<SDOperand, std::vector<unsigned> > Values;
4818 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004819 bool isConstant = true;
4820 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4821 SplatValue.getOpcode() != ISD::UNDEF)
4822 isConstant = false;
4823
Evan Cheng033e6812006-03-24 01:17:21 +00004824 for (unsigned i = 1; i < NumElems; ++i) {
4825 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004826 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004827 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004828 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004829 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00004830 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004831
4832 // If this isn't a constant element or an undef, we can't use a constant
4833 // pool load.
4834 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4835 V.getOpcode() != ISD::UNDEF)
4836 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004837 }
4838
4839 if (isOnlyLowElement) {
4840 // If the low element is an undef too, then this whole things is an undef.
4841 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4842 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4843 // Otherwise, turn this into a scalar_to_vector node.
4844 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4845 Node->getOperand(0));
4846 }
4847
Chris Lattner2eb86532006-03-24 07:29:17 +00004848 // If all elements are constants, create a load from the constant pool.
4849 if (isConstant) {
4850 MVT::ValueType VT = Node->getValueType(0);
4851 const Type *OpNTy =
4852 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
4853 std::vector<Constant*> CV;
4854 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4855 if (ConstantFPSDNode *V =
4856 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dale Johannesenf04afdb2007-08-30 00:23:21 +00004857 CV.push_back(ConstantFP::get(OpNTy, V->getValueAPF()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004858 } else if (ConstantSDNode *V =
4859 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Reid Spencerb83eb642006-10-20 07:07:24 +00004860 CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004861 } else {
4862 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
4863 CV.push_back(UndefValue::get(OpNTy));
4864 }
4865 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004866 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00004867 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00004868 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
4869 &PseudoSourceValue::getConstantPool(), 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004870 }
4871
Chris Lattner87100e02006-03-20 01:52:29 +00004872 if (SplatValue.Val) { // Splat of one value?
4873 // Build the shuffle constant vector: <0, 0, 0, 0>
4874 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00004875 MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00004876 SDOperand Zero = DAG.getConstant(0, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004877 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004878 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4879 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00004880
4881 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004882 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00004883 // Get the splatted value into the low element of a vector register.
4884 SDOperand LowValVec =
4885 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
4886
4887 // Return shuffle(LowValVec, undef, <0,0,0,0>)
4888 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
4889 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
4890 SplatMask);
4891 }
4892 }
4893
Evan Cheng033e6812006-03-24 01:17:21 +00004894 // If there are only two unique elements, we may be able to turn this into a
4895 // vector shuffle.
4896 if (Values.size() == 2) {
4897 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
4898 MVT::ValueType MaskVT =
4899 MVT::getIntVectorWithNumElements(NumElems);
4900 std::vector<SDOperand> MaskVec(NumElems);
4901 unsigned i = 0;
4902 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
4903 E = Values.end(); I != E; ++I) {
4904 for (std::vector<unsigned>::iterator II = I->second.begin(),
4905 EE = I->second.end(); II != EE; ++II)
Dan Gohman51eaa862007-06-14 22:58:02 +00004906 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004907 i += NumElems;
4908 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004909 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4910 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004911
4912 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004913 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
4914 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004915 SmallVector<SDOperand, 8> Ops;
Evan Cheng033e6812006-03-24 01:17:21 +00004916 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
4917 E = Values.end(); I != E; ++I) {
4918 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4919 I->first);
4920 Ops.push_back(Op);
4921 }
4922 Ops.push_back(ShuffleMask);
4923
4924 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004925 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
4926 &Ops[0], Ops.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004927 }
4928 }
Chris Lattnerce872152006-03-19 06:31:19 +00004929
4930 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
4931 // aligned object on the stack, store each element into it, then load
4932 // the result as a vector.
4933 MVT::ValueType VT = Node->getValueType(0);
4934 // Create the stack frame object.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004935 SDOperand FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00004936
4937 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004938 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00004939 unsigned TypeByteSize =
4940 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattnerce872152006-03-19 06:31:19 +00004941 // Store (in the right endianness) the elements to memory.
4942 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
4943 // Ignore undef elements.
4944 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4945
Chris Lattner841c8822006-03-22 01:46:54 +00004946 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00004947
4948 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
4949 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
4950
Evan Cheng786225a2006-10-05 23:01:46 +00004951 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00004952 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00004953 }
4954
4955 SDOperand StoreChain;
4956 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004957 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4958 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00004959 else
4960 StoreChain = DAG.getEntryNode();
4961
4962 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00004963 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00004964}
4965
Chris Lattner5b359c62005-04-02 04:00:59 +00004966void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
4967 SDOperand Op, SDOperand Amt,
4968 SDOperand &Lo, SDOperand &Hi) {
4969 // Expand the subcomponents.
4970 SDOperand LHSL, LHSH;
4971 ExpandOp(Op, LHSL, LHSH);
4972
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004973 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004974 MVT::ValueType VT = LHSL.getValueType();
4975 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00004976 Hi = Lo.getValue(1);
4977}
4978
4979
Chris Lattnere34b3962005-01-19 04:19:40 +00004980/// ExpandShift - Try to find a clever way to expand this shift operation out to
4981/// smaller elements. If we can't find a way that is more efficient than a
4982/// libcall on this target, return false. Otherwise, return true with the
4983/// low-parts expanded into Lo and Hi.
4984bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
4985 SDOperand &Lo, SDOperand &Hi) {
4986 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
4987 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004988
Chris Lattnere34b3962005-01-19 04:19:40 +00004989 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004990 SDOperand ShAmt = LegalizeOp(Amt);
4991 MVT::ValueType ShTy = ShAmt.getValueType();
4992 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
4993 unsigned NVTBits = MVT::getSizeInBits(NVT);
4994
Chris Lattner7a3c8552007-10-14 20:35:12 +00004995 // Handle the case when Amt is an immediate.
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004996 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
4997 unsigned Cst = CN->getValue();
4998 // Expand the incoming operand to be shifted, so that we have its parts
4999 SDOperand InL, InH;
5000 ExpandOp(Op, InL, InH);
5001 switch(Opc) {
5002 case ISD::SHL:
5003 if (Cst > VTBits) {
5004 Lo = DAG.getConstant(0, NVT);
5005 Hi = DAG.getConstant(0, NVT);
5006 } else if (Cst > NVTBits) {
5007 Lo = DAG.getConstant(0, NVT);
5008 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005009 } else if (Cst == NVTBits) {
5010 Lo = DAG.getConstant(0, NVT);
5011 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005012 } else {
5013 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5014 Hi = DAG.getNode(ISD::OR, NVT,
5015 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5016 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5017 }
5018 return true;
5019 case ISD::SRL:
5020 if (Cst > VTBits) {
5021 Lo = DAG.getConstant(0, NVT);
5022 Hi = DAG.getConstant(0, NVT);
5023 } else if (Cst > NVTBits) {
5024 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5025 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005026 } else if (Cst == NVTBits) {
5027 Lo = InH;
5028 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005029 } else {
5030 Lo = DAG.getNode(ISD::OR, NVT,
5031 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5032 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5033 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5034 }
5035 return true;
5036 case ISD::SRA:
5037 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005038 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005039 DAG.getConstant(NVTBits-1, ShTy));
5040 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005041 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005042 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005043 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005044 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005045 } else if (Cst == NVTBits) {
5046 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005047 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005048 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005049 } else {
5050 Lo = DAG.getNode(ISD::OR, NVT,
5051 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5052 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5053 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5054 }
5055 return true;
5056 }
5057 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005058
5059 // Okay, the shift amount isn't constant. However, if we can tell that it is
5060 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
5061 uint64_t Mask = NVTBits, KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005062 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005063
5064 // If we know that the high bit of the shift amount is one, then we can do
5065 // this as a couple of simple shifts.
5066 if (KnownOne & Mask) {
5067 // Mask out the high bit, which we know is set.
5068 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
5069 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5070
5071 // Expand the incoming operand to be shifted, so that we have its parts
5072 SDOperand InL, InH;
5073 ExpandOp(Op, InL, InH);
5074 switch(Opc) {
5075 case ISD::SHL:
5076 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5077 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5078 return true;
5079 case ISD::SRL:
5080 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5081 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5082 return true;
5083 case ISD::SRA:
5084 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5085 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5086 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5087 return true;
5088 }
5089 }
5090
5091 // If we know that the high bit of the shift amount is zero, then we can do
5092 // this as a couple of simple shifts.
5093 if (KnownZero & Mask) {
5094 // Compute 32-amt.
5095 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
5096 DAG.getConstant(NVTBits, Amt.getValueType()),
5097 Amt);
5098
5099 // Expand the incoming operand to be shifted, so that we have its parts
5100 SDOperand InL, InH;
5101 ExpandOp(Op, InL, InH);
5102 switch(Opc) {
5103 case ISD::SHL:
5104 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5105 Hi = DAG.getNode(ISD::OR, NVT,
5106 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5107 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5108 return true;
5109 case ISD::SRL:
5110 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5111 Lo = DAG.getNode(ISD::OR, NVT,
5112 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5113 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5114 return true;
5115 case ISD::SRA:
5116 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5117 Lo = DAG.getNode(ISD::OR, NVT,
5118 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5119 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5120 return true;
5121 }
5122 }
5123
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005124 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005125}
Chris Lattner77e77a62005-01-21 06:05:23 +00005126
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005127
Chris Lattner77e77a62005-01-21 06:05:23 +00005128// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5129// does not fit into a register, return the lo part and set the hi part to the
5130// by-reg argument. If it does fit into a single register, return the result
5131// and leave the Hi part unset.
5132SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00005133 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005134 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5135 // The input chain to this libcall is the entry node of the function.
5136 // Legalizing the call will automatically add the previous call to the
5137 // dependence.
5138 SDOperand InChain = DAG.getEntryNode();
5139
Chris Lattner77e77a62005-01-21 06:05:23 +00005140 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005141 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005142 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5143 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
5144 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
Reid Spencer47857812006-12-31 05:55:36 +00005145 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005146 Entry.isSExt = isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005147 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005148 }
5149 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005150
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005151 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00005152 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005153 std::pair<SDOperand,SDOperand> CallInfo =
Reid Spencer47857812006-12-31 05:55:36 +00005154 TLI.LowerCallTo(InChain, RetTy, isSigned, false, CallingConv::C, false,
Chris Lattneradf6a962005-05-13 18:50:42 +00005155 Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005156
Chris Lattner6831a812006-02-13 09:18:02 +00005157 // Legalize the call sequence, starting with the chain. This will advance
5158 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5159 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5160 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00005161 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005162 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005163 default: assert(0 && "Unknown thing");
5164 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005165 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005166 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005167 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005168 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005169 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005170 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005171 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005172}
5173
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005174
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005175/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5176///
Chris Lattner77e77a62005-01-21 06:05:23 +00005177SDOperand SelectionDAGLegalize::
5178ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005179 assert(getTypeAction(Source.getValueType()) == Expand &&
5180 "This is not an expansion!");
5181 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
5182
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005183 if (!isSigned) {
Chris Lattnere9c35e72005-04-13 05:09:42 +00005184 assert(Source.getValueType() == MVT::i64 &&
5185 "This only works for 64-bit -> FP");
5186 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
5187 // incoming integer is set. To handle this, we dynamically test to see if
5188 // it is set, and, if so, add a fudge factor.
5189 SDOperand Lo, Hi;
5190 ExpandOp(Source, Lo, Hi);
5191
Chris Lattner66de05b2005-05-13 04:45:13 +00005192 // If this is unsigned, and not supported, first perform the conversion to
5193 // signed, then adjust the result if the sign bit is set.
5194 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
5195 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
5196
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005197 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
5198 DAG.getConstant(0, Hi.getValueType()),
5199 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005200 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005201 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5202 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005203 uint64_t FF = 0x5f800000ULL;
5204 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005205 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005206
Chris Lattner5839bf22005-08-26 17:15:30 +00005207 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00005208 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5209 SDOperand FudgeInReg;
5210 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005211 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
5212 &PseudoSourceValue::getConstantPool(), 0);
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005213 else if (MVT::getSizeInBits(DestTy) > MVT::getSizeInBits(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005214 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005215 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005216 CPIdx,
5217 &PseudoSourceValue::getConstantPool(), 0,
5218 MVT::f32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005219 else
5220 assert(0 && "Unexpected conversion");
5221
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005222 MVT::ValueType SCVT = SignedConv.getValueType();
5223 if (SCVT != DestTy) {
5224 // Destination type needs to be expanded as well. The FADD now we are
5225 // constructing will be expanded into a libcall.
5226 if (MVT::getSizeInBits(SCVT) != MVT::getSizeInBits(DestTy)) {
5227 assert(SCVT == MVT::i32 && DestTy == MVT::f64);
5228 SignedConv = DAG.getNode(ISD::BUILD_PAIR, MVT::i64,
5229 SignedConv, SignedConv.getValue(1));
5230 }
5231 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5232 }
Chris Lattner473a9902005-09-29 06:44:39 +00005233 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005234 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005235
Chris Lattnera88a2602005-05-14 05:33:54 +00005236 // Check to see if the target has a custom way to lower this. If so, use it.
5237 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
5238 default: assert(0 && "This action not implemented for this operation!");
5239 case TargetLowering::Legal:
5240 case TargetLowering::Expand:
5241 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005242 case TargetLowering::Custom: {
5243 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
5244 Source), DAG);
5245 if (NV.Val)
5246 return LegalizeOp(NV);
5247 break; // The target decided this was legal after all
5248 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005249 }
5250
Chris Lattner13689e22005-05-12 07:00:44 +00005251 // Expand the source, then glue it back together for the call. We must expand
5252 // the source in case it is shared (this pass of legalize must traverse it).
5253 SDOperand SrcLo, SrcHi;
5254 ExpandOp(Source, SrcLo, SrcHi);
5255 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
5256
Evan Cheng56966222007-01-12 02:11:51 +00005257 RTLIB::Libcall LC;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005258 if (DestTy == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005259 LC = RTLIB::SINTTOFP_I64_F32;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005260 else {
5261 assert(DestTy == MVT::f64 && "Unknown fp value type!");
Evan Cheng56966222007-01-12 02:11:51 +00005262 LC = RTLIB::SINTTOFP_I64_F64;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005263 }
Chris Lattner6831a812006-02-13 09:18:02 +00005264
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005265 assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!");
Chris Lattner6831a812006-02-13 09:18:02 +00005266 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
5267 SDOperand UnusedHiPart;
Evan Cheng56966222007-01-12 02:11:51 +00005268 return ExpandLibCall(TLI.getLibcallName(LC), Source.Val, isSigned,
5269 UnusedHiPart);
Chris Lattner77e77a62005-01-21 06:05:23 +00005270}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005271
Chris Lattner22cde6a2006-01-28 08:25:58 +00005272/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5273/// INT_TO_FP operation of the specified operand when the target requests that
5274/// we expand it. At this point, we know that the result and operand types are
5275/// legal for the target.
5276SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5277 SDOperand Op0,
5278 MVT::ValueType DestVT) {
5279 if (Op0.getValueType() == MVT::i32) {
5280 // simple 32-bit [signed|unsigned] integer to float/double expansion
5281
Chris Lattner23594d42008-01-16 07:03:22 +00005282 // Get the stack frame index of a 8 byte buffer.
5283 SDOperand StackSlot = DAG.CreateStackTemporary(MVT::f64);
5284
Chris Lattner22cde6a2006-01-28 08:25:58 +00005285 // word offset constant for Hi/Lo address computation
5286 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
5287 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00005288 SDOperand Hi = StackSlot;
5289 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
5290 if (TLI.isLittleEndian())
5291 std::swap(Hi, Lo);
5292
Chris Lattner22cde6a2006-01-28 08:25:58 +00005293 // if signed map to unsigned space
5294 SDOperand Op0Mapped;
5295 if (isSigned) {
5296 // constant used to invert sign bit (signed to unsigned mapping)
5297 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
5298 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5299 } else {
5300 Op0Mapped = Op0;
5301 }
5302 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00005303 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005304 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005305 // initial hi portion of constructed double
5306 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
5307 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00005308 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005309 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00005310 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005311 // FP constant to bias correct the final result
5312 SDOperand Bias = DAG.getConstantFP(isSigned ?
5313 BitsToDouble(0x4330000080000000ULL)
5314 : BitsToDouble(0x4330000000000000ULL),
5315 MVT::f64);
5316 // subtract the bias
5317 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
5318 // final result
5319 SDOperand Result;
5320 // handle final rounding
5321 if (DestVT == MVT::f64) {
5322 // do nothing
5323 Result = Sub;
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005324 } else if (MVT::getSizeInBits(DestVT) < MVT::getSizeInBits(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005325 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5326 DAG.getIntPtrConstant(0));
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005327 } else if (MVT::getSizeInBits(DestVT) > MVT::getSizeInBits(MVT::f64)) {
5328 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005329 }
5330 return Result;
5331 }
5332 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
5333 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
5334
5335 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
5336 DAG.getConstant(0, Op0.getValueType()),
5337 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005338 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005339 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5340 SignSet, Four, Zero);
5341
5342 // If the sign bit of the integer is set, the large number will be treated
5343 // as a negative number. To counteract this, the dynamic code adds an
5344 // offset depending on the data type.
5345 uint64_t FF;
5346 switch (Op0.getValueType()) {
5347 default: assert(0 && "Unsupported integer type!");
5348 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5349 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5350 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5351 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5352 }
5353 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005354 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005355
5356 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5357 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5358 SDOperand FudgeInReg;
5359 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005360 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
5361 &PseudoSourceValue::getConstantPool(), 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005362 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005363 FudgeInReg =
5364 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5365 DAG.getEntryNode(), CPIdx,
5366 &PseudoSourceValue::getConstantPool(), 0,
5367 MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005368 }
5369
5370 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5371}
5372
5373/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5374/// *INT_TO_FP operation of the specified operand when the target requests that
5375/// we promote it. At this point, we know that the result and operand types are
5376/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5377/// operation that takes a larger input.
5378SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
5379 MVT::ValueType DestVT,
5380 bool isSigned) {
5381 // First step, figure out the appropriate *INT_TO_FP operation to use.
5382 MVT::ValueType NewInTy = LegalOp.getValueType();
5383
5384 unsigned OpToUse = 0;
5385
5386 // Scan for the appropriate larger type to use.
5387 while (1) {
5388 NewInTy = (MVT::ValueType)(NewInTy+1);
5389 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
5390
5391 // If the target supports SINT_TO_FP of this type, use it.
5392 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5393 default: break;
5394 case TargetLowering::Legal:
5395 if (!TLI.isTypeLegal(NewInTy))
5396 break; // Can't use this datatype.
5397 // FALL THROUGH.
5398 case TargetLowering::Custom:
5399 OpToUse = ISD::SINT_TO_FP;
5400 break;
5401 }
5402 if (OpToUse) break;
5403 if (isSigned) continue;
5404
5405 // If the target supports UINT_TO_FP of this type, use it.
5406 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5407 default: break;
5408 case TargetLowering::Legal:
5409 if (!TLI.isTypeLegal(NewInTy))
5410 break; // Can't use this datatype.
5411 // FALL THROUGH.
5412 case TargetLowering::Custom:
5413 OpToUse = ISD::UINT_TO_FP;
5414 break;
5415 }
5416 if (OpToUse) break;
5417
5418 // Otherwise, try a larger type.
5419 }
5420
5421 // Okay, we found the operation and type to use. Zero extend our input to the
5422 // desired type then run the operation on it.
5423 return DAG.getNode(OpToUse, DestVT,
5424 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5425 NewInTy, LegalOp));
5426}
5427
5428/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5429/// FP_TO_*INT operation of the specified operand when the target requests that
5430/// we promote it. At this point, we know that the result and operand types are
5431/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5432/// operation that returns a larger result.
5433SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
5434 MVT::ValueType DestVT,
5435 bool isSigned) {
5436 // First step, figure out the appropriate FP_TO*INT operation to use.
5437 MVT::ValueType NewOutTy = DestVT;
5438
5439 unsigned OpToUse = 0;
5440
5441 // Scan for the appropriate larger type to use.
5442 while (1) {
5443 NewOutTy = (MVT::ValueType)(NewOutTy+1);
5444 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
5445
5446 // If the target supports FP_TO_SINT returning this type, use it.
5447 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5448 default: break;
5449 case TargetLowering::Legal:
5450 if (!TLI.isTypeLegal(NewOutTy))
5451 break; // Can't use this datatype.
5452 // FALL THROUGH.
5453 case TargetLowering::Custom:
5454 OpToUse = ISD::FP_TO_SINT;
5455 break;
5456 }
5457 if (OpToUse) break;
5458
5459 // If the target supports FP_TO_UINT of this type, use it.
5460 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5461 default: break;
5462 case TargetLowering::Legal:
5463 if (!TLI.isTypeLegal(NewOutTy))
5464 break; // Can't use this datatype.
5465 // FALL THROUGH.
5466 case TargetLowering::Custom:
5467 OpToUse = ISD::FP_TO_UINT;
5468 break;
5469 }
5470 if (OpToUse) break;
5471
5472 // Otherwise, try a larger type.
5473 }
5474
Chris Lattner27a6c732007-11-24 07:07:01 +00005475
5476 // Okay, we found the operation and type to use.
5477 SDOperand Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
5478
5479 // If the operation produces an invalid type, it must be custom lowered. Use
5480 // the target lowering hooks to expand it. Just keep the low part of the
5481 // expanded operation, we know that we're truncating anyway.
5482 if (getTypeAction(NewOutTy) == Expand) {
5483 Operation = SDOperand(TLI.ExpandOperationResult(Operation.Val, DAG), 0);
5484 assert(Operation.Val && "Didn't return anything");
5485 }
5486
5487 // Truncate the result of the extended FP_TO_*INT operation to the desired
5488 // size.
5489 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005490}
5491
5492/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5493///
5494SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
5495 MVT::ValueType VT = Op.getValueType();
5496 MVT::ValueType SHVT = TLI.getShiftAmountTy();
5497 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
5498 switch (VT) {
5499 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5500 case MVT::i16:
5501 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5502 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5503 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5504 case MVT::i32:
5505 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5506 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5507 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5508 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5509 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5510 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5511 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5512 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5513 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5514 case MVT::i64:
5515 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5516 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5517 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5518 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5519 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5520 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5521 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5522 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5523 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5524 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5525 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5526 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5527 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5528 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5529 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5530 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5531 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5532 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5533 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5534 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5535 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5536 }
5537}
5538
5539/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5540///
5541SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
5542 switch (Opc) {
5543 default: assert(0 && "Cannot expand this yet!");
5544 case ISD::CTPOP: {
5545 static const uint64_t mask[6] = {
5546 0x5555555555555555ULL, 0x3333333333333333ULL,
5547 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5548 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5549 };
5550 MVT::ValueType VT = Op.getValueType();
5551 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00005552 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005553 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5554 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
5555 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
5556 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5557 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5558 DAG.getNode(ISD::AND, VT,
5559 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5560 }
5561 return Op;
5562 }
5563 case ISD::CTLZ: {
5564 // for now, we do this:
5565 // x = x | (x >> 1);
5566 // x = x | (x >> 2);
5567 // ...
5568 // x = x | (x >>16);
5569 // x = x | (x >>32); // for 64-bit input
5570 // return popcount(~x);
5571 //
5572 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
5573 MVT::ValueType VT = Op.getValueType();
5574 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00005575 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005576 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5577 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5578 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5579 }
5580 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5581 return DAG.getNode(ISD::CTPOP, VT, Op);
5582 }
5583 case ISD::CTTZ: {
5584 // for now, we use: { return popcount(~x & (x - 1)); }
5585 // unless the target has ctlz but not ctpop, in which case we use:
5586 // { return 32 - nlz(~x & (x-1)); }
5587 // see also http://www.hackersdelight.org/HDcode/ntz.cc
5588 MVT::ValueType VT = Op.getValueType();
5589 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
5590 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
5591 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5592 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5593 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5594 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5595 TLI.isOperationLegal(ISD::CTLZ, VT))
5596 return DAG.getNode(ISD::SUB, VT,
Dan Gohmanb55757e2007-05-18 17:52:13 +00005597 DAG.getConstant(MVT::getSizeInBits(VT), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005598 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5599 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5600 }
5601 }
5602}
Chris Lattnere34b3962005-01-19 04:19:40 +00005603
Chris Lattner3e928bb2005-01-07 07:47:09 +00005604/// ExpandOp - Expand the specified SDOperand into its two component pieces
5605/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5606/// LegalizeNodes map is filled in for any results that are not expanded, the
5607/// ExpandedNodes map is filled in for any results that are expanded, and the
5608/// Lo/Hi values are returned.
5609void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
5610 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00005611 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005612 SDNode *Node = Op.Val;
5613 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005614 assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
Dan Gohman7f321562007-06-25 16:23:39 +00005615 MVT::isVector(VT)) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00005616 "Cannot expand to FP value or to larger int value!");
5617
Chris Lattner6fdcb252005-09-02 20:32:45 +00005618 // See if we already expanded it.
Chris Lattner40030bf2007-02-04 01:17:38 +00005619 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005620 = ExpandedNodes.find(Op);
5621 if (I != ExpandedNodes.end()) {
5622 Lo = I->second.first;
5623 Hi = I->second.second;
5624 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005625 }
5626
Chris Lattner3e928bb2005-01-07 07:47:09 +00005627 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005628 case ISD::CopyFromReg:
5629 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005630 case ISD::FP_ROUND_INREG:
5631 if (VT == MVT::ppcf128 &&
5632 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5633 TargetLowering::Custom) {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005634 SDOperand SrcLo, SrcHi, Src;
5635 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5636 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
5637 SDOperand Result = TLI.LowerOperation(
5638 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005639 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5640 Lo = Result.Val->getOperand(0);
5641 Hi = Result.Val->getOperand(1);
5642 break;
5643 }
5644 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005645 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005646#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005647 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005648#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005649 assert(0 && "Do not know how to expand this operator!");
5650 abort();
Dale Johannesen25f1d082007-10-31 00:32:36 +00005651 case ISD::EXTRACT_VECTOR_ELT:
5652 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5653 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5654 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5655 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005656 case ISD::UNDEF:
Evan Chengaa975c12006-12-16 02:20:50 +00005657 NVT = TLI.getTypeToExpandTo(VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005658 Lo = DAG.getNode(ISD::UNDEF, NVT);
5659 Hi = DAG.getNode(ISD::UNDEF, NVT);
5660 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005661 case ISD::Constant: {
5662 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
5663 Lo = DAG.getConstant(Cst, NVT);
5664 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
5665 break;
5666 }
Evan Cheng00495212006-12-12 21:32:44 +00005667 case ISD::ConstantFP: {
5668 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005669 if (CFP->getValueType(0) == MVT::ppcf128) {
5670 APInt api = CFP->getValueAPF().convertToAPInt();
5671 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5672 MVT::f64);
5673 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5674 MVT::f64);
5675 break;
5676 }
Evan Cheng279101e2006-12-12 22:19:28 +00005677 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005678 if (getTypeAction(Lo.getValueType()) == Expand)
5679 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005680 break;
5681 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005682 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005683 // Return the operands.
5684 Lo = Node->getOperand(0);
5685 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005686 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005687
5688 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005689 if (Node->getNumValues() == 1) {
5690 ExpandOp(Op.getOperand(0), Lo, Hi);
5691 break;
5692 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005693 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
5694 assert(Op.ResNo == 0 && Node->getNumValues() == 2 &&
5695 Op.getValue(1).getValueType() == MVT::Other &&
5696 "unhandled MERGE_VALUES");
5697 ExpandOp(Op.getOperand(0), Lo, Hi);
5698 // Remember that we legalized the chain.
5699 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5700 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005701
5702 case ISD::SIGN_EXTEND_INREG:
5703 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005704 // sext_inreg the low part if needed.
5705 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5706
5707 // The high part gets the sign extension from the lo-part. This handles
5708 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005709 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5710 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
5711 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005712 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005713
Nate Begemand88fc032006-01-14 03:14:10 +00005714 case ISD::BSWAP: {
5715 ExpandOp(Node->getOperand(0), Lo, Hi);
5716 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5717 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5718 Lo = TempLo;
5719 break;
5720 }
5721
Chris Lattneredb1add2005-05-11 04:51:16 +00005722 case ISD::CTPOP:
5723 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005724 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5725 DAG.getNode(ISD::CTPOP, NVT, Lo),
5726 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005727 Hi = DAG.getConstant(0, NVT);
5728 break;
5729
Chris Lattner39a8f332005-05-12 19:05:01 +00005730 case ISD::CTLZ: {
5731 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005732 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005733 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5734 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005735 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
5736 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005737 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5738 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5739
5740 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5741 Hi = DAG.getConstant(0, NVT);
5742 break;
5743 }
5744
5745 case ISD::CTTZ: {
5746 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005747 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005748 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5749 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005750 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
5751 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005752 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5753 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5754
5755 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5756 Hi = DAG.getConstant(0, NVT);
5757 break;
5758 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005759
Nate Begemanacc398c2006-01-25 18:21:52 +00005760 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005761 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5762 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005763 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5764 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5765
5766 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005767 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005768 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
5769 if (!TLI.isLittleEndian())
5770 std::swap(Lo, Hi);
5771 break;
5772 }
5773
Chris Lattner3e928bb2005-01-07 07:47:09 +00005774 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005775 LoadSDNode *LD = cast<LoadSDNode>(Node);
5776 SDOperand Ch = LD->getChain(); // Legalize the chain.
5777 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5778 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005779 int SVOffset = LD->getSrcValueOffset();
5780 unsigned Alignment = LD->getAlignment();
5781 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005782
Evan Cheng466685d2006-10-09 20:57:25 +00005783 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005784 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5785 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005786 if (VT == MVT::f32 || VT == MVT::f64) {
5787 // f32->i32 or f64->i64 one to one expansion.
5788 // Remember that we legalized the chain.
5789 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005790 // Recursively expand the new load.
5791 if (getTypeAction(NVT) == Expand)
5792 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005793 break;
5794 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005795
Evan Cheng466685d2006-10-09 20:57:25 +00005796 // Increment the pointer to the other half.
5797 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
5798 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00005799 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005800 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00005801 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005802 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5803 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005804
Evan Cheng466685d2006-10-09 20:57:25 +00005805 // Build a factor node to remember that this load is independent of the
5806 // other one.
5807 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5808 Hi.getValue(1));
5809
5810 // Remember that we legalized the chain.
5811 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
5812 if (!TLI.isLittleEndian())
5813 std::swap(Lo, Hi);
5814 } else {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005815 MVT::ValueType EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00005816
Dale Johannesenb6210fc2007-10-19 20:29:00 +00005817 if ((VT == MVT::f64 && EVT == MVT::f32) ||
5818 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00005819 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5820 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005821 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00005822 // Remember that we legalized the chain.
5823 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
5824 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
5825 break;
5826 }
Evan Cheng466685d2006-10-09 20:57:25 +00005827
5828 if (EVT == NVT)
5829 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005830 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005831 else
5832 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005833 SVOffset, EVT, isVolatile,
5834 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005835
5836 // Remember that we legalized the chain.
5837 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
5838
5839 if (ExtType == ISD::SEXTLOAD) {
5840 // The high part is obtained by SRA'ing all but one of the bits of the
5841 // lo part.
5842 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
5843 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5844 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
5845 } else if (ExtType == ISD::ZEXTLOAD) {
5846 // The high part is just a zero.
5847 Hi = DAG.getConstant(0, NVT);
5848 } else /* if (ExtType == ISD::EXTLOAD) */ {
5849 // The high part is undefined.
5850 Hi = DAG.getNode(ISD::UNDEF, NVT);
5851 }
5852 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005853 break;
5854 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005855 case ISD::AND:
5856 case ISD::OR:
5857 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
5858 SDOperand LL, LH, RL, RH;
5859 ExpandOp(Node->getOperand(0), LL, LH);
5860 ExpandOp(Node->getOperand(1), RL, RH);
5861 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
5862 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
5863 break;
5864 }
5865 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00005866 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005867 ExpandOp(Node->getOperand(1), LL, LH);
5868 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00005869 if (getTypeAction(NVT) == Expand)
5870 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00005871 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00005872 if (VT != MVT::f32)
5873 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005874 break;
5875 }
Nate Begeman9373a812005-08-10 20:51:12 +00005876 case ISD::SELECT_CC: {
5877 SDOperand TL, TH, FL, FH;
5878 ExpandOp(Node->getOperand(2), TL, TH);
5879 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00005880 if (getTypeAction(NVT) == Expand)
5881 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00005882 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5883 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00005884 if (VT != MVT::f32)
5885 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5886 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00005887 break;
5888 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00005889 case ISD::ANY_EXTEND:
5890 // The low part is any extension of the input (which degenerates to a copy).
5891 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
5892 // The high part is undefined.
5893 Hi = DAG.getNode(ISD::UNDEF, NVT);
5894 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005895 case ISD::SIGN_EXTEND: {
5896 // The low part is just a sign extension of the input (which degenerates to
5897 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00005898 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005899
Chris Lattner3e928bb2005-01-07 07:47:09 +00005900 // The high part is obtained by SRA'ing all but one of the bits of the lo
5901 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00005902 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00005903 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5904 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00005905 break;
5906 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00005907 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00005908 // The low part is just a zero extension of the input (which degenerates to
5909 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00005910 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005911
Chris Lattner3e928bb2005-01-07 07:47:09 +00005912 // The high part is just a zero.
5913 Hi = DAG.getConstant(0, NVT);
5914 break;
Chris Lattner35481892005-12-23 00:16:34 +00005915
Chris Lattner4c948eb2007-02-13 23:55:16 +00005916 case ISD::TRUNCATE: {
5917 // The input value must be larger than this value. Expand *it*.
5918 SDOperand NewLo;
5919 ExpandOp(Node->getOperand(0), NewLo, Hi);
5920
5921 // The low part is now either the right size, or it is closer. If not the
5922 // right size, make an illegal truncate so we recursively expand it.
5923 if (NewLo.getValueType() != Node->getValueType(0))
5924 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
5925 ExpandOp(NewLo, Lo, Hi);
5926 break;
5927 }
5928
Chris Lattner35481892005-12-23 00:16:34 +00005929 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005930 SDOperand Tmp;
5931 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
5932 // If the target wants to, allow it to lower this itself.
5933 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5934 case Expand: assert(0 && "cannot expand FP!");
5935 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
5936 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
5937 }
5938 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
5939 }
5940
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005941 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00005942 if (VT == MVT::f32 || VT == MVT::f64) {
5943 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00005944 if (getTypeAction(NVT) == Expand)
5945 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00005946 break;
5947 }
5948
5949 // If source operand will be expanded to the same type as VT, i.e.
5950 // i64 <- f64, i32 <- f32, expand the source operand instead.
5951 MVT::ValueType VT0 = Node->getOperand(0).getValueType();
5952 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
5953 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005954 break;
5955 }
5956
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005957 // Turn this into a load/store pair by default.
5958 if (Tmp.Val == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00005959 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005960
Chris Lattner35481892005-12-23 00:16:34 +00005961 ExpandOp(Tmp, Lo, Hi);
5962 break;
5963 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005964
Chris Lattner27a6c732007-11-24 07:07:01 +00005965 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00005966 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
5967 TargetLowering::Custom &&
5968 "Must custom expand ReadCycleCounter");
Chris Lattner27a6c732007-11-24 07:07:01 +00005969 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
5970 assert(Tmp.Val && "Node must be custom expanded!");
5971 ExpandOp(Tmp.getValue(0), Lo, Hi);
Chris Lattner308575b2005-11-20 22:56:56 +00005972 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00005973 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005974 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005975 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005976
Chris Lattner4e6c7462005-01-08 19:27:05 +00005977 // These operators cannot be expanded directly, emit them as calls to
5978 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00005979 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00005980 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00005981 SDOperand Op;
5982 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5983 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00005984 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
5985 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00005986 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005987
Chris Lattnerf20d1832005-07-30 01:40:57 +00005988 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
5989
Chris Lattner80a3e942005-07-29 00:33:32 +00005990 // Now that the custom expander is done, expand the result, which is still
5991 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00005992 if (Op.Val) {
5993 ExpandOp(Op, Lo, Hi);
5994 break;
5995 }
Chris Lattner80a3e942005-07-29 00:33:32 +00005996 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005997
Dale Johannesen161e8972007-10-05 20:04:43 +00005998 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005999 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00006000 LC = RTLIB::FPTOSINT_F32_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00006001 else if (Node->getOperand(0).getValueType() == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00006002 LC = RTLIB::FPTOSINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00006003 else if (Node->getOperand(0).getValueType() == MVT::f80)
6004 LC = RTLIB::FPTOSINT_F80_I64;
6005 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6006 LC = RTLIB::FPTOSINT_PPCF128_I64;
Evan Cheng56966222007-01-12 02:11:51 +00006007 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
6008 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006009 break;
Evan Cheng56966222007-01-12 02:11:51 +00006010 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006011
Evan Cheng56966222007-01-12 02:11:51 +00006012 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006013 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006014 SDOperand Op;
6015 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6016 case Expand: assert(0 && "cannot expand FP!");
6017 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6018 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6019 }
6020
6021 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6022
6023 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00006024 if (Op.Val) {
6025 ExpandOp(Op, Lo, Hi);
6026 break;
6027 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006028 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006029
Evan Chengdaccea182007-10-05 01:09:32 +00006030 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattner4e6c7462005-01-08 19:27:05 +00006031 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00006032 LC = RTLIB::FPTOUINT_F32_I64;
Dale Johannesen72292f02007-09-28 18:44:17 +00006033 else if (Node->getOperand(0).getValueType() == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00006034 LC = RTLIB::FPTOUINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00006035 else if (Node->getOperand(0).getValueType() == MVT::f80)
6036 LC = RTLIB::FPTOUINT_F80_I64;
6037 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6038 LC = RTLIB::FPTOUINT_PPCF128_I64;
Evan Cheng56966222007-01-12 02:11:51 +00006039 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
6040 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006041 break;
Evan Cheng56966222007-01-12 02:11:51 +00006042 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006043
Evan Cheng05a2d562006-01-09 18:31:59 +00006044 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006045 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006046 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006047 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006048 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006049 Op = TLI.LowerOperation(Op, DAG);
6050 if (Op.Val) {
6051 // Now that the custom expander is done, expand the result, which is
6052 // still VT.
6053 ExpandOp(Op, Lo, Hi);
6054 break;
6055 }
6056 }
6057
Chris Lattner79980b02006-09-13 03:50:39 +00006058 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6059 // this X << 1 as X+X.
6060 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
6061 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
6062 TLI.isOperationLegal(ISD::ADDE, NVT)) {
6063 SDOperand LoOps[2], HiOps[3];
6064 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6065 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6066 LoOps[1] = LoOps[0];
6067 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6068
6069 HiOps[1] = HiOps[0];
6070 HiOps[2] = Lo.getValue(1);
6071 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6072 break;
6073 }
6074 }
6075
Chris Lattnere34b3962005-01-19 04:19:40 +00006076 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006077 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006078 break;
Chris Lattner47599822005-04-02 03:38:53 +00006079
6080 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006081 TargetLowering::LegalizeAction Action =
6082 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6083 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6084 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006085 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006086 break;
6087 }
6088
Chris Lattnere34b3962005-01-19 04:19:40 +00006089 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00006090 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SHL_I64), Node,
6091 false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006092 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006093 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006094
Evan Cheng05a2d562006-01-09 18:31:59 +00006095 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006096 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006097 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006098 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006099 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006100 Op = TLI.LowerOperation(Op, DAG);
6101 if (Op.Val) {
6102 // Now that the custom expander is done, expand the result, which is
6103 // still VT.
6104 ExpandOp(Op, Lo, Hi);
6105 break;
6106 }
6107 }
6108
Chris Lattnere34b3962005-01-19 04:19:40 +00006109 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006110 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006111 break;
Chris Lattner47599822005-04-02 03:38:53 +00006112
6113 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006114 TargetLowering::LegalizeAction Action =
6115 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6116 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6117 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006118 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006119 break;
6120 }
6121
Chris Lattnere34b3962005-01-19 04:19:40 +00006122 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00006123 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRA_I64), Node,
6124 true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006125 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006126 }
6127
6128 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006129 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006130 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006131 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006132 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006133 Op = TLI.LowerOperation(Op, DAG);
6134 if (Op.Val) {
6135 // Now that the custom expander is done, expand the result, which is
6136 // still VT.
6137 ExpandOp(Op, Lo, Hi);
6138 break;
6139 }
6140 }
6141
Chris Lattnere34b3962005-01-19 04:19:40 +00006142 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006143 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006144 break;
Chris Lattner47599822005-04-02 03:38:53 +00006145
6146 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006147 TargetLowering::LegalizeAction Action =
6148 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6149 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6150 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006151 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006152 break;
6153 }
6154
Chris Lattnere34b3962005-01-19 04:19:40 +00006155 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00006156 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRL_I64), Node,
6157 false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006158 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006159 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006160
Misha Brukmanedf128a2005-04-21 22:36:52 +00006161 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006162 case ISD::SUB: {
6163 // If the target wants to custom expand this, let them.
6164 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6165 TargetLowering::Custom) {
6166 Op = TLI.LowerOperation(Op, DAG);
6167 if (Op.Val) {
6168 ExpandOp(Op, Lo, Hi);
6169 break;
6170 }
6171 }
6172
6173 // Expand the subcomponents.
6174 SDOperand LHSL, LHSH, RHSL, RHSH;
6175 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6176 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006177 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6178 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006179 LoOps[0] = LHSL;
6180 LoOps[1] = RHSL;
6181 HiOps[0] = LHSH;
6182 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006183 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00006184 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006185 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006186 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006187 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00006188 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006189 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006190 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006191 }
Chris Lattner84f67882005-01-20 18:52:28 +00006192 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006193 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006194
6195 case ISD::ADDC:
6196 case ISD::SUBC: {
6197 // Expand the subcomponents.
6198 SDOperand LHSL, LHSH, RHSL, RHSH;
6199 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6200 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6201 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6202 SDOperand LoOps[2] = { LHSL, RHSL };
6203 SDOperand HiOps[3] = { LHSH, RHSH };
6204
6205 if (Node->getOpcode() == ISD::ADDC) {
6206 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6207 HiOps[2] = Lo.getValue(1);
6208 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6209 } else {
6210 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6211 HiOps[2] = Lo.getValue(1);
6212 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6213 }
6214 // Remember that we legalized the flag.
6215 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6216 break;
6217 }
6218 case ISD::ADDE:
6219 case ISD::SUBE: {
6220 // Expand the subcomponents.
6221 SDOperand LHSL, LHSH, RHSL, RHSH;
6222 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6223 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6224 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6225 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6226 SDOperand HiOps[3] = { LHSH, RHSH };
6227
6228 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6229 HiOps[2] = Lo.getValue(1);
6230 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6231
6232 // Remember that we legalized the flag.
6233 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6234 break;
6235 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006236 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006237 // If the target wants to custom expand this, let them.
6238 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006239 SDOperand New = TLI.LowerOperation(Op, DAG);
6240 if (New.Val) {
6241 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006242 break;
6243 }
6244 }
6245
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006246 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6247 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006248 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6249 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6250 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Nate Begemanc7c16572005-04-11 03:01:51 +00006251 SDOperand LL, LH, RL, RH;
6252 ExpandOp(Node->getOperand(0), LL, LH);
6253 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman525178c2007-10-08 18:33:35 +00006254 unsigned BitSize = MVT::getSizeInBits(RH.getValueType());
6255 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6256 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
6257 // FIXME: generalize this to handle other bit sizes
6258 if (LHSSB == 32 && RHSSB == 32 &&
6259 DAG.MaskedValueIsZero(Op.getOperand(0), 0xFFFFFFFF00000000ULL) &&
6260 DAG.MaskedValueIsZero(Op.getOperand(1), 0xFFFFFFFF00000000ULL)) {
6261 // The inputs are both zero-extended.
6262 if (HasUMUL_LOHI) {
6263 // We can emit a umul_lohi.
6264 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6265 Hi = SDOperand(Lo.Val, 1);
6266 break;
6267 }
6268 if (HasMULHU) {
6269 // We can emit a mulhu+mul.
6270 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6271 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6272 break;
6273 }
Dan Gohman525178c2007-10-08 18:33:35 +00006274 }
6275 if (LHSSB > BitSize && RHSSB > BitSize) {
6276 // The input values are both sign-extended.
6277 if (HasSMUL_LOHI) {
6278 // We can emit a smul_lohi.
6279 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6280 Hi = SDOperand(Lo.Val, 1);
6281 break;
6282 }
6283 if (HasMULHS) {
6284 // We can emit a mulhs+mul.
6285 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6286 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6287 break;
6288 }
6289 }
6290 if (HasUMUL_LOHI) {
6291 // Lo,Hi = umul LHS, RHS.
6292 SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
6293 DAG.getVTList(NVT, NVT), LL, RL);
6294 Lo = UMulLOHI;
6295 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006296 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6297 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6298 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6299 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006300 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006301 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006302 if (HasMULHU) {
6303 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6304 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6305 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6306 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6307 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6308 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6309 break;
6310 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006311 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006312
Dan Gohman525178c2007-10-08 18:33:35 +00006313 // If nothing else, we can make a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00006314 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::MUL_I64), Node,
6315 false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006316 break;
6317 }
Evan Cheng56966222007-01-12 02:11:51 +00006318 case ISD::SDIV:
6319 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SDIV_I64), Node, true, Hi);
6320 break;
6321 case ISD::UDIV:
6322 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UDIV_I64), Node, true, Hi);
6323 break;
6324 case ISD::SREM:
6325 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SREM_I64), Node, true, Hi);
6326 break;
6327 case ISD::UREM:
6328 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UREM_I64), Node, true, Hi);
6329 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006330
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006331 case ISD::FADD:
Duncan Sands007f9842008-01-10 10:28:30 +00006332 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::ADD_F32,
6333 RTLIB::ADD_F64,
6334 RTLIB::ADD_F80,
6335 RTLIB::ADD_PPCF128)),
Evan Cheng56966222007-01-12 02:11:51 +00006336 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006337 break;
6338 case ISD::FSUB:
Duncan Sands007f9842008-01-10 10:28:30 +00006339 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::SUB_F32,
6340 RTLIB::SUB_F64,
6341 RTLIB::SUB_F80,
6342 RTLIB::SUB_PPCF128)),
Evan Cheng56966222007-01-12 02:11:51 +00006343 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006344 break;
6345 case ISD::FMUL:
Duncan Sands007f9842008-01-10 10:28:30 +00006346 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::MUL_F32,
6347 RTLIB::MUL_F64,
6348 RTLIB::MUL_F80,
6349 RTLIB::MUL_PPCF128)),
Evan Cheng56966222007-01-12 02:11:51 +00006350 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006351 break;
6352 case ISD::FDIV:
Duncan Sands007f9842008-01-10 10:28:30 +00006353 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::DIV_F32,
6354 RTLIB::DIV_F64,
6355 RTLIB::DIV_F80,
6356 RTLIB::DIV_PPCF128)),
Evan Cheng56966222007-01-12 02:11:51 +00006357 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006358 break;
6359 case ISD::FP_EXTEND:
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006360 if (VT == MVT::ppcf128) {
6361 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6362 Node->getOperand(0).getValueType()==MVT::f64);
6363 const uint64_t zero = 0;
6364 if (Node->getOperand(0).getValueType()==MVT::f32)
6365 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6366 else
6367 Hi = Node->getOperand(0);
6368 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6369 break;
6370 }
Evan Cheng56966222007-01-12 02:11:51 +00006371 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPEXT_F32_F64), Node, true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006372 break;
6373 case ISD::FP_ROUND:
Evan Cheng56966222007-01-12 02:11:51 +00006374 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPROUND_F64_F32),Node,true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006375 break;
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006376 case ISD::FPOWI:
Duncan Sands007f9842008-01-10 10:28:30 +00006377 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::POWI_F32,
6378 RTLIB::POWI_F64,
6379 RTLIB::POWI_F80,
6380 RTLIB::POWI_PPCF128)),
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006381 Node, false, Hi);
6382 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006383 case ISD::FSQRT:
6384 case ISD::FSIN:
6385 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00006386 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006387 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006388 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006389 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6390 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006391 break;
6392 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006393 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6394 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006395 break;
6396 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006397 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6398 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006399 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006400 default: assert(0 && "Unreachable!");
6401 }
Evan Cheng56966222007-01-12 02:11:51 +00006402 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006403 break;
6404 }
Evan Cheng966bf242006-12-16 00:52:40 +00006405 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006406 if (VT == MVT::ppcf128) {
6407 SDOperand Tmp;
6408 ExpandOp(Node->getOperand(0), Lo, Tmp);
6409 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6410 // lo = hi==fabs(hi) ? lo : -lo;
6411 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6412 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6413 DAG.getCondCode(ISD::SETEQ));
6414 break;
6415 }
Evan Cheng966bf242006-12-16 00:52:40 +00006416 SDOperand Mask = (VT == MVT::f64)
6417 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6418 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6419 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6420 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6421 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6422 if (getTypeAction(NVT) == Expand)
6423 ExpandOp(Lo, Lo, Hi);
6424 break;
6425 }
6426 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006427 if (VT == MVT::ppcf128) {
6428 ExpandOp(Node->getOperand(0), Lo, Hi);
6429 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6430 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6431 break;
6432 }
Evan Cheng966bf242006-12-16 00:52:40 +00006433 SDOperand Mask = (VT == MVT::f64)
6434 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6435 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6436 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6437 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6438 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6439 if (getTypeAction(NVT) == Expand)
6440 ExpandOp(Lo, Lo, Hi);
6441 break;
6442 }
Evan Cheng912095b2007-01-04 21:56:39 +00006443 case ISD::FCOPYSIGN: {
6444 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6445 if (getTypeAction(NVT) == Expand)
6446 ExpandOp(Lo, Lo, Hi);
6447 break;
6448 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006449 case ISD::SINT_TO_FP:
6450 case ISD::UINT_TO_FP: {
6451 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
6452 MVT::ValueType SrcVT = Node->getOperand(0).getValueType();
Dale Johannesen6e63e092007-10-12 17:52:03 +00006453 if (VT == MVT::ppcf128 && SrcVT != MVT::i64) {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006454 static uint64_t zero = 0;
6455 if (isSigned) {
6456 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6457 Node->getOperand(0)));
6458 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6459 } else {
6460 static uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
6461 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6462 Node->getOperand(0)));
6463 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6464 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006465 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006466 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6467 DAG.getConstant(0, MVT::i32),
6468 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6469 DAG.getConstantFP(
6470 APFloat(APInt(128, 2, TwoE32)),
6471 MVT::ppcf128)),
6472 Hi,
6473 DAG.getCondCode(ISD::SETLT)),
6474 Lo, Hi);
6475 }
6476 break;
6477 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006478 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6479 // si64->ppcf128 done by libcall, below
6480 static uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
6481 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6482 Lo, Hi);
6483 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6484 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6485 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6486 DAG.getConstant(0, MVT::i64),
6487 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6488 DAG.getConstantFP(
6489 APFloat(APInt(128, 2, TwoE64)),
6490 MVT::ppcf128)),
6491 Hi,
6492 DAG.getCondCode(ISD::SETLT)),
6493 Lo, Hi);
6494 break;
6495 }
Evan Cheng64f638d2007-09-27 07:35:39 +00006496 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng7df28dc2006-12-19 01:44:04 +00006497 if (Node->getOperand(0).getValueType() == MVT::i64) {
6498 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00006499 LC = isSigned ? RTLIB::SINTTOFP_I64_F32 : RTLIB::UINTTOFP_I64_F32;
Dale Johannesen73328d12007-09-19 23:55:34 +00006500 else if (VT == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00006501 LC = isSigned ? RTLIB::SINTTOFP_I64_F64 : RTLIB::UINTTOFP_I64_F64;
Dale Johannesen161e8972007-10-05 20:04:43 +00006502 else if (VT == MVT::f80) {
Dale Johannesen73328d12007-09-19 23:55:34 +00006503 assert(isSigned);
Dale Johannesen161e8972007-10-05 20:04:43 +00006504 LC = RTLIB::SINTTOFP_I64_F80;
6505 }
6506 else if (VT == MVT::ppcf128) {
6507 assert(isSigned);
6508 LC = RTLIB::SINTTOFP_I64_PPCF128;
Dale Johannesen73328d12007-09-19 23:55:34 +00006509 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006510 } else {
6511 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00006512 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng7df28dc2006-12-19 01:44:04 +00006513 else
Evan Cheng56966222007-01-12 02:11:51 +00006514 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
Evan Cheng7df28dc2006-12-19 01:44:04 +00006515 }
6516
6517 // Promote the operand if needed.
6518 if (getTypeAction(SrcVT) == Promote) {
6519 SDOperand Tmp = PromoteOp(Node->getOperand(0));
6520 Tmp = isSigned
6521 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6522 DAG.getValueType(SrcVT))
6523 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6524 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6525 }
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006526
6527 const char *LibCall = TLI.getLibcallName(LC);
6528 if (LibCall)
6529 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Hi);
6530 else {
6531 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6532 Node->getOperand(0));
6533 if (getTypeAction(Lo.getValueType()) == Expand)
6534 ExpandOp(Lo, Lo, Hi);
6535 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006536 break;
6537 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006538 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006539
Chris Lattner83397362005-12-21 18:02:52 +00006540 // Make sure the resultant values have been legalized themselves, unless this
6541 // is a type that requires multi-step expansion.
6542 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6543 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00006544 if (Hi.Val)
6545 // Don't legalize the high part if it is expanded to a single node.
6546 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006547 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006548
6549 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006550 bool isNew = ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi)));
Evan Cheng05a2d562006-01-09 18:31:59 +00006551 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006552}
6553
Dan Gohman7f321562007-06-25 16:23:39 +00006554/// SplitVectorOp - Given an operand of vector type, break it down into
6555/// two smaller values, still of vector type.
Chris Lattnerc7029802006-03-18 01:44:44 +00006556void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
6557 SDOperand &Hi) {
Dan Gohman7f321562007-06-25 16:23:39 +00006558 assert(MVT::isVector(Op.getValueType()) && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006559 SDNode *Node = Op.Val;
Dan Gohmane40c7b02007-09-24 15:54:53 +00006560 unsigned NumElements = MVT::getVectorNumElements(Op.getValueType());
Chris Lattnerc7029802006-03-18 01:44:44 +00006561 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006562
Dan Gohmane40c7b02007-09-24 15:54:53 +00006563 MVT::ValueType NewEltVT = MVT::getVectorElementType(Op.getValueType());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006564
6565 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6566 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6567
6568 MVT::ValueType NewVT_Lo = MVT::getVectorType(NewEltVT, NewNumElts_Lo);
6569 MVT::ValueType NewVT_Hi = MVT::getVectorType(NewEltVT, NewNumElts_Hi);
6570
Chris Lattnerc7029802006-03-18 01:44:44 +00006571 // See if we already split it.
6572 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
6573 = SplitNodes.find(Op);
6574 if (I != SplitNodes.end()) {
6575 Lo = I->second.first;
6576 Hi = I->second.second;
6577 return;
6578 }
6579
6580 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006581 default:
6582#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006583 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006584#endif
6585 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006586 case ISD::UNDEF:
6587 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6588 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6589 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006590 case ISD::BUILD_PAIR:
6591 Lo = Node->getOperand(0);
6592 Hi = Node->getOperand(1);
6593 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006594 case ISD::INSERT_VECTOR_ELT: {
6595 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6596 unsigned Index = cast<ConstantSDNode>(Node->getOperand(2))->getValue();
6597 SDOperand ScalarOp = Node->getOperand(1);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006598 if (Index < NewNumElts_Lo)
6599 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
Dan Gohman9fe46622007-09-28 23:53:40 +00006600 DAG.getConstant(Index, TLI.getPointerTy()));
6601 else
Nate Begeman5db1afb2007-11-15 21:15:26 +00006602 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6603 DAG.getConstant(Index - NewNumElts_Lo,
6604 TLI.getPointerTy()));
Dan Gohman9fe46622007-09-28 23:53:40 +00006605 break;
6606 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006607 case ISD::VECTOR_SHUFFLE: {
6608 // Build the low part.
6609 SDOperand Mask = Node->getOperand(2);
6610 SmallVector<SDOperand, 8> Ops;
6611 MVT::ValueType PtrVT = TLI.getPointerTy();
6612
6613 // Insert all of the elements from the input that are needed. We use
6614 // buildvector of extractelement here because the input vectors will have
6615 // to be legalized, so this makes the code simpler.
6616 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
6617 unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getValue();
6618 SDOperand InVec = Node->getOperand(0);
6619 if (Idx >= NumElements) {
6620 InVec = Node->getOperand(1);
6621 Idx -= NumElements;
6622 }
6623 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6624 DAG.getConstant(Idx, PtrVT)));
6625 }
6626 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6627 Ops.clear();
6628
6629 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
6630 unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getValue();
6631 SDOperand InVec = Node->getOperand(0);
6632 if (Idx >= NumElements) {
6633 InVec = Node->getOperand(1);
6634 Idx -= NumElements;
6635 }
6636 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6637 DAG.getConstant(Idx, PtrVT)));
6638 }
6639 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6640 break;
6641 }
Dan Gohman7f321562007-06-25 16:23:39 +00006642 case ISD::BUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006643 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006644 Node->op_begin()+NewNumElts_Lo);
6645 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006646
Nate Begeman5db1afb2007-11-15 21:15:26 +00006647 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00006648 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006649 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006650 break;
6651 }
Dan Gohman7f321562007-06-25 16:23:39 +00006652 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00006653 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00006654 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6655 if (NewNumSubvectors == 1) {
6656 Lo = Node->getOperand(0);
6657 Hi = Node->getOperand(1);
6658 } else {
6659 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
6660 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006661 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006662
Dan Gohman7f321562007-06-25 16:23:39 +00006663 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
6664 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006665 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00006666 }
Dan Gohman65956352007-06-13 15:12:02 +00006667 break;
6668 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006669 case ISD::SELECT: {
6670 SDOperand Cond = Node->getOperand(0);
6671
6672 SDOperand LL, LH, RL, RH;
6673 SplitVectorOp(Node->getOperand(1), LL, LH);
6674 SplitVectorOp(Node->getOperand(2), RL, RH);
6675
6676 if (MVT::isVector(Cond.getValueType())) {
6677 // Handle a vector merge.
6678 SDOperand CL, CH;
6679 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006680 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6681 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006682 } else {
6683 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00006684 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6685 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006686 }
6687 break;
6688 }
Dan Gohman7f321562007-06-25 16:23:39 +00006689 case ISD::ADD:
6690 case ISD::SUB:
6691 case ISD::MUL:
6692 case ISD::FADD:
6693 case ISD::FSUB:
6694 case ISD::FMUL:
6695 case ISD::SDIV:
6696 case ISD::UDIV:
6697 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00006698 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006699 case ISD::AND:
6700 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00006701 case ISD::XOR:
6702 case ISD::UREM:
6703 case ISD::SREM:
6704 case ISD::FREM: {
Chris Lattnerc7029802006-03-18 01:44:44 +00006705 SDOperand LL, LH, RL, RH;
6706 SplitVectorOp(Node->getOperand(0), LL, LH);
6707 SplitVectorOp(Node->getOperand(1), RL, RH);
6708
Nate Begeman5db1afb2007-11-15 21:15:26 +00006709 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6710 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00006711 break;
6712 }
Dan Gohman82669522007-10-11 23:57:53 +00006713 case ISD::FPOWI: {
6714 SDOperand L, H;
6715 SplitVectorOp(Node->getOperand(0), L, H);
6716
Nate Begeman5db1afb2007-11-15 21:15:26 +00006717 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6718 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00006719 break;
6720 }
6721 case ISD::CTTZ:
6722 case ISD::CTLZ:
6723 case ISD::CTPOP:
6724 case ISD::FNEG:
6725 case ISD::FABS:
6726 case ISD::FSQRT:
6727 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00006728 case ISD::FCOS:
6729 case ISD::FP_TO_SINT:
6730 case ISD::FP_TO_UINT:
6731 case ISD::SINT_TO_FP:
6732 case ISD::UINT_TO_FP: {
Dan Gohman82669522007-10-11 23:57:53 +00006733 SDOperand L, H;
6734 SplitVectorOp(Node->getOperand(0), L, H);
6735
Nate Begeman5db1afb2007-11-15 21:15:26 +00006736 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6737 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00006738 break;
6739 }
Dan Gohman7f321562007-06-25 16:23:39 +00006740 case ISD::LOAD: {
6741 LoadSDNode *LD = cast<LoadSDNode>(Node);
6742 SDOperand Ch = LD->getChain();
6743 SDOperand Ptr = LD->getBasePtr();
6744 const Value *SV = LD->getSrcValue();
6745 int SVOffset = LD->getSrcValueOffset();
6746 unsigned Alignment = LD->getAlignment();
6747 bool isVolatile = LD->isVolatile();
6748
Nate Begeman5db1afb2007-11-15 21:15:26 +00006749 Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
6750 unsigned IncrementSize = NewNumElts_Lo * MVT::getSizeInBits(NewEltVT)/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00006751 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006752 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006753 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006754 Alignment = MinAlign(Alignment, IncrementSize);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006755 Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00006756
6757 // Build a factor node to remember that this load is independent of the
6758 // other one.
6759 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
6760 Hi.getValue(1));
6761
6762 // Remember that we legalized the chain.
6763 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00006764 break;
6765 }
Dan Gohman7f321562007-06-25 16:23:39 +00006766 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00006767 // We know the result is a vector. The input may be either a vector or a
6768 // scalar value.
Dan Gohman10a7aa62007-06-29 00:09:08 +00006769 SDOperand InOp = Node->getOperand(0);
6770 if (!MVT::isVector(InOp.getValueType()) ||
6771 MVT::getVectorNumElements(InOp.getValueType()) == 1) {
6772 // The input is a scalar or single-element vector.
6773 // Lower to a store/load so that it can be split.
6774 // FIXME: this could be improved probably.
Chris Lattner85dd3be2007-10-15 17:48:57 +00006775 SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType());
Dan Gohman69de1932008-02-06 22:27:42 +00006776 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr.Val);
6777 assert(FI && "Expecting CreateStackTemporary to return a frame index.\n");
Chris Lattner7692eb42006-03-23 21:16:34 +00006778
Evan Cheng786225a2006-10-05 23:01:46 +00006779 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00006780 InOp, Ptr,
6781 &PseudoSourceValue::getFixedStack(),
6782 FI->getIndex());
6783 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
6784 &PseudoSourceValue::getFixedStack(),
6785 FI->getIndex());
Chris Lattner7692eb42006-03-23 21:16:34 +00006786 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00006787 // Split the vector and convert each of the pieces now.
6788 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006789 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
6790 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00006791 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00006792 }
Chris Lattnerc7029802006-03-18 01:44:44 +00006793 }
6794
6795 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006796 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00006797 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00006798 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00006799}
6800
6801
Dan Gohman89b20c02007-06-27 14:06:22 +00006802/// ScalarizeVectorOp - Given an operand of single-element vector type
6803/// (e.g. v1f32), convert it into the equivalent operation that returns a
6804/// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +00006805SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
6806 assert(MVT::isVector(Op.getValueType()) &&
6807 "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006808 SDNode *Node = Op.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00006809 MVT::ValueType NewVT = MVT::getVectorElementType(Op.getValueType());
6810 assert(MVT::getVectorNumElements(Op.getValueType()) == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00006811
Dan Gohman7f321562007-06-25 16:23:39 +00006812 // See if we already scalarized it.
6813 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
6814 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00006815
6816 SDOperand Result;
6817 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00006818 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006819#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006820 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006821#endif
Dan Gohman7f321562007-06-25 16:23:39 +00006822 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
6823 case ISD::ADD:
6824 case ISD::FADD:
6825 case ISD::SUB:
6826 case ISD::FSUB:
6827 case ISD::MUL:
6828 case ISD::FMUL:
6829 case ISD::SDIV:
6830 case ISD::UDIV:
6831 case ISD::FDIV:
6832 case ISD::SREM:
6833 case ISD::UREM:
6834 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00006835 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006836 case ISD::AND:
6837 case ISD::OR:
6838 case ISD::XOR:
6839 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00006840 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00006841 ScalarizeVectorOp(Node->getOperand(0)),
6842 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00006843 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006844 case ISD::FNEG:
6845 case ISD::FABS:
6846 case ISD::FSQRT:
6847 case ISD::FSIN:
6848 case ISD::FCOS:
6849 Result = DAG.getNode(Node->getOpcode(),
6850 NewVT,
6851 ScalarizeVectorOp(Node->getOperand(0)));
6852 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00006853 case ISD::FPOWI:
6854 Result = DAG.getNode(Node->getOpcode(),
6855 NewVT,
6856 ScalarizeVectorOp(Node->getOperand(0)),
6857 Node->getOperand(1));
6858 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006859 case ISD::LOAD: {
6860 LoadSDNode *LD = cast<LoadSDNode>(Node);
6861 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
6862 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00006863
Dan Gohman7f321562007-06-25 16:23:39 +00006864 const Value *SV = LD->getSrcValue();
6865 int SVOffset = LD->getSrcValueOffset();
6866 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
6867 LD->isVolatile(), LD->getAlignment());
6868
Chris Lattnerc7029802006-03-18 01:44:44 +00006869 // Remember that we legalized the chain.
6870 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
6871 break;
6872 }
Dan Gohman7f321562007-06-25 16:23:39 +00006873 case ISD::BUILD_VECTOR:
6874 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00006875 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006876 case ISD::INSERT_VECTOR_ELT:
6877 // Returning the inserted scalar element.
6878 Result = Node->getOperand(1);
6879 break;
6880 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00006881 assert(Node->getOperand(0).getValueType() == NewVT &&
6882 "Concat of non-legal vectors not yet supported!");
6883 Result = Node->getOperand(0);
6884 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006885 case ISD::VECTOR_SHUFFLE: {
6886 // Figure out if the scalar is the LHS or RHS and return it.
6887 SDOperand EltNum = Node->getOperand(2).getOperand(0);
6888 if (cast<ConstantSDNode>(EltNum)->getValue())
6889 Result = ScalarizeVectorOp(Node->getOperand(1));
6890 else
6891 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00006892 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006893 }
6894 case ISD::EXTRACT_SUBVECTOR:
6895 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00006896 assert(Result.getValueType() == NewVT);
6897 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006898 case ISD::BIT_CONVERT:
6899 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
Chris Lattner5b2316e2006-03-28 20:24:43 +00006900 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006901 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00006902 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00006903 ScalarizeVectorOp(Op.getOperand(1)),
6904 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00006905 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00006906 }
6907
6908 if (TLI.isTypeLegal(NewVT))
6909 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00006910 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
6911 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00006912 return Result;
6913}
6914
Chris Lattner3e928bb2005-01-07 07:47:09 +00006915
6916// SelectionDAG::Legalize - This is the entry point for the file.
6917//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00006918void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00006919 if (ViewLegalizeDAGs) viewGraph();
6920
Chris Lattner3e928bb2005-01-07 07:47:09 +00006921 /// run - This is the main entry point to this class.
6922 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00006923 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006924}
6925