Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1 | //===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===// |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the SelectionDAG::Legalize method. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "llvm/CodeGen/SelectionDAG.h" |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 15 | #include "llvm/CodeGen/MachineFunction.h" |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/PseudoSourceValue.h" |
Evan Cheng | 61bbbab | 2007-08-16 23:50:06 +0000 | [diff] [blame] | 20 | #include "llvm/Target/TargetFrameInfo.h" |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 21 | #include "llvm/Target/TargetLowering.h" |
Chris Lattner | e1bd822 | 2005-01-11 05:57:22 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetData.h" |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 24 | #include "llvm/Target/TargetOptions.h" |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 25 | #include "llvm/Target/TargetSubtarget.h" |
Chris Lattner | adf6a96 | 2005-05-13 18:50:42 +0000 | [diff] [blame] | 26 | #include "llvm/CallingConv.h" |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 27 | #include "llvm/Constants.h" |
Reid Spencer | c103057 | 2007-01-19 21:13:56 +0000 | [diff] [blame] | 28 | #include "llvm/DerivedTypes.h" |
Chris Lattner | 5e46a19 | 2006-04-02 03:07:27 +0000 | [diff] [blame] | 29 | #include "llvm/Support/CommandLine.h" |
Chris Lattner | a4f0b3a | 2006-08-27 12:54:02 +0000 | [diff] [blame] | 30 | #include "llvm/Support/Compiler.h" |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 31 | #include "llvm/Support/MathExtras.h" |
Chris Lattner | 7971514 | 2007-02-03 01:12:36 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/DenseMap.h" |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/SmallVector.h" |
Chris Lattner | 00755df | 2007-02-04 00:27:56 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/SmallPtrSet.h" |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 35 | #include <map> |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 36 | using namespace llvm; |
| 37 | |
| 38 | //===----------------------------------------------------------------------===// |
| 39 | /// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and |
| 40 | /// hacks on it until the target machine can handle it. This involves |
| 41 | /// eliminating value sizes the machine cannot handle (promoting small sizes to |
| 42 | /// large sizes or splitting up large values into small values) as well as |
| 43 | /// eliminating operations the machine cannot handle. |
| 44 | /// |
| 45 | /// This code also does a small amount of optimization and recognition of idioms |
| 46 | /// as part of its processing. For example, if a target does not support a |
| 47 | /// 'setcc' instruction efficiently, but does support 'brcc' instruction, this |
| 48 | /// will attempt merge setcc and brc instructions into brcc's. |
| 49 | /// |
| 50 | namespace { |
Chris Lattner | 360e820 | 2006-06-28 21:58:30 +0000 | [diff] [blame] | 51 | class VISIBILITY_HIDDEN SelectionDAGLegalize { |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 52 | TargetLowering &TLI; |
| 53 | SelectionDAG &DAG; |
| 54 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 55 | // Libcall insertion helpers. |
| 56 | |
| 57 | /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been |
| 58 | /// legalized. We use this to ensure that calls are properly serialized |
| 59 | /// against each other, including inserted libcalls. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 60 | SDValue LastCALLSEQ_END; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 61 | |
| 62 | /// IsLegalizingCall - This member is used *only* for purposes of providing |
| 63 | /// helpful assertions that a libcall isn't created while another call is |
| 64 | /// being legalized (which could lead to non-serialized call sequences). |
| 65 | bool IsLegalizingCall; |
| 66 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 67 | enum LegalizeAction { |
Chris Lattner | 68a17fe | 2006-01-29 08:42:06 +0000 | [diff] [blame] | 68 | Legal, // The target natively supports this operation. |
| 69 | Promote, // This operation should be executed in a larger type. |
Chris Lattner | d74ea2b | 2006-05-24 17:04:05 +0000 | [diff] [blame] | 70 | Expand // Try to expand this to other ops, otherwise use a libcall. |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 71 | }; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 72 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 73 | /// ValueTypeActions - This is a bitvector that contains two bits for each |
| 74 | /// value type, where the two bits correspond to the LegalizeAction enum. |
| 75 | /// This can be queried with "getTypeAction(VT)". |
Chris Lattner | 68a17fe | 2006-01-29 08:42:06 +0000 | [diff] [blame] | 76 | TargetLowering::ValueTypeActionImpl ValueTypeActions; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 77 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 78 | /// LegalizedNodes - For nodes that are of legal width, and that have more |
| 79 | /// than one use, this map indicates what regularized operand to use. This |
| 80 | /// allows us to avoid legalizing the same thing more than once. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 81 | DenseMap<SDValue, SDValue> LegalizedNodes; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 82 | |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 83 | /// PromotedNodes - For nodes that are below legal width, and that have more |
| 84 | /// than one use, this map indicates what promoted value to use. This allows |
| 85 | /// us to avoid promoting the same thing more than once. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 86 | DenseMap<SDValue, SDValue> PromotedNodes; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 87 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 88 | /// ExpandedNodes - For nodes that need to be expanded this map indicates |
| 89 | /// which which operands are the expanded version of the input. This allows |
| 90 | /// us to avoid expanding the same node more than once. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 91 | DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 92 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 93 | /// SplitNodes - For vector nodes that need to be split, this map indicates |
| 94 | /// which which operands are the split version of the input. This allows us |
| 95 | /// to avoid splitting the same node more than once. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 96 | std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 97 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 98 | /// ScalarizedNodes - For nodes that need to be converted from vector types to |
| 99 | /// scalar types, this contains the mapping of ones we have already |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 100 | /// processed to the result. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 101 | std::map<SDValue, SDValue> ScalarizedNodes; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 102 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 103 | void AddLegalizedOperand(SDValue From, SDValue To) { |
Chris Lattner | 69a889e | 2005-12-20 00:53:54 +0000 | [diff] [blame] | 104 | LegalizedNodes.insert(std::make_pair(From, To)); |
| 105 | // If someone requests legalization of the new node, return itself. |
| 106 | if (From != To) |
| 107 | LegalizedNodes.insert(std::make_pair(To, To)); |
Chris Lattner | 8afc48e | 2005-01-07 22:28:47 +0000 | [diff] [blame] | 108 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 109 | void AddPromotedOperand(SDValue From, SDValue To) { |
Dan Gohman | 6b345ee | 2008-07-07 17:46:23 +0000 | [diff] [blame] | 110 | bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 111 | assert(isNew && "Got into the map somehow?"); |
Chris Lattner | 69a889e | 2005-12-20 00:53:54 +0000 | [diff] [blame] | 112 | // If someone requests legalization of the new node, return itself. |
| 113 | LegalizedNodes.insert(std::make_pair(To, To)); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 114 | } |
Chris Lattner | 8afc48e | 2005-01-07 22:28:47 +0000 | [diff] [blame] | 115 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 116 | public: |
Dan Gohman | 1002c02 | 2008-07-07 18:00:37 +0000 | [diff] [blame] | 117 | explicit SelectionDAGLegalize(SelectionDAG &DAG); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 118 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 119 | /// getTypeAction - Return how we should legalize values of this type, either |
| 120 | /// it is already legal or we need to expand it into multiple registers of |
| 121 | /// smaller integer type, or we need to promote it to a larger type. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 122 | LegalizeAction getTypeAction(MVT VT) const { |
Chris Lattner | 68a17fe | 2006-01-29 08:42:06 +0000 | [diff] [blame] | 123 | return (LegalizeAction)ValueTypeActions.getTypeAction(VT); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | /// isTypeLegal - Return true if this type is legal on this target. |
| 127 | /// |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 128 | bool isTypeLegal(MVT VT) const { |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 129 | return getTypeAction(VT) == Legal; |
| 130 | } |
| 131 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 132 | void LegalizeDAG(); |
| 133 | |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 134 | private: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 135 | /// HandleOp - Legalize, Promote, or Expand the specified operand as |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 136 | /// appropriate for its type. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 137 | void HandleOp(SDValue Op); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 138 | |
| 139 | /// LegalizeOp - We know that the specified value has a legal type. |
| 140 | /// Recursively ensure that the operands have legal types, then return the |
| 141 | /// result. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 142 | SDValue LegalizeOp(SDValue O); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 143 | |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 144 | /// UnrollVectorOp - We know that the given vector has a legal type, however |
| 145 | /// the operation it performs is not legal and is an operation that we have |
| 146 | /// no way of lowering. "Unroll" the vector, splitting out the scalars and |
| 147 | /// operating on each element individually. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 148 | SDValue UnrollVectorOp(SDValue O); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 149 | |
| 150 | /// PerformInsertVectorEltInMemory - Some target cannot handle a variable |
| 151 | /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it |
| 152 | /// is necessary to spill the vector being inserted into to memory, perform |
| 153 | /// the insert there, and then read the result back. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 154 | SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, |
| 155 | SDValue Idx); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 156 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 157 | /// PromoteOp - Given an operation that produces a value in an invalid type, |
| 158 | /// promote it to compute the value into a larger type. The produced value |
| 159 | /// will have the correct bits for the low portion of the register, but no |
| 160 | /// guarantee is made about the top bits: it may be zero, sign-extended, or |
| 161 | /// garbage. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 162 | SDValue PromoteOp(SDValue O); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 163 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 164 | /// ExpandOp - Expand the specified SDValue into its two component pieces |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 165 | /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, |
| 166 | /// the LegalizeNodes map is filled in for any results that are not expanded, |
| 167 | /// the ExpandedNodes map is filled in for any results that are expanded, and |
| 168 | /// the Lo/Hi values are returned. This applies to integer types and Vector |
| 169 | /// types. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 170 | void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 171 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 172 | /// SplitVectorOp - Given an operand of vector type, break it down into |
| 173 | /// two smaller values. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 174 | void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 175 | |
Dan Gohman | 89b20c0 | 2007-06-27 14:06:22 +0000 | [diff] [blame] | 176 | /// ScalarizeVectorOp - Given an operand of single-element vector type |
| 177 | /// (e.g. v1f32), convert it into the equivalent operation that returns a |
| 178 | /// scalar (e.g. f32) value. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 179 | SDValue ScalarizeVectorOp(SDValue O); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 180 | |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 181 | /// isShuffleLegal - Return non-null if a vector shuffle is legal with the |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 182 | /// specified mask and type. Targets can specify exactly which masks they |
| 183 | /// support and the code generator is tasked with not creating illegal masks. |
| 184 | /// |
| 185 | /// Note that this will also return true for shuffles that are promoted to a |
| 186 | /// different type. |
| 187 | /// |
| 188 | /// If this is a legal shuffle, this method returns the (possibly promoted) |
| 189 | /// build_vector Mask. If it's not a legal shuffle, it returns null. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 190 | SDNode *isShuffleLegal(MVT VT, SDValue Mask) const; |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 191 | |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 192 | bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest, |
Chris Lattner | 00755df | 2007-02-04 00:27:56 +0000 | [diff] [blame] | 193 | SmallPtrSet<SDNode*, 32> &NodesLeadingTo); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 194 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 195 | void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC); |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 196 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 197 | SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned, |
| 198 | SDValue &Hi); |
| 199 | SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source); |
Chris Lattner | cad063f | 2005-07-16 00:19:57 +0000 | [diff] [blame] | 200 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 201 | SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT); |
| 202 | SDValue ExpandBUILD_VECTOR(SDNode *Node); |
| 203 | SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node); |
| 204 | SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT); |
| 205 | SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned); |
| 206 | SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned); |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 207 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 208 | SDValue ExpandBSWAP(SDValue Op); |
| 209 | SDValue ExpandBitCount(unsigned Opc, SDValue Op); |
| 210 | bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt, |
| 211 | SDValue &Lo, SDValue &Hi); |
| 212 | void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt, |
| 213 | SDValue &Lo, SDValue &Hi); |
Chris Lattner | b9fa3bc | 2005-05-12 04:49:08 +0000 | [diff] [blame] | 214 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 215 | SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op); |
| 216 | SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 217 | }; |
| 218 | } |
| 219 | |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 220 | /// isVectorShuffleLegal - Return true if a vector shuffle is legal with the |
| 221 | /// specified mask and type. Targets can specify exactly which masks they |
| 222 | /// support and the code generator is tasked with not creating illegal masks. |
| 223 | /// |
| 224 | /// Note that this will also return true for shuffles that are promoted to a |
| 225 | /// different type. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 226 | SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDValue Mask) const { |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 227 | switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) { |
| 228 | default: return 0; |
| 229 | case TargetLowering::Legal: |
| 230 | case TargetLowering::Custom: |
| 231 | break; |
| 232 | case TargetLowering::Promote: { |
| 233 | // If this is promoted to a different type, convert the shuffle mask and |
| 234 | // ask if it is legal in the promoted type! |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 235 | MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 236 | MVT EltVT = NVT.getVectorElementType(); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 237 | |
| 238 | // If we changed # elements, change the shuffle mask. |
| 239 | unsigned NumEltsGrowth = |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 240 | NVT.getVectorNumElements() / VT.getVectorNumElements(); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 241 | assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!"); |
| 242 | if (NumEltsGrowth > 1) { |
| 243 | // Renumber the elements. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 244 | SmallVector<SDValue, 8> Ops; |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 245 | for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 246 | SDValue InOp = Mask.getOperand(i); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 247 | for (unsigned j = 0; j != NumEltsGrowth; ++j) { |
| 248 | if (InOp.getOpcode() == ISD::UNDEF) |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 249 | Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT)); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 250 | else { |
| 251 | unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue(); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 252 | Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, EltVT)); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 253 | } |
| 254 | } |
| 255 | } |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 256 | Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size()); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 257 | } |
| 258 | VT = NVT; |
| 259 | break; |
| 260 | } |
| 261 | } |
| 262 | return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0; |
| 263 | } |
| 264 | |
Chris Lattner | 9c32d3b | 2005-01-23 04:42:50 +0000 | [diff] [blame] | 265 | SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag) |
| 266 | : TLI(dag.getTargetLoweringInfo()), DAG(dag), |
| 267 | ValueTypeActions(TLI.getValueTypeActions()) { |
Nate Begeman | 6a64861 | 2005-11-29 05:45:29 +0000 | [diff] [blame] | 268 | assert(MVT::LAST_VALUETYPE <= 32 && |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 269 | "Too many value types for ValueTypeActions to hold!"); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 270 | } |
| 271 | |
Chris Lattner | e10e6f7 | 2007-06-18 21:28:10 +0000 | [diff] [blame] | 272 | /// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order |
| 273 | /// contains all of a nodes operands before it contains the node. |
| 274 | static void ComputeTopDownOrdering(SelectionDAG &DAG, |
| 275 | SmallVector<SDNode*, 64> &Order) { |
| 276 | |
| 277 | DenseMap<SDNode*, unsigned> Visited; |
| 278 | std::vector<SDNode*> Worklist; |
| 279 | Worklist.reserve(128); |
Chris Lattner | 32fca00 | 2005-10-06 01:20:27 +0000 | [diff] [blame] | 280 | |
Chris Lattner | e10e6f7 | 2007-06-18 21:28:10 +0000 | [diff] [blame] | 281 | // Compute ordering from all of the leaves in the graphs, those (like the |
| 282 | // entry node) that have no operands. |
| 283 | for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(), |
| 284 | E = DAG.allnodes_end(); I != E; ++I) { |
| 285 | if (I->getNumOperands() == 0) { |
| 286 | Visited[I] = 0 - 1U; |
| 287 | Worklist.push_back(I); |
| 288 | } |
Chris Lattner | 32fca00 | 2005-10-06 01:20:27 +0000 | [diff] [blame] | 289 | } |
| 290 | |
Chris Lattner | e10e6f7 | 2007-06-18 21:28:10 +0000 | [diff] [blame] | 291 | while (!Worklist.empty()) { |
| 292 | SDNode *N = Worklist.back(); |
| 293 | Worklist.pop_back(); |
| 294 | |
| 295 | if (++Visited[N] != N->getNumOperands()) |
| 296 | continue; // Haven't visited all operands yet |
| 297 | |
| 298 | Order.push_back(N); |
| 299 | |
| 300 | // Now that we have N in, add anything that uses it if all of their operands |
| 301 | // are now done. |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 302 | Worklist.insert(Worklist.end(), N->use_begin(), N->use_end()); |
Chris Lattner | e10e6f7 | 2007-06-18 21:28:10 +0000 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | assert(Order.size() == Visited.size() && |
Dan Gohman | 3461cc9 | 2008-06-20 17:15:19 +0000 | [diff] [blame] | 306 | Order.size() == DAG.allnodes_size() && |
Chris Lattner | e10e6f7 | 2007-06-18 21:28:10 +0000 | [diff] [blame] | 307 | "Error: DAG is cyclic!"); |
Chris Lattner | 32fca00 | 2005-10-06 01:20:27 +0000 | [diff] [blame] | 308 | } |
| 309 | |
Chris Lattner | 1618beb | 2005-07-29 00:11:56 +0000 | [diff] [blame] | 310 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 311 | void SelectionDAGLegalize::LegalizeDAG() { |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 312 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 313 | IsLegalizingCall = false; |
| 314 | |
Chris Lattner | ab510a7 | 2005-10-02 17:49:46 +0000 | [diff] [blame] | 315 | // The legalize process is inherently a bottom-up recursive process (users |
| 316 | // legalize their uses before themselves). Given infinite stack space, we |
| 317 | // could just start legalizing on the root and traverse the whole graph. In |
| 318 | // practice however, this causes us to run out of stack space on large basic |
Chris Lattner | 32fca00 | 2005-10-06 01:20:27 +0000 | [diff] [blame] | 319 | // blocks. To avoid this problem, compute an ordering of the nodes where each |
| 320 | // node is only legalized after all of its operands are legalized. |
Chris Lattner | 0ed4417 | 2007-02-04 01:20:02 +0000 | [diff] [blame] | 321 | SmallVector<SDNode*, 64> Order; |
Chris Lattner | e10e6f7 | 2007-06-18 21:28:10 +0000 | [diff] [blame] | 322 | ComputeTopDownOrdering(DAG, Order); |
Chris Lattner | ab510a7 | 2005-10-02 17:49:46 +0000 | [diff] [blame] | 323 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 324 | for (unsigned i = 0, e = Order.size(); i != e; ++i) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 325 | HandleOp(SDValue(Order[i], 0)); |
Chris Lattner | 32fca00 | 2005-10-06 01:20:27 +0000 | [diff] [blame] | 326 | |
| 327 | // Finally, it's possible the root changed. Get the new root. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 328 | SDValue OldRoot = DAG.getRoot(); |
Chris Lattner | 32fca00 | 2005-10-06 01:20:27 +0000 | [diff] [blame] | 329 | assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?"); |
| 330 | DAG.setRoot(LegalizedNodes[OldRoot]); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 331 | |
| 332 | ExpandedNodes.clear(); |
| 333 | LegalizedNodes.clear(); |
Chris Lattner | 71c42a0 | 2005-01-16 01:11:45 +0000 | [diff] [blame] | 334 | PromotedNodes.clear(); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 335 | SplitNodes.clear(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 336 | ScalarizedNodes.clear(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 337 | |
| 338 | // Remove dead nodes now. |
Chris Lattner | 190a418 | 2006-08-04 17:45:20 +0000 | [diff] [blame] | 339 | DAG.RemoveDeadNodes(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 340 | } |
| 341 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 342 | |
| 343 | /// FindCallEndFromCallStart - Given a chained node that is part of a call |
| 344 | /// sequence, find the CALLSEQ_END node that terminates the call sequence. |
| 345 | static SDNode *FindCallEndFromCallStart(SDNode *Node) { |
| 346 | if (Node->getOpcode() == ISD::CALLSEQ_END) |
| 347 | return Node; |
| 348 | if (Node->use_empty()) |
| 349 | return 0; // No CallSeqEnd |
| 350 | |
| 351 | // The chain is usually at the end. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 352 | SDValue TheChain(Node, Node->getNumValues()-1); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 353 | if (TheChain.getValueType() != MVT::Other) { |
| 354 | // Sometimes it's at the beginning. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 355 | TheChain = SDValue(Node, 0); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 356 | if (TheChain.getValueType() != MVT::Other) { |
| 357 | // Otherwise, hunt for it. |
| 358 | for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i) |
| 359 | if (Node->getValueType(i) == MVT::Other) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 360 | TheChain = SDValue(Node, i); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 361 | break; |
| 362 | } |
| 363 | |
| 364 | // Otherwise, we walked into a node without a chain. |
| 365 | if (TheChain.getValueType() != MVT::Other) |
| 366 | return 0; |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | for (SDNode::use_iterator UI = Node->use_begin(), |
| 371 | E = Node->use_end(); UI != E; ++UI) { |
| 372 | |
| 373 | // Make sure to only follow users of our token chain. |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 374 | SDNode *User = *UI; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 375 | for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) |
| 376 | if (User->getOperand(i) == TheChain) |
| 377 | if (SDNode *Result = FindCallEndFromCallStart(User)) |
| 378 | return Result; |
| 379 | } |
| 380 | return 0; |
| 381 | } |
| 382 | |
| 383 | /// FindCallStartFromCallEnd - Given a chained node that is part of a call |
| 384 | /// sequence, find the CALLSEQ_START node that initiates the call sequence. |
| 385 | static SDNode *FindCallStartFromCallEnd(SDNode *Node) { |
| 386 | assert(Node && "Didn't find callseq_start for a call??"); |
| 387 | if (Node->getOpcode() == ISD::CALLSEQ_START) return Node; |
| 388 | |
| 389 | assert(Node->getOperand(0).getValueType() == MVT::Other && |
| 390 | "Node doesn't have a token chain argument!"); |
| 391 | return FindCallStartFromCallEnd(Node->getOperand(0).Val); |
| 392 | } |
| 393 | |
| 394 | /// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to |
| 395 | /// see if any uses can reach Dest. If no dest operands can get to dest, |
| 396 | /// legalize them, legalize ourself, and return false, otherwise, return true. |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 397 | /// |
| 398 | /// Keep track of the nodes we fine that actually do lead to Dest in |
| 399 | /// NodesLeadingTo. This avoids retraversing them exponential number of times. |
| 400 | /// |
| 401 | bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest, |
Chris Lattner | 00755df | 2007-02-04 00:27:56 +0000 | [diff] [blame] | 402 | SmallPtrSet<SDNode*, 32> &NodesLeadingTo) { |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 403 | if (N == Dest) return true; // N certainly leads to Dest :) |
| 404 | |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 405 | // If we've already processed this node and it does lead to Dest, there is no |
| 406 | // need to reprocess it. |
| 407 | if (NodesLeadingTo.count(N)) return true; |
| 408 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 409 | // If the first result of this node has been already legalized, then it cannot |
| 410 | // reach N. |
| 411 | switch (getTypeAction(N->getValueType(0))) { |
| 412 | case Legal: |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 413 | if (LegalizedNodes.count(SDValue(N, 0))) return false; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 414 | break; |
| 415 | case Promote: |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 416 | if (PromotedNodes.count(SDValue(N, 0))) return false; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 417 | break; |
| 418 | case Expand: |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 419 | if (ExpandedNodes.count(SDValue(N, 0))) return false; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 420 | break; |
| 421 | } |
| 422 | |
| 423 | // Okay, this node has not already been legalized. Check and legalize all |
| 424 | // operands. If none lead to Dest, then we can legalize this node. |
| 425 | bool OperandsLeadToDest = false; |
| 426 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) |
| 427 | OperandsLeadToDest |= // If an operand leads to Dest, so do we. |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 428 | LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 429 | |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 430 | if (OperandsLeadToDest) { |
| 431 | NodesLeadingTo.insert(N); |
| 432 | return true; |
| 433 | } |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 434 | |
| 435 | // Okay, this node looks safe, legalize it and return false. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 436 | HandleOp(SDValue(N, 0)); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 437 | return false; |
| 438 | } |
| 439 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 440 | /// HandleOp - Legalize, Promote, or Expand the specified operand as |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 441 | /// appropriate for its type. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 442 | void SelectionDAGLegalize::HandleOp(SDValue Op) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 443 | MVT VT = Op.getValueType(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 444 | switch (getTypeAction(VT)) { |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 445 | default: assert(0 && "Bad type action!"); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 446 | case Legal: (void)LegalizeOp(Op); break; |
| 447 | case Promote: (void)PromoteOp(Op); break; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 448 | case Expand: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 449 | if (!VT.isVector()) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 450 | // If this is an illegal scalar, expand it into its two component |
| 451 | // pieces. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 452 | SDValue X, Y; |
Chris Lattner | 09ec1b0 | 2007-08-25 01:00:22 +0000 | [diff] [blame] | 453 | if (Op.getOpcode() == ISD::TargetConstant) |
| 454 | break; // Allow illegal target nodes. |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 455 | ExpandOp(Op, X, Y); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 456 | } else if (VT.getVectorNumElements() == 1) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 457 | // If this is an illegal single element vector, convert it to a |
| 458 | // scalar operation. |
| 459 | (void)ScalarizeVectorOp(Op); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 460 | } else { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 461 | // Otherwise, this is an illegal multiple element vector. |
| 462 | // Split it in half and legalize both parts. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 463 | SDValue X, Y; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 464 | SplitVectorOp(Op, X, Y); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 465 | } |
| 466 | break; |
| 467 | } |
| 468 | } |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 469 | |
Evan Cheng | 9f87788 | 2006-12-13 20:57:08 +0000 | [diff] [blame] | 470 | /// ExpandConstantFP - Expands the ConstantFP node to an integer constant or |
| 471 | /// a load from the constant pool. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 472 | static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP, |
Evan Cheng | 279101e | 2006-12-12 22:19:28 +0000 | [diff] [blame] | 473 | SelectionDAG &DAG, TargetLowering &TLI) { |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 474 | bool Extend = false; |
| 475 | |
| 476 | // If a FP immediate is precise when represented as a float and if the |
| 477 | // target can do an extending load from float to double, we put it into |
| 478 | // the constant pool as a float, even if it's is statically typed as a |
Chris Lattner | aa2acbb | 2008-03-05 06:46:58 +0000 | [diff] [blame] | 479 | // double. This shrinks FP constants and canonicalizes them for targets where |
| 480 | // an FP extending load is the same cost as a normal load (such as on the x87 |
| 481 | // fp stack or PPC FP unit). |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 482 | MVT VT = CFP->getValueType(0); |
Chris Lattner | 02a260a | 2008-04-20 00:41:09 +0000 | [diff] [blame] | 483 | ConstantFP *LLVMC = ConstantFP::get(CFP->getValueAPF()); |
Evan Cheng | 9f87788 | 2006-12-13 20:57:08 +0000 | [diff] [blame] | 484 | if (!UseCP) { |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 485 | if (VT!=MVT::f64 && VT!=MVT::f32) |
| 486 | assert(0 && "Invalid type expansion"); |
Dan Gohman | 6cf9b8a | 2008-03-11 00:11:06 +0000 | [diff] [blame] | 487 | return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt(), |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 488 | (VT == MVT::f64) ? MVT::i64 : MVT::i32); |
Evan Cheng | 279101e | 2006-12-12 22:19:28 +0000 | [diff] [blame] | 489 | } |
| 490 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 491 | MVT OrigVT = VT; |
| 492 | MVT SVT = VT; |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 493 | while (SVT != MVT::f32) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 494 | SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1); |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 495 | if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) && |
| 496 | // Only do this if the target has a native EXTLOAD instruction from |
| 497 | // smaller type. |
Evan Cheng | 6fd599f | 2008-03-05 01:30:59 +0000 | [diff] [blame] | 498 | TLI.isLoadXLegal(ISD::EXTLOAD, SVT) && |
Chris Lattner | aa2acbb | 2008-03-05 06:46:58 +0000 | [diff] [blame] | 499 | TLI.ShouldShrinkFPConstant(OrigVT)) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 500 | const Type *SType = SVT.getTypeForMVT(); |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 501 | LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType)); |
| 502 | VT = SVT; |
| 503 | Extend = true; |
| 504 | } |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 505 | } |
| 506 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 507 | SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy()); |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 508 | if (Extend) |
| 509 | return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(), |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 510 | CPIdx, PseudoSourceValue::getConstantPool(), |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 511 | 0, VT); |
| 512 | return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx, |
| 513 | PseudoSourceValue::getConstantPool(), 0); |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 514 | } |
| 515 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 516 | |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 517 | /// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise |
| 518 | /// operations. |
| 519 | static |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 520 | SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT, |
| 521 | SelectionDAG &DAG, TargetLowering &TLI) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 522 | MVT VT = Node->getValueType(0); |
| 523 | MVT SrcVT = Node->getOperand(1).getValueType(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 524 | assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) && |
| 525 | "fcopysign expansion only supported for f32 and f64"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 526 | MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32; |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 527 | |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 528 | // First get the sign bit of second operand. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 529 | SDValue Mask1 = (SrcVT == MVT::f64) |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 530 | ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT) |
| 531 | : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT); |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 532 | Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 533 | SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1)); |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 534 | SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1); |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 535 | // Shift right or sign-extend it if the two operands have different types. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 536 | int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits(); |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 537 | if (SizeDiff > 0) { |
| 538 | SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit, |
| 539 | DAG.getConstant(SizeDiff, TLI.getShiftAmountTy())); |
| 540 | SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit); |
Chris Lattner | c563e1d | 2008-07-10 23:46:13 +0000 | [diff] [blame] | 541 | } else if (SizeDiff < 0) { |
| 542 | SignBit = DAG.getNode(ISD::ZERO_EXTEND, NVT, SignBit); |
| 543 | SignBit = DAG.getNode(ISD::SHL, NVT, SignBit, |
| 544 | DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy())); |
| 545 | } |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 546 | |
| 547 | // Clear the sign bit of first operand. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 548 | SDValue Mask2 = (VT == MVT::f64) |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 549 | ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT) |
| 550 | : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT); |
| 551 | Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 552 | SDValue Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0)); |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 553 | Result = DAG.getNode(ISD::AND, NVT, Result, Mask2); |
| 554 | |
| 555 | // Or the value with the sign bit. |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 556 | Result = DAG.getNode(ISD::OR, NVT, Result, SignBit); |
| 557 | return Result; |
| 558 | } |
| 559 | |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 560 | /// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores. |
| 561 | static |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 562 | SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG, |
| 563 | TargetLowering &TLI) { |
| 564 | SDValue Chain = ST->getChain(); |
| 565 | SDValue Ptr = ST->getBasePtr(); |
| 566 | SDValue Val = ST->getValue(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 567 | MVT VT = Val.getValueType(); |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 568 | int Alignment = ST->getAlignment(); |
| 569 | int SVOffset = ST->getSrcValueOffset(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 570 | if (ST->getMemoryVT().isFloatingPoint() || |
| 571 | ST->getMemoryVT().isVector()) { |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 572 | // Expand to a bitconvert of the value to the integer type of the |
| 573 | // same size, then a (misaligned) int store. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 574 | MVT intVT; |
| 575 | if (VT.is128BitVector() || VT == MVT::ppcf128 || VT == MVT::f128) |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 576 | intVT = MVT::i128; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 577 | else if (VT.is64BitVector() || VT==MVT::f64) |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 578 | intVT = MVT::i64; |
| 579 | else if (VT==MVT::f32) |
| 580 | intVT = MVT::i32; |
| 581 | else |
Dale Johannesen | cd9f174 | 2008-02-28 18:36:51 +0000 | [diff] [blame] | 582 | assert(0 && "Unaligned store of unsupported type"); |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 583 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 584 | SDValue Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val); |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 585 | return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(), |
| 586 | SVOffset, ST->isVolatile(), Alignment); |
| 587 | } |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 588 | assert(ST->getMemoryVT().isInteger() && |
| 589 | !ST->getMemoryVT().isVector() && |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 590 | "Unaligned store of unknown type."); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 591 | // Get the half-size VT |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 592 | MVT NewStoredVT = |
| 593 | (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1); |
| 594 | int NumBits = NewStoredVT.getSizeInBits(); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 595 | int IncrementSize = NumBits / 8; |
| 596 | |
| 597 | // Divide the stored value in two parts. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 598 | SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy()); |
| 599 | SDValue Lo = Val; |
| 600 | SDValue Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 601 | |
| 602 | // Store the two parts |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 603 | SDValue Store1, Store2; |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 604 | Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr, |
| 605 | ST->getSrcValue(), SVOffset, NewStoredVT, |
| 606 | ST->isVolatile(), Alignment); |
| 607 | Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr, |
| 608 | DAG.getConstant(IncrementSize, TLI.getPointerTy())); |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 609 | Alignment = MinAlign(Alignment, IncrementSize); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 610 | Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr, |
| 611 | ST->getSrcValue(), SVOffset + IncrementSize, |
| 612 | NewStoredVT, ST->isVolatile(), Alignment); |
| 613 | |
| 614 | return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2); |
| 615 | } |
| 616 | |
| 617 | /// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads. |
| 618 | static |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 619 | SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG, |
| 620 | TargetLowering &TLI) { |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 621 | int SVOffset = LD->getSrcValueOffset(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 622 | SDValue Chain = LD->getChain(); |
| 623 | SDValue Ptr = LD->getBasePtr(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 624 | MVT VT = LD->getValueType(0); |
| 625 | MVT LoadedVT = LD->getMemoryVT(); |
| 626 | if (VT.isFloatingPoint() || VT.isVector()) { |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 627 | // Expand to a (misaligned) integer load of the same size, |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 628 | // then bitconvert to floating point or vector. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 629 | MVT intVT; |
| 630 | if (LoadedVT.is128BitVector() || |
Dale Johannesen | 3c8b59c | 2008-03-01 03:40:57 +0000 | [diff] [blame] | 631 | LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128) |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 632 | intVT = MVT::i128; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 633 | else if (LoadedVT.is64BitVector() || LoadedVT == MVT::f64) |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 634 | intVT = MVT::i64; |
Chris Lattner | e400af8 | 2007-11-19 21:38:03 +0000 | [diff] [blame] | 635 | else if (LoadedVT == MVT::f32) |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 636 | intVT = MVT::i32; |
| 637 | else |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 638 | assert(0 && "Unaligned load of unsupported type"); |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 639 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 640 | SDValue newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(), |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 641 | SVOffset, LD->isVolatile(), |
| 642 | LD->getAlignment()); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 643 | SDValue Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 644 | if (VT.isFloatingPoint() && LoadedVT != VT) |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 645 | Result = DAG.getNode(ISD::FP_EXTEND, VT, Result); |
| 646 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 647 | SDValue Ops[] = { Result, Chain }; |
Duncan Sands | 4bdcb61 | 2008-07-02 17:40:58 +0000 | [diff] [blame] | 648 | return DAG.getMergeValues(Ops, 2); |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 649 | } |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 650 | assert(LoadedVT.isInteger() && !LoadedVT.isVector() && |
Chris Lattner | e400af8 | 2007-11-19 21:38:03 +0000 | [diff] [blame] | 651 | "Unaligned load of unsupported type."); |
| 652 | |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 653 | // Compute the new VT that is half the size of the old one. This is an |
| 654 | // integer MVT. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 655 | unsigned NumBits = LoadedVT.getSizeInBits(); |
| 656 | MVT NewLoadedVT; |
| 657 | NewLoadedVT = MVT::getIntegerVT(NumBits/2); |
Chris Lattner | e400af8 | 2007-11-19 21:38:03 +0000 | [diff] [blame] | 658 | NumBits >>= 1; |
| 659 | |
| 660 | unsigned Alignment = LD->getAlignment(); |
| 661 | unsigned IncrementSize = NumBits / 8; |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 662 | ISD::LoadExtType HiExtType = LD->getExtensionType(); |
| 663 | |
| 664 | // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD. |
| 665 | if (HiExtType == ISD::NON_EXTLOAD) |
| 666 | HiExtType = ISD::ZEXTLOAD; |
| 667 | |
| 668 | // Load the value in two parts |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 669 | SDValue Lo, Hi; |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 670 | if (TLI.isLittleEndian()) { |
| 671 | Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(), |
| 672 | SVOffset, NewLoadedVT, LD->isVolatile(), Alignment); |
| 673 | Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr, |
| 674 | DAG.getConstant(IncrementSize, TLI.getPointerTy())); |
| 675 | Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), |
| 676 | SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(), |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 677 | MinAlign(Alignment, IncrementSize)); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 678 | } else { |
| 679 | Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset, |
| 680 | NewLoadedVT,LD->isVolatile(), Alignment); |
| 681 | Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr, |
| 682 | DAG.getConstant(IncrementSize, TLI.getPointerTy())); |
| 683 | Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(), |
| 684 | SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(), |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 685 | MinAlign(Alignment, IncrementSize)); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 686 | } |
| 687 | |
| 688 | // aggregate the two parts |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 689 | SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy()); |
| 690 | SDValue Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 691 | Result = DAG.getNode(ISD::OR, VT, Result, Lo); |
| 692 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 693 | SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1), |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 694 | Hi.getValue(1)); |
| 695 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 696 | SDValue Ops[] = { Result, TF }; |
Duncan Sands | 4bdcb61 | 2008-07-02 17:40:58 +0000 | [diff] [blame] | 697 | return DAG.getMergeValues(Ops, 2); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 698 | } |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 699 | |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 700 | /// UnrollVectorOp - We know that the given vector has a legal type, however |
| 701 | /// the operation it performs is not legal and is an operation that we have |
| 702 | /// no way of lowering. "Unroll" the vector, splitting out the scalars and |
| 703 | /// operating on each element individually. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 704 | SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 705 | MVT VT = Op.getValueType(); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 706 | assert(isTypeLegal(VT) && |
| 707 | "Caller should expand or promote operands that are not legal!"); |
| 708 | assert(Op.Val->getNumValues() == 1 && |
| 709 | "Can't unroll a vector with multiple results!"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 710 | unsigned NE = VT.getVectorNumElements(); |
| 711 | MVT EltVT = VT.getVectorElementType(); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 712 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 713 | SmallVector<SDValue, 8> Scalars; |
| 714 | SmallVector<SDValue, 4> Operands(Op.getNumOperands()); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 715 | for (unsigned i = 0; i != NE; ++i) { |
| 716 | for (unsigned j = 0; j != Op.getNumOperands(); ++j) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 717 | SDValue Operand = Op.getOperand(j); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 718 | MVT OperandVT = Operand.getValueType(); |
| 719 | if (OperandVT.isVector()) { |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 720 | // A vector operand; extract a single element. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 721 | MVT OperandEltVT = OperandVT.getVectorElementType(); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 722 | Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, |
| 723 | OperandEltVT, |
| 724 | Operand, |
| 725 | DAG.getConstant(i, MVT::i32)); |
| 726 | } else { |
| 727 | // A scalar operand; just use it as is. |
| 728 | Operands[j] = Operand; |
| 729 | } |
| 730 | } |
| 731 | Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT, |
| 732 | &Operands[0], Operands.size())); |
| 733 | } |
| 734 | |
| 735 | return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size()); |
| 736 | } |
| 737 | |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 738 | /// GetFPLibCall - Return the right libcall for the given floating point type. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 739 | static RTLIB::Libcall GetFPLibCall(MVT VT, |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 740 | RTLIB::Libcall Call_F32, |
| 741 | RTLIB::Libcall Call_F64, |
| 742 | RTLIB::Libcall Call_F80, |
| 743 | RTLIB::Libcall Call_PPCF128) { |
| 744 | return |
| 745 | VT == MVT::f32 ? Call_F32 : |
| 746 | VT == MVT::f64 ? Call_F64 : |
| 747 | VT == MVT::f80 ? Call_F80 : |
| 748 | VT == MVT::ppcf128 ? Call_PPCF128 : |
| 749 | RTLIB::UNKNOWN_LIBCALL; |
| 750 | } |
| 751 | |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 752 | /// PerformInsertVectorEltInMemory - Some target cannot handle a variable |
| 753 | /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it |
| 754 | /// is necessary to spill the vector being inserted into to memory, perform |
| 755 | /// the insert there, and then read the result back. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 756 | SDValue SelectionDAGLegalize:: |
| 757 | PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx) { |
| 758 | SDValue Tmp1 = Vec; |
| 759 | SDValue Tmp2 = Val; |
| 760 | SDValue Tmp3 = Idx; |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 761 | |
| 762 | // If the target doesn't support this, we have to spill the input vector |
| 763 | // to a temporary stack slot, update the element, then reload it. This is |
| 764 | // badness. We could also load the value into a vector register (either |
| 765 | // with a "move to register" or "extload into register" instruction, then |
| 766 | // permute it into place, if the idx is a constant and if the idx is |
| 767 | // supported by the target. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 768 | MVT VT = Tmp1.getValueType(); |
| 769 | MVT EltVT = VT.getVectorElementType(); |
| 770 | MVT IdxVT = Tmp3.getValueType(); |
| 771 | MVT PtrVT = TLI.getPointerTy(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 772 | SDValue StackPtr = DAG.CreateStackTemporary(VT); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 773 | |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 774 | int SPFI = cast<FrameIndexSDNode>(StackPtr.Val)->getIndex(); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 775 | |
| 776 | // Store the vector. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 777 | SDValue Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr, |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 778 | PseudoSourceValue::getFixedStack(SPFI), 0); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 779 | |
| 780 | // Truncate or zero extend offset to target pointer type. |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 781 | unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND; |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 782 | Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3); |
| 783 | // Add the offset to the index. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 784 | unsigned EltSize = EltVT.getSizeInBits()/8; |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 785 | Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 786 | SDValue StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 787 | // Store the scalar value. |
| 788 | Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2, |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 789 | PseudoSourceValue::getFixedStack(SPFI), 0, EltVT); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 790 | // Load the updated vector. |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 791 | return DAG.getLoad(VT, Ch, StackPtr, |
| 792 | PseudoSourceValue::getFixedStack(SPFI), 0); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 793 | } |
| 794 | |
Dan Gohman | a346615 | 2007-07-13 20:14:11 +0000 | [diff] [blame] | 795 | /// LegalizeOp - We know that the specified value has a legal type, and |
| 796 | /// that its operands are legal. Now ensure that the operation itself |
| 797 | /// is legal, recursively ensuring that the operands' operations remain |
| 798 | /// legal. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 799 | SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) { |
Chris Lattner | 09ec1b0 | 2007-08-25 01:00:22 +0000 | [diff] [blame] | 800 | if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes. |
| 801 | return Op; |
| 802 | |
Chris Lattner | c9c60f6 | 2005-08-24 16:35:28 +0000 | [diff] [blame] | 803 | assert(isTypeLegal(Op.getValueType()) && |
Chris Lattner | e3304a3 | 2005-01-08 20:35:13 +0000 | [diff] [blame] | 804 | "Caller should expand or promote operands that are not legal!"); |
Chris Lattner | 45982da | 2005-05-12 16:53:42 +0000 | [diff] [blame] | 805 | SDNode *Node = Op.Val; |
Chris Lattner | e3304a3 | 2005-01-08 20:35:13 +0000 | [diff] [blame] | 806 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 807 | // If this operation defines any values that cannot be represented in a |
Chris Lattner | e3304a3 | 2005-01-08 20:35:13 +0000 | [diff] [blame] | 808 | // register on this target, make sure to expand or promote them. |
Chris Lattner | 45982da | 2005-05-12 16:53:42 +0000 | [diff] [blame] | 809 | if (Node->getNumValues() > 1) { |
| 810 | for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 811 | if (getTypeAction(Node->getValueType(i)) != Legal) { |
| 812 | HandleOp(Op.getValue(i)); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 813 | assert(LegalizedNodes.count(Op) && |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 814 | "Handling didn't add legal operands!"); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 815 | return LegalizedNodes[Op]; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 816 | } |
| 817 | } |
| 818 | |
Chris Lattner | 45982da | 2005-05-12 16:53:42 +0000 | [diff] [blame] | 819 | // Note that LegalizeOp may be reentered even from single-use nodes, which |
| 820 | // means that we always must cache transformed nodes. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 821 | DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op); |
Chris Lattner | e1bd822 | 2005-01-11 05:57:22 +0000 | [diff] [blame] | 822 | if (I != LegalizedNodes.end()) return I->second; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 823 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 824 | SDValue Tmp1, Tmp2, Tmp3, Tmp4; |
| 825 | SDValue Result = Op; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 826 | bool isCustom = false; |
| 827 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 828 | switch (Node->getOpcode()) { |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 829 | case ISD::FrameIndex: |
| 830 | case ISD::EntryToken: |
| 831 | case ISD::Register: |
| 832 | case ISD::BasicBlock: |
| 833 | case ISD::TargetFrameIndex: |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 834 | case ISD::TargetJumpTable: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 835 | case ISD::TargetConstant: |
Chris Lattner | 3181a77 | 2006-01-29 06:26:56 +0000 | [diff] [blame] | 836 | case ISD::TargetConstantFP: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 837 | case ISD::TargetConstantPool: |
| 838 | case ISD::TargetGlobalAddress: |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 839 | case ISD::TargetGlobalTLSAddress: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 840 | case ISD::TargetExternalSymbol: |
| 841 | case ISD::VALUETYPE: |
| 842 | case ISD::SRCVALUE: |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 843 | case ISD::MEMOPERAND: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 844 | case ISD::CONDCODE: |
Duncan Sands | 276dcbd | 2008-03-21 09:14:45 +0000 | [diff] [blame] | 845 | case ISD::ARG_FLAGS: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 846 | // Primitives must all be legal. |
Duncan Sands | a7c97a7 | 2007-10-16 09:07:20 +0000 | [diff] [blame] | 847 | assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) && |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 848 | "This must be legal!"); |
| 849 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 850 | default: |
Chris Lattner | d73cc5d | 2005-05-14 06:34:48 +0000 | [diff] [blame] | 851 | if (Node->getOpcode() >= ISD::BUILTIN_OP_END) { |
| 852 | // If this is a target node, legalize it by legalizing the operands then |
| 853 | // passing it through. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 854 | SmallVector<SDValue, 8> Ops; |
Chris Lattner | c5d7d7c | 2006-05-17 18:00:08 +0000 | [diff] [blame] | 855 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) |
Chris Lattner | d73cc5d | 2005-05-14 06:34:48 +0000 | [diff] [blame] | 856 | Ops.push_back(LegalizeOp(Node->getOperand(i))); |
Chris Lattner | c5d7d7c | 2006-05-17 18:00:08 +0000 | [diff] [blame] | 857 | |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 858 | Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size()); |
Chris Lattner | d73cc5d | 2005-05-14 06:34:48 +0000 | [diff] [blame] | 859 | |
| 860 | for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) |
| 861 | AddLegalizedOperand(Op.getValue(i), Result.getValue(i)); |
| 862 | return Result.getValue(Op.ResNo); |
| 863 | } |
| 864 | // Otherwise this is an unhandled builtin node. splat. |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 865 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 866 | cerr << "NODE: "; Node->dump(&DAG); cerr << "\n"; |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 867 | #endif |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 868 | assert(0 && "Do not know how to legalize this operator!"); |
| 869 | abort(); |
Lauro Ramos Venancio | 0d3b678 | 2007-04-20 23:02:39 +0000 | [diff] [blame] | 870 | case ISD::GLOBAL_OFFSET_TABLE: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 871 | case ISD::GlobalAddress: |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 872 | case ISD::GlobalTLSAddress: |
Chris Lattner | 03c0cf8 | 2005-01-07 21:45:56 +0000 | [diff] [blame] | 873 | case ISD::ExternalSymbol: |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 874 | case ISD::ConstantPool: |
| 875 | case ISD::JumpTable: // Nothing to do. |
Chris Lattner | 0c8fbe3 | 2005-11-17 06:41:44 +0000 | [diff] [blame] | 876 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
| 877 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 878 | case TargetLowering::Custom: |
| 879 | Tmp1 = TLI.LowerOperation(Op, DAG); |
| 880 | if (Tmp1.Val) Result = Tmp1; |
| 881 | // FALLTHROUGH if the target doesn't want to lower this op after all. |
Chris Lattner | 0c8fbe3 | 2005-11-17 06:41:44 +0000 | [diff] [blame] | 882 | case TargetLowering::Legal: |
Chris Lattner | 0c8fbe3 | 2005-11-17 06:41:44 +0000 | [diff] [blame] | 883 | break; |
| 884 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 885 | break; |
Nate Begeman | bcc5f36 | 2007-01-29 22:58:52 +0000 | [diff] [blame] | 886 | case ISD::FRAMEADDR: |
| 887 | case ISD::RETURNADDR: |
| 888 | // The only option for these nodes is to custom lower them. If the target |
| 889 | // does not custom lower them, then return zero. |
| 890 | Tmp1 = TLI.LowerOperation(Op, DAG); |
| 891 | if (Tmp1.Val) |
| 892 | Result = Tmp1; |
| 893 | else |
| 894 | Result = DAG.getConstant(0, TLI.getPointerTy()); |
| 895 | break; |
Anton Korobeynikov | 055c544 | 2007-08-29 23:18:48 +0000 | [diff] [blame] | 896 | case ISD::FRAME_TO_ARGS_OFFSET: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 897 | MVT VT = Node->getValueType(0); |
Anton Korobeynikov | 066f7b4 | 2007-08-29 19:28:29 +0000 | [diff] [blame] | 898 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 899 | default: assert(0 && "This action is not supported yet!"); |
| 900 | case TargetLowering::Custom: |
| 901 | Result = TLI.LowerOperation(Op, DAG); |
| 902 | if (Result.Val) break; |
| 903 | // Fall Thru |
| 904 | case TargetLowering::Legal: |
| 905 | Result = DAG.getConstant(0, VT); |
| 906 | break; |
| 907 | } |
Anton Korobeynikov | 055c544 | 2007-08-29 23:18:48 +0000 | [diff] [blame] | 908 | } |
Anton Korobeynikov | 066f7b4 | 2007-08-29 19:28:29 +0000 | [diff] [blame] | 909 | break; |
Jim Laskey | 2bc210d | 2007-02-22 15:37:19 +0000 | [diff] [blame] | 910 | case ISD::EXCEPTIONADDR: { |
| 911 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 912 | MVT VT = Node->getValueType(0); |
Jim Laskey | 2bc210d | 2007-02-22 15:37:19 +0000 | [diff] [blame] | 913 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 914 | default: assert(0 && "This action is not supported yet!"); |
| 915 | case TargetLowering::Expand: { |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 916 | unsigned Reg = TLI.getExceptionAddressRegister(); |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 917 | Result = DAG.getCopyFromReg(Tmp1, Reg, VT); |
Jim Laskey | 2bc210d | 2007-02-22 15:37:19 +0000 | [diff] [blame] | 918 | } |
| 919 | break; |
| 920 | case TargetLowering::Custom: |
| 921 | Result = TLI.LowerOperation(Op, DAG); |
| 922 | if (Result.Val) break; |
| 923 | // Fall Thru |
Chris Lattner | eb7f34f | 2007-04-27 17:12:52 +0000 | [diff] [blame] | 924 | case TargetLowering::Legal: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 925 | SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 }; |
Duncan Sands | 4bdcb61 | 2008-07-02 17:40:58 +0000 | [diff] [blame] | 926 | Result = DAG.getMergeValues(Ops, 2); |
Jim Laskey | 2bc210d | 2007-02-22 15:37:19 +0000 | [diff] [blame] | 927 | break; |
| 928 | } |
| 929 | } |
Chris Lattner | eb7f34f | 2007-04-27 17:12:52 +0000 | [diff] [blame] | 930 | } |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 931 | if (Result.Val->getNumValues() == 1) break; |
| 932 | |
| 933 | assert(Result.Val->getNumValues() == 2 && |
| 934 | "Cannot return more than two values!"); |
| 935 | |
| 936 | // Since we produced two values, make sure to remember that we |
| 937 | // legalized both of them. |
| 938 | Tmp1 = LegalizeOp(Result); |
| 939 | Tmp2 = LegalizeOp(Result.getValue(1)); |
| 940 | AddLegalizedOperand(Op.getValue(0), Tmp1); |
| 941 | AddLegalizedOperand(Op.getValue(1), Tmp2); |
| 942 | return Op.ResNo ? Tmp2 : Tmp1; |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 943 | case ISD::EHSELECTION: { |
| 944 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 945 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 946 | MVT VT = Node->getValueType(0); |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 947 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 948 | default: assert(0 && "This action is not supported yet!"); |
| 949 | case TargetLowering::Expand: { |
| 950 | unsigned Reg = TLI.getExceptionSelectorRegister(); |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 951 | Result = DAG.getCopyFromReg(Tmp2, Reg, VT); |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 952 | } |
| 953 | break; |
| 954 | case TargetLowering::Custom: |
| 955 | Result = TLI.LowerOperation(Op, DAG); |
| 956 | if (Result.Val) break; |
| 957 | // Fall Thru |
Chris Lattner | eb7f34f | 2007-04-27 17:12:52 +0000 | [diff] [blame] | 958 | case TargetLowering::Legal: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 959 | SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 }; |
Duncan Sands | 4bdcb61 | 2008-07-02 17:40:58 +0000 | [diff] [blame] | 960 | Result = DAG.getMergeValues(Ops, 2); |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 961 | break; |
| 962 | } |
| 963 | } |
Chris Lattner | eb7f34f | 2007-04-27 17:12:52 +0000 | [diff] [blame] | 964 | } |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 965 | if (Result.Val->getNumValues() == 1) break; |
| 966 | |
| 967 | assert(Result.Val->getNumValues() == 2 && |
| 968 | "Cannot return more than two values!"); |
| 969 | |
| 970 | // Since we produced two values, make sure to remember that we |
| 971 | // legalized both of them. |
| 972 | Tmp1 = LegalizeOp(Result); |
| 973 | Tmp2 = LegalizeOp(Result.getValue(1)); |
| 974 | AddLegalizedOperand(Op.getValue(0), Tmp1); |
| 975 | AddLegalizedOperand(Op.getValue(1), Tmp2); |
| 976 | return Op.ResNo ? Tmp2 : Tmp1; |
Nick Lewycky | 6d4b711 | 2007-07-14 15:11:14 +0000 | [diff] [blame] | 977 | case ISD::EH_RETURN: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 978 | MVT VT = Node->getValueType(0); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 979 | // The only "good" option for this node is to custom lower it. |
| 980 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 981 | default: assert(0 && "This action is not supported at all!"); |
| 982 | case TargetLowering::Custom: |
| 983 | Result = TLI.LowerOperation(Op, DAG); |
| 984 | if (Result.Val) break; |
| 985 | // Fall Thru |
| 986 | case TargetLowering::Legal: |
| 987 | // Target does not know, how to lower this, lower to noop |
| 988 | Result = LegalizeOp(Node->getOperand(0)); |
| 989 | break; |
| 990 | } |
Nick Lewycky | 6d4b711 | 2007-07-14 15:11:14 +0000 | [diff] [blame] | 991 | } |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 992 | break; |
Chris Lattner | 08951a3 | 2005-09-02 01:15:01 +0000 | [diff] [blame] | 993 | case ISD::AssertSext: |
| 994 | case ISD::AssertZext: |
| 995 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 996 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | 08951a3 | 2005-09-02 01:15:01 +0000 | [diff] [blame] | 997 | break; |
Chris Lattner | 308575b | 2005-11-20 22:56:56 +0000 | [diff] [blame] | 998 | case ISD::MERGE_VALUES: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 999 | // Legalize eliminates MERGE_VALUES nodes. |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1000 | Result = Node->getOperand(Op.ResNo); |
| 1001 | break; |
Chris Lattner | 69a5215 | 2005-01-14 22:38:01 +0000 | [diff] [blame] | 1002 | case ISD::CopyFromReg: |
| 1003 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 1004 | Result = Op.getValue(0); |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 1005 | if (Node->getNumValues() == 2) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1006 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 1007 | } else { |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 1008 | assert(Node->getNumValues() == 3 && "Invalid copyfromreg!"); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1009 | if (Node->getNumOperands() == 3) { |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 1010 | Tmp2 = LegalizeOp(Node->getOperand(2)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1011 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2); |
| 1012 | } else { |
| 1013 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
| 1014 | } |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 1015 | AddLegalizedOperand(Op.getValue(2), Result.getValue(2)); |
| 1016 | } |
Chris Lattner | 13c184d | 2005-01-28 06:27:38 +0000 | [diff] [blame] | 1017 | // Since CopyFromReg produces two values, make sure to remember that we |
| 1018 | // legalized both of them. |
| 1019 | AddLegalizedOperand(Op.getValue(0), Result); |
| 1020 | AddLegalizedOperand(Op.getValue(1), Result.getValue(1)); |
| 1021 | return Result.getValue(Op.ResNo); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 1022 | case ISD::UNDEF: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1023 | MVT VT = Op.getValueType(); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 1024 | switch (TLI.getOperationAction(ISD::UNDEF, VT)) { |
Nate Begeman | ea19cd5 | 2005-04-02 00:41:14 +0000 | [diff] [blame] | 1025 | default: assert(0 && "This action is not supported yet!"); |
| 1026 | case TargetLowering::Expand: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1027 | if (VT.isInteger()) |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 1028 | Result = DAG.getConstant(0, VT); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1029 | else if (VT.isFloatingPoint()) |
| 1030 | Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)), |
Dale Johannesen | f41db21 | 2007-09-26 17:26:49 +0000 | [diff] [blame] | 1031 | VT); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 1032 | else |
| 1033 | assert(0 && "Unknown value type!"); |
| 1034 | break; |
Nate Begeman | ea19cd5 | 2005-04-02 00:41:14 +0000 | [diff] [blame] | 1035 | case TargetLowering::Legal: |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 1036 | break; |
| 1037 | } |
| 1038 | break; |
| 1039 | } |
Chris Lattner | d1f04d4 | 2006-03-24 02:26:29 +0000 | [diff] [blame] | 1040 | |
Chris Lattner | 48b61a7 | 2006-03-28 00:40:33 +0000 | [diff] [blame] | 1041 | case ISD::INTRINSIC_W_CHAIN: |
| 1042 | case ISD::INTRINSIC_WO_CHAIN: |
| 1043 | case ISD::INTRINSIC_VOID: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1044 | SmallVector<SDValue, 8> Ops; |
Chris Lattner | d1f04d4 | 2006-03-24 02:26:29 +0000 | [diff] [blame] | 1045 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) |
| 1046 | Ops.push_back(LegalizeOp(Node->getOperand(i))); |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1047 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 10d7fa6 | 2006-03-26 09:12:51 +0000 | [diff] [blame] | 1048 | |
| 1049 | // Allow the target to custom lower its intrinsics if it wants to. |
Chris Lattner | 48b61a7 | 2006-03-28 00:40:33 +0000 | [diff] [blame] | 1050 | if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) == |
Chris Lattner | 10d7fa6 | 2006-03-26 09:12:51 +0000 | [diff] [blame] | 1051 | TargetLowering::Custom) { |
| 1052 | Tmp3 = TLI.LowerOperation(Result, DAG); |
| 1053 | if (Tmp3.Val) Result = Tmp3; |
Chris Lattner | 13fc2f1 | 2006-03-27 20:28:29 +0000 | [diff] [blame] | 1054 | } |
| 1055 | |
| 1056 | if (Result.Val->getNumValues() == 1) break; |
| 1057 | |
| 1058 | // Must have return value and chain result. |
| 1059 | assert(Result.Val->getNumValues() == 2 && |
| 1060 | "Cannot return more than two values!"); |
| 1061 | |
| 1062 | // Since loads produce two values, make sure to remember that we |
| 1063 | // legalized both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1064 | AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0)); |
| 1065 | AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1)); |
Chris Lattner | 13fc2f1 | 2006-03-27 20:28:29 +0000 | [diff] [blame] | 1066 | return Result.getValue(Op.ResNo); |
Chris Lattner | d1f04d4 | 2006-03-24 02:26:29 +0000 | [diff] [blame] | 1067 | } |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1068 | |
Dan Gohman | 7f46020 | 2008-06-30 20:59:49 +0000 | [diff] [blame] | 1069 | case ISD::DBG_STOPPOINT: |
| 1070 | assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!"); |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1071 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain. |
| 1072 | |
Dan Gohman | 7f46020 | 2008-06-30 20:59:49 +0000 | [diff] [blame] | 1073 | switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) { |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1074 | case TargetLowering::Promote: |
| 1075 | default: assert(0 && "This action is not supported yet!"); |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1076 | case TargetLowering::Expand: { |
Jim Laskey | 44c3b9f | 2007-01-26 21:22:28 +0000 | [diff] [blame] | 1077 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1078 | bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other); |
Dan Gohman | 4406604 | 2008-07-01 00:05:16 +0000 | [diff] [blame] | 1079 | bool useLABEL = TLI.isOperationLegal(ISD::DBG_LABEL, MVT::Other); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1080 | |
Dan Gohman | 7f46020 | 2008-06-30 20:59:49 +0000 | [diff] [blame] | 1081 | const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node); |
Jim Laskey | 44c3b9f | 2007-01-26 21:22:28 +0000 | [diff] [blame] | 1082 | if (MMI && (useDEBUG_LOC || useLABEL)) { |
Dan Gohman | 7f46020 | 2008-06-30 20:59:49 +0000 | [diff] [blame] | 1083 | const CompileUnitDesc *CompileUnit = DSP->getCompileUnit(); |
| 1084 | unsigned SrcFile = MMI->RecordSource(CompileUnit); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1085 | |
Dan Gohman | 7f46020 | 2008-06-30 20:59:49 +0000 | [diff] [blame] | 1086 | unsigned Line = DSP->getLine(); |
| 1087 | unsigned Col = DSP->getColumn(); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1088 | |
| 1089 | if (useDEBUG_LOC) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1090 | SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32), |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1091 | DAG.getConstant(Col, MVT::i32), |
| 1092 | DAG.getConstant(SrcFile, MVT::i32) }; |
| 1093 | Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops, 4); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1094 | } else { |
Evan Cheng | a647c92 | 2008-02-01 02:05:57 +0000 | [diff] [blame] | 1095 | unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile); |
Dan Gohman | 4406604 | 2008-07-01 00:05:16 +0000 | [diff] [blame] | 1096 | Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1097 | } |
Jim Laskey | e81aecb | 2005-12-21 20:51:37 +0000 | [diff] [blame] | 1098 | } else { |
| 1099 | Result = Tmp1; // chain |
| 1100 | } |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1101 | break; |
Chris Lattner | e773673 | 2005-12-18 23:54:29 +0000 | [diff] [blame] | 1102 | } |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1103 | case TargetLowering::Legal: { |
| 1104 | LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType()); |
| 1105 | if (Action == Legal && Tmp1 == Node->getOperand(0)) |
| 1106 | break; |
| 1107 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1108 | SmallVector<SDValue, 8> Ops; |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1109 | Ops.push_back(Tmp1); |
| 1110 | if (Action == Legal) { |
| 1111 | Ops.push_back(Node->getOperand(1)); // line # must be legal. |
| 1112 | Ops.push_back(Node->getOperand(2)); // col # must be legal. |
| 1113 | } else { |
| 1114 | // Otherwise promote them. |
| 1115 | Ops.push_back(PromoteOp(Node->getOperand(1))); |
| 1116 | Ops.push_back(PromoteOp(Node->getOperand(2))); |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1117 | } |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1118 | Ops.push_back(Node->getOperand(3)); // filename must be legal. |
| 1119 | Ops.push_back(Node->getOperand(4)); // working dir # must be legal. |
| 1120 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1121 | break; |
| 1122 | } |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1123 | } |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1124 | break; |
Evan Cheng | a844bde | 2008-02-02 04:07:54 +0000 | [diff] [blame] | 1125 | |
| 1126 | case ISD::DECLARE: |
| 1127 | assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!"); |
| 1128 | switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) { |
| 1129 | default: assert(0 && "This action is not supported yet!"); |
| 1130 | case TargetLowering::Legal: |
| 1131 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1132 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address. |
| 1133 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable. |
| 1134 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
| 1135 | break; |
Chris Lattner | e07415d | 2008-02-28 05:53:40 +0000 | [diff] [blame] | 1136 | case TargetLowering::Expand: |
| 1137 | Result = LegalizeOp(Node->getOperand(0)); |
| 1138 | break; |
Evan Cheng | a844bde | 2008-02-02 04:07:54 +0000 | [diff] [blame] | 1139 | } |
| 1140 | break; |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1141 | |
| 1142 | case ISD::DEBUG_LOC: |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1143 | assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!"); |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1144 | switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) { |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1145 | default: assert(0 && "This action is not supported yet!"); |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1146 | case TargetLowering::Legal: { |
| 1147 | LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType()); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1148 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1149 | if (Action == Legal && Tmp1 == Node->getOperand(0)) |
| 1150 | break; |
| 1151 | if (Action == Legal) { |
| 1152 | Tmp2 = Node->getOperand(1); |
| 1153 | Tmp3 = Node->getOperand(2); |
| 1154 | Tmp4 = Node->getOperand(3); |
| 1155 | } else { |
| 1156 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #. |
| 1157 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #. |
| 1158 | Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id. |
| 1159 | } |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1160 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1161 | break; |
| 1162 | } |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1163 | } |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1164 | break; |
| 1165 | |
Dan Gohman | 4406604 | 2008-07-01 00:05:16 +0000 | [diff] [blame] | 1166 | case ISD::DBG_LABEL: |
| 1167 | case ISD::EH_LABEL: |
| 1168 | assert(Node->getNumOperands() == 1 && "Invalid LABEL node!"); |
| 1169 | switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) { |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1170 | default: assert(0 && "This action is not supported yet!"); |
| 1171 | case TargetLowering::Legal: |
| 1172 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Dan Gohman | 4406604 | 2008-07-01 00:05:16 +0000 | [diff] [blame] | 1173 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1174 | break; |
Chris Lattner | a9569f1 | 2007-03-03 19:21:38 +0000 | [diff] [blame] | 1175 | case TargetLowering::Expand: |
| 1176 | Result = LegalizeOp(Node->getOperand(0)); |
| 1177 | break; |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1178 | } |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 1179 | break; |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1180 | |
Evan Cheng | 27b7db5 | 2008-03-08 00:58:38 +0000 | [diff] [blame] | 1181 | case ISD::PREFETCH: |
| 1182 | assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!"); |
| 1183 | switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) { |
| 1184 | default: assert(0 && "This action is not supported yet!"); |
| 1185 | case TargetLowering::Legal: |
| 1186 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1187 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address. |
| 1188 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier. |
| 1189 | Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier. |
| 1190 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4); |
| 1191 | break; |
| 1192 | case TargetLowering::Expand: |
| 1193 | // It's a noop. |
| 1194 | Result = LegalizeOp(Node->getOperand(0)); |
| 1195 | break; |
| 1196 | } |
| 1197 | break; |
| 1198 | |
Andrew Lenharth | 22c5c1b | 2008-02-16 01:24:58 +0000 | [diff] [blame] | 1199 | case ISD::MEMBARRIER: { |
| 1200 | assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!"); |
Andrew Lenharth | d497d9f | 2008-02-16 14:46:26 +0000 | [diff] [blame] | 1201 | switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) { |
| 1202 | default: assert(0 && "This action is not supported yet!"); |
| 1203 | case TargetLowering::Legal: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1204 | SDValue Ops[6]; |
Andrew Lenharth | d497d9f | 2008-02-16 14:46:26 +0000 | [diff] [blame] | 1205 | Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Duncan Sands | e90a615 | 2008-02-27 08:53:44 +0000 | [diff] [blame] | 1206 | for (int x = 1; x < 6; ++x) { |
| 1207 | Ops[x] = Node->getOperand(x); |
| 1208 | if (!isTypeLegal(Ops[x].getValueType())) |
| 1209 | Ops[x] = PromoteOp(Ops[x]); |
| 1210 | } |
Andrew Lenharth | d497d9f | 2008-02-16 14:46:26 +0000 | [diff] [blame] | 1211 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6); |
| 1212 | break; |
| 1213 | } |
| 1214 | case TargetLowering::Expand: |
| 1215 | //There is no libgcc call for this op |
| 1216 | Result = Node->getOperand(0); // Noop |
| 1217 | break; |
| 1218 | } |
Andrew Lenharth | 22c5c1b | 2008-02-16 01:24:58 +0000 | [diff] [blame] | 1219 | break; |
| 1220 | } |
| 1221 | |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 1222 | case ISD::ATOMIC_CMP_SWAP: { |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 1223 | unsigned int num_operands = 4; |
| 1224 | assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1225 | SDValue Ops[4]; |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 1226 | for (unsigned int x = 0; x < num_operands; ++x) |
Andrew Lenharth | 26ed869 | 2008-03-01 21:52:34 +0000 | [diff] [blame] | 1227 | Ops[x] = LegalizeOp(Node->getOperand(x)); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 1228 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands); |
| 1229 | |
| 1230 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
| 1231 | default: assert(0 && "This action is not supported yet!"); |
| 1232 | case TargetLowering::Custom: |
| 1233 | Result = TLI.LowerOperation(Result, DAG); |
| 1234 | break; |
| 1235 | case TargetLowering::Legal: |
| 1236 | break; |
| 1237 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1238 | AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0)); |
| 1239 | AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1)); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 1240 | return Result.getValue(Op.ResNo); |
Duncan Sands | 126d907 | 2008-07-04 11:47:58 +0000 | [diff] [blame] | 1241 | } |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 1242 | case ISD::ATOMIC_LOAD_ADD: |
| 1243 | case ISD::ATOMIC_LOAD_SUB: |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 1244 | case ISD::ATOMIC_LOAD_AND: |
| 1245 | case ISD::ATOMIC_LOAD_OR: |
| 1246 | case ISD::ATOMIC_LOAD_XOR: |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 1247 | case ISD::ATOMIC_LOAD_NAND: |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 1248 | case ISD::ATOMIC_LOAD_MIN: |
| 1249 | case ISD::ATOMIC_LOAD_MAX: |
| 1250 | case ISD::ATOMIC_LOAD_UMIN: |
| 1251 | case ISD::ATOMIC_LOAD_UMAX: |
| 1252 | case ISD::ATOMIC_SWAP: { |
| 1253 | unsigned int num_operands = 3; |
| 1254 | assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1255 | SDValue Ops[3]; |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 1256 | for (unsigned int x = 0; x < num_operands; ++x) |
| 1257 | Ops[x] = LegalizeOp(Node->getOperand(x)); |
| 1258 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands); |
Duncan Sands | 126d907 | 2008-07-04 11:47:58 +0000 | [diff] [blame] | 1259 | |
Andrew Lenharth | 26ed869 | 2008-03-01 21:52:34 +0000 | [diff] [blame] | 1260 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 1261 | default: assert(0 && "This action is not supported yet!"); |
Andrew Lenharth | 26ed869 | 2008-03-01 21:52:34 +0000 | [diff] [blame] | 1262 | case TargetLowering::Custom: |
| 1263 | Result = TLI.LowerOperation(Result, DAG); |
| 1264 | break; |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 1265 | case TargetLowering::Expand: |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1266 | Result = SDValue(TLI.ReplaceNodeResults(Op.Val, DAG),0); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 1267 | break; |
Andrew Lenharth | 26ed869 | 2008-03-01 21:52:34 +0000 | [diff] [blame] | 1268 | case TargetLowering::Legal: |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 1269 | break; |
| 1270 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1271 | AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0)); |
| 1272 | AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1)); |
Andrew Lenharth | 26ed869 | 2008-03-01 21:52:34 +0000 | [diff] [blame] | 1273 | return Result.getValue(Op.ResNo); |
Duncan Sands | 126d907 | 2008-07-04 11:47:58 +0000 | [diff] [blame] | 1274 | } |
Scott Michel | c1513d2 | 2007-08-08 23:23:31 +0000 | [diff] [blame] | 1275 | case ISD::Constant: { |
| 1276 | ConstantSDNode *CN = cast<ConstantSDNode>(Node); |
| 1277 | unsigned opAction = |
| 1278 | TLI.getOperationAction(ISD::Constant, CN->getValueType(0)); |
| 1279 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1280 | // We know we don't need to expand constants here, constants only have one |
| 1281 | // value and we check that it is fine above. |
| 1282 | |
Scott Michel | c1513d2 | 2007-08-08 23:23:31 +0000 | [diff] [blame] | 1283 | if (opAction == TargetLowering::Custom) { |
| 1284 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 1285 | if (Tmp1.Val) |
| 1286 | Result = Tmp1; |
| 1287 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1288 | break; |
Scott Michel | c1513d2 | 2007-08-08 23:23:31 +0000 | [diff] [blame] | 1289 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1290 | case ISD::ConstantFP: { |
| 1291 | // Spill FP immediates to the constant pool if the target cannot directly |
| 1292 | // codegen them. Targets often have some immediate values that can be |
| 1293 | // efficiently generated into an FP register without a load. We explicitly |
| 1294 | // leave these constants as ConstantFP nodes for the target to deal with. |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1295 | ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node); |
| 1296 | |
Chris Lattner | 3181a77 | 2006-01-29 06:26:56 +0000 | [diff] [blame] | 1297 | switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) { |
| 1298 | default: assert(0 && "This action is not supported yet!"); |
Nate Begeman | e179584 | 2008-02-14 08:57:00 +0000 | [diff] [blame] | 1299 | case TargetLowering::Legal: |
| 1300 | break; |
Chris Lattner | 3181a77 | 2006-01-29 06:26:56 +0000 | [diff] [blame] | 1301 | case TargetLowering::Custom: |
| 1302 | Tmp3 = TLI.LowerOperation(Result, DAG); |
| 1303 | if (Tmp3.Val) { |
| 1304 | Result = Tmp3; |
| 1305 | break; |
| 1306 | } |
| 1307 | // FALLTHROUGH |
Nate Begeman | e179584 | 2008-02-14 08:57:00 +0000 | [diff] [blame] | 1308 | case TargetLowering::Expand: { |
| 1309 | // Check to see if this FP immediate is already legal. |
| 1310 | bool isLegal = false; |
| 1311 | for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(), |
| 1312 | E = TLI.legal_fpimm_end(); I != E; ++I) { |
| 1313 | if (CFP->isExactlyValue(*I)) { |
| 1314 | isLegal = true; |
| 1315 | break; |
| 1316 | } |
| 1317 | } |
| 1318 | // If this is a legal constant, turn it into a TargetConstantFP node. |
| 1319 | if (isLegal) |
| 1320 | break; |
Evan Cheng | 279101e | 2006-12-12 22:19:28 +0000 | [diff] [blame] | 1321 | Result = ExpandConstantFP(CFP, true, DAG, TLI); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1322 | } |
Nate Begeman | e179584 | 2008-02-14 08:57:00 +0000 | [diff] [blame] | 1323 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1324 | break; |
| 1325 | } |
Chris Lattner | 040c11c | 2005-11-09 18:48:57 +0000 | [diff] [blame] | 1326 | case ISD::TokenFactor: |
| 1327 | if (Node->getNumOperands() == 2) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1328 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 1329 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1330 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 1331 | } else if (Node->getNumOperands() == 3) { |
| 1332 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 1333 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1334 | Tmp3 = LegalizeOp(Node->getOperand(2)); |
| 1335 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | 040c11c | 2005-11-09 18:48:57 +0000 | [diff] [blame] | 1336 | } else { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1337 | SmallVector<SDValue, 8> Ops; |
Chris Lattner | 040c11c | 2005-11-09 18:48:57 +0000 | [diff] [blame] | 1338 | // Legalize the operands. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1339 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) |
| 1340 | Ops.push_back(LegalizeOp(Node->getOperand(i))); |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1341 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | a385e9b | 2005-01-13 17:59:25 +0000 | [diff] [blame] | 1342 | } |
Chris Lattner | a385e9b | 2005-01-13 17:59:25 +0000 | [diff] [blame] | 1343 | break; |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 1344 | |
| 1345 | case ISD::FORMAL_ARGUMENTS: |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 1346 | case ISD::CALL: |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 1347 | // The only option for this is to custom lower it. |
Chris Lattner | b248e16 | 2006-05-17 17:55:45 +0000 | [diff] [blame] | 1348 | Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG); |
| 1349 | assert(Tmp3.Val && "Target didn't custom lower this node!"); |
Dale Johannesen | 0ea0356 | 2008-03-05 19:14:03 +0000 | [diff] [blame] | 1350 | // A call within a calling sequence must be legalized to something |
| 1351 | // other than the normal CALLSEQ_END. Violating this gets Legalize |
| 1352 | // into an infinite loop. |
| 1353 | assert ((!IsLegalizingCall || |
| 1354 | Node->getOpcode() != ISD::CALL || |
| 1355 | Tmp3.Val->getOpcode() != ISD::CALLSEQ_END) && |
| 1356 | "Nested CALLSEQ_START..CALLSEQ_END not supported."); |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1357 | |
| 1358 | // The number of incoming and outgoing values should match; unless the final |
| 1359 | // outgoing value is a flag. |
| 1360 | assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() || |
| 1361 | (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 && |
| 1362 | Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) == |
| 1363 | MVT::Flag)) && |
Chris Lattner | b248e16 | 2006-05-17 17:55:45 +0000 | [diff] [blame] | 1364 | "Lowering call/formal_arguments produced unexpected # results!"); |
Chris Lattner | e2e4173 | 2006-05-16 05:49:56 +0000 | [diff] [blame] | 1365 | |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 1366 | // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to |
Chris Lattner | e2e4173 | 2006-05-16 05:49:56 +0000 | [diff] [blame] | 1367 | // remember that we legalized all of them, so it doesn't get relegalized. |
Chris Lattner | b248e16 | 2006-05-17 17:55:45 +0000 | [diff] [blame] | 1368 | for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) { |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1369 | if (Tmp3.Val->getValueType(i) == MVT::Flag) |
| 1370 | continue; |
Chris Lattner | b248e16 | 2006-05-17 17:55:45 +0000 | [diff] [blame] | 1371 | Tmp1 = LegalizeOp(Tmp3.getValue(i)); |
Chris Lattner | e2e4173 | 2006-05-16 05:49:56 +0000 | [diff] [blame] | 1372 | if (Op.ResNo == i) |
| 1373 | Tmp2 = Tmp1; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1374 | AddLegalizedOperand(SDValue(Node, i), Tmp1); |
Chris Lattner | e2e4173 | 2006-05-16 05:49:56 +0000 | [diff] [blame] | 1375 | } |
| 1376 | return Tmp2; |
Christopher Lamb | 557c363 | 2007-07-26 07:34:40 +0000 | [diff] [blame] | 1377 | case ISD::EXTRACT_SUBREG: { |
| 1378 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 1379 | ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1)); |
| 1380 | assert(idx && "Operand must be a constant"); |
| 1381 | Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0)); |
| 1382 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 1383 | } |
| 1384 | break; |
| 1385 | case ISD::INSERT_SUBREG: { |
| 1386 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 1387 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1388 | ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2)); |
| 1389 | assert(idx && "Operand must be a constant"); |
| 1390 | Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0)); |
| 1391 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
| 1392 | } |
| 1393 | break; |
Chris Lattner | b2827b0 | 2006-03-19 00:52:58 +0000 | [diff] [blame] | 1394 | case ISD::BUILD_VECTOR: |
| 1395 | switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) { |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1396 | default: assert(0 && "This action is not supported yet!"); |
| 1397 | case TargetLowering::Custom: |
| 1398 | Tmp3 = TLI.LowerOperation(Result, DAG); |
| 1399 | if (Tmp3.Val) { |
| 1400 | Result = Tmp3; |
| 1401 | break; |
| 1402 | } |
| 1403 | // FALLTHROUGH |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1404 | case TargetLowering::Expand: |
| 1405 | Result = ExpandBUILD_VECTOR(Result.Val); |
Chris Lattner | b2827b0 | 2006-03-19 00:52:58 +0000 | [diff] [blame] | 1406 | break; |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1407 | } |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1408 | break; |
| 1409 | case ISD::INSERT_VECTOR_ELT: |
| 1410 | Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1411 | Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1412 | |
| 1413 | // The type of the value to insert may not be legal, even though the vector |
| 1414 | // type is legal. Legalize/Promote accordingly. We do not handle Expand |
| 1415 | // here. |
| 1416 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
| 1417 | default: assert(0 && "Cannot expand insert element operand"); |
| 1418 | case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break; |
| 1419 | case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break; |
| 1420 | } |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1421 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
| 1422 | |
| 1423 | switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT, |
| 1424 | Node->getValueType(0))) { |
| 1425 | default: assert(0 && "This action is not supported yet!"); |
| 1426 | case TargetLowering::Legal: |
| 1427 | break; |
| 1428 | case TargetLowering::Custom: |
Nate Begeman | 2281a99 | 2008-01-05 20:47:37 +0000 | [diff] [blame] | 1429 | Tmp4 = TLI.LowerOperation(Result, DAG); |
| 1430 | if (Tmp4.Val) { |
| 1431 | Result = Tmp4; |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1432 | break; |
| 1433 | } |
| 1434 | // FALLTHROUGH |
| 1435 | case TargetLowering::Expand: { |
Chris Lattner | 8d5a894 | 2006-04-17 19:21:01 +0000 | [diff] [blame] | 1436 | // If the insert index is a constant, codegen this as a scalar_to_vector, |
| 1437 | // then a shuffle that inserts it into the right position in the vector. |
| 1438 | if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) { |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1439 | // SCALAR_TO_VECTOR requires that the type of the value being inserted |
| 1440 | // match the element type of the vector being created. |
| 1441 | if (Tmp2.getValueType() == |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1442 | Op.getValueType().getVectorElementType()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1443 | SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1444 | Tmp1.getValueType(), Tmp2); |
| 1445 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1446 | unsigned NumElts = Tmp1.getValueType().getVectorNumElements(); |
| 1447 | MVT ShufMaskVT = |
| 1448 | MVT::getIntVectorWithNumElements(NumElts); |
| 1449 | MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType(); |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1450 | |
| 1451 | // We generate a shuffle of InVec and ScVec, so the shuffle mask |
| 1452 | // should be 0,1,2,3,4,5... with the appropriate element replaced with |
| 1453 | // elt 0 of the RHS. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1454 | SmallVector<SDValue, 8> ShufOps; |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1455 | for (unsigned i = 0; i != NumElts; ++i) { |
| 1456 | if (i != InsertPos->getValue()) |
| 1457 | ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT)); |
| 1458 | else |
| 1459 | ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT)); |
| 1460 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1461 | SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT, |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1462 | &ShufOps[0], ShufOps.size()); |
| 1463 | |
| 1464 | Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(), |
| 1465 | Tmp1, ScVec, ShufMask); |
| 1466 | Result = LegalizeOp(Result); |
| 1467 | break; |
Chris Lattner | 8d5a894 | 2006-04-17 19:21:01 +0000 | [diff] [blame] | 1468 | } |
Chris Lattner | 8d5a894 | 2006-04-17 19:21:01 +0000 | [diff] [blame] | 1469 | } |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 1470 | Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3); |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1471 | break; |
| 1472 | } |
| 1473 | } |
| 1474 | break; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1475 | case ISD::SCALAR_TO_VECTOR: |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1476 | if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) { |
| 1477 | Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node)); |
| 1478 | break; |
| 1479 | } |
| 1480 | |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1481 | Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal |
| 1482 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 1483 | switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR, |
| 1484 | Node->getValueType(0))) { |
| 1485 | default: assert(0 && "This action is not supported yet!"); |
| 1486 | case TargetLowering::Legal: |
| 1487 | break; |
Chris Lattner | 4d3abee | 2006-03-19 06:47:21 +0000 | [diff] [blame] | 1488 | case TargetLowering::Custom: |
| 1489 | Tmp3 = TLI.LowerOperation(Result, DAG); |
| 1490 | if (Tmp3.Val) { |
| 1491 | Result = Tmp3; |
| 1492 | break; |
| 1493 | } |
| 1494 | // FALLTHROUGH |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1495 | case TargetLowering::Expand: |
| 1496 | Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node)); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1497 | break; |
| 1498 | } |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1499 | break; |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 1500 | case ISD::VECTOR_SHUFFLE: |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 1501 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors, |
| 1502 | Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask. |
| 1503 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
| 1504 | |
| 1505 | // Allow targets to custom lower the SHUFFLEs they support. |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1506 | switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) { |
| 1507 | default: assert(0 && "Unknown operation action!"); |
| 1508 | case TargetLowering::Legal: |
| 1509 | assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) && |
| 1510 | "vector shuffle should not be created if not legal!"); |
| 1511 | break; |
| 1512 | case TargetLowering::Custom: |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1513 | Tmp3 = TLI.LowerOperation(Result, DAG); |
| 1514 | if (Tmp3.Val) { |
| 1515 | Result = Tmp3; |
| 1516 | break; |
| 1517 | } |
| 1518 | // FALLTHROUGH |
| 1519 | case TargetLowering::Expand: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1520 | MVT VT = Node->getValueType(0); |
| 1521 | MVT EltVT = VT.getVectorElementType(); |
| 1522 | MVT PtrVT = TLI.getPointerTy(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1523 | SDValue Mask = Node->getOperand(2); |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1524 | unsigned NumElems = Mask.getNumOperands(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1525 | SmallVector<SDValue,8> Ops; |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1526 | for (unsigned i = 0; i != NumElems; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1527 | SDValue Arg = Mask.getOperand(i); |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1528 | if (Arg.getOpcode() == ISD::UNDEF) { |
| 1529 | Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT)); |
| 1530 | } else { |
| 1531 | assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!"); |
| 1532 | unsigned Idx = cast<ConstantSDNode>(Arg)->getValue(); |
| 1533 | if (Idx < NumElems) |
| 1534 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, |
| 1535 | DAG.getConstant(Idx, PtrVT))); |
| 1536 | else |
| 1537 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, |
| 1538 | DAG.getConstant(Idx - NumElems, PtrVT))); |
| 1539 | } |
| 1540 | } |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1541 | Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size()); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1542 | break; |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1543 | } |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1544 | case TargetLowering::Promote: { |
| 1545 | // Change base type to a different vector type. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1546 | MVT OVT = Node->getValueType(0); |
| 1547 | MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1548 | |
| 1549 | // Cast the two input vectors. |
| 1550 | Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1); |
| 1551 | Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2); |
| 1552 | |
| 1553 | // Convert the shuffle mask to the right # elements. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1554 | Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1555 | assert(Tmp3.Val && "Shuffle not legal?"); |
| 1556 | Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3); |
| 1557 | Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result); |
| 1558 | break; |
| 1559 | } |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 1560 | } |
| 1561 | break; |
Chris Lattner | 384504c | 2006-03-21 20:44:12 +0000 | [diff] [blame] | 1562 | |
| 1563 | case ISD::EXTRACT_VECTOR_ELT: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1564 | Tmp1 = Node->getOperand(0); |
Chris Lattner | 384504c | 2006-03-21 20:44:12 +0000 | [diff] [blame] | 1565 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1566 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1567 | Result = ExpandEXTRACT_VECTOR_ELT(Result); |
Chris Lattner | 384504c | 2006-03-21 20:44:12 +0000 | [diff] [blame] | 1568 | break; |
| 1569 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1570 | case ISD::EXTRACT_SUBVECTOR: |
| 1571 | Tmp1 = Node->getOperand(0); |
| 1572 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1573 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 1574 | Result = ExpandEXTRACT_SUBVECTOR(Result); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 1575 | break; |
| 1576 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1577 | case ISD::CALLSEQ_START: { |
| 1578 | SDNode *CallEnd = FindCallEndFromCallStart(Node); |
| 1579 | |
| 1580 | // Recursively Legalize all of the inputs of the call end that do not lead |
| 1581 | // to this call start. This ensures that any libcalls that need be inserted |
| 1582 | // are inserted *before* the CALLSEQ_START. |
Chris Lattner | 00755df | 2007-02-04 00:27:56 +0000 | [diff] [blame] | 1583 | {SmallPtrSet<SDNode*, 32> NodesLeadingTo; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1584 | for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i) |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 1585 | LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node, |
| 1586 | NodesLeadingTo); |
| 1587 | } |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1588 | |
| 1589 | // Now that we legalized all of the inputs (which may have inserted |
| 1590 | // libcalls) create the new CALLSEQ_START node. |
| 1591 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1592 | |
| 1593 | // Merge in the last call, to ensure that this call start after the last |
| 1594 | // call ended. |
Chris Lattner | c5d7d7c | 2006-05-17 18:00:08 +0000 | [diff] [blame] | 1595 | if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) { |
Chris Lattner | b248e16 | 2006-05-17 17:55:45 +0000 | [diff] [blame] | 1596 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1597 | Tmp1 = LegalizeOp(Tmp1); |
| 1598 | } |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1599 | |
| 1600 | // Do not try to legalize the target-specific arguments (#1+). |
| 1601 | if (Tmp1 != Node->getOperand(0)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1602 | SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end()); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1603 | Ops[0] = Tmp1; |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1604 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1605 | } |
| 1606 | |
| 1607 | // Remember that the CALLSEQ_START is legalized. |
Chris Lattner | 4b653a0 | 2006-02-14 00:55:02 +0000 | [diff] [blame] | 1608 | AddLegalizedOperand(Op.getValue(0), Result); |
| 1609 | if (Node->getNumValues() == 2) // If this has a flag result, remember it. |
| 1610 | AddLegalizedOperand(Op.getValue(1), Result.getValue(1)); |
| 1611 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1612 | // Now that the callseq_start and all of the non-call nodes above this call |
| 1613 | // sequence have been legalized, legalize the call itself. During this |
| 1614 | // process, no libcalls can/will be inserted, guaranteeing that no calls |
| 1615 | // can overlap. |
| 1616 | assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!"); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1617 | // Note that we are selecting this call! |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1618 | LastCALLSEQ_END = SDValue(CallEnd, 0); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1619 | IsLegalizingCall = true; |
| 1620 | |
| 1621 | // Legalize the call, starting from the CALLSEQ_END. |
| 1622 | LegalizeOp(LastCALLSEQ_END); |
| 1623 | assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!"); |
| 1624 | return Result; |
| 1625 | } |
Chris Lattner | 16cd04d | 2005-05-12 23:24:06 +0000 | [diff] [blame] | 1626 | case ISD::CALLSEQ_END: |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1627 | // If the CALLSEQ_START node hasn't been legalized first, legalize it. This |
| 1628 | // will cause this node to be legalized as well as handling libcalls right. |
| 1629 | if (LastCALLSEQ_END.Val != Node) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1630 | LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0)); |
| 1631 | DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1632 | assert(I != LegalizedNodes.end() && |
| 1633 | "Legalizing the call start should have legalized this node!"); |
| 1634 | return I->second; |
| 1635 | } |
| 1636 | |
| 1637 | // Otherwise, the call start has been legalized and everything is going |
| 1638 | // according to plan. Just legalize ourselves normally here. |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1639 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1640 | // Do not try to legalize the target-specific arguments (#1+), except for |
| 1641 | // an optional flag input. |
| 1642 | if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){ |
| 1643 | if (Tmp1 != Node->getOperand(0)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1644 | SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end()); |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1645 | Ops[0] = Tmp1; |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1646 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1647 | } |
| 1648 | } else { |
| 1649 | Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1)); |
| 1650 | if (Tmp1 != Node->getOperand(0) || |
| 1651 | Tmp2 != Node->getOperand(Node->getNumOperands()-1)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1652 | SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end()); |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1653 | Ops[0] = Tmp1; |
| 1654 | Ops.back() = Tmp2; |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1655 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1656 | } |
Chris Lattner | 6a54289 | 2006-01-24 05:48:21 +0000 | [diff] [blame] | 1657 | } |
Chris Lattner | 4b653a0 | 2006-02-14 00:55:02 +0000 | [diff] [blame] | 1658 | assert(IsLegalizingCall && "Call sequence imbalance between start/end?"); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1659 | // This finishes up call legalization. |
| 1660 | IsLegalizingCall = false; |
Chris Lattner | 4b653a0 | 2006-02-14 00:55:02 +0000 | [diff] [blame] | 1661 | |
| 1662 | // If the CALLSEQ_END node has a flag, remember that we legalized it. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1663 | AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0)); |
Chris Lattner | 4b653a0 | 2006-02-14 00:55:02 +0000 | [diff] [blame] | 1664 | if (Node->getNumValues() == 2) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1665 | AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1)); |
Chris Lattner | 4b653a0 | 2006-02-14 00:55:02 +0000 | [diff] [blame] | 1666 | return Result.getValue(Op.ResNo); |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1667 | case ISD::DYNAMIC_STACKALLOC: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1668 | MVT VT = Node->getValueType(0); |
Chris Lattner | fa404e8 | 2005-01-09 19:03:49 +0000 | [diff] [blame] | 1669 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1670 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size. |
| 1671 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1672 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | fa404e8 | 2005-01-09 19:03:49 +0000 | [diff] [blame] | 1673 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1674 | Tmp1 = Result.getValue(0); |
Chris Lattner | 5f65229 | 2006-01-15 08:43:08 +0000 | [diff] [blame] | 1675 | Tmp2 = Result.getValue(1); |
Evan Cheng | 61bbbab | 2007-08-16 23:50:06 +0000 | [diff] [blame] | 1676 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1677 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1678 | case TargetLowering::Expand: { |
| 1679 | unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore(); |
| 1680 | assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and" |
| 1681 | " not tell us which reg is the stack pointer!"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1682 | SDValue Chain = Tmp1.getOperand(0); |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1683 | |
| 1684 | // Chain the dynamic stack allocation so that it doesn't modify the stack |
| 1685 | // pointer when other instructions are using the stack. |
| 1686 | Chain = DAG.getCALLSEQ_START(Chain, |
| 1687 | DAG.getConstant(0, TLI.getPointerTy())); |
| 1688 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1689 | SDValue Size = Tmp2.getOperand(1); |
| 1690 | SDValue SP = DAG.getCopyFromReg(Chain, SPReg, VT); |
Evan Cheng | 61bbbab | 2007-08-16 23:50:06 +0000 | [diff] [blame] | 1691 | Chain = SP.getValue(1); |
| 1692 | unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue(); |
| 1693 | unsigned StackAlign = |
| 1694 | TLI.getTargetMachine().getFrameInfo()->getStackAlignment(); |
| 1695 | if (Align > StackAlign) |
Evan Cheng | 3e20bba | 2007-08-17 18:02:22 +0000 | [diff] [blame] | 1696 | SP = DAG.getNode(ISD::AND, VT, SP, |
| 1697 | DAG.getConstant(-(uint64_t)Align, VT)); |
Evan Cheng | 61bbbab | 2007-08-16 23:50:06 +0000 | [diff] [blame] | 1698 | Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1699 | Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain |
| 1700 | |
| 1701 | Tmp2 = |
| 1702 | DAG.getCALLSEQ_END(Chain, |
| 1703 | DAG.getConstant(0, TLI.getPointerTy()), |
| 1704 | DAG.getConstant(0, TLI.getPointerTy()), |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1705 | SDValue()); |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1706 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1707 | Tmp1 = LegalizeOp(Tmp1); |
| 1708 | Tmp2 = LegalizeOp(Tmp2); |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1709 | break; |
| 1710 | } |
| 1711 | case TargetLowering::Custom: |
Chris Lattner | 5f65229 | 2006-01-15 08:43:08 +0000 | [diff] [blame] | 1712 | Tmp3 = TLI.LowerOperation(Tmp1, DAG); |
| 1713 | if (Tmp3.Val) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1714 | Tmp1 = LegalizeOp(Tmp3); |
| 1715 | Tmp2 = LegalizeOp(Tmp3.getValue(1)); |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1716 | } |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1717 | break; |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1718 | case TargetLowering::Legal: |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1719 | break; |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1720 | } |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1721 | // Since this op produce two values, make sure to remember that we |
| 1722 | // legalized both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1723 | AddLegalizedOperand(SDValue(Node, 0), Tmp1); |
| 1724 | AddLegalizedOperand(SDValue(Node, 1), Tmp2); |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1725 | return Op.ResNo ? Tmp2 : Tmp1; |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1726 | } |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1727 | case ISD::INLINEASM: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1728 | SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end()); |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1729 | bool Changed = false; |
| 1730 | // Legalize all of the operands of the inline asm, in case they are nodes |
| 1731 | // that need to be expanded or something. Note we skip the asm string and |
| 1732 | // all of the TargetConstant flags. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1733 | SDValue Op = LegalizeOp(Ops[0]); |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1734 | Changed = Op != Ops[0]; |
| 1735 | Ops[0] = Op; |
| 1736 | |
| 1737 | bool HasInFlag = Ops.back().getValueType() == MVT::Flag; |
| 1738 | for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) { |
| 1739 | unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3; |
| 1740 | for (++i; NumVals; ++i, --NumVals) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1741 | SDValue Op = LegalizeOp(Ops[i]); |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1742 | if (Op != Ops[i]) { |
| 1743 | Changed = true; |
| 1744 | Ops[i] = Op; |
| 1745 | } |
| 1746 | } |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1747 | } |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1748 | |
| 1749 | if (HasInFlag) { |
| 1750 | Op = LegalizeOp(Ops.back()); |
| 1751 | Changed |= Op != Ops.back(); |
| 1752 | Ops.back() = Op; |
| 1753 | } |
| 1754 | |
| 1755 | if (Changed) |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1756 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1757 | |
| 1758 | // INLINE asm returns a chain and flag, make sure to add both to the map. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1759 | AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0)); |
| 1760 | AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1)); |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1761 | return Result.getValue(Op.ResNo); |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1762 | } |
Chris Lattner | c7af179 | 2005-01-07 22:12:08 +0000 | [diff] [blame] | 1763 | case ISD::BR: |
| 1764 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1765 | // Ensure that libcalls are emitted before a branch. |
| 1766 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1767 | Tmp1 = LegalizeOp(Tmp1); |
| 1768 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 1769 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1770 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | c7af179 | 2005-01-07 22:12:08 +0000 | [diff] [blame] | 1771 | break; |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1772 | case ISD::BRIND: |
| 1773 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1774 | // Ensure that libcalls are emitted before a branch. |
| 1775 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1776 | Tmp1 = LegalizeOp(Tmp1); |
| 1777 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 1778 | |
| 1779 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
| 1780 | default: assert(0 && "Indirect target must be legal type (pointer)!"); |
| 1781 | case Legal: |
| 1782 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition. |
| 1783 | break; |
| 1784 | } |
| 1785 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 1786 | break; |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 1787 | case ISD::BR_JT: |
| 1788 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1789 | // Ensure that libcalls are emitted before a branch. |
| 1790 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1791 | Tmp1 = LegalizeOp(Tmp1); |
| 1792 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 1793 | |
| 1794 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node. |
| 1795 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
| 1796 | |
| 1797 | switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) { |
| 1798 | default: assert(0 && "This action is not supported yet!"); |
| 1799 | case TargetLowering::Legal: break; |
| 1800 | case TargetLowering::Custom: |
| 1801 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 1802 | if (Tmp1.Val) Result = Tmp1; |
| 1803 | break; |
| 1804 | case TargetLowering::Expand: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1805 | SDValue Chain = Result.getOperand(0); |
| 1806 | SDValue Table = Result.getOperand(1); |
| 1807 | SDValue Index = Result.getOperand(2); |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 1808 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1809 | MVT PTy = TLI.getPointerTy(); |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 1810 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1811 | unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize(); |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 1812 | Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1813 | SDValue Addr = DAG.getNode(ISD::ADD, PTy, Index, Table); |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 1814 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1815 | SDValue LD; |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 1816 | switch (EntrySize) { |
| 1817 | default: assert(0 && "Size of jump table not supported yet."); break; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 1818 | case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 1819 | PseudoSourceValue::getJumpTable(), 0); break; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 1820 | case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 1821 | PseudoSourceValue::getJumpTable(), 0); break; |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 1822 | } |
| 1823 | |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 1824 | Addr = LD; |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 1825 | if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) { |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 1826 | // For PIC, the sequence is: |
| 1827 | // BRIND(load(Jumptable + index) + RelocBase) |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 1828 | // RelocBase can be JumpTable, GOT or some sort of global base. |
| 1829 | if (PTy != MVT::i32) |
| 1830 | Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr); |
| 1831 | Addr = DAG.getNode(ISD::ADD, PTy, Addr, |
| 1832 | TLI.getPICJumpTableRelocBase(Table, DAG)); |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 1833 | } |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 1834 | Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr); |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 1835 | } |
| 1836 | } |
| 1837 | break; |
Chris Lattner | c18ae4c | 2005-01-07 08:19:42 +0000 | [diff] [blame] | 1838 | case ISD::BRCOND: |
| 1839 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1840 | // Ensure that libcalls are emitted before a return. |
| 1841 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1842 | Tmp1 = LegalizeOp(Tmp1); |
| 1843 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 1844 | |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 1845 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
| 1846 | case Expand: assert(0 && "It's impossible to expand bools"); |
| 1847 | case Legal: |
| 1848 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition. |
| 1849 | break; |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1850 | case Promote: { |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 1851 | Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition. |
Chris Lattner | f990817 | 2006-11-27 04:39:56 +0000 | [diff] [blame] | 1852 | |
| 1853 | // The top bits of the promoted condition are not necessarily zero, ensure |
| 1854 | // that the value is properly zero extended. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1855 | unsigned BitWidth = Tmp2.getValueSizeInBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1856 | if (!DAG.MaskedValueIsZero(Tmp2, |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1857 | APInt::getHighBitsSet(BitWidth, BitWidth-1))) |
Chris Lattner | f990817 | 2006-11-27 04:39:56 +0000 | [diff] [blame] | 1858 | Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1); |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 1859 | break; |
| 1860 | } |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1861 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1862 | |
| 1863 | // Basic block destination (Op#2) is always legal. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1864 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
Nate Begeman | 7cbd525 | 2005-08-16 19:49:35 +0000 | [diff] [blame] | 1865 | |
| 1866 | switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) { |
| 1867 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1868 | case TargetLowering::Legal: break; |
| 1869 | case TargetLowering::Custom: |
| 1870 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 1871 | if (Tmp1.Val) Result = Tmp1; |
| 1872 | break; |
Nate Begeman | 7cbd525 | 2005-08-16 19:49:35 +0000 | [diff] [blame] | 1873 | case TargetLowering::Expand: |
| 1874 | // Expand brcond's setcc into its constituent parts and create a BR_CC |
| 1875 | // Node. |
| 1876 | if (Tmp2.getOpcode() == ISD::SETCC) { |
| 1877 | Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2), |
| 1878 | Tmp2.getOperand(0), Tmp2.getOperand(1), |
| 1879 | Node->getOperand(2)); |
| 1880 | } else { |
| 1881 | Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, |
| 1882 | DAG.getCondCode(ISD::SETNE), Tmp2, |
| 1883 | DAG.getConstant(0, Tmp2.getValueType()), |
| 1884 | Node->getOperand(2)); |
| 1885 | } |
| 1886 | break; |
Nate Begeman | 7cbd525 | 2005-08-16 19:49:35 +0000 | [diff] [blame] | 1887 | } |
| 1888 | break; |
| 1889 | case ISD::BR_CC: |
| 1890 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1891 | // Ensure that libcalls are emitted before a branch. |
| 1892 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1893 | Tmp1 = LegalizeOp(Tmp1); |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 1894 | Tmp2 = Node->getOperand(2); // LHS |
| 1895 | Tmp3 = Node->getOperand(3); // RHS |
| 1896 | Tmp4 = Node->getOperand(1); // CC |
| 1897 | |
| 1898 | LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4); |
Evan Cheng | 722cb36 | 2006-12-18 22:55:34 +0000 | [diff] [blame] | 1899 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 1900 | |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 1901 | // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands, |
| 1902 | // the LHS is a legal SETCC itself. In this case, we need to compare |
| 1903 | // the result against zero to select between true and false values. |
| 1904 | if (Tmp3.Val == 0) { |
| 1905 | Tmp3 = DAG.getConstant(0, Tmp2.getValueType()); |
| 1906 | Tmp4 = DAG.getCondCode(ISD::SETNE); |
Chris Lattner | 181b7a3 | 2005-12-17 23:46:46 +0000 | [diff] [blame] | 1907 | } |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 1908 | |
| 1909 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3, |
| 1910 | Node->getOperand(4)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1911 | |
Chris Lattner | 181b7a3 | 2005-12-17 23:46:46 +0000 | [diff] [blame] | 1912 | switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) { |
| 1913 | default: assert(0 && "Unexpected action for BR_CC!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1914 | case TargetLowering::Legal: break; |
| 1915 | case TargetLowering::Custom: |
| 1916 | Tmp4 = TLI.LowerOperation(Result, DAG); |
| 1917 | if (Tmp4.Val) Result = Tmp4; |
Chris Lattner | 181b7a3 | 2005-12-17 23:46:46 +0000 | [diff] [blame] | 1918 | break; |
Nate Begeman | 7cbd525 | 2005-08-16 19:49:35 +0000 | [diff] [blame] | 1919 | } |
Chris Lattner | c18ae4c | 2005-01-07 08:19:42 +0000 | [diff] [blame] | 1920 | break; |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 1921 | case ISD::LOAD: { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1922 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
| 1923 | Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain. |
| 1924 | Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer. |
Andrew Lenharth | 2d86ea2 | 2005-04-27 20:10:01 +0000 | [diff] [blame] | 1925 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1926 | ISD::LoadExtType ExtType = LD->getExtensionType(); |
| 1927 | if (ExtType == ISD::NON_EXTLOAD) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1928 | MVT VT = Node->getValueType(0); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1929 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset()); |
| 1930 | Tmp3 = Result.getValue(0); |
| 1931 | Tmp4 = Result.getValue(1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1932 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1933 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 1934 | default: assert(0 && "This action is not supported yet!"); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 1935 | case TargetLowering::Legal: |
| 1936 | // If this is an unaligned load and the target doesn't support it, |
| 1937 | // expand it. |
| 1938 | if (!TLI.allowsUnalignedMemoryAccesses()) { |
| 1939 | unsigned ABIAlignment = TLI.getTargetData()-> |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1940 | getABITypeAlignment(LD->getMemoryVT().getTypeForMVT()); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 1941 | if (LD->getAlignment() < ABIAlignment){ |
| 1942 | Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG, |
| 1943 | TLI); |
| 1944 | Tmp3 = Result.getOperand(0); |
| 1945 | Tmp4 = Result.getOperand(1); |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 1946 | Tmp3 = LegalizeOp(Tmp3); |
| 1947 | Tmp4 = LegalizeOp(Tmp4); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 1948 | } |
| 1949 | } |
| 1950 | break; |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1951 | case TargetLowering::Custom: |
| 1952 | Tmp1 = TLI.LowerOperation(Tmp3, DAG); |
| 1953 | if (Tmp1.Val) { |
| 1954 | Tmp3 = LegalizeOp(Tmp1); |
| 1955 | Tmp4 = LegalizeOp(Tmp1.getValue(1)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1956 | } |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1957 | break; |
| 1958 | case TargetLowering::Promote: { |
| 1959 | // Only promote a load of vector type to another. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1960 | assert(VT.isVector() && "Cannot promote this load!"); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1961 | // Change base type to a different vector type. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1962 | MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1963 | |
| 1964 | Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 1965 | LD->getSrcValueOffset(), |
| 1966 | LD->isVolatile(), LD->getAlignment()); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1967 | Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1)); |
| 1968 | Tmp4 = LegalizeOp(Tmp1.getValue(1)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1969 | break; |
Andrew Lenharth | 9d416f7 | 2005-06-30 19:22:37 +0000 | [diff] [blame] | 1970 | } |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1971 | } |
| 1972 | // Since loads produce two values, make sure to remember that we |
| 1973 | // legalized both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1974 | AddLegalizedOperand(SDValue(Node, 0), Tmp3); |
| 1975 | AddLegalizedOperand(SDValue(Node, 1), Tmp4); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1976 | return Op.ResNo ? Tmp4 : Tmp3; |
| 1977 | } else { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1978 | MVT SrcVT = LD->getMemoryVT(); |
| 1979 | unsigned SrcWidth = SrcVT.getSizeInBits(); |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 1980 | int SVOffset = LD->getSrcValueOffset(); |
| 1981 | unsigned Alignment = LD->getAlignment(); |
| 1982 | bool isVolatile = LD->isVolatile(); |
| 1983 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1984 | if (SrcWidth != SrcVT.getStoreSizeInBits() && |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 1985 | // Some targets pretend to have an i1 loading operation, and actually |
| 1986 | // load an i8. This trick is correct for ZEXTLOAD because the top 7 |
| 1987 | // bits are guaranteed to be zero; it helps the optimizers understand |
| 1988 | // that these bits are zero. It is also useful for EXTLOAD, since it |
| 1989 | // tells the optimizers that those bits are undefined. It would be |
| 1990 | // nice to have an effective generic way of getting these benefits... |
| 1991 | // Until such a way is found, don't insist on promoting i1 here. |
| 1992 | (SrcVT != MVT::i1 || |
| 1993 | TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) { |
| 1994 | // Promote to a byte-sized load if not loading an integral number of |
| 1995 | // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1996 | unsigned NewWidth = SrcVT.getStoreSizeInBits(); |
| 1997 | MVT NVT = MVT::getIntegerVT(NewWidth); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 1998 | SDValue Ch; |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 1999 | |
| 2000 | // The extra bits are guaranteed to be zero, since we stored them that |
| 2001 | // way. A zext load from NVT thus automatically gives zext from SrcVT. |
| 2002 | |
| 2003 | ISD::LoadExtType NewExtType = |
| 2004 | ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD; |
| 2005 | |
| 2006 | Result = DAG.getExtLoad(NewExtType, Node->getValueType(0), |
| 2007 | Tmp1, Tmp2, LD->getSrcValue(), SVOffset, |
| 2008 | NVT, isVolatile, Alignment); |
| 2009 | |
| 2010 | Ch = Result.getValue(1); // The chain. |
| 2011 | |
| 2012 | if (ExtType == ISD::SEXTLOAD) |
| 2013 | // Having the top bits zero doesn't help when sign extending. |
| 2014 | Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(), |
| 2015 | Result, DAG.getValueType(SrcVT)); |
| 2016 | else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType()) |
| 2017 | // All the top bits are guaranteed to be zero - inform the optimizers. |
| 2018 | Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result, |
| 2019 | DAG.getValueType(SrcVT)); |
| 2020 | |
| 2021 | Tmp1 = LegalizeOp(Result); |
| 2022 | Tmp2 = LegalizeOp(Ch); |
| 2023 | } else if (SrcWidth & (SrcWidth - 1)) { |
| 2024 | // If not loading a power-of-2 number of bits, expand as two loads. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2025 | assert(SrcVT.isExtended() && !SrcVT.isVector() && |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2026 | "Unsupported extload!"); |
| 2027 | unsigned RoundWidth = 1 << Log2_32(SrcWidth); |
| 2028 | assert(RoundWidth < SrcWidth); |
| 2029 | unsigned ExtraWidth = SrcWidth - RoundWidth; |
| 2030 | assert(ExtraWidth < RoundWidth); |
| 2031 | assert(!(RoundWidth % 8) && !(ExtraWidth % 8) && |
| 2032 | "Load size not an integral number of bytes!"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2033 | MVT RoundVT = MVT::getIntegerVT(RoundWidth); |
| 2034 | MVT ExtraVT = MVT::getIntegerVT(ExtraWidth); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2035 | SDValue Lo, Hi, Ch; |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2036 | unsigned IncrementSize; |
| 2037 | |
| 2038 | if (TLI.isLittleEndian()) { |
| 2039 | // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16) |
| 2040 | // Load the bottom RoundWidth bits. |
| 2041 | Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2, |
| 2042 | LD->getSrcValue(), SVOffset, RoundVT, isVolatile, |
| 2043 | Alignment); |
| 2044 | |
| 2045 | // Load the remaining ExtraWidth bits. |
| 2046 | IncrementSize = RoundWidth / 8; |
| 2047 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
| 2048 | DAG.getIntPtrConstant(IncrementSize)); |
| 2049 | Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2, |
| 2050 | LD->getSrcValue(), SVOffset + IncrementSize, |
| 2051 | ExtraVT, isVolatile, |
| 2052 | MinAlign(Alignment, IncrementSize)); |
| 2053 | |
| 2054 | // Build a factor node to remember that this load is independent of the |
| 2055 | // other one. |
| 2056 | Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1), |
| 2057 | Hi.getValue(1)); |
| 2058 | |
| 2059 | // Move the top bits to the right place. |
| 2060 | Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi, |
| 2061 | DAG.getConstant(RoundWidth, TLI.getShiftAmountTy())); |
| 2062 | |
| 2063 | // Join the hi and lo parts. |
| 2064 | Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2065 | } else { |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2066 | // Big endian - avoid unaligned loads. |
| 2067 | // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8 |
| 2068 | // Load the top RoundWidth bits. |
| 2069 | Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2, |
| 2070 | LD->getSrcValue(), SVOffset, RoundVT, isVolatile, |
| 2071 | Alignment); |
| 2072 | |
| 2073 | // Load the remaining ExtraWidth bits. |
| 2074 | IncrementSize = RoundWidth / 8; |
| 2075 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
| 2076 | DAG.getIntPtrConstant(IncrementSize)); |
| 2077 | Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2, |
| 2078 | LD->getSrcValue(), SVOffset + IncrementSize, |
| 2079 | ExtraVT, isVolatile, |
| 2080 | MinAlign(Alignment, IncrementSize)); |
| 2081 | |
| 2082 | // Build a factor node to remember that this load is independent of the |
| 2083 | // other one. |
| 2084 | Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1), |
| 2085 | Hi.getValue(1)); |
| 2086 | |
| 2087 | // Move the top bits to the right place. |
| 2088 | Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi, |
| 2089 | DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy())); |
| 2090 | |
| 2091 | // Join the hi and lo parts. |
| 2092 | Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi); |
| 2093 | } |
| 2094 | |
| 2095 | Tmp1 = LegalizeOp(Result); |
| 2096 | Tmp2 = LegalizeOp(Ch); |
| 2097 | } else { |
| 2098 | switch (TLI.getLoadXAction(ExtType, SrcVT)) { |
| 2099 | default: assert(0 && "This action is not supported yet!"); |
| 2100 | case TargetLowering::Custom: |
| 2101 | isCustom = true; |
| 2102 | // FALLTHROUGH |
| 2103 | case TargetLowering::Legal: |
| 2104 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset()); |
| 2105 | Tmp1 = Result.getValue(0); |
| 2106 | Tmp2 = Result.getValue(1); |
| 2107 | |
| 2108 | if (isCustom) { |
| 2109 | Tmp3 = TLI.LowerOperation(Result, DAG); |
| 2110 | if (Tmp3.Val) { |
| 2111 | Tmp1 = LegalizeOp(Tmp3); |
| 2112 | Tmp2 = LegalizeOp(Tmp3.getValue(1)); |
| 2113 | } |
| 2114 | } else { |
| 2115 | // If this is an unaligned load and the target doesn't support it, |
| 2116 | // expand it. |
| 2117 | if (!TLI.allowsUnalignedMemoryAccesses()) { |
| 2118 | unsigned ABIAlignment = TLI.getTargetData()-> |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2119 | getABITypeAlignment(LD->getMemoryVT().getTypeForMVT()); |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2120 | if (LD->getAlignment() < ABIAlignment){ |
| 2121 | Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG, |
| 2122 | TLI); |
| 2123 | Tmp1 = Result.getOperand(0); |
| 2124 | Tmp2 = Result.getOperand(1); |
| 2125 | Tmp1 = LegalizeOp(Tmp1); |
| 2126 | Tmp2 = LegalizeOp(Tmp2); |
| 2127 | } |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2128 | } |
| 2129 | } |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2130 | break; |
| 2131 | case TargetLowering::Expand: |
| 2132 | // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND |
| 2133 | if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2134 | SDValue Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(), |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2135 | LD->getSrcValueOffset(), |
| 2136 | LD->isVolatile(), LD->getAlignment()); |
| 2137 | Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load); |
| 2138 | Tmp1 = LegalizeOp(Result); // Relegalize new nodes. |
| 2139 | Tmp2 = LegalizeOp(Load.getValue(1)); |
| 2140 | break; |
| 2141 | } |
| 2142 | assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!"); |
| 2143 | // Turn the unsupported load into an EXTLOAD followed by an explicit |
| 2144 | // zero/sign extend inreg. |
| 2145 | Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0), |
| 2146 | Tmp1, Tmp2, LD->getSrcValue(), |
| 2147 | LD->getSrcValueOffset(), SrcVT, |
| 2148 | LD->isVolatile(), LD->getAlignment()); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2149 | SDValue ValRes; |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2150 | if (ExtType == ISD::SEXTLOAD) |
| 2151 | ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(), |
| 2152 | Result, DAG.getValueType(SrcVT)); |
| 2153 | else |
| 2154 | ValRes = DAG.getZeroExtendInReg(Result, SrcVT); |
| 2155 | Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes. |
| 2156 | Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes. |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2157 | break; |
| 2158 | } |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2159 | } |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2160 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2161 | // Since loads produce two values, make sure to remember that we legalized |
| 2162 | // both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2163 | AddLegalizedOperand(SDValue(Node, 0), Tmp1); |
| 2164 | AddLegalizedOperand(SDValue(Node, 1), Tmp2); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2165 | return Op.ResNo ? Tmp2 : Tmp1; |
Chris Lattner | 01ff721 | 2005-04-10 22:54:25 +0000 | [diff] [blame] | 2166 | } |
Chris Lattner | 01ff721 | 2005-04-10 22:54:25 +0000 | [diff] [blame] | 2167 | } |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2168 | case ISD::EXTRACT_ELEMENT: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2169 | MVT OpTy = Node->getOperand(0).getValueType(); |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2170 | switch (getTypeAction(OpTy)) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2171 | default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!"); |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2172 | case Legal: |
| 2173 | if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) { |
| 2174 | // 1 -> Hi |
| 2175 | Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0), |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2176 | DAG.getConstant(OpTy.getSizeInBits()/2, |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2177 | TLI.getShiftAmountTy())); |
| 2178 | Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result); |
| 2179 | } else { |
| 2180 | // 0 -> Lo |
| 2181 | Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), |
| 2182 | Node->getOperand(0)); |
| 2183 | } |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2184 | break; |
| 2185 | case Expand: |
| 2186 | // Get both the low and high parts. |
| 2187 | ExpandOp(Node->getOperand(0), Tmp1, Tmp2); |
| 2188 | if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) |
| 2189 | Result = Tmp2; // 1 -> Hi |
| 2190 | else |
| 2191 | Result = Tmp1; // 0 -> Lo |
| 2192 | break; |
| 2193 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2194 | break; |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2195 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2196 | |
| 2197 | case ISD::CopyToReg: |
| 2198 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2199 | |
Chris Lattner | c9c60f6 | 2005-08-24 16:35:28 +0000 | [diff] [blame] | 2200 | assert(isTypeLegal(Node->getOperand(2).getValueType()) && |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 2201 | "Register type must be legal!"); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 2202 | // Legalize the incoming value (must be a legal type). |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 2203 | Tmp2 = LegalizeOp(Node->getOperand(2)); |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 2204 | if (Node->getNumValues() == 1) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2205 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 2206 | } else { |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 2207 | assert(Node->getNumValues() == 2 && "Unknown CopyToReg"); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2208 | if (Node->getNumOperands() == 4) { |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 2209 | Tmp3 = LegalizeOp(Node->getOperand(3)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2210 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2, |
| 2211 | Tmp3); |
| 2212 | } else { |
| 2213 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 2214 | } |
| 2215 | |
| 2216 | // Since this produces two values, make sure to remember that we legalized |
| 2217 | // both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2218 | AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0)); |
| 2219 | AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2220 | return Result; |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 2221 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2222 | break; |
| 2223 | |
| 2224 | case ISD::RET: |
| 2225 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 2226 | |
| 2227 | // Ensure that libcalls are emitted before a return. |
| 2228 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 2229 | Tmp1 = LegalizeOp(Tmp1); |
| 2230 | LastCALLSEQ_END = DAG.getEntryNode(); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2231 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2232 | switch (Node->getNumOperands()) { |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2233 | case 3: // ret val |
Evan Cheng | 98f8aeb | 2006-04-11 06:33:39 +0000 | [diff] [blame] | 2234 | Tmp2 = Node->getOperand(1); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2235 | Tmp3 = Node->getOperand(2); // Signness |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2236 | switch (getTypeAction(Tmp2.getValueType())) { |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2237 | case Legal: |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2238 | Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2239 | break; |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2240 | case Expand: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2241 | if (!Tmp2.getValueType().isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2242 | SDValue Lo, Hi; |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2243 | ExpandOp(Tmp2, Lo, Hi); |
Chris Lattner | edf2e8d | 2007-03-06 20:01:06 +0000 | [diff] [blame] | 2244 | |
| 2245 | // Big endian systems want the hi reg first. |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 2246 | if (TLI.isBigEndian()) |
Chris Lattner | edf2e8d | 2007-03-06 20:01:06 +0000 | [diff] [blame] | 2247 | std::swap(Lo, Hi); |
| 2248 | |
Evan Cheng | 13acce3 | 2006-12-11 19:27:14 +0000 | [diff] [blame] | 2249 | if (Hi.Val) |
| 2250 | Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3); |
| 2251 | else |
| 2252 | Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3); |
Chris Lattner | f921a51 | 2006-08-21 20:24:53 +0000 | [diff] [blame] | 2253 | Result = LegalizeOp(Result); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2254 | } else { |
| 2255 | SDNode *InVal = Tmp2.Val; |
Dale Johannesen | e526962 | 2007-10-20 00:07:52 +0000 | [diff] [blame] | 2256 | int InIx = Tmp2.ResNo; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2257 | unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements(); |
| 2258 | MVT EVT = InVal->getValueType(InIx).getVectorElementType(); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2259 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2260 | // Figure out if there is a simple type corresponding to this Vector |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 2261 | // type. If so, convert to the vector type. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2262 | MVT TVT = MVT::getVectorVT(EVT, NumElems); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2263 | if (TLI.isTypeLegal(TVT)) { |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 2264 | // Turn this into a return of the vector type. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2265 | Tmp2 = LegalizeOp(Tmp2); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2266 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2267 | } else if (NumElems == 1) { |
| 2268 | // Turn this into a return of the scalar type. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2269 | Tmp2 = ScalarizeVectorOp(Tmp2); |
| 2270 | Tmp2 = LegalizeOp(Tmp2); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2271 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | b49e52c | 2006-04-11 02:00:08 +0000 | [diff] [blame] | 2272 | |
| 2273 | // FIXME: Returns of gcc generic vectors smaller than a legal type |
| 2274 | // should be returned in integer registers! |
| 2275 | |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2276 | // The scalarized value type may not be legal, e.g. it might require |
| 2277 | // promotion or expansion. Relegalize the return. |
| 2278 | Result = LegalizeOp(Result); |
| 2279 | } else { |
Chris Lattner | b49e52c | 2006-04-11 02:00:08 +0000 | [diff] [blame] | 2280 | // FIXME: Returns of gcc generic vectors larger than a legal vector |
| 2281 | // type should be returned by reference! |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2282 | SDValue Lo, Hi; |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2283 | SplitVectorOp(Tmp2, Lo, Hi); |
Chris Lattner | fea997a | 2007-02-01 04:55:59 +0000 | [diff] [blame] | 2284 | Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2285 | Result = LegalizeOp(Result); |
| 2286 | } |
| 2287 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2288 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2289 | case Promote: |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 2290 | Tmp2 = PromoteOp(Node->getOperand(1)); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2291 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2292 | Result = LegalizeOp(Result); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 2293 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2294 | } |
| 2295 | break; |
| 2296 | case 1: // ret void |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2297 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2298 | break; |
| 2299 | default: { // ret <values> |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2300 | SmallVector<SDValue, 8> NewValues; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2301 | NewValues.push_back(Tmp1); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2302 | for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2) |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2303 | switch (getTypeAction(Node->getOperand(i).getValueType())) { |
| 2304 | case Legal: |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 2305 | NewValues.push_back(LegalizeOp(Node->getOperand(i))); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2306 | NewValues.push_back(Node->getOperand(i+1)); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2307 | break; |
| 2308 | case Expand: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2309 | SDValue Lo, Hi; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2310 | assert(!Node->getOperand(i).getValueType().isExtended() && |
Chris Lattner | b49e52c | 2006-04-11 02:00:08 +0000 | [diff] [blame] | 2311 | "FIXME: TODO: implement returning non-legal vector types!"); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2312 | ExpandOp(Node->getOperand(i), Lo, Hi); |
| 2313 | NewValues.push_back(Lo); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2314 | NewValues.push_back(Node->getOperand(i+1)); |
Evan Cheng | 13acce3 | 2006-12-11 19:27:14 +0000 | [diff] [blame] | 2315 | if (Hi.Val) { |
| 2316 | NewValues.push_back(Hi); |
| 2317 | NewValues.push_back(Node->getOperand(i+1)); |
| 2318 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2319 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2320 | } |
| 2321 | case Promote: |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 2322 | assert(0 && "Can't promote multiple return value yet!"); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2323 | } |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2324 | |
| 2325 | if (NewValues.size() == Node->getNumOperands()) |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 2326 | Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size()); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2327 | else |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 2328 | Result = DAG.getNode(ISD::RET, MVT::Other, |
| 2329 | &NewValues[0], NewValues.size()); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2330 | break; |
| 2331 | } |
| 2332 | } |
Evan Cheng | 17c428e | 2006-01-06 00:41:43 +0000 | [diff] [blame] | 2333 | |
Chris Lattner | 6862dbc | 2006-01-29 21:02:23 +0000 | [diff] [blame] | 2334 | if (Result.getOpcode() == ISD::RET) { |
| 2335 | switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) { |
| 2336 | default: assert(0 && "This action is not supported yet!"); |
| 2337 | case TargetLowering::Legal: break; |
| 2338 | case TargetLowering::Custom: |
| 2339 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2340 | if (Tmp1.Val) Result = Tmp1; |
| 2341 | break; |
| 2342 | } |
Evan Cheng | 17c428e | 2006-01-06 00:41:43 +0000 | [diff] [blame] | 2343 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2344 | break; |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 2345 | case ISD::STORE: { |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2346 | StoreSDNode *ST = cast<StoreSDNode>(Node); |
| 2347 | Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain. |
| 2348 | Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer. |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2349 | int SVOffset = ST->getSrcValueOffset(); |
| 2350 | unsigned Alignment = ST->getAlignment(); |
| 2351 | bool isVolatile = ST->isVolatile(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2352 | |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2353 | if (!ST->isTruncatingStore()) { |
Chris Lattner | d93d46e | 2006-12-12 04:18:56 +0000 | [diff] [blame] | 2354 | // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr' |
| 2355 | // FIXME: We shouldn't do this for TargetConstantFP's. |
| 2356 | // FIXME: move this to the DAG Combiner! Note that we can't regress due |
| 2357 | // to phase ordering between legalized code and the dag combiner. This |
| 2358 | // probably means that we need to integrate dag combiner and legalizer |
| 2359 | // together. |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 2360 | // We generally can't do this one for long doubles. |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 2361 | if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) { |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2362 | if (CFP->getValueType(0) == MVT::f32 && |
| 2363 | getTypeAction(MVT::i32) == Legal) { |
Dan Gohman | 6cf9b8a | 2008-03-11 00:11:06 +0000 | [diff] [blame] | 2364 | Tmp3 = DAG.getConstant(CFP->getValueAPF(). |
| 2365 | convertToAPInt().zextOrTrunc(32), |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2366 | MVT::i32); |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 2367 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2368 | SVOffset, isVolatile, Alignment); |
| 2369 | break; |
| 2370 | } else if (CFP->getValueType(0) == MVT::f64) { |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2371 | // If this target supports 64-bit registers, do a single 64-bit store. |
| 2372 | if (getTypeAction(MVT::i64) == Legal) { |
| 2373 | Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt(). |
Dan Gohman | 6cf9b8a | 2008-03-11 00:11:06 +0000 | [diff] [blame] | 2374 | zextOrTrunc(64), MVT::i64); |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2375 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2376 | SVOffset, isVolatile, Alignment); |
| 2377 | break; |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 2378 | } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) { |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2379 | // Otherwise, if the target supports 32-bit registers, use 2 32-bit |
| 2380 | // stores. If the target supports neither 32- nor 64-bits, this |
| 2381 | // xform is certainly not worth it. |
Dan Gohman | 6cf9b8a | 2008-03-11 00:11:06 +0000 | [diff] [blame] | 2382 | const APInt &IntVal =CFP->getValueAPF().convertToAPInt(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2383 | SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32); |
| 2384 | SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32); |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 2385 | if (TLI.isBigEndian()) std::swap(Lo, Hi); |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2386 | |
| 2387 | Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(), |
| 2388 | SVOffset, isVolatile, Alignment); |
| 2389 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 2390 | DAG.getIntPtrConstant(4)); |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2391 | Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4, |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 2392 | isVolatile, MinAlign(Alignment, 4U)); |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2393 | |
| 2394 | Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi); |
| 2395 | break; |
| 2396 | } |
Chris Lattner | d93d46e | 2006-12-12 04:18:56 +0000 | [diff] [blame] | 2397 | } |
Chris Lattner | d93d46e | 2006-12-12 04:18:56 +0000 | [diff] [blame] | 2398 | } |
| 2399 | |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 2400 | switch (getTypeAction(ST->getMemoryVT())) { |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2401 | case Legal: { |
| 2402 | Tmp3 = LegalizeOp(ST->getValue()); |
| 2403 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2, |
| 2404 | ST->getOffset()); |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 2405 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2406 | MVT VT = Tmp3.getValueType(); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2407 | switch (TLI.getOperationAction(ISD::STORE, VT)) { |
| 2408 | default: assert(0 && "This action is not supported yet!"); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2409 | case TargetLowering::Legal: |
| 2410 | // If this is an unaligned store and the target doesn't support it, |
| 2411 | // expand it. |
| 2412 | if (!TLI.allowsUnalignedMemoryAccesses()) { |
| 2413 | unsigned ABIAlignment = TLI.getTargetData()-> |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2414 | getABITypeAlignment(ST->getMemoryVT().getTypeForMVT()); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2415 | if (ST->getAlignment() < ABIAlignment) |
| 2416 | Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG, |
| 2417 | TLI); |
| 2418 | } |
| 2419 | break; |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2420 | case TargetLowering::Custom: |
| 2421 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2422 | if (Tmp1.Val) Result = Tmp1; |
| 2423 | break; |
| 2424 | case TargetLowering::Promote: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2425 | assert(VT.isVector() && "Unknown legal promote case!"); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2426 | Tmp3 = DAG.getNode(ISD::BIT_CONVERT, |
| 2427 | TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3); |
| 2428 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2429 | ST->getSrcValue(), SVOffset, isVolatile, |
| 2430 | Alignment); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2431 | break; |
| 2432 | } |
| 2433 | break; |
| 2434 | } |
| 2435 | case Promote: |
| 2436 | // Truncate the value and store the result. |
| 2437 | Tmp3 = PromoteOp(ST->getValue()); |
| 2438 | Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 2439 | SVOffset, ST->getMemoryVT(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2440 | isVolatile, Alignment); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2441 | break; |
| 2442 | |
| 2443 | case Expand: |
| 2444 | unsigned IncrementSize = 0; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2445 | SDValue Lo, Hi; |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2446 | |
| 2447 | // If this is a vector type, then we have to calculate the increment as |
| 2448 | // the product of the element size in bytes, and the number of elements |
| 2449 | // in the high half of the vector. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2450 | if (ST->getValue().getValueType().isVector()) { |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2451 | SDNode *InVal = ST->getValue().Val; |
Dale Johannesen | e526962 | 2007-10-20 00:07:52 +0000 | [diff] [blame] | 2452 | int InIx = ST->getValue().ResNo; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2453 | MVT InVT = InVal->getValueType(InIx); |
| 2454 | unsigned NumElems = InVT.getVectorNumElements(); |
| 2455 | MVT EVT = InVT.getVectorElementType(); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2456 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2457 | // Figure out if there is a simple type corresponding to this Vector |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 2458 | // type. If so, convert to the vector type. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2459 | MVT TVT = MVT::getVectorVT(EVT, NumElems); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2460 | if (TLI.isTypeLegal(TVT)) { |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 2461 | // Turn this into a normal store of the vector type. |
Dan Gohman | 21be384 | 2008-02-15 18:11:59 +0000 | [diff] [blame] | 2462 | Tmp3 = LegalizeOp(ST->getValue()); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2463 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2464 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2465 | Result = LegalizeOp(Result); |
| 2466 | break; |
| 2467 | } else if (NumElems == 1) { |
| 2468 | // Turn this into a normal store of the scalar type. |
Dan Gohman | 21be384 | 2008-02-15 18:11:59 +0000 | [diff] [blame] | 2469 | Tmp3 = ScalarizeVectorOp(ST->getValue()); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2470 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2471 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2472 | // The scalarized value type may not be legal, e.g. it might require |
| 2473 | // promotion or expansion. Relegalize the scalar store. |
| 2474 | Result = LegalizeOp(Result); |
| 2475 | break; |
| 2476 | } else { |
Dan Gohman | 21be384 | 2008-02-15 18:11:59 +0000 | [diff] [blame] | 2477 | SplitVectorOp(ST->getValue(), Lo, Hi); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2478 | IncrementSize = Lo.Val->getValueType(0).getVectorNumElements() * |
| 2479 | EVT.getSizeInBits()/8; |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2480 | } |
| 2481 | } else { |
Dan Gohman | 21be384 | 2008-02-15 18:11:59 +0000 | [diff] [blame] | 2482 | ExpandOp(ST->getValue(), Lo, Hi); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2483 | IncrementSize = Hi.Val ? Hi.getValueType().getSizeInBits()/8 : 0; |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2484 | |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 2485 | if (TLI.isBigEndian()) |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2486 | std::swap(Lo, Hi); |
| 2487 | } |
| 2488 | |
| 2489 | Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2490 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 7b2b5c8 | 2006-12-12 19:53:13 +0000 | [diff] [blame] | 2491 | |
| 2492 | if (Hi.Val == NULL) { |
| 2493 | // Must be int <-> float one-to-one expansion. |
| 2494 | Result = Lo; |
| 2495 | break; |
| 2496 | } |
| 2497 | |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2498 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 2499 | DAG.getIntPtrConstant(IncrementSize)); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2500 | assert(isTypeLegal(Tmp2.getValueType()) && |
| 2501 | "Pointers must be legal!"); |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2502 | SVOffset += IncrementSize; |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 2503 | Alignment = MinAlign(Alignment, IncrementSize); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2504 | Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2505 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2506 | Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi); |
| 2507 | break; |
| 2508 | } |
| 2509 | } else { |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 2510 | switch (getTypeAction(ST->getValue().getValueType())) { |
| 2511 | case Legal: |
| 2512 | Tmp3 = LegalizeOp(ST->getValue()); |
| 2513 | break; |
| 2514 | case Promote: |
| 2515 | // We can promote the value, the truncstore will still take care of it. |
| 2516 | Tmp3 = PromoteOp(ST->getValue()); |
| 2517 | break; |
| 2518 | case Expand: |
| 2519 | // Just store the low part. This may become a non-trunc store, so make |
| 2520 | // sure to use getTruncStore, not UpdateNodeOperands below. |
| 2521 | ExpandOp(ST->getValue(), Tmp3, Tmp4); |
| 2522 | return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2523 | SVOffset, MVT::i8, isVolatile, Alignment); |
| 2524 | } |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2525 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2526 | MVT StVT = ST->getMemoryVT(); |
| 2527 | unsigned StWidth = StVT.getSizeInBits(); |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2528 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2529 | if (StWidth != StVT.getStoreSizeInBits()) { |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2530 | // Promote to a byte-sized store with upper bits zero if not |
| 2531 | // storing an integral number of bytes. For example, promote |
| 2532 | // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1) |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2533 | MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits()); |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2534 | Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT); |
| 2535 | Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2536 | SVOffset, NVT, isVolatile, Alignment); |
| 2537 | } else if (StWidth & (StWidth - 1)) { |
| 2538 | // If not storing a power-of-2 number of bits, expand as two stores. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2539 | assert(StVT.isExtended() && !StVT.isVector() && |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2540 | "Unsupported truncstore!"); |
| 2541 | unsigned RoundWidth = 1 << Log2_32(StWidth); |
| 2542 | assert(RoundWidth < StWidth); |
| 2543 | unsigned ExtraWidth = StWidth - RoundWidth; |
| 2544 | assert(ExtraWidth < RoundWidth); |
| 2545 | assert(!(RoundWidth % 8) && !(ExtraWidth % 8) && |
| 2546 | "Store size not an integral number of bytes!"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2547 | MVT RoundVT = MVT::getIntegerVT(RoundWidth); |
| 2548 | MVT ExtraVT = MVT::getIntegerVT(ExtraWidth); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2549 | SDValue Lo, Hi; |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2550 | unsigned IncrementSize; |
| 2551 | |
| 2552 | if (TLI.isLittleEndian()) { |
| 2553 | // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16) |
| 2554 | // Store the bottom RoundWidth bits. |
| 2555 | Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2556 | SVOffset, RoundVT, |
| 2557 | isVolatile, Alignment); |
| 2558 | |
| 2559 | // Store the remaining ExtraWidth bits. |
| 2560 | IncrementSize = RoundWidth / 8; |
| 2561 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
| 2562 | DAG.getIntPtrConstant(IncrementSize)); |
| 2563 | Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3, |
| 2564 | DAG.getConstant(RoundWidth, TLI.getShiftAmountTy())); |
| 2565 | Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), |
| 2566 | SVOffset + IncrementSize, ExtraVT, isVolatile, |
| 2567 | MinAlign(Alignment, IncrementSize)); |
| 2568 | } else { |
| 2569 | // Big endian - avoid unaligned stores. |
| 2570 | // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X |
| 2571 | // Store the top RoundWidth bits. |
| 2572 | Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3, |
| 2573 | DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy())); |
| 2574 | Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset, |
| 2575 | RoundVT, isVolatile, Alignment); |
| 2576 | |
| 2577 | // Store the remaining ExtraWidth bits. |
| 2578 | IncrementSize = RoundWidth / 8; |
| 2579 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
| 2580 | DAG.getIntPtrConstant(IncrementSize)); |
| 2581 | Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2582 | SVOffset + IncrementSize, ExtraVT, isVolatile, |
| 2583 | MinAlign(Alignment, IncrementSize)); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2584 | } |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2585 | |
| 2586 | // The order of the stores doesn't matter. |
| 2587 | Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi); |
| 2588 | } else { |
| 2589 | if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() || |
| 2590 | Tmp2 != ST->getBasePtr()) |
| 2591 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2, |
| 2592 | ST->getOffset()); |
| 2593 | |
| 2594 | switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) { |
| 2595 | default: assert(0 && "This action is not supported yet!"); |
| 2596 | case TargetLowering::Legal: |
| 2597 | // If this is an unaligned store and the target doesn't support it, |
| 2598 | // expand it. |
| 2599 | if (!TLI.allowsUnalignedMemoryAccesses()) { |
| 2600 | unsigned ABIAlignment = TLI.getTargetData()-> |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2601 | getABITypeAlignment(ST->getMemoryVT().getTypeForMVT()); |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2602 | if (ST->getAlignment() < ABIAlignment) |
| 2603 | Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG, |
| 2604 | TLI); |
| 2605 | } |
| 2606 | break; |
| 2607 | case TargetLowering::Custom: |
| 2608 | Result = TLI.LowerOperation(Result, DAG); |
| 2609 | break; |
| 2610 | case Expand: |
| 2611 | // TRUNCSTORE:i16 i32 -> STORE i16 |
| 2612 | assert(isTypeLegal(StVT) && "Do not know how to expand this store!"); |
| 2613 | Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3); |
| 2614 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset, |
| 2615 | isVolatile, Alignment); |
| 2616 | break; |
| 2617 | } |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 2618 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2619 | } |
| 2620 | break; |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 2621 | } |
Andrew Lenharth | 9576212 | 2005-03-31 21:24:06 +0000 | [diff] [blame] | 2622 | case ISD::PCMARKER: |
| 2623 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2624 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Andrew Lenharth | 9576212 | 2005-03-31 21:24:06 +0000 | [diff] [blame] | 2625 | break; |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2626 | case ISD::STACKSAVE: |
| 2627 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2628 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 2629 | Tmp1 = Result.getValue(0); |
| 2630 | Tmp2 = Result.getValue(1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2631 | |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2632 | switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) { |
| 2633 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2634 | case TargetLowering::Legal: break; |
| 2635 | case TargetLowering::Custom: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2636 | Tmp3 = TLI.LowerOperation(Result, DAG); |
| 2637 | if (Tmp3.Val) { |
| 2638 | Tmp1 = LegalizeOp(Tmp3); |
| 2639 | Tmp2 = LegalizeOp(Tmp3.getValue(1)); |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2640 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2641 | break; |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2642 | case TargetLowering::Expand: |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2643 | // Expand to CopyFromReg if the target set |
| 2644 | // StackPointerRegisterToSaveRestore. |
| 2645 | if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2646 | Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP, |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2647 | Node->getValueType(0)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2648 | Tmp2 = Tmp1.getValue(1); |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2649 | } else { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2650 | Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0)); |
| 2651 | Tmp2 = Node->getOperand(0); |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2652 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2653 | break; |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2654 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2655 | |
| 2656 | // Since stacksave produce two values, make sure to remember that we |
| 2657 | // legalized both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2658 | AddLegalizedOperand(SDValue(Node, 0), Tmp1); |
| 2659 | AddLegalizedOperand(SDValue(Node, 1), Tmp2); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2660 | return Op.ResNo ? Tmp2 : Tmp1; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2661 | |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2662 | case ISD::STACKRESTORE: |
| 2663 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 2664 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2665 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2666 | |
| 2667 | switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) { |
| 2668 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2669 | case TargetLowering::Legal: break; |
| 2670 | case TargetLowering::Custom: |
| 2671 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2672 | if (Tmp1.Val) Result = Tmp1; |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2673 | break; |
| 2674 | case TargetLowering::Expand: |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2675 | // Expand to CopyToReg if the target set |
| 2676 | // StackPointerRegisterToSaveRestore. |
| 2677 | if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) { |
| 2678 | Result = DAG.getCopyToReg(Tmp1, SP, Tmp2); |
| 2679 | } else { |
| 2680 | Result = Tmp1; |
| 2681 | } |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2682 | break; |
| 2683 | } |
| 2684 | break; |
| 2685 | |
Andrew Lenharth | 51b8d54 | 2005-11-11 16:47:30 +0000 | [diff] [blame] | 2686 | case ISD::READCYCLECOUNTER: |
| 2687 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2688 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Evan Cheng | f0b3ba6 | 2006-11-29 08:26:18 +0000 | [diff] [blame] | 2689 | switch (TLI.getOperationAction(ISD::READCYCLECOUNTER, |
| 2690 | Node->getValueType(0))) { |
| 2691 | default: assert(0 && "This action is not supported yet!"); |
Evan Cheng | 6a16c5a | 2006-11-29 19:13:47 +0000 | [diff] [blame] | 2692 | case TargetLowering::Legal: |
| 2693 | Tmp1 = Result.getValue(0); |
| 2694 | Tmp2 = Result.getValue(1); |
| 2695 | break; |
Evan Cheng | f0b3ba6 | 2006-11-29 08:26:18 +0000 | [diff] [blame] | 2696 | case TargetLowering::Custom: |
| 2697 | Result = TLI.LowerOperation(Result, DAG); |
Evan Cheng | 6a16c5a | 2006-11-29 19:13:47 +0000 | [diff] [blame] | 2698 | Tmp1 = LegalizeOp(Result.getValue(0)); |
| 2699 | Tmp2 = LegalizeOp(Result.getValue(1)); |
Evan Cheng | f0b3ba6 | 2006-11-29 08:26:18 +0000 | [diff] [blame] | 2700 | break; |
| 2701 | } |
Andrew Lenharth | 49c709f | 2005-12-02 04:56:24 +0000 | [diff] [blame] | 2702 | |
| 2703 | // Since rdcc produce two values, make sure to remember that we legalized |
| 2704 | // both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2705 | AddLegalizedOperand(SDValue(Node, 0), Tmp1); |
| 2706 | AddLegalizedOperand(SDValue(Node, 1), Tmp2); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2707 | return Result; |
Andrew Lenharth | f70e30b | 2005-11-20 21:32:07 +0000 | [diff] [blame] | 2708 | |
Chris Lattner | 2ee743f | 2005-01-14 22:08:15 +0000 | [diff] [blame] | 2709 | case ISD::SELECT: |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 2710 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 2711 | case Expand: assert(0 && "It's impossible to expand bools"); |
| 2712 | case Legal: |
| 2713 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition. |
| 2714 | break; |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2715 | case Promote: { |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 2716 | Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition. |
Chris Lattner | b6c8060 | 2006-11-28 01:03:30 +0000 | [diff] [blame] | 2717 | // Make sure the condition is either zero or one. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2718 | unsigned BitWidth = Tmp1.getValueSizeInBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2719 | if (!DAG.MaskedValueIsZero(Tmp1, |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2720 | APInt::getHighBitsSet(BitWidth, BitWidth-1))) |
Chris Lattner | b6c8060 | 2006-11-28 01:03:30 +0000 | [diff] [blame] | 2721 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1); |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 2722 | break; |
| 2723 | } |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2724 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2725 | Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal |
Chris Lattner | 2ee743f | 2005-01-14 22:08:15 +0000 | [diff] [blame] | 2726 | Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2727 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2728 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2729 | |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 2730 | switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) { |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2731 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2732 | case TargetLowering::Legal: break; |
| 2733 | case TargetLowering::Custom: { |
| 2734 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2735 | if (Tmp1.Val) Result = Tmp1; |
| 2736 | break; |
| 2737 | } |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 2738 | case TargetLowering::Expand: |
| 2739 | if (Tmp1.getOpcode() == ISD::SETCC) { |
| 2740 | Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1), |
| 2741 | Tmp2, Tmp3, |
| 2742 | cast<CondCodeSDNode>(Tmp1.getOperand(2))->get()); |
| 2743 | } else { |
| 2744 | Result = DAG.getSelectCC(Tmp1, |
| 2745 | DAG.getConstant(0, Tmp1.getValueType()), |
| 2746 | Tmp2, Tmp3, ISD::SETNE); |
| 2747 | } |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2748 | break; |
| 2749 | case TargetLowering::Promote: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2750 | MVT NVT = |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2751 | TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType()); |
| 2752 | unsigned ExtOp, TruncOp; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2753 | if (Tmp2.getValueType().isVector()) { |
Evan Cheng | 41f6cbb | 2006-04-12 16:33:18 +0000 | [diff] [blame] | 2754 | ExtOp = ISD::BIT_CONVERT; |
| 2755 | TruncOp = ISD::BIT_CONVERT; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2756 | } else if (Tmp2.getValueType().isInteger()) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2757 | ExtOp = ISD::ANY_EXTEND; |
| 2758 | TruncOp = ISD::TRUNCATE; |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2759 | } else { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2760 | ExtOp = ISD::FP_EXTEND; |
| 2761 | TruncOp = ISD::FP_ROUND; |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2762 | } |
| 2763 | // Promote each of the values to the new type. |
| 2764 | Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2); |
| 2765 | Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3); |
| 2766 | // Perform the larger operation, then round down. |
| 2767 | Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 2768 | if (TruncOp != ISD::FP_ROUND) |
| 2769 | Result = DAG.getNode(TruncOp, Node->getValueType(0), Result); |
| 2770 | else |
| 2771 | Result = DAG.getNode(TruncOp, Node->getValueType(0), Result, |
| 2772 | DAG.getIntPtrConstant(0)); |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2773 | break; |
| 2774 | } |
| 2775 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2776 | break; |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 2777 | case ISD::SELECT_CC: { |
| 2778 | Tmp1 = Node->getOperand(0); // LHS |
| 2779 | Tmp2 = Node->getOperand(1); // RHS |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 2780 | Tmp3 = LegalizeOp(Node->getOperand(2)); // True |
| 2781 | Tmp4 = LegalizeOp(Node->getOperand(3)); // False |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2782 | SDValue CC = Node->getOperand(4); |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 2783 | |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 2784 | LegalizeSetCCOperands(Tmp1, Tmp2, CC); |
| 2785 | |
| 2786 | // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands, |
| 2787 | // the LHS is a legal SETCC itself. In this case, we need to compare |
| 2788 | // the result against zero to select between true and false values. |
| 2789 | if (Tmp2.Val == 0) { |
| 2790 | Tmp2 = DAG.getConstant(0, Tmp1.getValueType()); |
| 2791 | CC = DAG.getCondCode(ISD::SETNE); |
| 2792 | } |
| 2793 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC); |
| 2794 | |
| 2795 | // Everything is legal, see if we should expand this op or something. |
| 2796 | switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) { |
| 2797 | default: assert(0 && "This action is not supported yet!"); |
| 2798 | case TargetLowering::Legal: break; |
| 2799 | case TargetLowering::Custom: |
| 2800 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2801 | if (Tmp1.Val) Result = Tmp1; |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 2802 | break; |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 2803 | } |
| 2804 | break; |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 2805 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2806 | case ISD::SETCC: |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 2807 | Tmp1 = Node->getOperand(0); |
| 2808 | Tmp2 = Node->getOperand(1); |
| 2809 | Tmp3 = Node->getOperand(2); |
| 2810 | LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3); |
| 2811 | |
| 2812 | // If we had to Expand the SetCC operands into a SELECT node, then it may |
| 2813 | // not always be possible to return a true LHS & RHS. In this case, just |
| 2814 | // return the value we legalized, returned in the LHS |
| 2815 | if (Tmp2.Val == 0) { |
| 2816 | Result = Tmp1; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2817 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2818 | } |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 2819 | |
Chris Lattner | 73e142f | 2006-01-30 22:43:50 +0000 | [diff] [blame] | 2820 | switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2821 | default: assert(0 && "Cannot handle this action for SETCC yet!"); |
| 2822 | case TargetLowering::Custom: |
| 2823 | isCustom = true; |
| 2824 | // FALLTHROUGH. |
| 2825 | case TargetLowering::Legal: |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 2826 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2827 | if (isCustom) { |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 2828 | Tmp4 = TLI.LowerOperation(Result, DAG); |
| 2829 | if (Tmp4.Val) Result = Tmp4; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2830 | } |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 2831 | break; |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 2832 | case TargetLowering::Promote: { |
| 2833 | // First step, figure out the appropriate operation to use. |
| 2834 | // Allow SETCC to not be supported for all legal data types |
| 2835 | // Mostly this targets FP |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2836 | MVT NewInTy = Node->getOperand(0).getValueType(); |
| 2837 | MVT OldVT = NewInTy; OldVT = OldVT; |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 2838 | |
| 2839 | // Scan for the appropriate larger type to use. |
| 2840 | while (1) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2841 | NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1); |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 2842 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2843 | assert(NewInTy.isInteger() == OldVT.isInteger() && |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 2844 | "Fell off of the edge of the integer world"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2845 | assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() && |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 2846 | "Fell off of the edge of the floating point world"); |
| 2847 | |
| 2848 | // If the target supports SETCC of this type, use it. |
Chris Lattner | 1ccf26a | 2005-12-22 05:23:45 +0000 | [diff] [blame] | 2849 | if (TLI.isOperationLegal(ISD::SETCC, NewInTy)) |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 2850 | break; |
| 2851 | } |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2852 | if (NewInTy.isInteger()) |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 2853 | assert(0 && "Cannot promote Legal Integer SETCC yet"); |
| 2854 | else { |
| 2855 | Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1); |
| 2856 | Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2); |
| 2857 | } |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2858 | Tmp1 = LegalizeOp(Tmp1); |
| 2859 | Tmp2 = LegalizeOp(Tmp2); |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 2860 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Evan Cheng | 433f8ac | 2006-01-17 19:47:13 +0000 | [diff] [blame] | 2861 | Result = LegalizeOp(Result); |
Andrew Lenharth | 5e3efbc | 2005-08-29 20:46:51 +0000 | [diff] [blame] | 2862 | break; |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 2863 | } |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 2864 | case TargetLowering::Expand: |
| 2865 | // Expand a setcc node into a select_cc of the same condition, lhs, and |
| 2866 | // rhs that selects between const 1 (true) and const 0 (false). |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2867 | MVT VT = Node->getValueType(0); |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 2868 | Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2, |
| 2869 | DAG.getConstant(1, VT), DAG.getConstant(0, VT), |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 2870 | Tmp3); |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 2871 | break; |
| 2872 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2873 | break; |
Nate Begeman | b43e9c1 | 2008-05-12 19:40:03 +0000 | [diff] [blame] | 2874 | case ISD::VSETCC: { |
| 2875 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
| 2876 | Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2877 | SDValue CC = Node->getOperand(2); |
Nate Begeman | b43e9c1 | 2008-05-12 19:40:03 +0000 | [diff] [blame] | 2878 | |
| 2879 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC); |
| 2880 | |
| 2881 | // Everything is legal, see if we should expand this op or something. |
| 2882 | switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) { |
| 2883 | default: assert(0 && "This action is not supported yet!"); |
| 2884 | case TargetLowering::Legal: break; |
| 2885 | case TargetLowering::Custom: |
| 2886 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2887 | if (Tmp1.Val) Result = Tmp1; |
| 2888 | break; |
| 2889 | } |
| 2890 | break; |
| 2891 | } |
Chris Lattner | 52d08bd | 2005-05-09 20:23:03 +0000 | [diff] [blame] | 2892 | |
Chris Lattner | 5b359c6 | 2005-04-02 04:00:59 +0000 | [diff] [blame] | 2893 | case ISD::SHL_PARTS: |
| 2894 | case ISD::SRA_PARTS: |
| 2895 | case ISD::SRL_PARTS: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2896 | SmallVector<SDValue, 8> Ops; |
Chris Lattner | 84f6788 | 2005-01-20 18:52:28 +0000 | [diff] [blame] | 2897 | bool Changed = false; |
| 2898 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) { |
| 2899 | Ops.push_back(LegalizeOp(Node->getOperand(i))); |
| 2900 | Changed |= Ops.back() != Node->getOperand(i); |
| 2901 | } |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2902 | if (Changed) |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 2903 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 2904 | |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 2905 | switch (TLI.getOperationAction(Node->getOpcode(), |
| 2906 | Node->getValueType(0))) { |
| 2907 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2908 | case TargetLowering::Legal: break; |
| 2909 | case TargetLowering::Custom: |
| 2910 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2911 | if (Tmp1.Val) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2912 | SDValue Tmp2, RetVal(0, 0); |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 2913 | for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2914 | Tmp2 = LegalizeOp(Tmp1.getValue(i)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2915 | AddLegalizedOperand(SDValue(Node, i), Tmp2); |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 2916 | if (i == Op.ResNo) |
Evan Cheng | 12f2274 | 2006-01-19 04:54:52 +0000 | [diff] [blame] | 2917 | RetVal = Tmp2; |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 2918 | } |
Chris Lattner | 269f8c0 | 2006-01-10 19:43:26 +0000 | [diff] [blame] | 2919 | assert(RetVal.Val && "Illegal result number"); |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 2920 | return RetVal; |
| 2921 | } |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 2922 | break; |
| 2923 | } |
| 2924 | |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 2925 | // Since these produce multiple values, make sure to remember that we |
| 2926 | // legalized all of them. |
| 2927 | for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2928 | AddLegalizedOperand(SDValue(Node, i), Result.getValue(i)); |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 2929 | return Result.getValue(Op.ResNo); |
Chris Lattner | 84f6788 | 2005-01-20 18:52:28 +0000 | [diff] [blame] | 2930 | } |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 2931 | |
| 2932 | // Binary operators |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2933 | case ISD::ADD: |
| 2934 | case ISD::SUB: |
| 2935 | case ISD::MUL: |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 2936 | case ISD::MULHS: |
| 2937 | case ISD::MULHU: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2938 | case ISD::UDIV: |
| 2939 | case ISD::SDIV: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2940 | case ISD::AND: |
| 2941 | case ISD::OR: |
| 2942 | case ISD::XOR: |
Chris Lattner | 03c0cf8 | 2005-01-07 21:45:56 +0000 | [diff] [blame] | 2943 | case ISD::SHL: |
| 2944 | case ISD::SRL: |
| 2945 | case ISD::SRA: |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 2946 | case ISD::FADD: |
| 2947 | case ISD::FSUB: |
| 2948 | case ISD::FMUL: |
| 2949 | case ISD::FDIV: |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 2950 | case ISD::FPOW: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2951 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
Andrew Lenharth | f2eb139 | 2005-07-05 19:52:39 +0000 | [diff] [blame] | 2952 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
| 2953 | case Expand: assert(0 && "Not possible"); |
| 2954 | case Legal: |
| 2955 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS. |
| 2956 | break; |
| 2957 | case Promote: |
| 2958 | Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS. |
| 2959 | break; |
| 2960 | } |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2961 | |
| 2962 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2963 | |
Andrew Lenharth | e8f65f1 | 2005-12-24 23:42:32 +0000 | [diff] [blame] | 2964 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Chris Lattner | bc70cf8 | 2006-04-02 03:57:31 +0000 | [diff] [blame] | 2965 | default: assert(0 && "BinOp legalize operation not supported"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2966 | case TargetLowering::Legal: break; |
| 2967 | case TargetLowering::Custom: |
| 2968 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2969 | if (Tmp1.Val) Result = Tmp1; |
Andrew Lenharth | 57030e3 | 2005-12-25 01:07:37 +0000 | [diff] [blame] | 2970 | break; |
Chris Lattner | bc70cf8 | 2006-04-02 03:57:31 +0000 | [diff] [blame] | 2971 | case TargetLowering::Expand: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2972 | MVT VT = Op.getValueType(); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 2973 | |
| 2974 | // See if multiply or divide can be lowered using two-result operations. |
| 2975 | SDVTList VTs = DAG.getVTList(VT, VT); |
| 2976 | if (Node->getOpcode() == ISD::MUL) { |
| 2977 | // We just need the low half of the multiply; try both the signed |
| 2978 | // and unsigned forms. If the target supports both SMUL_LOHI and |
| 2979 | // UMUL_LOHI, form a preference by checking which forms of plain |
| 2980 | // MULH it supports. |
| 2981 | bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT); |
| 2982 | bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT); |
| 2983 | bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT); |
| 2984 | bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT); |
| 2985 | unsigned OpToUse = 0; |
| 2986 | if (HasSMUL_LOHI && !HasMULHS) { |
| 2987 | OpToUse = ISD::SMUL_LOHI; |
| 2988 | } else if (HasUMUL_LOHI && !HasMULHU) { |
| 2989 | OpToUse = ISD::UMUL_LOHI; |
| 2990 | } else if (HasSMUL_LOHI) { |
| 2991 | OpToUse = ISD::SMUL_LOHI; |
| 2992 | } else if (HasUMUL_LOHI) { |
| 2993 | OpToUse = ISD::UMUL_LOHI; |
| 2994 | } |
| 2995 | if (OpToUse) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 2996 | Result = SDValue(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 2997 | break; |
| 2998 | } |
| 2999 | } |
| 3000 | if (Node->getOpcode() == ISD::MULHS && |
| 3001 | TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3002 | Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3003 | break; |
| 3004 | } |
| 3005 | if (Node->getOpcode() == ISD::MULHU && |
| 3006 | TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3007 | Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3008 | break; |
| 3009 | } |
| 3010 | if (Node->getOpcode() == ISD::SDIV && |
| 3011 | TLI.isOperationLegal(ISD::SDIVREM, VT)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3012 | Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3013 | break; |
| 3014 | } |
| 3015 | if (Node->getOpcode() == ISD::UDIV && |
| 3016 | TLI.isOperationLegal(ISD::UDIVREM, VT)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3017 | Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3018 | break; |
| 3019 | } |
| 3020 | |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3021 | // Check to see if we have a libcall for this operator. |
| 3022 | RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; |
| 3023 | bool isSigned = false; |
| 3024 | switch (Node->getOpcode()) { |
| 3025 | case ISD::UDIV: |
| 3026 | case ISD::SDIV: |
| 3027 | if (VT == MVT::i32) { |
| 3028 | LC = Node->getOpcode() == ISD::UDIV |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3029 | ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32; |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3030 | isSigned = Node->getOpcode() == ISD::SDIV; |
| 3031 | } |
| 3032 | break; |
| 3033 | case ISD::FPOW: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3034 | LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80, |
| 3035 | RTLIB::POW_PPCF128); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3036 | break; |
| 3037 | default: break; |
| 3038 | } |
| 3039 | if (LC != RTLIB::UNKNOWN_LIBCALL) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3040 | SDValue Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3041 | Result = ExpandLibCall(LC, Node, isSigned, Dummy); |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3042 | break; |
| 3043 | } |
| 3044 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3045 | assert(Node->getValueType(0).isVector() && |
Chris Lattner | bc70cf8 | 2006-04-02 03:57:31 +0000 | [diff] [blame] | 3046 | "Cannot expand this binary operator!"); |
| 3047 | // Expand the operation into a bunch of nasty scalar code. |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3048 | Result = LegalizeOp(UnrollVectorOp(Op)); |
Chris Lattner | bc70cf8 | 2006-04-02 03:57:31 +0000 | [diff] [blame] | 3049 | break; |
| 3050 | } |
Evan Cheng | cc98761 | 2006-04-12 21:20:24 +0000 | [diff] [blame] | 3051 | case TargetLowering::Promote: { |
| 3052 | switch (Node->getOpcode()) { |
| 3053 | default: assert(0 && "Do not know how to promote this BinOp!"); |
| 3054 | case ISD::AND: |
| 3055 | case ISD::OR: |
| 3056 | case ISD::XOR: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3057 | MVT OVT = Node->getValueType(0); |
| 3058 | MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); |
| 3059 | assert(OVT.isVector() && "Cannot promote this BinOp!"); |
Evan Cheng | cc98761 | 2006-04-12 21:20:24 +0000 | [diff] [blame] | 3060 | // Bit convert each of the values to the new type. |
| 3061 | Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1); |
| 3062 | Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2); |
| 3063 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2); |
| 3064 | // Bit convert the result back the original type. |
| 3065 | Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result); |
| 3066 | break; |
| 3067 | } |
| 3068 | } |
| 3069 | } |
Andrew Lenharth | e8f65f1 | 2005-12-24 23:42:32 +0000 | [diff] [blame] | 3070 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3071 | break; |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3072 | |
Dan Gohman | e14ea86 | 2007-10-05 14:17:22 +0000 | [diff] [blame] | 3073 | case ISD::SMUL_LOHI: |
| 3074 | case ISD::UMUL_LOHI: |
| 3075 | case ISD::SDIVREM: |
| 3076 | case ISD::UDIVREM: |
| 3077 | // These nodes will only be produced by target-specific lowering, so |
| 3078 | // they shouldn't be here if they aren't legal. |
Duncan Sands | a7c97a7 | 2007-10-16 09:07:20 +0000 | [diff] [blame] | 3079 | assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) && |
Dan Gohman | e14ea86 | 2007-10-05 14:17:22 +0000 | [diff] [blame] | 3080 | "This must be legal!"); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3081 | |
| 3082 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
| 3083 | Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS |
| 3084 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Dan Gohman | e14ea86 | 2007-10-05 14:17:22 +0000 | [diff] [blame] | 3085 | break; |
| 3086 | |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3087 | case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type! |
| 3088 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
| 3089 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
| 3090 | case Expand: assert(0 && "Not possible"); |
| 3091 | case Legal: |
| 3092 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS. |
| 3093 | break; |
| 3094 | case Promote: |
| 3095 | Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS. |
| 3096 | break; |
| 3097 | } |
| 3098 | |
| 3099 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 3100 | |
| 3101 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
| 3102 | default: assert(0 && "Operation not supported"); |
| 3103 | case TargetLowering::Custom: |
| 3104 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3105 | if (Tmp1.Val) Result = Tmp1; |
Chris Lattner | 8f4191d | 2006-03-13 06:08:38 +0000 | [diff] [blame] | 3106 | break; |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3107 | case TargetLowering::Legal: break; |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 3108 | case TargetLowering::Expand: { |
Evan Cheng | 636c753 | 2007-01-05 23:33:44 +0000 | [diff] [blame] | 3109 | // If this target supports fabs/fneg natively and select is cheap, |
| 3110 | // do this efficiently. |
| 3111 | if (!TLI.isSelectExpensive() && |
| 3112 | TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) == |
| 3113 | TargetLowering::Legal && |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 3114 | TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) == |
Evan Cheng | 636c753 | 2007-01-05 23:33:44 +0000 | [diff] [blame] | 3115 | TargetLowering::Legal) { |
Chris Lattner | 8f4191d | 2006-03-13 06:08:38 +0000 | [diff] [blame] | 3116 | // Get the sign bit of the RHS. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3117 | MVT IVT = |
Chris Lattner | 8f4191d | 2006-03-13 06:08:38 +0000 | [diff] [blame] | 3118 | Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3119 | SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 3120 | SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit), |
Chris Lattner | 8f4191d | 2006-03-13 06:08:38 +0000 | [diff] [blame] | 3121 | SignBit, DAG.getConstant(0, IVT), ISD::SETLT); |
| 3122 | // Get the absolute value of the result. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3123 | SDValue AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1); |
Chris Lattner | 8f4191d | 2006-03-13 06:08:38 +0000 | [diff] [blame] | 3124 | // Select between the nabs and abs value based on the sign bit of |
| 3125 | // the input. |
| 3126 | Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit, |
| 3127 | DAG.getNode(ISD::FNEG, AbsVal.getValueType(), |
| 3128 | AbsVal), |
| 3129 | AbsVal); |
| 3130 | Result = LegalizeOp(Result); |
| 3131 | break; |
| 3132 | } |
| 3133 | |
| 3134 | // Otherwise, do bitwise ops! |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3135 | MVT NVT = |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 3136 | Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64; |
| 3137 | Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI); |
| 3138 | Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result); |
| 3139 | Result = LegalizeOp(Result); |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3140 | break; |
| 3141 | } |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 3142 | } |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3143 | break; |
| 3144 | |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 3145 | case ISD::ADDC: |
| 3146 | case ISD::SUBC: |
| 3147 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3148 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 3149 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 3150 | // Since this produces two values, make sure to remember that we legalized |
| 3151 | // both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3152 | AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0)); |
| 3153 | AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1)); |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 3154 | return Result; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 3155 | |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 3156 | case ISD::ADDE: |
| 3157 | case ISD::SUBE: |
| 3158 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3159 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 3160 | Tmp3 = LegalizeOp(Node->getOperand(2)); |
| 3161 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
| 3162 | // Since this produces two values, make sure to remember that we legalized |
| 3163 | // both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3164 | AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0)); |
| 3165 | AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1)); |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 3166 | return Result; |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 3167 | |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3168 | case ISD::BUILD_PAIR: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3169 | MVT PairTy = Node->getValueType(0); |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3170 | // TODO: handle the case where the Lo and Hi operands are not of legal type |
| 3171 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo |
| 3172 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi |
| 3173 | switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3174 | case TargetLowering::Promote: |
| 3175 | case TargetLowering::Custom: |
| 3176 | assert(0 && "Cannot promote/custom this yet!"); |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3177 | case TargetLowering::Legal: |
| 3178 | if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1)) |
| 3179 | Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2); |
| 3180 | break; |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3181 | case TargetLowering::Expand: |
| 3182 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1); |
| 3183 | Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2); |
| 3184 | Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3185 | DAG.getConstant(PairTy.getSizeInBits()/2, |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3186 | TLI.getShiftAmountTy())); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3187 | Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2); |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3188 | break; |
| 3189 | } |
| 3190 | break; |
| 3191 | } |
| 3192 | |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3193 | case ISD::UREM: |
| 3194 | case ISD::SREM: |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 3195 | case ISD::FREM: |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3196 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
| 3197 | Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3198 | |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3199 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3200 | case TargetLowering::Promote: assert(0 && "Cannot promote this yet!"); |
| 3201 | case TargetLowering::Custom: |
| 3202 | isCustom = true; |
| 3203 | // FALLTHROUGH |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3204 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3205 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3206 | if (isCustom) { |
| 3207 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3208 | if (Tmp1.Val) Result = Tmp1; |
| 3209 | } |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3210 | break; |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3211 | case TargetLowering::Expand: { |
Evan Cheng | 6b5578f | 2006-09-18 23:28:33 +0000 | [diff] [blame] | 3212 | unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV; |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 3213 | bool isSigned = DivOpc == ISD::SDIV; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3214 | MVT VT = Node->getValueType(0); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3215 | |
| 3216 | // See if remainder can be lowered using two-result operations. |
| 3217 | SDVTList VTs = DAG.getVTList(VT, VT); |
| 3218 | if (Node->getOpcode() == ISD::SREM && |
| 3219 | TLI.isOperationLegal(ISD::SDIVREM, VT)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3220 | Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3221 | break; |
| 3222 | } |
| 3223 | if (Node->getOpcode() == ISD::UREM && |
| 3224 | TLI.isOperationLegal(ISD::UDIVREM, VT)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3225 | Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3226 | break; |
| 3227 | } |
| 3228 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3229 | if (VT.isInteger()) { |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3230 | if (TLI.getOperationAction(DivOpc, VT) == |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3231 | TargetLowering::Legal) { |
| 3232 | // X % Y -> X-X/Y*Y |
Evan Cheng | 6b5578f | 2006-09-18 23:28:33 +0000 | [diff] [blame] | 3233 | Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2); |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3234 | Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2); |
| 3235 | Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3236 | } else if (VT.isVector()) { |
Dan Gohman | 8017631 | 2007-11-05 23:35:22 +0000 | [diff] [blame] | 3237 | Result = LegalizeOp(UnrollVectorOp(Op)); |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3238 | } else { |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3239 | assert(VT == MVT::i32 && |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3240 | "Cannot expand this binary operator!"); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3241 | RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM |
| 3242 | ? RTLIB::UREM_I32 : RTLIB::SREM_I32; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3243 | SDValue Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3244 | Result = ExpandLibCall(LC, Node, isSigned, Dummy); |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3245 | } |
Dan Gohman | 0d97426 | 2007-11-06 22:11:54 +0000 | [diff] [blame] | 3246 | } else { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3247 | assert(VT.isFloatingPoint() && |
Dan Gohman | 0d97426 | 2007-11-06 22:11:54 +0000 | [diff] [blame] | 3248 | "remainder op must have integer or floating-point type"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3249 | if (VT.isVector()) { |
Dan Gohman | 8017631 | 2007-11-05 23:35:22 +0000 | [diff] [blame] | 3250 | Result = LegalizeOp(UnrollVectorOp(Op)); |
| 3251 | } else { |
| 3252 | // Floating point mod -> fmod libcall. |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3253 | RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64, |
| 3254 | RTLIB::REM_F80, RTLIB::REM_PPCF128); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3255 | SDValue Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3256 | Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy); |
Dan Gohman | 8017631 | 2007-11-05 23:35:22 +0000 | [diff] [blame] | 3257 | } |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3258 | } |
| 3259 | break; |
| 3260 | } |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3261 | } |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3262 | break; |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3263 | case ISD::VAARG: { |
| 3264 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 3265 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer. |
| 3266 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3267 | MVT VT = Node->getValueType(0); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3268 | switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) { |
| 3269 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3270 | case TargetLowering::Custom: |
| 3271 | isCustom = true; |
| 3272 | // FALLTHROUGH |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3273 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3274 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
| 3275 | Result = Result.getValue(0); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3276 | Tmp1 = Result.getValue(1); |
| 3277 | |
| 3278 | if (isCustom) { |
| 3279 | Tmp2 = TLI.LowerOperation(Result, DAG); |
| 3280 | if (Tmp2.Val) { |
| 3281 | Result = LegalizeOp(Tmp2); |
| 3282 | Tmp1 = LegalizeOp(Tmp2.getValue(1)); |
| 3283 | } |
| 3284 | } |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3285 | break; |
| 3286 | case TargetLowering::Expand: { |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 3287 | const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3288 | SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3289 | // Increment the pointer, VAList, to the next vaarg |
| 3290 | Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3291 | DAG.getConstant(VT.getSizeInBits()/8, |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3292 | TLI.getPointerTy())); |
| 3293 | // Store the incremented VAList to the legalized pointer |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 3294 | Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3295 | // Load the actual argument out of the pointer VAList |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 3296 | Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3297 | Tmp1 = LegalizeOp(Result.getValue(1)); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3298 | Result = LegalizeOp(Result); |
| 3299 | break; |
| 3300 | } |
| 3301 | } |
| 3302 | // Since VAARG produces two values, make sure to remember that we |
| 3303 | // legalized both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3304 | AddLegalizedOperand(SDValue(Node, 0), Result); |
| 3305 | AddLegalizedOperand(SDValue(Node, 1), Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3306 | return Op.ResNo ? Tmp1 : Result; |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3307 | } |
| 3308 | |
| 3309 | case ISD::VACOPY: |
| 3310 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 3311 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer. |
| 3312 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer. |
| 3313 | |
| 3314 | switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) { |
| 3315 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3316 | case TargetLowering::Custom: |
| 3317 | isCustom = true; |
| 3318 | // FALLTHROUGH |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3319 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3320 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, |
| 3321 | Node->getOperand(3), Node->getOperand(4)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3322 | if (isCustom) { |
| 3323 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3324 | if (Tmp1.Val) Result = Tmp1; |
| 3325 | } |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3326 | break; |
| 3327 | case TargetLowering::Expand: |
| 3328 | // This defaults to loading a pointer from the input and storing it to the |
| 3329 | // output, returning the chain. |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 3330 | const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue(); |
| 3331 | const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue(); |
Dan Gohman | 499c1bd | 2008-04-17 02:09:26 +0000 | [diff] [blame] | 3332 | Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0); |
| 3333 | Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3334 | break; |
| 3335 | } |
| 3336 | break; |
| 3337 | |
| 3338 | case ISD::VAEND: |
| 3339 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 3340 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer. |
| 3341 | |
| 3342 | switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) { |
| 3343 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3344 | case TargetLowering::Custom: |
| 3345 | isCustom = true; |
| 3346 | // FALLTHROUGH |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3347 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3348 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3349 | if (isCustom) { |
| 3350 | Tmp1 = TLI.LowerOperation(Tmp1, DAG); |
| 3351 | if (Tmp1.Val) Result = Tmp1; |
| 3352 | } |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3353 | break; |
| 3354 | case TargetLowering::Expand: |
| 3355 | Result = Tmp1; // Default to a no-op, return the chain |
| 3356 | break; |
| 3357 | } |
| 3358 | break; |
| 3359 | |
| 3360 | case ISD::VASTART: |
| 3361 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 3362 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer. |
| 3363 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3364 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
| 3365 | |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3366 | switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) { |
| 3367 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3368 | case TargetLowering::Legal: break; |
| 3369 | case TargetLowering::Custom: |
| 3370 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3371 | if (Tmp1.Val) Result = Tmp1; |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3372 | break; |
| 3373 | } |
| 3374 | break; |
| 3375 | |
Nate Begeman | 35ef913 | 2006-01-11 21:21:00 +0000 | [diff] [blame] | 3376 | case ISD::ROTL: |
| 3377 | case ISD::ROTR: |
| 3378 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
| 3379 | Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3380 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3381 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
| 3382 | default: |
| 3383 | assert(0 && "ROTL/ROTR legalize operation not supported"); |
| 3384 | break; |
| 3385 | case TargetLowering::Legal: |
| 3386 | break; |
| 3387 | case TargetLowering::Custom: |
| 3388 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3389 | if (Tmp1.Val) Result = Tmp1; |
| 3390 | break; |
| 3391 | case TargetLowering::Promote: |
| 3392 | assert(0 && "Do not know how to promote ROTL/ROTR"); |
| 3393 | break; |
| 3394 | case TargetLowering::Expand: |
| 3395 | assert(0 && "Do not know how to expand ROTL/ROTR"); |
| 3396 | break; |
| 3397 | } |
Nate Begeman | 35ef913 | 2006-01-11 21:21:00 +0000 | [diff] [blame] | 3398 | break; |
| 3399 | |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 3400 | case ISD::BSWAP: |
| 3401 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Op |
| 3402 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3403 | case TargetLowering::Custom: |
| 3404 | assert(0 && "Cannot custom legalize this yet!"); |
| 3405 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3406 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3407 | break; |
| 3408 | case TargetLowering::Promote: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3409 | MVT OVT = Tmp1.getValueType(); |
| 3410 | MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); |
| 3411 | unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits(); |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 3412 | |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3413 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1); |
| 3414 | Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1); |
| 3415 | Result = DAG.getNode(ISD::SRL, NVT, Tmp1, |
| 3416 | DAG.getConstant(DiffBits, TLI.getShiftAmountTy())); |
| 3417 | break; |
| 3418 | } |
| 3419 | case TargetLowering::Expand: |
| 3420 | Result = ExpandBSWAP(Tmp1); |
| 3421 | break; |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 3422 | } |
| 3423 | break; |
| 3424 | |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3425 | case ISD::CTPOP: |
| 3426 | case ISD::CTTZ: |
| 3427 | case ISD::CTLZ: |
| 3428 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Op |
| 3429 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Scott Michel | 910b66d | 2007-07-30 21:00:31 +0000 | [diff] [blame] | 3430 | case TargetLowering::Custom: |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3431 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3432 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Scott Michel | 910b66d | 2007-07-30 21:00:31 +0000 | [diff] [blame] | 3433 | if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) == |
Scott Michel | 335f4f7 | 2007-08-02 02:22:46 +0000 | [diff] [blame] | 3434 | TargetLowering::Custom) { |
| 3435 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3436 | if (Tmp1.Val) { |
| 3437 | Result = Tmp1; |
| 3438 | } |
Scott Michel | 910b66d | 2007-07-30 21:00:31 +0000 | [diff] [blame] | 3439 | } |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3440 | break; |
| 3441 | case TargetLowering::Promote: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3442 | MVT OVT = Tmp1.getValueType(); |
| 3443 | MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); |
Chris Lattner | edb1add | 2005-05-11 04:51:16 +0000 | [diff] [blame] | 3444 | |
| 3445 | // Zero extend the argument. |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3446 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1); |
| 3447 | // Perform the larger operation, then subtract if needed. |
| 3448 | Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3449 | switch (Node->getOpcode()) { |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3450 | case ISD::CTPOP: |
| 3451 | Result = Tmp1; |
| 3452 | break; |
| 3453 | case ISD::CTTZ: |
| 3454 | //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT) |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 3455 | Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3456 | DAG.getConstant(NVT.getSizeInBits(), NVT), |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 3457 | ISD::SETEQ); |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 3458 | Result = DAG.getNode(ISD::SELECT, NVT, Tmp2, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3459 | DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1); |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3460 | break; |
| 3461 | case ISD::CTLZ: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3462 | // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT)) |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 3463 | Result = DAG.getNode(ISD::SUB, NVT, Tmp1, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3464 | DAG.getConstant(NVT.getSizeInBits() - |
| 3465 | OVT.getSizeInBits(), NVT)); |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3466 | break; |
| 3467 | } |
| 3468 | break; |
| 3469 | } |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3470 | case TargetLowering::Expand: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3471 | Result = ExpandBitCount(Node->getOpcode(), Tmp1); |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3472 | break; |
| 3473 | } |
| 3474 | break; |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 3475 | |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3476 | // Unary operators |
| 3477 | case ISD::FABS: |
| 3478 | case ISD::FNEG: |
Chris Lattner | da6ba87 | 2005-04-28 21:44:33 +0000 | [diff] [blame] | 3479 | case ISD::FSQRT: |
| 3480 | case ISD::FSIN: |
| 3481 | case ISD::FCOS: |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3482 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3483 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3484 | case TargetLowering::Promote: |
| 3485 | case TargetLowering::Custom: |
Evan Cheng | 59ad781 | 2006-01-31 18:14:25 +0000 | [diff] [blame] | 3486 | isCustom = true; |
| 3487 | // FALLTHROUGH |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3488 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3489 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Evan Cheng | 59ad781 | 2006-01-31 18:14:25 +0000 | [diff] [blame] | 3490 | if (isCustom) { |
| 3491 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3492 | if (Tmp1.Val) Result = Tmp1; |
| 3493 | } |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3494 | break; |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3495 | case TargetLowering::Expand: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3496 | switch (Node->getOpcode()) { |
| 3497 | default: assert(0 && "Unreachable!"); |
| 3498 | case ISD::FNEG: |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3499 | // Expand Y = FNEG(X) -> Y = SUB -0.0, X |
| 3500 | Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3501 | Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1); |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3502 | break; |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3503 | case ISD::FABS: { |
Chris Lattner | 4af6e0d | 2005-04-02 05:26:37 +0000 | [diff] [blame] | 3504 | // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X). |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3505 | MVT VT = Node->getValueType(0); |
Chris Lattner | 4af6e0d | 2005-04-02 05:26:37 +0000 | [diff] [blame] | 3506 | Tmp2 = DAG.getConstantFP(0.0, VT); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 3507 | Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2, |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 3508 | ISD::SETUGT); |
Chris Lattner | 4af6e0d | 2005-04-02 05:26:37 +0000 | [diff] [blame] | 3509 | Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1); |
| 3510 | Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3); |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3511 | break; |
| 3512 | } |
| 3513 | case ISD::FSQRT: |
| 3514 | case ISD::FSIN: |
| 3515 | case ISD::FCOS: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3516 | MVT VT = Node->getValueType(0); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3517 | |
| 3518 | // Expand unsupported unary vector operators by unrolling them. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3519 | if (VT.isVector()) { |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3520 | Result = LegalizeOp(UnrollVectorOp(Op)); |
| 3521 | break; |
| 3522 | } |
| 3523 | |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3524 | RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3525 | switch(Node->getOpcode()) { |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3526 | case ISD::FSQRT: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3527 | LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64, |
| 3528 | RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3529 | break; |
| 3530 | case ISD::FSIN: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3531 | LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64, |
| 3532 | RTLIB::SIN_F80, RTLIB::SIN_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3533 | break; |
| 3534 | case ISD::FCOS: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3535 | LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64, |
| 3536 | RTLIB::COS_F80, RTLIB::COS_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3537 | break; |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3538 | default: assert(0 && "Unreachable!"); |
| 3539 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3540 | SDValue Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3541 | Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy); |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3542 | break; |
| 3543 | } |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3544 | } |
| 3545 | break; |
| 3546 | } |
| 3547 | break; |
Chris Lattner | 6ddf8ed | 2006-09-09 06:03:30 +0000 | [diff] [blame] | 3548 | case ISD::FPOWI: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3549 | MVT VT = Node->getValueType(0); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3550 | |
| 3551 | // Expand unsupported unary vector operators by unrolling them. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3552 | if (VT.isVector()) { |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3553 | Result = LegalizeOp(UnrollVectorOp(Op)); |
| 3554 | break; |
| 3555 | } |
| 3556 | |
| 3557 | // We always lower FPOWI into a libcall. No target support for it yet. |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3558 | RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, |
| 3559 | RTLIB::POWI_F80, RTLIB::POWI_PPCF128); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3560 | SDValue Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3561 | Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy); |
Chris Lattner | 6ddf8ed | 2006-09-09 06:03:30 +0000 | [diff] [blame] | 3562 | break; |
| 3563 | } |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 3564 | case ISD::BIT_CONVERT: |
Chris Lattner | 67993f7 | 2006-01-23 07:30:46 +0000 | [diff] [blame] | 3565 | if (!isTypeLegal(Node->getOperand(0).getValueType())) { |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 3566 | Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0), |
| 3567 | Node->getValueType(0)); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3568 | } else if (Op.getOperand(0).getValueType().isVector()) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3569 | // The input has to be a vector type, we have to either scalarize it, pack |
| 3570 | // it, or convert it based on whether the input vector type is legal. |
| 3571 | SDNode *InVal = Node->getOperand(0).Val; |
Dale Johannesen | e526962 | 2007-10-20 00:07:52 +0000 | [diff] [blame] | 3572 | int InIx = Node->getOperand(0).ResNo; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3573 | unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements(); |
| 3574 | MVT EVT = InVal->getValueType(InIx).getVectorElementType(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3575 | |
| 3576 | // Figure out if there is a simple type corresponding to this Vector |
| 3577 | // type. If so, convert to the vector type. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3578 | MVT TVT = MVT::getVectorVT(EVT, NumElems); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3579 | if (TLI.isTypeLegal(TVT)) { |
Dan Gohman | 07a9676 | 2007-07-16 14:29:03 +0000 | [diff] [blame] | 3580 | // Turn this into a bit convert of the vector input. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3581 | Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), |
| 3582 | LegalizeOp(Node->getOperand(0))); |
| 3583 | break; |
| 3584 | } else if (NumElems == 1) { |
| 3585 | // Turn this into a bit convert of the scalar input. |
| 3586 | Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), |
| 3587 | ScalarizeVectorOp(Node->getOperand(0))); |
| 3588 | break; |
| 3589 | } else { |
| 3590 | // FIXME: UNIMP! Store then reload |
| 3591 | assert(0 && "Cast from unsupported vector type not implemented yet!"); |
| 3592 | } |
Chris Lattner | 67993f7 | 2006-01-23 07:30:46 +0000 | [diff] [blame] | 3593 | } else { |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 3594 | switch (TLI.getOperationAction(ISD::BIT_CONVERT, |
| 3595 | Node->getOperand(0).getValueType())) { |
| 3596 | default: assert(0 && "Unknown operation action!"); |
| 3597 | case TargetLowering::Expand: |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 3598 | Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0), |
| 3599 | Node->getValueType(0)); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 3600 | break; |
| 3601 | case TargetLowering::Legal: |
| 3602 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3603 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 3604 | break; |
| 3605 | } |
| 3606 | } |
| 3607 | break; |
Chris Lattner | d1f04d4 | 2006-03-24 02:26:29 +0000 | [diff] [blame] | 3608 | |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3609 | // Conversion operators. The source and destination have different types. |
Chris Lattner | ae0aacb | 2005-01-08 08:08:56 +0000 | [diff] [blame] | 3610 | case ISD::SINT_TO_FP: |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3611 | case ISD::UINT_TO_FP: { |
| 3612 | bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3613 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 3614 | case Legal: |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 3615 | switch (TLI.getOperationAction(Node->getOpcode(), |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3616 | Node->getOperand(0).getValueType())) { |
| 3617 | default: assert(0 && "Unknown operation action!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3618 | case TargetLowering::Custom: |
| 3619 | isCustom = true; |
| 3620 | // FALLTHROUGH |
| 3621 | case TargetLowering::Legal: |
| 3622 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3623 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3624 | if (isCustom) { |
| 3625 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3626 | if (Tmp1.Val) Result = Tmp1; |
| 3627 | } |
| 3628 | break; |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3629 | case TargetLowering::Expand: |
Jim Laskey | 6269ed1 | 2005-08-17 00:39:29 +0000 | [diff] [blame] | 3630 | Result = ExpandLegalINT_TO_FP(isSigned, |
| 3631 | LegalizeOp(Node->getOperand(0)), |
| 3632 | Node->getValueType(0)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3633 | break; |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3634 | case TargetLowering::Promote: |
| 3635 | Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)), |
| 3636 | Node->getValueType(0), |
| 3637 | isSigned); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3638 | break; |
Andrew Lenharth | 5b5b8c2 | 2005-11-30 06:43:03 +0000 | [diff] [blame] | 3639 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3640 | break; |
Chris Lattner | b00a642 | 2005-01-07 22:37:48 +0000 | [diff] [blame] | 3641 | case Expand: |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3642 | Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, |
| 3643 | Node->getValueType(0), Node->getOperand(0)); |
| 3644 | break; |
| 3645 | case Promote: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3646 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3647 | if (isSigned) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3648 | Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(), |
| 3649 | Tmp1, DAG.getValueType(Node->getOperand(0).getValueType())); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3650 | } else { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3651 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, |
| 3652 | Node->getOperand(0).getValueType()); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 3653 | } |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3654 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 3655 | Result = LegalizeOp(Result); // The 'op' is not necessarily legal! |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3656 | break; |
| 3657 | } |
| 3658 | break; |
| 3659 | } |
| 3660 | case ISD::TRUNCATE: |
| 3661 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 3662 | case Legal: |
| 3663 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3664 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3665 | break; |
| 3666 | case Expand: |
| 3667 | ExpandOp(Node->getOperand(0), Tmp1, Tmp2); |
| 3668 | |
| 3669 | // Since the result is legal, we should just be able to truncate the low |
| 3670 | // part of the source. |
| 3671 | Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1); |
| 3672 | break; |
| 3673 | case Promote: |
| 3674 | Result = PromoteOp(Node->getOperand(0)); |
| 3675 | Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result); |
| 3676 | break; |
| 3677 | } |
| 3678 | break; |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 3679 | |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3680 | case ISD::FP_TO_SINT: |
| 3681 | case ISD::FP_TO_UINT: |
| 3682 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 3683 | case Legal: |
Chris Lattner | f1fa74e | 2005-07-30 00:04:12 +0000 | [diff] [blame] | 3684 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3685 | |
Chris Lattner | 1618beb | 2005-07-29 00:11:56 +0000 | [diff] [blame] | 3686 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){ |
| 3687 | default: assert(0 && "Unknown operation action!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3688 | case TargetLowering::Custom: |
| 3689 | isCustom = true; |
| 3690 | // FALLTHROUGH |
| 3691 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3692 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3693 | if (isCustom) { |
| 3694 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3695 | if (Tmp1.Val) Result = Tmp1; |
| 3696 | } |
| 3697 | break; |
| 3698 | case TargetLowering::Promote: |
| 3699 | Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0), |
| 3700 | Node->getOpcode() == ISD::FP_TO_SINT); |
| 3701 | break; |
Chris Lattner | 1618beb | 2005-07-29 00:11:56 +0000 | [diff] [blame] | 3702 | case TargetLowering::Expand: |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 3703 | if (Node->getOpcode() == ISD::FP_TO_UINT) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3704 | SDValue True, False; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3705 | MVT VT = Node->getOperand(0).getValueType(); |
| 3706 | MVT NVT = Node->getValueType(0); |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 3707 | const uint64_t zero[] = {0, 0}; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3708 | APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero)); |
| 3709 | APInt x = APInt::getSignBit(NVT.getSizeInBits()); |
Dan Gohman | c7773bf | 2008-02-29 01:44:25 +0000 | [diff] [blame] | 3710 | (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven); |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 3711 | Tmp2 = DAG.getConstantFP(apf, VT); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 3712 | Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)), |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 3713 | Node->getOperand(0), Tmp2, ISD::SETLT); |
| 3714 | True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0)); |
| 3715 | False = DAG.getNode(ISD::FP_TO_SINT, NVT, |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 3716 | DAG.getNode(ISD::FSUB, VT, Node->getOperand(0), |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 3717 | Tmp2)); |
| 3718 | False = DAG.getNode(ISD::XOR, NVT, False, |
Dan Gohman | c7773bf | 2008-02-29 01:44:25 +0000 | [diff] [blame] | 3719 | DAG.getConstant(x, NVT)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3720 | Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False); |
| 3721 | break; |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 3722 | } else { |
| 3723 | assert(0 && "Do not know how to expand FP_TO_SINT yet!"); |
| 3724 | } |
| 3725 | break; |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 3726 | } |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3727 | break; |
Evan Cheng | 6af00d5 | 2006-12-13 01:57:55 +0000 | [diff] [blame] | 3728 | case Expand: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3729 | MVT VT = Op.getValueType(); |
| 3730 | MVT OVT = Node->getOperand(0).getValueType(); |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 3731 | // Convert ppcf128 to i32 |
Dale Johannesen | 6eaeff2 | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 3732 | if (OVT == MVT::ppcf128 && VT == MVT::i32) { |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3733 | if (Node->getOpcode() == ISD::FP_TO_SINT) { |
| 3734 | Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128, |
| 3735 | Node->getOperand(0), DAG.getValueType(MVT::f64)); |
| 3736 | Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result, |
| 3737 | DAG.getIntPtrConstant(1)); |
| 3738 | Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result); |
| 3739 | } else { |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 3740 | const uint64_t TwoE31[] = {0x41e0000000000000LL, 0}; |
| 3741 | APFloat apf = APFloat(APInt(128, 2, TwoE31)); |
| 3742 | Tmp2 = DAG.getConstantFP(apf, OVT); |
| 3743 | // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X |
| 3744 | // FIXME: generated code sucks. |
| 3745 | Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2, |
| 3746 | DAG.getNode(ISD::ADD, MVT::i32, |
| 3747 | DAG.getNode(ISD::FP_TO_SINT, VT, |
| 3748 | DAG.getNode(ISD::FSUB, OVT, |
| 3749 | Node->getOperand(0), Tmp2)), |
| 3750 | DAG.getConstant(0x80000000, MVT::i32)), |
| 3751 | DAG.getNode(ISD::FP_TO_SINT, VT, |
| 3752 | Node->getOperand(0)), |
| 3753 | DAG.getCondCode(ISD::SETGE)); |
| 3754 | } |
Dale Johannesen | 6eaeff2 | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 3755 | break; |
| 3756 | } |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 3757 | // Convert f32 / f64 to i32 / i64 / i128. |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 3758 | RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ? |
| 3759 | RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT); |
| 3760 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3761 | SDValue Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3762 | Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy); |
Evan Cheng | 6af00d5 | 2006-12-13 01:57:55 +0000 | [diff] [blame] | 3763 | break; |
| 3764 | } |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3765 | case Promote: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3766 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 3767 | Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1)); |
| 3768 | Result = LegalizeOp(Result); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3769 | break; |
| 3770 | } |
| 3771 | break; |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 3772 | |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 3773 | case ISD::FP_EXTEND: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3774 | MVT DstVT = Op.getValueType(); |
| 3775 | MVT SrcVT = Op.getOperand(0).getValueType(); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3776 | if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) { |
| 3777 | // The only other way we can lower this is to turn it into a STORE, |
| 3778 | // LOAD pair, targetting a temporary location (a stack slot). |
| 3779 | Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT); |
| 3780 | break; |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 3781 | } |
| 3782 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 3783 | case Expand: assert(0 && "Shouldn't need to expand other operators here!"); |
| 3784 | case Legal: |
| 3785 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3786 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 3787 | break; |
| 3788 | case Promote: |
| 3789 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 3790 | Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1); |
| 3791 | break; |
| 3792 | } |
| 3793 | break; |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3794 | } |
Dale Johannesen | 5411a39 | 2007-08-09 01:04:01 +0000 | [diff] [blame] | 3795 | case ISD::FP_ROUND: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3796 | MVT DstVT = Op.getValueType(); |
| 3797 | MVT SrcVT = Op.getOperand(0).getValueType(); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3798 | if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) { |
| 3799 | if (SrcVT == MVT::ppcf128) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3800 | SDValue Lo; |
Dale Johannesen | 713ed3f | 2008-01-20 01:18:38 +0000 | [diff] [blame] | 3801 | ExpandOp(Node->getOperand(0), Lo, Result); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3802 | // Round it the rest of the way (e.g. to f32) if needed. |
Dale Johannesen | 713ed3f | 2008-01-20 01:18:38 +0000 | [diff] [blame] | 3803 | if (DstVT!=MVT::f64) |
| 3804 | Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1)); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3805 | break; |
Dale Johannesen | 5411a39 | 2007-08-09 01:04:01 +0000 | [diff] [blame] | 3806 | } |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3807 | // The only other way we can lower this is to turn it into a STORE, |
| 3808 | // LOAD pair, targetting a temporary location (a stack slot). |
| 3809 | Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT); |
| 3810 | break; |
Dale Johannesen | 849f214 | 2007-07-03 00:53:03 +0000 | [diff] [blame] | 3811 | } |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 3812 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 3813 | case Expand: assert(0 && "Shouldn't need to expand other operators here!"); |
| 3814 | case Legal: |
| 3815 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3816 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 3817 | break; |
| 3818 | case Promote: |
| 3819 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3820 | Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1, |
| 3821 | Node->getOperand(1)); |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 3822 | break; |
| 3823 | } |
| 3824 | break; |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3825 | } |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 3826 | case ISD::ANY_EXTEND: |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3827 | case ISD::ZERO_EXTEND: |
| 3828 | case ISD::SIGN_EXTEND: |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3829 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3830 | case Expand: assert(0 && "Shouldn't need to expand other operators here!"); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3831 | case Legal: |
| 3832 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Scott Michel | 82747a5 | 2008-04-30 00:26:38 +0000 | [diff] [blame] | 3833 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Scott Michel | 0123b7d | 2008-02-15 23:05:48 +0000 | [diff] [blame] | 3834 | if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) == |
| 3835 | TargetLowering::Custom) { |
Scott Michel | 82747a5 | 2008-04-30 00:26:38 +0000 | [diff] [blame] | 3836 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3837 | if (Tmp1.Val) Result = Tmp1; |
Scott Michel | 0123b7d | 2008-02-15 23:05:48 +0000 | [diff] [blame] | 3838 | } |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3839 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 3840 | case Promote: |
| 3841 | switch (Node->getOpcode()) { |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 3842 | case ISD::ANY_EXTEND: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3843 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 3844 | Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1); |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 3845 | break; |
Chris Lattner | 1713e73 | 2005-01-16 00:38:00 +0000 | [diff] [blame] | 3846 | case ISD::ZERO_EXTEND: |
| 3847 | Result = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 3848 | Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result); |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 3849 | Result = DAG.getZeroExtendInReg(Result, |
| 3850 | Node->getOperand(0).getValueType()); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 3851 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 3852 | case ISD::SIGN_EXTEND: |
Chris Lattner | 1713e73 | 2005-01-16 00:38:00 +0000 | [diff] [blame] | 3853 | Result = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 3854 | Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result); |
Chris Lattner | 1713e73 | 2005-01-16 00:38:00 +0000 | [diff] [blame] | 3855 | Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(), |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 3856 | Result, |
| 3857 | DAG.getValueType(Node->getOperand(0).getValueType())); |
Chris Lattner | 1713e73 | 2005-01-16 00:38:00 +0000 | [diff] [blame] | 3858 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 3859 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3860 | } |
| 3861 | break; |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 3862 | case ISD::FP_ROUND_INREG: |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 3863 | case ISD::SIGN_EXTEND_INREG: { |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 3864 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3865 | MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT(); |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3866 | |
| 3867 | // If this operation is not supported, convert it to a shl/shr or load/store |
| 3868 | // pair. |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 3869 | switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) { |
| 3870 | default: assert(0 && "This action not supported for this op yet!"); |
| 3871 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3872 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 3873 | break; |
| 3874 | case TargetLowering::Expand: |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3875 | // If this is an integer extend and shifts are supported, do that. |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 3876 | if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) { |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3877 | // NOTE: we could fall back on load/store here too for targets without |
| 3878 | // SAR. However, it is doubtful that any exist. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3879 | unsigned BitsDiff = Node->getValueType(0).getSizeInBits() - |
| 3880 | ExtraVT.getSizeInBits(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3881 | SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy()); |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3882 | Result = DAG.getNode(ISD::SHL, Node->getValueType(0), |
| 3883 | Node->getOperand(0), ShiftCst); |
| 3884 | Result = DAG.getNode(ISD::SRA, Node->getValueType(0), |
| 3885 | Result, ShiftCst); |
| 3886 | } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) { |
Jim Laskey | 2d84c4c | 2006-10-11 17:52:19 +0000 | [diff] [blame] | 3887 | // The only way we can lower this is to turn it into a TRUNCSTORE, |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3888 | // EXTLOAD pair, targetting a temporary location (a stack slot). |
| 3889 | |
| 3890 | // NOTE: there is a choice here between constantly creating new stack |
| 3891 | // slots and always reusing the same one. We currently always create |
| 3892 | // new ones, as reuse may inhibit scheduling. |
Chris Lattner | a66bb39 | 2008-01-16 07:51:34 +0000 | [diff] [blame] | 3893 | Result = EmitStackConvert(Node->getOperand(0), ExtraVT, |
| 3894 | Node->getValueType(0)); |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3895 | } else { |
| 3896 | assert(0 && "Unknown op"); |
| 3897 | } |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 3898 | break; |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3899 | } |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 3900 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3901 | } |
Duncan Sands | 36397f5 | 2007-07-27 12:58:54 +0000 | [diff] [blame] | 3902 | case ISD::TRAMPOLINE: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3903 | SDValue Ops[6]; |
Duncan Sands | 36397f5 | 2007-07-27 12:58:54 +0000 | [diff] [blame] | 3904 | for (unsigned i = 0; i != 6; ++i) |
| 3905 | Ops[i] = LegalizeOp(Node->getOperand(i)); |
| 3906 | Result = DAG.UpdateNodeOperands(Result, Ops, 6); |
| 3907 | // The only option for this node is to custom lower it. |
| 3908 | Result = TLI.LowerOperation(Result, DAG); |
| 3909 | assert(Result.Val && "Should always custom lower!"); |
Duncan Sands | f7331b3 | 2007-09-11 14:10:23 +0000 | [diff] [blame] | 3910 | |
| 3911 | // Since trampoline produces two values, make sure to remember that we |
| 3912 | // legalized both of them. |
| 3913 | Tmp1 = LegalizeOp(Result.getValue(1)); |
| 3914 | Result = LegalizeOp(Result); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3915 | AddLegalizedOperand(SDValue(Node, 0), Result); |
| 3916 | AddLegalizedOperand(SDValue(Node, 1), Tmp1); |
Duncan Sands | f7331b3 | 2007-09-11 14:10:23 +0000 | [diff] [blame] | 3917 | return Op.ResNo ? Tmp1 : Result; |
Duncan Sands | 36397f5 | 2007-07-27 12:58:54 +0000 | [diff] [blame] | 3918 | } |
Dan Gohman | 9c78a39 | 2008-05-14 00:43:10 +0000 | [diff] [blame] | 3919 | case ISD::FLT_ROUNDS_: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3920 | MVT VT = Node->getValueType(0); |
Anton Korobeynikov | 917c2a6 | 2007-11-15 23:25:33 +0000 | [diff] [blame] | 3921 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 3922 | default: assert(0 && "This action not supported for this op yet!"); |
| 3923 | case TargetLowering::Custom: |
| 3924 | Result = TLI.LowerOperation(Op, DAG); |
| 3925 | if (Result.Val) break; |
| 3926 | // Fall Thru |
| 3927 | case TargetLowering::Legal: |
| 3928 | // If this operation is not supported, lower it to constant 1 |
| 3929 | Result = DAG.getConstant(1, VT); |
| 3930 | break; |
| 3931 | } |
Dan Gohman | 9ab9ee8 | 2008-05-12 16:07:15 +0000 | [diff] [blame] | 3932 | break; |
Anton Korobeynikov | 917c2a6 | 2007-11-15 23:25:33 +0000 | [diff] [blame] | 3933 | } |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 3934 | case ISD::TRAP: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3935 | MVT VT = Node->getValueType(0); |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 3936 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 3937 | default: assert(0 && "This action not supported for this op yet!"); |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 3938 | case TargetLowering::Legal: |
| 3939 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3940 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 3941 | break; |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 3942 | case TargetLowering::Custom: |
| 3943 | Result = TLI.LowerOperation(Op, DAG); |
| 3944 | if (Result.Val) break; |
| 3945 | // Fall Thru |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 3946 | case TargetLowering::Expand: |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 3947 | // If this operation is not supported, lower it to 'abort()' call |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 3948 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 3949 | TargetLowering::ArgListTy Args; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3950 | std::pair<SDValue,SDValue> CallResult = |
Duncan Sands | 00fee65 | 2008-02-14 17:28:50 +0000 | [diff] [blame] | 3951 | TLI.LowerCallTo(Tmp1, Type::VoidTy, |
| 3952 | false, false, false, CallingConv::C, false, |
Chris Lattner | 034f12e | 2008-01-15 22:09:33 +0000 | [diff] [blame] | 3953 | DAG.getExternalSymbol("abort", TLI.getPointerTy()), |
| 3954 | Args, DAG); |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 3955 | Result = CallResult.second; |
| 3956 | break; |
| 3957 | } |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 3958 | break; |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 3959 | } |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3960 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3961 | |
Chris Lattner | 4ddd283 | 2006-04-08 04:13:17 +0000 | [diff] [blame] | 3962 | assert(Result.getValueType() == Op.getValueType() && |
| 3963 | "Bad legalization!"); |
| 3964 | |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3965 | // Make sure that the generated code is itself legal. |
| 3966 | if (Result != Op) |
| 3967 | Result = LegalizeOp(Result); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3968 | |
Chris Lattner | 45982da | 2005-05-12 16:53:42 +0000 | [diff] [blame] | 3969 | // Note that LegalizeOp may be reentered even from single-use nodes, which |
| 3970 | // means that we always must cache transformed nodes. |
| 3971 | AddLegalizedOperand(Op, Result); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3972 | return Result; |
| 3973 | } |
| 3974 | |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 3975 | /// PromoteOp - Given an operation that produces a value in an invalid type, |
| 3976 | /// promote it to compute the value into a larger type. The produced value will |
| 3977 | /// have the correct bits for the low portion of the register, but no guarantee |
| 3978 | /// is made about the top bits: it may be zero, sign-extended, or garbage. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3979 | SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3980 | MVT VT = Op.getValueType(); |
| 3981 | MVT NVT = TLI.getTypeToTransformTo(VT); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 3982 | assert(getTypeAction(VT) == Promote && |
| 3983 | "Caller should expand or legalize operands that are not promotable!"); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 3984 | assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() && |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 3985 | "Cannot promote to smaller type!"); |
| 3986 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3987 | SDValue Tmp1, Tmp2, Tmp3; |
| 3988 | SDValue Result; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 3989 | SDNode *Node = Op.Val; |
| 3990 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 3991 | DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op); |
Chris Lattner | 6fdcb25 | 2005-09-02 20:32:45 +0000 | [diff] [blame] | 3992 | if (I != PromotedNodes.end()) return I->second; |
Chris Lattner | 45982da | 2005-05-12 16:53:42 +0000 | [diff] [blame] | 3993 | |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 3994 | switch (Node->getOpcode()) { |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 3995 | case ISD::CopyFromReg: |
| 3996 | assert(0 && "CopyFromReg must be legal!"); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 3997 | default: |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 3998 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 3999 | cerr << "NODE: "; Node->dump(&DAG); cerr << "\n"; |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 4000 | #endif |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4001 | assert(0 && "Do not know how to promote this operator!"); |
| 4002 | abort(); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 4003 | case ISD::UNDEF: |
| 4004 | Result = DAG.getNode(ISD::UNDEF, NVT); |
| 4005 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4006 | case ISD::Constant: |
Chris Lattner | ec176e3 | 2005-08-30 16:56:19 +0000 | [diff] [blame] | 4007 | if (VT != MVT::i1) |
| 4008 | Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op); |
| 4009 | else |
| 4010 | Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4011 | assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?"); |
| 4012 | break; |
| 4013 | case ISD::ConstantFP: |
| 4014 | Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op); |
| 4015 | assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?"); |
| 4016 | break; |
Chris Lattner | ef5cd1d | 2005-01-18 17:54:55 +0000 | [diff] [blame] | 4017 | |
Chris Lattner | 82fbfb6 | 2005-01-18 02:59:52 +0000 | [diff] [blame] | 4018 | case ISD::SETCC: |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4019 | assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0))) |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 4020 | && "SetCC type is not legal??"); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4021 | Result = DAG.getNode(ISD::SETCC, |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 4022 | TLI.getSetCCResultType(Node->getOperand(0)), |
| 4023 | Node->getOperand(0), Node->getOperand(1), |
| 4024 | Node->getOperand(2)); |
Chris Lattner | 82fbfb6 | 2005-01-18 02:59:52 +0000 | [diff] [blame] | 4025 | break; |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 4026 | |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4027 | case ISD::TRUNCATE: |
| 4028 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4029 | case Legal: |
| 4030 | Result = LegalizeOp(Node->getOperand(0)); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4031 | assert(Result.getValueType().bitsGE(NVT) && |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4032 | "This truncation doesn't make sense!"); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4033 | if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4034 | Result = DAG.getNode(ISD::TRUNCATE, NVT, Result); |
| 4035 | break; |
Chris Lattner | e76ad6d | 2005-01-28 22:52:50 +0000 | [diff] [blame] | 4036 | 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 Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4041 | case Expand: |
Nate Begeman | 79e46ac | 2005-04-04 00:57:08 +0000 | [diff] [blame] | 4042 | ExpandOp(Node->getOperand(0), Tmp1, Tmp2); |
| 4043 | // Truncate the low part of the expanded value to the result type |
Chris Lattner | e21c305 | 2005-08-01 18:16:37 +0000 | [diff] [blame] | 4044 | Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4045 | } |
| 4046 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4047 | case ISD::SIGN_EXTEND: |
| 4048 | case ISD::ZERO_EXTEND: |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 4049 | case ISD::ANY_EXTEND: |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4050 | 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 Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4054 | Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4055 | 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 Lattner | 595dc54 | 2005-02-04 18:39:19 +0000 | [diff] [blame] | 4061 | Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result, |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4062 | DAG.getValueType(Node->getOperand(0).getValueType())); |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 4063 | else if (Node->getOpcode() == ISD::ZERO_EXTEND) |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 4064 | Result = DAG.getZeroExtendInReg(Result, |
| 4065 | Node->getOperand(0).getValueType()); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4066 | break; |
| 4067 | } |
| 4068 | break; |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 4069 | case ISD::BIT_CONVERT: |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4070 | Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0), |
| 4071 | Node->getValueType(0)); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 4072 | Result = PromoteOp(Result); |
| 4073 | break; |
| 4074 | |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4075 | 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 Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4082 | 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 Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4091 | break; |
| 4092 | } |
| 4093 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4094 | case ISD::SINT_TO_FP: |
| 4095 | case ISD::UINT_TO_FP: |
| 4096 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4097 | case Legal: |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4098 | // No extra round required here. |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4099 | Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4100 | 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 Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4106 | Result, |
| 4107 | DAG.getValueType(Node->getOperand(0).getValueType())); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4108 | else |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 4109 | Result = DAG.getZeroExtendInReg(Result, |
| 4110 | Node->getOperand(0).getValueType()); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4111 | // No extra round required here. |
| 4112 | Result = DAG.getNode(Node->getOpcode(), NVT, Result); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4113 | break; |
| 4114 | case Expand: |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4115 | Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT, |
| 4116 | Node->getOperand(0)); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4117 | // Round if we cannot tolerate excess precision. |
| 4118 | if (NoExcessFPPrecision) |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4119 | Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, |
| 4120 | DAG.getValueType(VT)); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4121 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4122 | } |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4123 | break; |
| 4124 | |
Chris Lattner | 5e3c5b4 | 2005-12-09 17:32:47 +0000 | [diff] [blame] | 4125 | 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 Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4130 | case ISD::FP_TO_SINT: |
| 4131 | case ISD::FP_TO_UINT: |
| 4132 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4133 | case Legal: |
Evan Cheng | 0b1b9dc | 2006-12-16 02:10:30 +0000 | [diff] [blame] | 4134 | case Expand: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4135 | Tmp1 = Node->getOperand(0); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4136 | 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 Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4142 | } |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 4143 | // 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 Lattner | c9c60f6 | 2005-08-24 16:35:28 +0000 | [diff] [blame] | 4149 | !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) && |
Nate Begeman | b7f6ef1 | 2005-10-25 23:47:25 +0000 | [diff] [blame] | 4150 | (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) || |
| 4151 | TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){ |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 4152 | Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1); |
| 4153 | } else { |
| 4154 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1); |
| 4155 | } |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4156 | break; |
| 4157 | |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 4158 | 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 Lattner | da6ba87 | 2005-04-28 21:44:33 +0000 | [diff] [blame] | 4168 | 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 Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4174 | if (NoExcessFPPrecision) |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4175 | Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, |
| 4176 | DAG.getValueType(VT)); |
Chris Lattner | da6ba87 | 2005-04-28 21:44:33 +0000 | [diff] [blame] | 4177 | break; |
| 4178 | |
Chris Lattner | 8b2d42c | 2007-03-03 23:43:21 +0000 | [diff] [blame] | 4179 | 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 | |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 4191 | case ISD::ATOMIC_CMP_SWAP: { |
| 4192 | AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node); |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 4193 | Tmp2 = PromoteOp(Node->getOperand(2)); |
| 4194 | Tmp3 = PromoteOp(Node->getOperand(3)); |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 4195 | Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(), |
| 4196 | AtomNode->getBasePtr(), Tmp2, Tmp3, |
Dan Gohman | fd4418f | 2008-06-25 16:07:49 +0000 | [diff] [blame] | 4197 | AtomNode->getSrcValue(), |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 4198 | AtomNode->getAlignment()); |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 4199 | // Remember that we legalized the chain. |
| 4200 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
| 4201 | break; |
| 4202 | } |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 4203 | case ISD::ATOMIC_LOAD_ADD: |
| 4204 | case ISD::ATOMIC_LOAD_SUB: |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 4205 | case ISD::ATOMIC_LOAD_AND: |
| 4206 | case ISD::ATOMIC_LOAD_OR: |
| 4207 | case ISD::ATOMIC_LOAD_XOR: |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 4208 | case ISD::ATOMIC_LOAD_NAND: |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 4209 | case ISD::ATOMIC_LOAD_MIN: |
| 4210 | case ISD::ATOMIC_LOAD_MAX: |
| 4211 | case ISD::ATOMIC_LOAD_UMIN: |
| 4212 | case ISD::ATOMIC_LOAD_UMAX: |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 4213 | case ISD::ATOMIC_SWAP: { |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 4214 | AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node); |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 4215 | Tmp2 = PromoteOp(Node->getOperand(2)); |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 4216 | Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(), |
| 4217 | AtomNode->getBasePtr(), Tmp2, |
Dan Gohman | fd4418f | 2008-06-25 16:07:49 +0000 | [diff] [blame] | 4218 | AtomNode->getSrcValue(), |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 4219 | AtomNode->getAlignment()); |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 4220 | // Remember that we legalized the chain. |
| 4221 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
| 4222 | break; |
| 4223 | } |
| 4224 | |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4225 | case ISD::AND: |
| 4226 | case ISD::OR: |
| 4227 | case ISD::XOR: |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 4228 | case ISD::ADD: |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4229 | case ISD::SUB: |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 4230 | case ISD::MUL: |
| 4231 | // The input may have strange things in the top bits of the registers, but |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4232 | // these operations don't care. They may have weird bits going out, but |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 4233 | // that too is okay if they are integer operations. |
| 4234 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4235 | Tmp2 = PromoteOp(Node->getOperand(1)); |
| 4236 | assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT); |
| 4237 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4238 | break; |
| 4239 | case ISD::FADD: |
| 4240 | case ISD::FSUB: |
| 4241 | case ISD::FMUL: |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4242 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4243 | Tmp2 = PromoteOp(Node->getOperand(1)); |
| 4244 | assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT); |
| 4245 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2); |
| 4246 | |
| 4247 | // Floating point operations will give excess precision that we may not be |
| 4248 | // able to tolerate. If we DO allow excess precision, just leave it, |
| 4249 | // otherwise excise it. |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4250 | // FIXME: Why would we need to round FP ops more than integer ones? |
| 4251 | // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C)) |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4252 | if (NoExcessFPPrecision) |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4253 | Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, |
| 4254 | DAG.getValueType(VT)); |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 4255 | break; |
| 4256 | |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4257 | case ISD::SDIV: |
| 4258 | case ISD::SREM: |
| 4259 | // These operators require that their input be sign extended. |
| 4260 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4261 | Tmp2 = PromoteOp(Node->getOperand(1)); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4262 | if (NVT.isInteger()) { |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4263 | Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1, |
| 4264 | DAG.getValueType(VT)); |
| 4265 | Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2, |
| 4266 | DAG.getValueType(VT)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4267 | } |
| 4268 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2); |
| 4269 | |
| 4270 | // Perform FP_ROUND: this is probably overly pessimistic. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4271 | if (NVT.isFloatingPoint() && NoExcessFPPrecision) |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4272 | Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, |
| 4273 | DAG.getValueType(VT)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4274 | break; |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4275 | case ISD::FDIV: |
| 4276 | case ISD::FREM: |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 4277 | case ISD::FCOPYSIGN: |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4278 | // These operators require that their input be fp extended. |
Nate Begeman | ec57fd9 | 2006-05-09 18:20:51 +0000 | [diff] [blame] | 4279 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4280 | case Expand: assert(0 && "not implemented"); |
| 4281 | case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break; |
| 4282 | case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break; |
Nate Begeman | ec57fd9 | 2006-05-09 18:20:51 +0000 | [diff] [blame] | 4283 | } |
| 4284 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4285 | case Expand: assert(0 && "not implemented"); |
| 4286 | case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break; |
| 4287 | case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break; |
Nate Begeman | ec57fd9 | 2006-05-09 18:20:51 +0000 | [diff] [blame] | 4288 | } |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4289 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2); |
| 4290 | |
| 4291 | // Perform FP_ROUND: this is probably overly pessimistic. |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 4292 | if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN) |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4293 | Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, |
| 4294 | DAG.getValueType(VT)); |
| 4295 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4296 | |
| 4297 | case ISD::UDIV: |
| 4298 | case ISD::UREM: |
| 4299 | // These operators require that their input be zero extended. |
| 4300 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4301 | Tmp2 = PromoteOp(Node->getOperand(1)); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4302 | assert(NVT.isInteger() && "Operators don't apply to FP!"); |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 4303 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT); |
| 4304 | Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4305 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2); |
| 4306 | break; |
| 4307 | |
| 4308 | case ISD::SHL: |
| 4309 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4310 | Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4311 | break; |
| 4312 | case ISD::SRA: |
| 4313 | // The input value must be properly sign extended. |
| 4314 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4315 | Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1, |
| 4316 | DAG.getValueType(VT)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4317 | Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4318 | break; |
| 4319 | case ISD::SRL: |
| 4320 | // The input value must be properly zero extended. |
| 4321 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 4322 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4323 | Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4324 | break; |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4325 | |
| 4326 | case ISD::VAARG: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4327 | Tmp1 = Node->getOperand(0); // Get the chain. |
| 4328 | Tmp2 = Node->getOperand(1); // Get the pointer. |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4329 | if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) { |
| 4330 | Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2)); |
Duncan Sands | 126d907 | 2008-07-04 11:47:58 +0000 | [diff] [blame] | 4331 | Result = TLI.LowerOperation(Tmp3, DAG); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4332 | } else { |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4333 | const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4334 | SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4335 | // Increment the pointer, VAList, to the next vaarg |
| 4336 | Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4337 | DAG.getConstant(VT.getSizeInBits()/8, |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4338 | TLI.getPointerTy())); |
| 4339 | // Store the incremented VAList to the legalized pointer |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4340 | Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4341 | // Load the actual argument out of the pointer VAList |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 4342 | Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4343 | } |
| 4344 | // Remember that we legalized the chain. |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4345 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4346 | break; |
| 4347 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 4348 | case ISD::LOAD: { |
| 4349 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
Evan Cheng | 62f2a3c | 2006-10-10 07:51:21 +0000 | [diff] [blame] | 4350 | ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node) |
| 4351 | ? ISD::EXTLOAD : LD->getExtensionType(); |
| 4352 | Result = DAG.getExtLoad(ExtType, NVT, |
| 4353 | LD->getChain(), LD->getBasePtr(), |
Chris Lattner | 55b5708 | 2006-10-10 18:54:19 +0000 | [diff] [blame] | 4354 | LD->getSrcValue(), LD->getSrcValueOffset(), |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 4355 | LD->getMemoryVT(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 4356 | LD->isVolatile(), |
| 4357 | LD->getAlignment()); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4358 | // Remember that we legalized the chain. |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4359 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4360 | break; |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 4361 | } |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 4362 | case ISD::SELECT: { |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4363 | Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0 |
| 4364 | Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1 |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 4365 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4366 | MVT VT2 = Tmp2.getValueType(); |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 4367 | assert(VT2 == Tmp3.getValueType() |
Scott Michel | ba12f57 | 2008-06-03 19:13:20 +0000 | [diff] [blame] | 4368 | && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match"); |
| 4369 | // Ensure that the resulting node is at least the same size as the operands' |
| 4370 | // value types, because we cannot assume that TLI.getSetCCValueType() is |
| 4371 | // constant. |
| 4372 | Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4373 | break; |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 4374 | } |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 4375 | case ISD::SELECT_CC: |
| 4376 | Tmp2 = PromoteOp(Node->getOperand(2)); // True |
| 4377 | Tmp3 = PromoteOp(Node->getOperand(3)); // False |
| 4378 | Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0), |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4379 | Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4)); |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 4380 | break; |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 4381 | case ISD::BSWAP: |
| 4382 | Tmp1 = Node->getOperand(0); |
| 4383 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1); |
| 4384 | Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1); |
| 4385 | Result = DAG.getNode(ISD::SRL, NVT, Tmp1, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4386 | DAG.getConstant(NVT.getSizeInBits() - |
| 4387 | VT.getSizeInBits(), |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 4388 | TLI.getShiftAmountTy())); |
| 4389 | break; |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4390 | case ISD::CTPOP: |
| 4391 | case ISD::CTTZ: |
| 4392 | case ISD::CTLZ: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4393 | // Zero extend the argument |
| 4394 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0)); |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4395 | // Perform the larger operation, then subtract if needed. |
| 4396 | Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4397 | switch(Node->getOpcode()) { |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4398 | case ISD::CTPOP: |
| 4399 | Result = Tmp1; |
| 4400 | break; |
| 4401 | case ISD::CTTZ: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4402 | // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT) |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4403 | Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4404 | DAG.getConstant(NVT.getSizeInBits(), NVT), |
Dan Gohman | b55757e | 2007-05-18 17:52:13 +0000 | [diff] [blame] | 4405 | ISD::SETEQ); |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 4406 | Result = DAG.getNode(ISD::SELECT, NVT, Tmp2, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4407 | DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1); |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4408 | break; |
| 4409 | case ISD::CTLZ: |
| 4410 | //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT)) |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 4411 | Result = DAG.getNode(ISD::SUB, NVT, Tmp1, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4412 | DAG.getConstant(NVT.getSizeInBits() - |
| 4413 | VT.getSizeInBits(), NVT)); |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4414 | break; |
| 4415 | } |
| 4416 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4417 | case ISD::EXTRACT_SUBVECTOR: |
| 4418 | Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op)); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4419 | break; |
Chris Lattner | 4aab2f4 | 2006-04-02 05:06:04 +0000 | [diff] [blame] | 4420 | case ISD::EXTRACT_VECTOR_ELT: |
| 4421 | Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op)); |
| 4422 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4423 | } |
| 4424 | |
| 4425 | assert(Result.Val && "Didn't set a result!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4426 | |
| 4427 | // Make sure the result is itself legal. |
| 4428 | Result = LegalizeOp(Result); |
| 4429 | |
| 4430 | // Remember that we promoted this! |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4431 | AddPromotedOperand(Op, Result); |
| 4432 | return Result; |
| 4433 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 4434 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4435 | /// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into |
| 4436 | /// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic, |
| 4437 | /// based on the vector type. The return type of this matches the element type |
| 4438 | /// of the vector, which may not be legal for the target. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4439 | SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) { |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4440 | // We know that operand #0 is the Vec vector. If the index is a constant |
| 4441 | // or if the invec is a supported hardware type, we can use it. Otherwise, |
| 4442 | // lower to a store then an indexed load. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4443 | SDValue Vec = Op.getOperand(0); |
| 4444 | SDValue Idx = Op.getOperand(1); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4445 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4446 | MVT TVT = Vec.getValueType(); |
| 4447 | unsigned NumElems = TVT.getVectorNumElements(); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4448 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4449 | switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) { |
| 4450 | default: assert(0 && "This action is not supported yet!"); |
| 4451 | case TargetLowering::Custom: { |
| 4452 | Vec = LegalizeOp(Vec); |
| 4453 | Op = DAG.UpdateNodeOperands(Op, Vec, Idx); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4454 | SDValue Tmp3 = TLI.LowerOperation(Op, DAG); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4455 | if (Tmp3.Val) |
| 4456 | return Tmp3; |
| 4457 | break; |
| 4458 | } |
| 4459 | case TargetLowering::Legal: |
| 4460 | if (isTypeLegal(TVT)) { |
| 4461 | Vec = LegalizeOp(Vec); |
| 4462 | Op = DAG.UpdateNodeOperands(Op, Vec, Idx); |
Christopher Lamb | 844228a | 2007-07-26 03:33:13 +0000 | [diff] [blame] | 4463 | return Op; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4464 | } |
| 4465 | break; |
| 4466 | case TargetLowering::Expand: |
| 4467 | break; |
| 4468 | } |
| 4469 | |
| 4470 | if (NumElems == 1) { |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4471 | // This must be an access of the only element. Return it. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4472 | Op = ScalarizeVectorOp(Vec); |
| 4473 | } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) { |
Nate Begeman | 55030dc | 2008-01-29 02:24:00 +0000 | [diff] [blame] | 4474 | unsigned NumLoElts = 1 << Log2_32(NumElems-1); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4475 | ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4476 | SDValue Lo, Hi; |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4477 | SplitVectorOp(Vec, Lo, Hi); |
Nate Begeman | 55030dc | 2008-01-29 02:24:00 +0000 | [diff] [blame] | 4478 | if (CIdx->getValue() < NumLoElts) { |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4479 | Vec = Lo; |
| 4480 | } else { |
| 4481 | Vec = Hi; |
Nate Begeman | 55030dc | 2008-01-29 02:24:00 +0000 | [diff] [blame] | 4482 | Idx = DAG.getConstant(CIdx->getValue() - NumLoElts, |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4483 | Idx.getValueType()); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4484 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4485 | |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4486 | // It's now an extract from the appropriate high or low part. Recurse. |
| 4487 | Op = DAG.UpdateNodeOperands(Op, Vec, Idx); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4488 | Op = ExpandEXTRACT_VECTOR_ELT(Op); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4489 | } else { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4490 | // Store the value to a temporary stack slot, then LOAD the scalar |
| 4491 | // element back out. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4492 | SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType()); |
| 4493 | SDValue Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4494 | |
| 4495 | // Add the offset to the index. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4496 | unsigned EltSize = Op.getValueType().getSizeInBits()/8; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4497 | Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx, |
| 4498 | DAG.getConstant(EltSize, Idx.getValueType())); |
Bill Wendling | 90bfc2d | 2007-10-18 08:32:37 +0000 | [diff] [blame] | 4499 | |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4500 | if (Idx.getValueType().bitsGT(TLI.getPointerTy())) |
Chris Lattner | f185e67 | 2007-10-19 16:47:35 +0000 | [diff] [blame] | 4501 | Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx); |
Bill Wendling | 90bfc2d | 2007-10-18 08:32:37 +0000 | [diff] [blame] | 4502 | else |
Chris Lattner | f185e67 | 2007-10-19 16:47:35 +0000 | [diff] [blame] | 4503 | Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx); |
Bill Wendling | 90bfc2d | 2007-10-18 08:32:37 +0000 | [diff] [blame] | 4504 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4505 | StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr); |
| 4506 | |
| 4507 | Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4508 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4509 | return Op; |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4510 | } |
| 4511 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4512 | /// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4513 | /// we assume the operation can be split if it is not already legal. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4514 | SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) { |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4515 | // We know that operand #0 is the Vec vector. For now we assume the index |
| 4516 | // is a constant and that the extracted result is a supported hardware type. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4517 | SDValue Vec = Op.getOperand(0); |
| 4518 | SDValue Idx = LegalizeOp(Op.getOperand(1)); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4519 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4520 | unsigned NumElems = Vec.getValueType().getVectorNumElements(); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4521 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4522 | if (NumElems == Op.getValueType().getVectorNumElements()) { |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4523 | // This must be an access of the desired vector length. Return it. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4524 | return Vec; |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4525 | } |
| 4526 | |
| 4527 | ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4528 | SDValue Lo, Hi; |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4529 | SplitVectorOp(Vec, Lo, Hi); |
| 4530 | if (CIdx->getValue() < NumElems/2) { |
| 4531 | Vec = Lo; |
| 4532 | } else { |
| 4533 | Vec = Hi; |
| 4534 | Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType()); |
| 4535 | } |
| 4536 | |
| 4537 | // It's now an extract from the appropriate high or low part. Recurse. |
| 4538 | Op = DAG.UpdateNodeOperands(Op, Vec, Idx); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4539 | return ExpandEXTRACT_SUBVECTOR(Op); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4540 | } |
| 4541 | |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4542 | /// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC |
| 4543 | /// with condition CC on the current target. This usually involves legalizing |
| 4544 | /// or promoting the arguments. In the case where LHS and RHS must be expanded, |
| 4545 | /// there may be no choice but to create a new SetCC node to represent the |
| 4546 | /// legalized value of setcc lhs, rhs. In this case, the value is returned in |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4547 | /// LHS, and the SDValue returned in RHS has a nil SDNode value. |
| 4548 | void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS, |
| 4549 | SDValue &RHS, |
| 4550 | SDValue &CC) { |
| 4551 | SDValue Tmp1, Tmp2, Tmp3, Result; |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4552 | |
| 4553 | switch (getTypeAction(LHS.getValueType())) { |
| 4554 | case Legal: |
| 4555 | Tmp1 = LegalizeOp(LHS); // LHS |
| 4556 | Tmp2 = LegalizeOp(RHS); // RHS |
| 4557 | break; |
| 4558 | case Promote: |
| 4559 | Tmp1 = PromoteOp(LHS); // LHS |
| 4560 | Tmp2 = PromoteOp(RHS); // RHS |
| 4561 | |
| 4562 | // If this is an FP compare, the operands have already been extended. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4563 | if (LHS.getValueType().isInteger()) { |
| 4564 | MVT VT = LHS.getValueType(); |
| 4565 | MVT NVT = TLI.getTypeToTransformTo(VT); |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4566 | |
| 4567 | // Otherwise, we have to insert explicit sign or zero extends. Note |
| 4568 | // that we could insert sign extends for ALL conditions, but zero extend |
| 4569 | // is cheaper on many machines (an AND instead of two shifts), so prefer |
| 4570 | // it. |
| 4571 | switch (cast<CondCodeSDNode>(CC)->get()) { |
| 4572 | default: assert(0 && "Unknown integer comparison!"); |
| 4573 | case ISD::SETEQ: |
| 4574 | case ISD::SETNE: |
| 4575 | case ISD::SETUGE: |
| 4576 | case ISD::SETUGT: |
| 4577 | case ISD::SETULE: |
| 4578 | case ISD::SETULT: |
| 4579 | // ALL of these operations will work if we either sign or zero extend |
| 4580 | // the operands (including the unsigned comparisons!). Zero extend is |
| 4581 | // usually a simpler/cheaper operation, so prefer it. |
| 4582 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT); |
| 4583 | Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT); |
| 4584 | break; |
| 4585 | case ISD::SETGE: |
| 4586 | case ISD::SETGT: |
| 4587 | case ISD::SETLT: |
| 4588 | case ISD::SETLE: |
| 4589 | Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1, |
| 4590 | DAG.getValueType(VT)); |
| 4591 | Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2, |
| 4592 | DAG.getValueType(VT)); |
| 4593 | break; |
| 4594 | } |
| 4595 | } |
| 4596 | break; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4597 | case Expand: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4598 | MVT VT = LHS.getValueType(); |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4599 | if (VT == MVT::f32 || VT == MVT::f64) { |
| 4600 | // Expand into one or more soft-fp libcall(s). |
Evan Cheng | 6518c6e | 2008-07-01 21:35:46 +0000 | [diff] [blame] | 4601 | RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4602 | switch (cast<CondCodeSDNode>(CC)->get()) { |
| 4603 | case ISD::SETEQ: |
| 4604 | case ISD::SETOEQ: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4605 | LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4606 | break; |
| 4607 | case ISD::SETNE: |
| 4608 | case ISD::SETUNE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4609 | LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4610 | break; |
| 4611 | case ISD::SETGE: |
| 4612 | case ISD::SETOGE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4613 | LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4614 | break; |
| 4615 | case ISD::SETLT: |
| 4616 | case ISD::SETOLT: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4617 | LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4618 | break; |
| 4619 | case ISD::SETLE: |
| 4620 | case ISD::SETOLE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4621 | LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4622 | break; |
| 4623 | case ISD::SETGT: |
| 4624 | case ISD::SETOGT: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4625 | LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4626 | break; |
| 4627 | case ISD::SETUO: |
Evan Cheng | d385fd6 | 2007-01-31 09:29:11 +0000 | [diff] [blame] | 4628 | LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64; |
| 4629 | break; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4630 | case ISD::SETO: |
Evan Cheng | 5efdecc | 2007-02-03 00:43:46 +0000 | [diff] [blame] | 4631 | LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4632 | break; |
| 4633 | default: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4634 | LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4635 | switch (cast<CondCodeSDNode>(CC)->get()) { |
| 4636 | case ISD::SETONE: |
| 4637 | // SETONE = SETOLT | SETOGT |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4638 | LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4639 | // Fallthrough |
| 4640 | case ISD::SETUGT: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4641 | LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4642 | break; |
| 4643 | case ISD::SETUGE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4644 | LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4645 | break; |
| 4646 | case ISD::SETULT: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4647 | LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4648 | break; |
| 4649 | case ISD::SETULE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4650 | LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4651 | break; |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4652 | case ISD::SETUEQ: |
| 4653 | LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64; |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4654 | break; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4655 | default: assert(0 && "Unsupported FP setcc!"); |
| 4656 | } |
| 4657 | } |
Duncan Sands | f951620 | 2008-06-30 10:19:09 +0000 | [diff] [blame] | 4658 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4659 | SDValue Dummy; |
| 4660 | SDValue Ops[2] = { LHS, RHS }; |
Duncan Sands | 4bdcb61 | 2008-07-02 17:40:58 +0000 | [diff] [blame] | 4661 | Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2).Val, |
Reid Spencer | b47b25c | 2007-01-03 04:22:32 +0000 | [diff] [blame] | 4662 | false /*sign irrelevant*/, Dummy); |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4663 | Tmp2 = DAG.getConstant(0, MVT::i32); |
Evan Cheng | d385fd6 | 2007-01-31 09:29:11 +0000 | [diff] [blame] | 4664 | CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1)); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4665 | if (LC2 != RTLIB::UNKNOWN_LIBCALL) { |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4666 | Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2, |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 4667 | CC); |
Duncan Sands | 4bdcb61 | 2008-07-02 17:40:58 +0000 | [diff] [blame] | 4668 | LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2).Val, |
Reid Spencer | b47b25c | 2007-01-03 04:22:32 +0000 | [diff] [blame] | 4669 | false /*sign irrelevant*/, Dummy); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4670 | Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2, |
Evan Cheng | d385fd6 | 2007-01-31 09:29:11 +0000 | [diff] [blame] | 4671 | DAG.getCondCode(TLI.getCmpLibcallCC(LC2))); |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4672 | Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4673 | Tmp2 = SDValue(); |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4674 | } |
Evan Cheng | 21cacc4 | 2008-07-07 07:18:09 +0000 | [diff] [blame] | 4675 | LHS = LegalizeOp(Tmp1); |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4676 | RHS = Tmp2; |
| 4677 | return; |
| 4678 | } |
| 4679 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4680 | SDValue LHSLo, LHSHi, RHSLo, RHSHi; |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4681 | ExpandOp(LHS, LHSLo, LHSHi); |
Dale Johannesen | 638ccd5 | 2007-10-06 01:24:11 +0000 | [diff] [blame] | 4682 | ExpandOp(RHS, RHSLo, RHSHi); |
| 4683 | ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get(); |
| 4684 | |
| 4685 | if (VT==MVT::ppcf128) { |
| 4686 | // FIXME: This generated code sucks. We want to generate |
| 4687 | // FCMP crN, hi1, hi2 |
| 4688 | // BNE crN, L: |
| 4689 | // FCMP crN, lo1, lo2 |
| 4690 | // The following can be improved, but not that much. |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4691 | Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETEQ); |
| 4692 | Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode); |
Dale Johannesen | 638ccd5 | 2007-10-06 01:24:11 +0000 | [diff] [blame] | 4693 | Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4694 | Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETNE); |
| 4695 | Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode); |
Dale Johannesen | 638ccd5 | 2007-10-06 01:24:11 +0000 | [diff] [blame] | 4696 | Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2); |
| 4697 | Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4698 | Tmp2 = SDValue(); |
Dale Johannesen | 638ccd5 | 2007-10-06 01:24:11 +0000 | [diff] [blame] | 4699 | break; |
| 4700 | } |
| 4701 | |
| 4702 | switch (CCCode) { |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4703 | case ISD::SETEQ: |
| 4704 | case ISD::SETNE: |
| 4705 | if (RHSLo == RHSHi) |
| 4706 | if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo)) |
| 4707 | if (RHSCST->isAllOnesValue()) { |
| 4708 | // Comparison to -1. |
| 4709 | Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi); |
| 4710 | Tmp2 = RHSLo; |
| 4711 | break; |
| 4712 | } |
| 4713 | |
| 4714 | Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo); |
| 4715 | Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi); |
| 4716 | Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2); |
| 4717 | Tmp2 = DAG.getConstant(0, Tmp1.getValueType()); |
| 4718 | break; |
| 4719 | default: |
| 4720 | // If this is a comparison of the sign bit, just look at the top part. |
| 4721 | // X > -1, x < 0 |
| 4722 | if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS)) |
| 4723 | if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT && |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 4724 | CST->isNullValue()) || // X < 0 |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4725 | (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT && |
| 4726 | CST->isAllOnesValue())) { // X > -1 |
| 4727 | Tmp1 = LHSHi; |
| 4728 | Tmp2 = RHSHi; |
| 4729 | break; |
| 4730 | } |
| 4731 | |
| 4732 | // FIXME: This generated code sucks. |
| 4733 | ISD::CondCode LowCC; |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4734 | switch (CCCode) { |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4735 | default: assert(0 && "Unknown integer setcc!"); |
| 4736 | case ISD::SETLT: |
| 4737 | case ISD::SETULT: LowCC = ISD::SETULT; break; |
| 4738 | case ISD::SETGT: |
| 4739 | case ISD::SETUGT: LowCC = ISD::SETUGT; break; |
| 4740 | case ISD::SETLE: |
| 4741 | case ISD::SETULE: LowCC = ISD::SETULE; break; |
| 4742 | case ISD::SETGE: |
| 4743 | case ISD::SETUGE: LowCC = ISD::SETUGE; break; |
| 4744 | } |
| 4745 | |
| 4746 | // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison |
| 4747 | // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands |
| 4748 | // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2; |
| 4749 | |
| 4750 | // NOTE: on targets without efficient SELECT of bools, we can always use |
| 4751 | // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3) |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4752 | TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4753 | Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 4754 | LowCC, false, DagCombineInfo); |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4755 | if (!Tmp1.Val) |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4756 | Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC); |
| 4757 | Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4758 | CCCode, false, DagCombineInfo); |
| 4759 | if (!Tmp2.Val) |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4760 | Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi, |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 4761 | RHSHi,CC); |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4762 | |
| 4763 | ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val); |
| 4764 | ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val); |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 4765 | if ((Tmp1C && Tmp1C->isNullValue()) || |
| 4766 | (Tmp2C && Tmp2C->isNullValue() && |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4767 | (CCCode == ISD::SETLE || CCCode == ISD::SETGE || |
| 4768 | CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) || |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 4769 | (Tmp2C && Tmp2C->getAPIntValue() == 1 && |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4770 | (CCCode == ISD::SETLT || CCCode == ISD::SETGT || |
| 4771 | CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) { |
| 4772 | // low part is known false, returns high part. |
| 4773 | // For LE / GE, if high part is known false, ignore the low part. |
| 4774 | // For LT / GT, if high part is known true, ignore the low part. |
| 4775 | Tmp1 = Tmp2; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4776 | Tmp2 = SDValue(); |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4777 | } else { |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4778 | Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4779 | ISD::SETEQ, false, DagCombineInfo); |
| 4780 | if (!Result.Val) |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4781 | Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 4782 | ISD::SETEQ); |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4783 | Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(), |
| 4784 | Result, Tmp1, Tmp2)); |
| 4785 | Tmp1 = Result; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4786 | Tmp2 = SDValue(); |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4787 | } |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4788 | } |
| 4789 | } |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4790 | } |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4791 | LHS = Tmp1; |
| 4792 | RHS = Tmp2; |
| 4793 | } |
| 4794 | |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4795 | /// EmitStackConvert - Emit a store/load combination to the stack. This stores |
| 4796 | /// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does |
| 4797 | /// a load from the stack slot to DestVT, extending it if needed. |
| 4798 | /// The resultant code need not be legal. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4799 | SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp, |
| 4800 | MVT SlotVT, |
| 4801 | MVT DestVT) { |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 4802 | // Create the stack frame object. |
Mon P Wang | 364d73d | 2008-07-05 20:40:31 +0000 | [diff] [blame] | 4803 | unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment( |
| 4804 | SrcOp.getValueType().getTypeForMVT()); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4805 | SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign); |
Mon P Wang | 364d73d | 2008-07-05 20:40:31 +0000 | [diff] [blame] | 4806 | |
Dan Gohman | bbbbb9c | 2008-02-11 18:58:42 +0000 | [diff] [blame] | 4807 | FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4808 | int SPFI = StackPtrFI->getIndex(); |
Mon P Wang | 364d73d | 2008-07-05 20:40:31 +0000 | [diff] [blame] | 4809 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4810 | unsigned SrcSize = SrcOp.getValueType().getSizeInBits(); |
| 4811 | unsigned SlotSize = SlotVT.getSizeInBits(); |
| 4812 | unsigned DestSize = DestVT.getSizeInBits(); |
Mon P Wang | 364d73d | 2008-07-05 20:40:31 +0000 | [diff] [blame] | 4813 | unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment( |
| 4814 | DestVT.getTypeForMVT()); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 4815 | |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4816 | // Emit a store to the stack slot. Use a truncstore if the input value is |
| 4817 | // later than DestVT. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4818 | SDValue Store; |
Mon P Wang | 364d73d | 2008-07-05 20:40:31 +0000 | [diff] [blame] | 4819 | |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4820 | if (SrcSize > SlotSize) |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4821 | Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr, |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 4822 | PseudoSourceValue::getFixedStack(SPFI), 0, |
| 4823 | SlotVT, false, SrcAlign); |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4824 | else { |
| 4825 | assert(SrcSize == SlotSize && "Invalid store"); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4826 | Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr, |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 4827 | PseudoSourceValue::getFixedStack(SPFI), 0, |
Mon P Wang | 364d73d | 2008-07-05 20:40:31 +0000 | [diff] [blame] | 4828 | false, SrcAlign); |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4829 | } |
| 4830 | |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 4831 | // Result is a load from the stack slot. |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4832 | if (SlotSize == DestSize) |
Mon P Wang | 364d73d | 2008-07-05 20:40:31 +0000 | [diff] [blame] | 4833 | return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0, false, DestAlign); |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4834 | |
| 4835 | assert(SlotSize < DestSize && "Unknown extension!"); |
Mon P Wang | 364d73d | 2008-07-05 20:40:31 +0000 | [diff] [blame] | 4836 | return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT, |
| 4837 | false, DestAlign); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 4838 | } |
| 4839 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4840 | SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) { |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 4841 | // Create a vector sized/aligned stack slot, store the value to element #0, |
| 4842 | // then load the whole vector back out. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4843 | SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0)); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4844 | |
Dan Gohman | bbbbb9c | 2008-02-11 18:58:42 +0000 | [diff] [blame] | 4845 | FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4846 | int SPFI = StackPtrFI->getIndex(); |
| 4847 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4848 | SDValue Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr, |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 4849 | PseudoSourceValue::getFixedStack(SPFI), 0); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4850 | return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 4851 | PseudoSourceValue::getFixedStack(SPFI), 0); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 4852 | } |
| 4853 | |
| 4854 | |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 4855 | /// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't |
Dan Gohman | 07a9676 | 2007-07-16 14:29:03 +0000 | [diff] [blame] | 4856 | /// support the operation, but do support the resultant vector type. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4857 | SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) { |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 4858 | |
| 4859 | // If the only non-undef value is the low element, turn this into a |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 4860 | // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X. |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4861 | unsigned NumElems = Node->getNumOperands(); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 4862 | bool isOnlyLowElement = true; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4863 | SDValue SplatValue = Node->getOperand(0); |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 4864 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4865 | // FIXME: it would be far nicer to change this into map<SDValue,uint64_t> |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 4866 | // and use a bitmask instead of a list of elements. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4867 | std::map<SDValue, std::vector<unsigned> > Values; |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4868 | Values[SplatValue].push_back(0); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4869 | bool isConstant = true; |
| 4870 | if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) && |
| 4871 | SplatValue.getOpcode() != ISD::UNDEF) |
| 4872 | isConstant = false; |
| 4873 | |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4874 | for (unsigned i = 1; i < NumElems; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4875 | SDValue V = Node->getOperand(i); |
Chris Lattner | 89a1b38 | 2006-04-19 23:17:50 +0000 | [diff] [blame] | 4876 | Values[V].push_back(i); |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4877 | if (V.getOpcode() != ISD::UNDEF) |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 4878 | isOnlyLowElement = false; |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4879 | if (SplatValue != V) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4880 | SplatValue = SDValue(0,0); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4881 | |
| 4882 | // If this isn't a constant element or an undef, we can't use a constant |
| 4883 | // pool load. |
| 4884 | if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) && |
| 4885 | V.getOpcode() != ISD::UNDEF) |
| 4886 | isConstant = false; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 4887 | } |
| 4888 | |
| 4889 | if (isOnlyLowElement) { |
| 4890 | // If the low element is an undef too, then this whole things is an undef. |
| 4891 | if (Node->getOperand(0).getOpcode() == ISD::UNDEF) |
| 4892 | return DAG.getNode(ISD::UNDEF, Node->getValueType(0)); |
| 4893 | // Otherwise, turn this into a scalar_to_vector node. |
| 4894 | return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), |
| 4895 | Node->getOperand(0)); |
| 4896 | } |
| 4897 | |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4898 | // If all elements are constants, create a load from the constant pool. |
| 4899 | if (isConstant) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4900 | MVT VT = Node->getValueType(0); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4901 | std::vector<Constant*> CV; |
| 4902 | for (unsigned i = 0, e = NumElems; i != e; ++i) { |
| 4903 | if (ConstantFPSDNode *V = |
| 4904 | dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) { |
Chris Lattner | 02a260a | 2008-04-20 00:41:09 +0000 | [diff] [blame] | 4905 | CV.push_back(ConstantFP::get(V->getValueAPF())); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4906 | } else if (ConstantSDNode *V = |
Chris Lattner | 02a260a | 2008-04-20 00:41:09 +0000 | [diff] [blame] | 4907 | dyn_cast<ConstantSDNode>(Node->getOperand(i))) { |
| 4908 | CV.push_back(ConstantInt::get(V->getAPIntValue())); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4909 | } else { |
| 4910 | assert(Node->getOperand(i).getOpcode() == ISD::UNDEF); |
Chris Lattner | 02a260a | 2008-04-20 00:41:09 +0000 | [diff] [blame] | 4911 | const Type *OpNTy = |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4912 | Node->getOperand(0).getValueType().getTypeForMVT(); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4913 | CV.push_back(UndefValue::get(OpNTy)); |
| 4914 | } |
| 4915 | } |
Reid Spencer | 9d6565a | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 4916 | Constant *CP = ConstantVector::get(CV); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4917 | SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy()); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4918 | return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 4919 | PseudoSourceValue::getConstantPool(), 0); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4920 | } |
| 4921 | |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 4922 | if (SplatValue.Val) { // Splat of one value? |
| 4923 | // Build the shuffle constant vector: <0, 0, 0, 0> |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4924 | MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4925 | SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType()); |
| 4926 | std::vector<SDValue> ZeroVec(NumElems, Zero); |
| 4927 | SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 4928 | &ZeroVec[0], ZeroVec.size()); |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 4929 | |
| 4930 | // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it. |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 4931 | if (isShuffleLegal(Node->getValueType(0), SplatMask)) { |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 4932 | // Get the splatted value into the low element of a vector register. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4933 | SDValue LowValVec = |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 4934 | DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue); |
| 4935 | |
| 4936 | // Return shuffle(LowValVec, undef, <0,0,0,0>) |
| 4937 | return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec, |
| 4938 | DAG.getNode(ISD::UNDEF, Node->getValueType(0)), |
| 4939 | SplatMask); |
| 4940 | } |
| 4941 | } |
| 4942 | |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4943 | // If there are only two unique elements, we may be able to turn this into a |
| 4944 | // vector shuffle. |
| 4945 | if (Values.size() == 2) { |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 4946 | // Get the two values in deterministic order. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4947 | SDValue Val1 = Node->getOperand(1); |
| 4948 | SDValue Val2; |
| 4949 | std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin(); |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 4950 | if (MI->first != Val1) |
| 4951 | Val2 = MI->first; |
| 4952 | else |
| 4953 | Val2 = (++MI)->first; |
| 4954 | |
| 4955 | // If Val1 is an undef, make sure end ends up as Val2, to ensure that our |
| 4956 | // vector shuffle has the undef vector on the RHS. |
| 4957 | if (Val1.getOpcode() == ISD::UNDEF) |
| 4958 | std::swap(Val1, Val2); |
| 4959 | |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4960 | // Build the shuffle constant vector: e.g. <0, 4, 0, 4> |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4961 | MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems); |
| 4962 | MVT MaskEltVT = MaskVT.getVectorElementType(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4963 | std::vector<SDValue> MaskVec(NumElems); |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 4964 | |
| 4965 | // Set elements of the shuffle mask for Val1. |
| 4966 | std::vector<unsigned> &Val1Elts = Values[Val1]; |
| 4967 | for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i) |
| 4968 | MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT); |
| 4969 | |
| 4970 | // Set elements of the shuffle mask for Val2. |
| 4971 | std::vector<unsigned> &Val2Elts = Values[Val2]; |
| 4972 | for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i) |
| 4973 | if (Val2.getOpcode() != ISD::UNDEF) |
| 4974 | MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT); |
| 4975 | else |
| 4976 | MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT); |
| 4977 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4978 | SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 4979 | &MaskVec[0], MaskVec.size()); |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4980 | |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 4981 | // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it. |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 4982 | if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) && |
| 4983 | isShuffleLegal(Node->getValueType(0), ShuffleMask)) { |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 4984 | Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1); |
| 4985 | Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4986 | SDValue Ops[] = { Val1, Val2, ShuffleMask }; |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4987 | |
| 4988 | // Return shuffle(LoValVec, HiValVec, <0,1,0,1>) |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 4989 | return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3); |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4990 | } |
| 4991 | } |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 4992 | |
| 4993 | // Otherwise, we can't handle this case efficiently. Allocate a sufficiently |
| 4994 | // aligned object on the stack, store each element into it, then load |
| 4995 | // the result as a vector. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4996 | MVT VT = Node->getValueType(0); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 4997 | // Create the stack frame object. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 4998 | SDValue FIPtr = DAG.CreateStackTemporary(VT); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 4999 | |
| 5000 | // Emit a store of each element to the stack slot. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5001 | SmallVector<SDValue, 8> Stores; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5002 | unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5003 | // Store (in the right endianness) the elements to memory. |
| 5004 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) { |
| 5005 | // Ignore undef elements. |
| 5006 | if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue; |
| 5007 | |
Chris Lattner | 841c882 | 2006-03-22 01:46:54 +0000 | [diff] [blame] | 5008 | unsigned Offset = TypeByteSize*i; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5009 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5010 | SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType()); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5011 | Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx); |
| 5012 | |
Evan Cheng | 786225a | 2006-10-05 23:01:46 +0000 | [diff] [blame] | 5013 | Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx, |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 5014 | NULL, 0)); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5015 | } |
| 5016 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5017 | SDValue StoreChain; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5018 | if (!Stores.empty()) // Not all undef elements? |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 5019 | StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other, |
| 5020 | &Stores[0], Stores.size()); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5021 | else |
| 5022 | StoreChain = DAG.getEntryNode(); |
| 5023 | |
| 5024 | // Result is a load from the stack slot. |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5025 | return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5026 | } |
| 5027 | |
Chris Lattner | 5b359c6 | 2005-04-02 04:00:59 +0000 | [diff] [blame] | 5028 | void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5029 | SDValue Op, SDValue Amt, |
| 5030 | SDValue &Lo, SDValue &Hi) { |
Chris Lattner | 5b359c6 | 2005-04-02 04:00:59 +0000 | [diff] [blame] | 5031 | // Expand the subcomponents. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5032 | SDValue LHSL, LHSH; |
Chris Lattner | 5b359c6 | 2005-04-02 04:00:59 +0000 | [diff] [blame] | 5033 | ExpandOp(Op, LHSL, LHSH); |
| 5034 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5035 | SDValue Ops[] = { LHSL, LHSH, Amt }; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5036 | MVT VT = LHSL.getValueType(); |
Chris Lattner | f9f37fc | 2006-08-14 23:53:35 +0000 | [diff] [blame] | 5037 | Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3); |
Chris Lattner | 5b359c6 | 2005-04-02 04:00:59 +0000 | [diff] [blame] | 5038 | Hi = Lo.getValue(1); |
| 5039 | } |
| 5040 | |
| 5041 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 5042 | /// ExpandShift - Try to find a clever way to expand this shift operation out to |
| 5043 | /// smaller elements. If we can't find a way that is more efficient than a |
| 5044 | /// libcall on this target, return false. Otherwise, return true with the |
| 5045 | /// low-parts expanded into Lo and Hi. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5046 | bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt, |
| 5047 | SDValue &Lo, SDValue &Hi) { |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 5048 | assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) && |
| 5049 | "This is not a shift!"); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5050 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5051 | MVT NVT = TLI.getTypeToTransformTo(Op.getValueType()); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5052 | SDValue ShAmt = LegalizeOp(Amt); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5053 | MVT ShTy = ShAmt.getValueType(); |
| 5054 | unsigned ShBits = ShTy.getSizeInBits(); |
| 5055 | unsigned VTBits = Op.getValueType().getSizeInBits(); |
| 5056 | unsigned NVTBits = NVT.getSizeInBits(); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5057 | |
Chris Lattner | 7a3c855 | 2007-10-14 20:35:12 +0000 | [diff] [blame] | 5058 | // Handle the case when Amt is an immediate. |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5059 | if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) { |
| 5060 | unsigned Cst = CN->getValue(); |
| 5061 | // Expand the incoming operand to be shifted, so that we have its parts |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5062 | SDValue InL, InH; |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5063 | ExpandOp(Op, InL, InH); |
| 5064 | switch(Opc) { |
| 5065 | case ISD::SHL: |
| 5066 | if (Cst > VTBits) { |
| 5067 | Lo = DAG.getConstant(0, NVT); |
| 5068 | Hi = DAG.getConstant(0, NVT); |
| 5069 | } else if (Cst > NVTBits) { |
| 5070 | Lo = DAG.getConstant(0, NVT); |
| 5071 | Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy)); |
Chris Lattner | ee27f57 | 2005-04-11 20:08:52 +0000 | [diff] [blame] | 5072 | } else if (Cst == NVTBits) { |
| 5073 | Lo = DAG.getConstant(0, NVT); |
| 5074 | Hi = InL; |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5075 | } else { |
| 5076 | Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy)); |
| 5077 | Hi = DAG.getNode(ISD::OR, NVT, |
| 5078 | DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)), |
| 5079 | DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy))); |
| 5080 | } |
| 5081 | return true; |
| 5082 | case ISD::SRL: |
| 5083 | if (Cst > VTBits) { |
| 5084 | Lo = DAG.getConstant(0, NVT); |
| 5085 | Hi = DAG.getConstant(0, NVT); |
| 5086 | } else if (Cst > NVTBits) { |
| 5087 | Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy)); |
| 5088 | Hi = DAG.getConstant(0, NVT); |
Chris Lattner | ee27f57 | 2005-04-11 20:08:52 +0000 | [diff] [blame] | 5089 | } else if (Cst == NVTBits) { |
| 5090 | Lo = InH; |
| 5091 | Hi = DAG.getConstant(0, NVT); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5092 | } else { |
| 5093 | Lo = DAG.getNode(ISD::OR, NVT, |
| 5094 | DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)), |
| 5095 | DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy))); |
| 5096 | Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy)); |
| 5097 | } |
| 5098 | return true; |
| 5099 | case ISD::SRA: |
| 5100 | if (Cst > VTBits) { |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5101 | Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH, |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5102 | DAG.getConstant(NVTBits-1, ShTy)); |
| 5103 | } else if (Cst > NVTBits) { |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5104 | Lo = DAG.getNode(ISD::SRA, NVT, InH, |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5105 | DAG.getConstant(Cst-NVTBits, ShTy)); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5106 | Hi = DAG.getNode(ISD::SRA, NVT, InH, |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5107 | DAG.getConstant(NVTBits-1, ShTy)); |
Chris Lattner | ee27f57 | 2005-04-11 20:08:52 +0000 | [diff] [blame] | 5108 | } else if (Cst == NVTBits) { |
| 5109 | Lo = InH; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5110 | Hi = DAG.getNode(ISD::SRA, NVT, InH, |
Chris Lattner | ee27f57 | 2005-04-11 20:08:52 +0000 | [diff] [blame] | 5111 | DAG.getConstant(NVTBits-1, ShTy)); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5112 | } else { |
| 5113 | Lo = DAG.getNode(ISD::OR, NVT, |
| 5114 | DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)), |
| 5115 | DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy))); |
| 5116 | Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy)); |
| 5117 | } |
| 5118 | return true; |
| 5119 | } |
| 5120 | } |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5121 | |
| 5122 | // Okay, the shift amount isn't constant. However, if we can tell that it is |
| 5123 | // >= 32 or < 32, we can still simplify it, without knowing the actual value. |
Dan Gohman | 91dc17b | 2008-02-20 16:57:27 +0000 | [diff] [blame] | 5124 | APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits)); |
| 5125 | APInt KnownZero, KnownOne; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 5126 | DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne); |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5127 | |
Dan Gohman | 9e255b7 | 2008-02-22 01:12:31 +0000 | [diff] [blame] | 5128 | // If we know that if any of the high bits of the shift amount are one, then |
| 5129 | // we can do this as a couple of simple shifts. |
Dan Gohman | 91dc17b | 2008-02-20 16:57:27 +0000 | [diff] [blame] | 5130 | if (KnownOne.intersects(Mask)) { |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5131 | // Mask out the high bit, which we know is set. |
| 5132 | Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt, |
Dan Gohman | 91dc17b | 2008-02-20 16:57:27 +0000 | [diff] [blame] | 5133 | DAG.getConstant(~Mask, Amt.getValueType())); |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5134 | |
| 5135 | // Expand the incoming operand to be shifted, so that we have its parts |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5136 | SDValue InL, InH; |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5137 | ExpandOp(Op, InL, InH); |
| 5138 | switch(Opc) { |
| 5139 | case ISD::SHL: |
| 5140 | Lo = DAG.getConstant(0, NVT); // Low part is zero. |
| 5141 | Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part. |
| 5142 | return true; |
| 5143 | case ISD::SRL: |
| 5144 | Hi = DAG.getConstant(0, NVT); // Hi part is zero. |
| 5145 | Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part. |
| 5146 | return true; |
| 5147 | case ISD::SRA: |
| 5148 | Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part. |
| 5149 | DAG.getConstant(NVTBits-1, Amt.getValueType())); |
| 5150 | Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part. |
| 5151 | return true; |
| 5152 | } |
| 5153 | } |
| 5154 | |
Dan Gohman | 9e255b7 | 2008-02-22 01:12:31 +0000 | [diff] [blame] | 5155 | // If we know that the high bits of the shift amount are all zero, then we can |
| 5156 | // do this as a couple of simple shifts. |
| 5157 | if ((KnownZero & Mask) == Mask) { |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5158 | // Compute 32-amt. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5159 | SDValue Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(), |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5160 | DAG.getConstant(NVTBits, Amt.getValueType()), |
| 5161 | Amt); |
| 5162 | |
| 5163 | // Expand the incoming operand to be shifted, so that we have its parts |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5164 | SDValue InL, InH; |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5165 | ExpandOp(Op, InL, InH); |
| 5166 | switch(Opc) { |
| 5167 | case ISD::SHL: |
| 5168 | Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt); |
| 5169 | Hi = DAG.getNode(ISD::OR, NVT, |
| 5170 | DAG.getNode(ISD::SHL, NVT, InH, Amt), |
| 5171 | DAG.getNode(ISD::SRL, NVT, InL, Amt2)); |
| 5172 | return true; |
| 5173 | case ISD::SRL: |
| 5174 | Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt); |
| 5175 | Lo = DAG.getNode(ISD::OR, NVT, |
| 5176 | DAG.getNode(ISD::SRL, NVT, InL, Amt), |
| 5177 | DAG.getNode(ISD::SHL, NVT, InH, Amt2)); |
| 5178 | return true; |
| 5179 | case ISD::SRA: |
| 5180 | Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt); |
| 5181 | Lo = DAG.getNode(ISD::OR, NVT, |
| 5182 | DAG.getNode(ISD::SRL, NVT, InL, Amt), |
| 5183 | DAG.getNode(ISD::SHL, NVT, InH, Amt2)); |
| 5184 | return true; |
| 5185 | } |
| 5186 | } |
| 5187 | |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5188 | return false; |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 5189 | } |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5190 | |
Chris Lattner | 9c32d3b | 2005-01-23 04:42:50 +0000 | [diff] [blame] | 5191 | |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5192 | // ExpandLibCall - Expand a node into a call to a libcall. If the result value |
| 5193 | // does not fit into a register, return the lo part and set the hi part to the |
| 5194 | // by-reg argument. If it does fit into a single register, return the result |
| 5195 | // and leave the Hi part unset. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5196 | SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, |
| 5197 | bool isSigned, SDValue &Hi) { |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 5198 | assert(!IsLegalizingCall && "Cannot overlap legalization of calls!"); |
| 5199 | // The input chain to this libcall is the entry node of the function. |
| 5200 | // Legalizing the call will automatically add the previous call to the |
| 5201 | // dependence. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5202 | SDValue InChain = DAG.getEntryNode(); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 5203 | |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5204 | TargetLowering::ArgListTy Args; |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 5205 | TargetLowering::ArgListEntry Entry; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5206 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5207 | MVT ArgVT = Node->getOperand(i).getValueType(); |
| 5208 | const Type *ArgTy = ArgVT.getTypeForMVT(); |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 5209 | Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy; |
Anton Korobeynikov | d0b82b3 | 2007-03-07 16:25:09 +0000 | [diff] [blame] | 5210 | Entry.isSExt = isSigned; |
Duncan Sands | 00fee65 | 2008-02-14 17:28:50 +0000 | [diff] [blame] | 5211 | Entry.isZExt = !isSigned; |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 5212 | Args.push_back(Entry); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5213 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5214 | SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC), |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 5215 | TLI.getPointerTy()); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5216 | |
Chris Lattner | 0d67f0c | 2005-05-11 19:02:11 +0000 | [diff] [blame] | 5217 | // Splice the libcall in wherever FindInputOutputChains tells us to. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5218 | const Type *RetTy = Node->getValueType(0).getTypeForMVT(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5219 | std::pair<SDValue,SDValue> CallInfo = |
Duncan Sands | 00fee65 | 2008-02-14 17:28:50 +0000 | [diff] [blame] | 5220 | TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C, |
| 5221 | false, Callee, Args, DAG); |
Chris Lattner | b9fa3bc | 2005-05-12 04:49:08 +0000 | [diff] [blame] | 5222 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 5223 | // Legalize the call sequence, starting with the chain. This will advance |
| 5224 | // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that |
| 5225 | // was added by LowerCallTo (guaranteeing proper serialization of calls). |
| 5226 | LegalizeOp(CallInfo.second); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5227 | SDValue Result; |
Chris Lattner | 0d67f0c | 2005-05-11 19:02:11 +0000 | [diff] [blame] | 5228 | switch (getTypeAction(CallInfo.first.getValueType())) { |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5229 | default: assert(0 && "Unknown thing"); |
| 5230 | case Legal: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 5231 | Result = CallInfo.first; |
Chris Lattner | 99c25b8 | 2005-09-02 20:26:58 +0000 | [diff] [blame] | 5232 | break; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5233 | case Expand: |
Chris Lattner | 99c25b8 | 2005-09-02 20:26:58 +0000 | [diff] [blame] | 5234 | ExpandOp(CallInfo.first, Result, Hi); |
Chris Lattner | 99c25b8 | 2005-09-02 20:26:58 +0000 | [diff] [blame] | 5235 | break; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5236 | } |
Chris Lattner | 99c25b8 | 2005-09-02 20:26:58 +0000 | [diff] [blame] | 5237 | return Result; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5238 | } |
| 5239 | |
Chris Lattner | 9c32d3b | 2005-01-23 04:42:50 +0000 | [diff] [blame] | 5240 | |
Evan Cheng | 4c6cfad | 2007-04-27 07:33:31 +0000 | [diff] [blame] | 5241 | /// ExpandIntToFP - Expand a [US]INT_TO_FP operation. |
| 5242 | /// |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5243 | SDValue SelectionDAGLegalize:: |
| 5244 | ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5245 | MVT SourceVT = Source.getValueType(); |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5246 | bool ExpandSource = getTypeAction(SourceVT) == Expand; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5247 | |
Evan Cheng | 9845eb5 | 2008-04-01 02:18:22 +0000 | [diff] [blame] | 5248 | // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc. |
| 5249 | if (!isSigned && SourceVT != MVT::i32) { |
Dan Gohman | 34bc178 | 2008-03-05 02:07:31 +0000 | [diff] [blame] | 5250 | // The integer value loaded will be incorrectly if the 'sign bit' of the |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5251 | // incoming integer is set. To handle this, we dynamically test to see if |
| 5252 | // it is set, and, if so, add a fudge factor. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5253 | SDValue Hi; |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5254 | if (ExpandSource) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5255 | SDValue Lo; |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5256 | ExpandOp(Source, Lo, Hi); |
| 5257 | Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi); |
| 5258 | } else { |
| 5259 | // The comparison for the sign bit will use the entire operand. |
| 5260 | Hi = Source; |
| 5261 | } |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5262 | |
Chris Lattner | 66de05b | 2005-05-13 04:45:13 +0000 | [diff] [blame] | 5263 | // If this is unsigned, and not supported, first perform the conversion to |
| 5264 | // signed, then adjust the result if the sign bit is set. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5265 | SDValue SignedConv = ExpandIntToFP(true, DestTy, Source); |
Chris Lattner | 66de05b | 2005-05-13 04:45:13 +0000 | [diff] [blame] | 5266 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5267 | SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi, |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 5268 | DAG.getConstant(0, Hi.getValueType()), |
| 5269 | ISD::SETLT); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5270 | SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4); |
| 5271 | SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(), |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5272 | SignSet, Four, Zero); |
Chris Lattner | 383203b | 2005-05-12 18:52:34 +0000 | [diff] [blame] | 5273 | uint64_t FF = 0x5f800000ULL; |
| 5274 | if (TLI.isLittleEndian()) FF <<= 32; |
Dan Gohman | 34bc178 | 2008-03-05 02:07:31 +0000 | [diff] [blame] | 5275 | static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF); |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5276 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5277 | SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy()); |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5278 | CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5279 | SDValue FudgeInReg; |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5280 | if (DestTy == MVT::f32) |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5281 | FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 5282 | PseudoSourceValue::getConstantPool(), 0); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 5283 | else if (DestTy.bitsGT(MVT::f32)) |
Evan Cheng | 4c6cfad | 2007-04-27 07:33:31 +0000 | [diff] [blame] | 5284 | // FIXME: Avoid the extend by construction the right constantpool? |
Dale Johannesen | 118cd9d | 2007-09-16 16:51:49 +0000 | [diff] [blame] | 5285 | FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(), |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5286 | CPIdx, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 5287 | PseudoSourceValue::getConstantPool(), 0, |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5288 | MVT::f32); |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 5289 | else |
| 5290 | assert(0 && "Unexpected conversion"); |
| 5291 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5292 | MVT SCVT = SignedConv.getValueType(); |
Evan Cheng | 4c6cfad | 2007-04-27 07:33:31 +0000 | [diff] [blame] | 5293 | if (SCVT != DestTy) { |
| 5294 | // Destination type needs to be expanded as well. The FADD now we are |
| 5295 | // constructing will be expanded into a libcall. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5296 | if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) { |
| 5297 | assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits()); |
Dan Gohman | d91446d | 2008-03-05 01:08:17 +0000 | [diff] [blame] | 5298 | SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy, |
Evan Cheng | 4c6cfad | 2007-04-27 07:33:31 +0000 | [diff] [blame] | 5299 | SignedConv, SignedConv.getValue(1)); |
| 5300 | } |
| 5301 | SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv); |
| 5302 | } |
Chris Lattner | 473a990 | 2005-09-29 06:44:39 +0000 | [diff] [blame] | 5303 | return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5304 | } |
Chris Lattner | 0d67f0c | 2005-05-11 19:02:11 +0000 | [diff] [blame] | 5305 | |
Chris Lattner | a88a260 | 2005-05-14 05:33:54 +0000 | [diff] [blame] | 5306 | // Check to see if the target has a custom way to lower this. If so, use it. |
Dan Gohman | d91446d | 2008-03-05 01:08:17 +0000 | [diff] [blame] | 5307 | switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) { |
Chris Lattner | a88a260 | 2005-05-14 05:33:54 +0000 | [diff] [blame] | 5308 | default: assert(0 && "This action not implemented for this operation!"); |
| 5309 | case TargetLowering::Legal: |
| 5310 | case TargetLowering::Expand: |
| 5311 | break; // This case is handled below. |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 5312 | case TargetLowering::Custom: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5313 | SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy, |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 5314 | Source), DAG); |
| 5315 | if (NV.Val) |
| 5316 | return LegalizeOp(NV); |
| 5317 | break; // The target decided this was legal after all |
| 5318 | } |
Chris Lattner | a88a260 | 2005-05-14 05:33:54 +0000 | [diff] [blame] | 5319 | } |
| 5320 | |
Chris Lattner | 13689e2 | 2005-05-12 07:00:44 +0000 | [diff] [blame] | 5321 | // Expand the source, then glue it back together for the call. We must expand |
| 5322 | // the source in case it is shared (this pass of legalize must traverse it). |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5323 | if (ExpandSource) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5324 | SDValue SrcLo, SrcHi; |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5325 | ExpandOp(Source, SrcLo, SrcHi); |
| 5326 | Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi); |
| 5327 | } |
Chris Lattner | 13689e2 | 2005-05-12 07:00:44 +0000 | [diff] [blame] | 5328 | |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 5329 | RTLIB::Libcall LC = isSigned ? |
| 5330 | RTLIB::getSINTTOFP(SourceVT, DestTy) : |
| 5331 | RTLIB::getUINTTOFP(SourceVT, DestTy); |
| 5332 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type"); |
| 5333 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 5334 | Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5335 | SDValue HiPart; |
| 5336 | SDValue Result = ExpandLibCall(LC, Source.Val, isSigned, HiPart); |
Evan Cheng | 110cf48 | 2008-04-01 01:50:16 +0000 | [diff] [blame] | 5337 | if (Result.getValueType() != DestTy && HiPart.Val) |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 5338 | Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart); |
| 5339 | return Result; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5340 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5341 | |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5342 | /// ExpandLegalINT_TO_FP - This function is responsible for legalizing a |
| 5343 | /// INT_TO_FP operation of the specified operand when the target requests that |
| 5344 | /// we expand it. At this point, we know that the result and operand types are |
| 5345 | /// legal for the target. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5346 | SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned, |
| 5347 | SDValue Op0, |
| 5348 | MVT DestVT) { |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5349 | if (Op0.getValueType() == MVT::i32) { |
| 5350 | // simple 32-bit [signed|unsigned] integer to float/double expansion |
| 5351 | |
Chris Lattner | 23594d4 | 2008-01-16 07:03:22 +0000 | [diff] [blame] | 5352 | // Get the stack frame index of a 8 byte buffer. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5353 | SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64); |
Chris Lattner | 23594d4 | 2008-01-16 07:03:22 +0000 | [diff] [blame] | 5354 | |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5355 | // word offset constant for Hi/Lo address computation |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5356 | SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy()); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5357 | // set up Hi and Lo (into buffer) address based on endian |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5358 | SDValue Hi = StackSlot; |
| 5359 | SDValue Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff); |
Chris Lattner | 408c428 | 2006-03-23 05:29:04 +0000 | [diff] [blame] | 5360 | if (TLI.isLittleEndian()) |
| 5361 | std::swap(Hi, Lo); |
| 5362 | |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5363 | // if signed map to unsigned space |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5364 | SDValue Op0Mapped; |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5365 | if (isSigned) { |
| 5366 | // constant used to invert sign bit (signed to unsigned mapping) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5367 | SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5368 | Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit); |
| 5369 | } else { |
| 5370 | Op0Mapped = Op0; |
| 5371 | } |
| 5372 | // store the lo of the constructed double - based on integer input |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5373 | SDValue Store1 = DAG.getStore(DAG.getEntryNode(), |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 5374 | Op0Mapped, Lo, NULL, 0); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5375 | // initial hi portion of constructed double |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5376 | SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5377 | // store the hi of the constructed double - biased exponent |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5378 | SDValue Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5379 | // load the constructed double |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5380 | SDValue Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5381 | // FP constant to bias correct the final result |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5382 | SDValue Bias = DAG.getConstantFP(isSigned ? |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5383 | BitsToDouble(0x4330000080000000ULL) |
| 5384 | : BitsToDouble(0x4330000000000000ULL), |
| 5385 | MVT::f64); |
| 5386 | // subtract the bias |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5387 | SDValue Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5388 | // final result |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5389 | SDValue Result; |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5390 | // handle final rounding |
| 5391 | if (DestVT == MVT::f64) { |
| 5392 | // do nothing |
| 5393 | Result = Sub; |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 5394 | } else if (DestVT.bitsLT(MVT::f64)) { |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 5395 | Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub, |
| 5396 | DAG.getIntPtrConstant(0)); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 5397 | } else if (DestVT.bitsGT(MVT::f64)) { |
Dale Johannesen | 118cd9d | 2007-09-16 16:51:49 +0000 | [diff] [blame] | 5398 | Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5399 | } |
| 5400 | return Result; |
| 5401 | } |
| 5402 | assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5403 | SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5404 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5405 | SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0, |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5406 | DAG.getConstant(0, Op0.getValueType()), |
| 5407 | ISD::SETLT); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5408 | SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4); |
| 5409 | SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(), |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5410 | SignSet, Four, Zero); |
| 5411 | |
| 5412 | // If the sign bit of the integer is set, the large number will be treated |
| 5413 | // as a negative number. To counteract this, the dynamic code adds an |
| 5414 | // offset depending on the data type. |
| 5415 | uint64_t FF; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5416 | switch (Op0.getValueType().getSimpleVT()) { |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5417 | default: assert(0 && "Unsupported integer type!"); |
| 5418 | case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float) |
| 5419 | case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float) |
| 5420 | case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float) |
| 5421 | case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float) |
| 5422 | } |
| 5423 | if (TLI.isLittleEndian()) FF <<= 32; |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 5424 | static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5425 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5426 | SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy()); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5427 | CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5428 | SDValue FudgeInReg; |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5429 | if (DestVT == MVT::f32) |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5430 | FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 5431 | PseudoSourceValue::getConstantPool(), 0); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5432 | else { |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5433 | FudgeInReg = |
| 5434 | LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT, |
| 5435 | DAG.getEntryNode(), CPIdx, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 5436 | PseudoSourceValue::getConstantPool(), 0, |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5437 | MVT::f32)); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5438 | } |
| 5439 | |
| 5440 | return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg); |
| 5441 | } |
| 5442 | |
| 5443 | /// PromoteLegalINT_TO_FP - This function is responsible for legalizing a |
| 5444 | /// *INT_TO_FP operation of the specified operand when the target requests that |
| 5445 | /// we promote it. At this point, we know that the result and operand types are |
| 5446 | /// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP |
| 5447 | /// operation that takes a larger input. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5448 | SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp, |
| 5449 | MVT DestVT, |
| 5450 | bool isSigned) { |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5451 | // First step, figure out the appropriate *INT_TO_FP operation to use. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5452 | MVT NewInTy = LegalOp.getValueType(); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5453 | |
| 5454 | unsigned OpToUse = 0; |
| 5455 | |
| 5456 | // Scan for the appropriate larger type to use. |
| 5457 | while (1) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5458 | NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1); |
| 5459 | assert(NewInTy.isInteger() && "Ran out of possibilities!"); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5460 | |
| 5461 | // If the target supports SINT_TO_FP of this type, use it. |
| 5462 | switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) { |
| 5463 | default: break; |
| 5464 | case TargetLowering::Legal: |
| 5465 | if (!TLI.isTypeLegal(NewInTy)) |
| 5466 | break; // Can't use this datatype. |
| 5467 | // FALL THROUGH. |
| 5468 | case TargetLowering::Custom: |
| 5469 | OpToUse = ISD::SINT_TO_FP; |
| 5470 | break; |
| 5471 | } |
| 5472 | if (OpToUse) break; |
| 5473 | if (isSigned) continue; |
| 5474 | |
| 5475 | // If the target supports UINT_TO_FP of this type, use it. |
| 5476 | switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) { |
| 5477 | default: break; |
| 5478 | case TargetLowering::Legal: |
| 5479 | if (!TLI.isTypeLegal(NewInTy)) |
| 5480 | break; // Can't use this datatype. |
| 5481 | // FALL THROUGH. |
| 5482 | case TargetLowering::Custom: |
| 5483 | OpToUse = ISD::UINT_TO_FP; |
| 5484 | break; |
| 5485 | } |
| 5486 | if (OpToUse) break; |
| 5487 | |
| 5488 | // Otherwise, try a larger type. |
| 5489 | } |
| 5490 | |
| 5491 | // Okay, we found the operation and type to use. Zero extend our input to the |
| 5492 | // desired type then run the operation on it. |
| 5493 | return DAG.getNode(OpToUse, DestVT, |
| 5494 | DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND, |
| 5495 | NewInTy, LegalOp)); |
| 5496 | } |
| 5497 | |
| 5498 | /// PromoteLegalFP_TO_INT - This function is responsible for legalizing a |
| 5499 | /// FP_TO_*INT operation of the specified operand when the target requests that |
| 5500 | /// we promote it. At this point, we know that the result and operand types are |
| 5501 | /// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT |
| 5502 | /// operation that returns a larger result. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5503 | SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp, |
| 5504 | MVT DestVT, |
| 5505 | bool isSigned) { |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5506 | // First step, figure out the appropriate FP_TO*INT operation to use. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5507 | MVT NewOutTy = DestVT; |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5508 | |
| 5509 | unsigned OpToUse = 0; |
| 5510 | |
| 5511 | // Scan for the appropriate larger type to use. |
| 5512 | while (1) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5513 | NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1); |
| 5514 | assert(NewOutTy.isInteger() && "Ran out of possibilities!"); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5515 | |
| 5516 | // If the target supports FP_TO_SINT returning this type, use it. |
| 5517 | switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) { |
| 5518 | default: break; |
| 5519 | case TargetLowering::Legal: |
| 5520 | if (!TLI.isTypeLegal(NewOutTy)) |
| 5521 | break; // Can't use this datatype. |
| 5522 | // FALL THROUGH. |
| 5523 | case TargetLowering::Custom: |
| 5524 | OpToUse = ISD::FP_TO_SINT; |
| 5525 | break; |
| 5526 | } |
| 5527 | if (OpToUse) break; |
| 5528 | |
| 5529 | // If the target supports FP_TO_UINT of this type, use it. |
| 5530 | switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) { |
| 5531 | default: break; |
| 5532 | case TargetLowering::Legal: |
| 5533 | if (!TLI.isTypeLegal(NewOutTy)) |
| 5534 | break; // Can't use this datatype. |
| 5535 | // FALL THROUGH. |
| 5536 | case TargetLowering::Custom: |
| 5537 | OpToUse = ISD::FP_TO_UINT; |
| 5538 | break; |
| 5539 | } |
| 5540 | if (OpToUse) break; |
| 5541 | |
| 5542 | // Otherwise, try a larger type. |
| 5543 | } |
| 5544 | |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 5545 | |
| 5546 | // Okay, we found the operation and type to use. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5547 | SDValue Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp); |
Duncan Sands | 126d907 | 2008-07-04 11:47:58 +0000 | [diff] [blame] | 5548 | |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 5549 | // If the operation produces an invalid type, it must be custom lowered. Use |
| 5550 | // the target lowering hooks to expand it. Just keep the low part of the |
| 5551 | // expanded operation, we know that we're truncating anyway. |
| 5552 | if (getTypeAction(NewOutTy) == Expand) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5553 | Operation = SDValue(TLI.ReplaceNodeResults(Operation.Val, DAG), 0); |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 5554 | assert(Operation.Val && "Didn't return anything"); |
| 5555 | } |
Duncan Sands | 126d907 | 2008-07-04 11:47:58 +0000 | [diff] [blame] | 5556 | |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 5557 | // Truncate the result of the extended FP_TO_*INT operation to the desired |
| 5558 | // size. |
| 5559 | return DAG.getNode(ISD::TRUNCATE, DestVT, Operation); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5560 | } |
| 5561 | |
| 5562 | /// ExpandBSWAP - Open code the operations for BSWAP of the specified operation. |
| 5563 | /// |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5564 | SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5565 | MVT VT = Op.getValueType(); |
| 5566 | MVT SHVT = TLI.getShiftAmountTy(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5567 | SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5568 | switch (VT.getSimpleVT()) { |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5569 | default: assert(0 && "Unhandled Expand type in BSWAP!"); abort(); |
| 5570 | case MVT::i16: |
| 5571 | Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT)); |
| 5572 | Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT)); |
| 5573 | return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2); |
| 5574 | case MVT::i32: |
| 5575 | Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT)); |
| 5576 | Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT)); |
| 5577 | Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT)); |
| 5578 | Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT)); |
| 5579 | Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT)); |
| 5580 | Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT)); |
| 5581 | Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3); |
| 5582 | Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1); |
| 5583 | return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2); |
| 5584 | case MVT::i64: |
| 5585 | Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT)); |
| 5586 | Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT)); |
| 5587 | Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT)); |
| 5588 | Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT)); |
| 5589 | Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT)); |
| 5590 | Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT)); |
| 5591 | Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT)); |
| 5592 | Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT)); |
| 5593 | Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT)); |
| 5594 | Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT)); |
| 5595 | Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT)); |
| 5596 | Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT)); |
| 5597 | Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT)); |
| 5598 | Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT)); |
| 5599 | Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7); |
| 5600 | Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5); |
| 5601 | Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3); |
| 5602 | Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1); |
| 5603 | Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6); |
| 5604 | Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2); |
| 5605 | return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4); |
| 5606 | } |
| 5607 | } |
| 5608 | |
| 5609 | /// ExpandBitCount - Expand the specified bitcount instruction into operations. |
| 5610 | /// |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5611 | SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op) { |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5612 | switch (Opc) { |
| 5613 | default: assert(0 && "Cannot expand this yet!"); |
| 5614 | case ISD::CTPOP: { |
| 5615 | static const uint64_t mask[6] = { |
| 5616 | 0x5555555555555555ULL, 0x3333333333333333ULL, |
| 5617 | 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL, |
| 5618 | 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL |
| 5619 | }; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5620 | MVT VT = Op.getValueType(); |
| 5621 | MVT ShVT = TLI.getShiftAmountTy(); |
| 5622 | unsigned len = VT.getSizeInBits(); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5623 | for (unsigned i = 0; (1U << i) <= (len / 2); ++i) { |
| 5624 | //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8]) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5625 | SDValue Tmp2 = DAG.getConstant(mask[i], VT); |
| 5626 | SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5627 | Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2), |
| 5628 | DAG.getNode(ISD::AND, VT, |
| 5629 | DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2)); |
| 5630 | } |
| 5631 | return Op; |
| 5632 | } |
| 5633 | case ISD::CTLZ: { |
| 5634 | // for now, we do this: |
| 5635 | // x = x | (x >> 1); |
| 5636 | // x = x | (x >> 2); |
| 5637 | // ... |
| 5638 | // x = x | (x >>16); |
| 5639 | // x = x | (x >>32); // for 64-bit input |
| 5640 | // return popcount(~x); |
| 5641 | // |
| 5642 | // but see also: http://www.hackersdelight.org/HDcode/nlz.cc |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5643 | MVT VT = Op.getValueType(); |
| 5644 | MVT ShVT = TLI.getShiftAmountTy(); |
| 5645 | unsigned len = VT.getSizeInBits(); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5646 | for (unsigned i = 0; (1U << i) <= (len / 2); ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5647 | SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5648 | Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3)); |
| 5649 | } |
| 5650 | Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT)); |
| 5651 | return DAG.getNode(ISD::CTPOP, VT, Op); |
| 5652 | } |
| 5653 | case ISD::CTTZ: { |
| 5654 | // for now, we use: { return popcount(~x & (x - 1)); } |
| 5655 | // unless the target has ctlz but not ctpop, in which case we use: |
| 5656 | // { return 32 - nlz(~x & (x-1)); } |
| 5657 | // see also http://www.hackersdelight.org/HDcode/ntz.cc |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5658 | MVT VT = Op.getValueType(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5659 | SDValue Tmp2 = DAG.getConstant(~0ULL, VT); |
| 5660 | SDValue Tmp3 = DAG.getNode(ISD::AND, VT, |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5661 | DAG.getNode(ISD::XOR, VT, Op, Tmp2), |
| 5662 | DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT))); |
| 5663 | // If ISD::CTLZ is legal and CTPOP isn't, then do that instead. |
| 5664 | if (!TLI.isOperationLegal(ISD::CTPOP, VT) && |
| 5665 | TLI.isOperationLegal(ISD::CTLZ, VT)) |
| 5666 | return DAG.getNode(ISD::SUB, VT, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5667 | DAG.getConstant(VT.getSizeInBits(), VT), |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5668 | DAG.getNode(ISD::CTLZ, VT, Tmp3)); |
| 5669 | return DAG.getNode(ISD::CTPOP, VT, Tmp3); |
| 5670 | } |
| 5671 | } |
| 5672 | } |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 5673 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5674 | /// ExpandOp - Expand the specified SDValue into its two component pieces |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5675 | /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the |
| 5676 | /// LegalizeNodes map is filled in for any results that are not expanded, the |
| 5677 | /// ExpandedNodes map is filled in for any results that are expanded, and the |
| 5678 | /// Lo/Hi values are returned. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5679 | void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){ |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5680 | MVT VT = Op.getValueType(); |
| 5681 | MVT NVT = TLI.getTypeToTransformTo(VT); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5682 | SDNode *Node = Op.Val; |
| 5683 | assert(getTypeAction(VT) == Expand && "Not an expanded type!"); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 5684 | assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() || |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5685 | VT.isVector()) && "Cannot expand to FP value or to larger int value!"); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5686 | |
Chris Lattner | 6fdcb25 | 2005-09-02 20:32:45 +0000 | [diff] [blame] | 5687 | // See if we already expanded it. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5688 | DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I |
Chris Lattner | 6fdcb25 | 2005-09-02 20:32:45 +0000 | [diff] [blame] | 5689 | = ExpandedNodes.find(Op); |
| 5690 | if (I != ExpandedNodes.end()) { |
| 5691 | Lo = I->second.first; |
| 5692 | Hi = I->second.second; |
| 5693 | return; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5694 | } |
| 5695 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5696 | switch (Node->getOpcode()) { |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 5697 | case ISD::CopyFromReg: |
| 5698 | assert(0 && "CopyFromReg must be legal!"); |
Dale Johannesen | 6eaeff2 | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 5699 | case ISD::FP_ROUND_INREG: |
| 5700 | if (VT == MVT::ppcf128 && |
| 5701 | TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) == |
| 5702 | TargetLowering::Custom) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5703 | SDValue SrcLo, SrcHi, Src; |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 5704 | ExpandOp(Op.getOperand(0), SrcLo, SrcHi); |
| 5705 | Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5706 | SDValue Result = TLI.LowerOperation( |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 5707 | DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG); |
Dale Johannesen | 6eaeff2 | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 5708 | assert(Result.Val->getOpcode() == ISD::BUILD_PAIR); |
| 5709 | Lo = Result.Val->getOperand(0); |
| 5710 | Hi = Result.Val->getOperand(1); |
| 5711 | break; |
| 5712 | } |
| 5713 | // fall through |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 5714 | default: |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 5715 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 5716 | cerr << "NODE: "; Node->dump(&DAG); cerr << "\n"; |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 5717 | #endif |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5718 | assert(0 && "Do not know how to expand this operator!"); |
| 5719 | abort(); |
Dan Gohman | 1953ecb | 2008-02-27 01:52:30 +0000 | [diff] [blame] | 5720 | case ISD::EXTRACT_ELEMENT: |
| 5721 | ExpandOp(Node->getOperand(0), Lo, Hi); |
| 5722 | if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) |
| 5723 | return ExpandOp(Hi, Lo, Hi); |
Dan Gohman | 18714ae | 2008-02-27 19:44:57 +0000 | [diff] [blame] | 5724 | return ExpandOp(Lo, Lo, Hi); |
Dale Johannesen | 25f1d08 | 2007-10-31 00:32:36 +0000 | [diff] [blame] | 5725 | case ISD::EXTRACT_VECTOR_ELT: |
| 5726 | assert(VT==MVT::i64 && "Do not know how to expand this operator!"); |
| 5727 | // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types. |
| 5728 | Lo = ExpandEXTRACT_VECTOR_ELT(Op); |
| 5729 | return ExpandOp(Lo, Lo, Hi); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 5730 | case ISD::UNDEF: |
| 5731 | Lo = DAG.getNode(ISD::UNDEF, NVT); |
| 5732 | Hi = DAG.getNode(ISD::UNDEF, NVT); |
| 5733 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5734 | case ISD::Constant: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5735 | unsigned NVTBits = NVT.getSizeInBits(); |
Dan Gohman | 050f550 | 2008-03-03 22:20:46 +0000 | [diff] [blame] | 5736 | const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue(); |
| 5737 | Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT); |
| 5738 | Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5739 | break; |
| 5740 | } |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 5741 | case ISD::ConstantFP: { |
| 5742 | ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node); |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 5743 | if (CFP->getValueType(0) == MVT::ppcf128) { |
| 5744 | APInt api = CFP->getValueAPF().convertToAPInt(); |
| 5745 | Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])), |
| 5746 | MVT::f64); |
| 5747 | Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])), |
| 5748 | MVT::f64); |
| 5749 | break; |
| 5750 | } |
Evan Cheng | 279101e | 2006-12-12 22:19:28 +0000 | [diff] [blame] | 5751 | Lo = ExpandConstantFP(CFP, false, DAG, TLI); |
Evan Cheng | 9f87788 | 2006-12-13 20:57:08 +0000 | [diff] [blame] | 5752 | if (getTypeAction(Lo.getValueType()) == Expand) |
| 5753 | ExpandOp(Lo, Lo, Hi); |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 5754 | break; |
| 5755 | } |
Chris Lattner | d4e50bb | 2005-03-28 22:03:13 +0000 | [diff] [blame] | 5756 | case ISD::BUILD_PAIR: |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 5757 | // Return the operands. |
| 5758 | Lo = Node->getOperand(0); |
| 5759 | Hi = Node->getOperand(1); |
Chris Lattner | d4e50bb | 2005-03-28 22:03:13 +0000 | [diff] [blame] | 5760 | break; |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 5761 | |
| 5762 | case ISD::MERGE_VALUES: |
Chris Lattner | c58d558 | 2007-11-24 19:12:15 +0000 | [diff] [blame] | 5763 | if (Node->getNumValues() == 1) { |
| 5764 | ExpandOp(Op.getOperand(0), Lo, Hi); |
| 5765 | break; |
| 5766 | } |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 5767 | // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y) |
| 5768 | assert(Op.ResNo == 0 && Node->getNumValues() == 2 && |
| 5769 | Op.getValue(1).getValueType() == MVT::Other && |
| 5770 | "unhandled MERGE_VALUES"); |
| 5771 | ExpandOp(Op.getOperand(0), Lo, Hi); |
| 5772 | // Remember that we legalized the chain. |
| 5773 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1))); |
| 5774 | break; |
Chris Lattner | 58f7963 | 2005-12-12 22:27:43 +0000 | [diff] [blame] | 5775 | |
| 5776 | case ISD::SIGN_EXTEND_INREG: |
| 5777 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Chris Lattner | 4bdd275 | 2006-10-06 17:34:12 +0000 | [diff] [blame] | 5778 | // sext_inreg the low part if needed. |
| 5779 | Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1)); |
| 5780 | |
| 5781 | // The high part gets the sign extension from the lo-part. This handles |
| 5782 | // things like sextinreg V:i64 from i8. |
Chris Lattner | 58f7963 | 2005-12-12 22:27:43 +0000 | [diff] [blame] | 5783 | Hi = DAG.getNode(ISD::SRA, NVT, Lo, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5784 | DAG.getConstant(NVT.getSizeInBits()-1, |
Chris Lattner | 58f7963 | 2005-12-12 22:27:43 +0000 | [diff] [blame] | 5785 | TLI.getShiftAmountTy())); |
Chris Lattner | 58f7963 | 2005-12-12 22:27:43 +0000 | [diff] [blame] | 5786 | break; |
Chris Lattner | d4e50bb | 2005-03-28 22:03:13 +0000 | [diff] [blame] | 5787 | |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 5788 | case ISD::BSWAP: { |
| 5789 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5790 | SDValue TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi); |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 5791 | Hi = DAG.getNode(ISD::BSWAP, NVT, Lo); |
| 5792 | Lo = TempLo; |
| 5793 | break; |
| 5794 | } |
| 5795 | |
Chris Lattner | edb1add | 2005-05-11 04:51:16 +0000 | [diff] [blame] | 5796 | case ISD::CTPOP: |
| 5797 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Chris Lattner | 9b583b4 | 2005-05-11 05:09:47 +0000 | [diff] [blame] | 5798 | Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L) |
| 5799 | DAG.getNode(ISD::CTPOP, NVT, Lo), |
| 5800 | DAG.getNode(ISD::CTPOP, NVT, Hi)); |
Chris Lattner | edb1add | 2005-05-11 04:51:16 +0000 | [diff] [blame] | 5801 | Hi = DAG.getConstant(0, NVT); |
| 5802 | break; |
| 5803 | |
Chris Lattner | 39a8f33 | 2005-05-12 19:05:01 +0000 | [diff] [blame] | 5804 | case ISD::CTLZ: { |
| 5805 | // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32) |
Chris Lattner | 3becf20 | 2005-05-12 19:27:51 +0000 | [diff] [blame] | 5806 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5807 | SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT); |
| 5808 | SDValue HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi); |
| 5809 | SDValue TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC, |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 5810 | ISD::SETNE); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5811 | SDValue LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo); |
Chris Lattner | 39a8f33 | 2005-05-12 19:05:01 +0000 | [diff] [blame] | 5812 | LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC); |
| 5813 | |
| 5814 | Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart); |
| 5815 | Hi = DAG.getConstant(0, NVT); |
| 5816 | break; |
| 5817 | } |
| 5818 | |
| 5819 | case ISD::CTTZ: { |
| 5820 | // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32) |
Chris Lattner | 3becf20 | 2005-05-12 19:27:51 +0000 | [diff] [blame] | 5821 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5822 | SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT); |
| 5823 | SDValue LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo); |
| 5824 | SDValue BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC, |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 5825 | ISD::SETNE); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5826 | SDValue HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi); |
Chris Lattner | 39a8f33 | 2005-05-12 19:05:01 +0000 | [diff] [blame] | 5827 | HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC); |
| 5828 | |
| 5829 | Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart); |
| 5830 | Hi = DAG.getConstant(0, NVT); |
| 5831 | break; |
| 5832 | } |
Chris Lattner | edb1add | 2005-05-11 04:51:16 +0000 | [diff] [blame] | 5833 | |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 5834 | case ISD::VAARG: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5835 | SDValue Ch = Node->getOperand(0); // Legalize the chain. |
| 5836 | SDValue Ptr = Node->getOperand(1); // Legalize the pointer. |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 5837 | Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2)); |
| 5838 | Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2)); |
| 5839 | |
| 5840 | // Remember that we legalized the chain. |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 5841 | Hi = LegalizeOp(Hi); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 5842 | AddLegalizedOperand(Op.getValue(1), Hi.getValue(1)); |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 5843 | if (TLI.isBigEndian()) |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 5844 | std::swap(Lo, Hi); |
| 5845 | break; |
| 5846 | } |
| 5847 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5848 | case ISD::LOAD: { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5849 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5850 | SDValue Ch = LD->getChain(); // Legalize the chain. |
| 5851 | SDValue Ptr = LD->getBasePtr(); // Legalize the pointer. |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5852 | ISD::LoadExtType ExtType = LD->getExtensionType(); |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 5853 | int SVOffset = LD->getSrcValueOffset(); |
| 5854 | unsigned Alignment = LD->getAlignment(); |
| 5855 | bool isVolatile = LD->isVolatile(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5856 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5857 | if (ExtType == ISD::NON_EXTLOAD) { |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 5858 | Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset, |
| 5859 | isVolatile, Alignment); |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 5860 | if (VT == MVT::f32 || VT == MVT::f64) { |
| 5861 | // f32->i32 or f64->i64 one to one expansion. |
| 5862 | // Remember that we legalized the chain. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5863 | AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1))); |
Evan Cheng | 9f87788 | 2006-12-13 20:57:08 +0000 | [diff] [blame] | 5864 | // Recursively expand the new load. |
| 5865 | if (getTypeAction(NVT) == Expand) |
| 5866 | ExpandOp(Lo, Lo, Hi); |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 5867 | break; |
| 5868 | } |
Chris Lattner | ec39a45 | 2005-01-19 18:02:17 +0000 | [diff] [blame] | 5869 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5870 | // Increment the pointer to the other half. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5871 | unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8; |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5872 | Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 5873 | DAG.getIntPtrConstant(IncrementSize)); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5874 | SVOffset += IncrementSize; |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 5875 | Alignment = MinAlign(Alignment, IncrementSize); |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 5876 | Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset, |
| 5877 | isVolatile, Alignment); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5878 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5879 | // Build a factor node to remember that this load is independent of the |
| 5880 | // other one. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5881 | SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1), |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5882 | Hi.getValue(1)); |
| 5883 | |
| 5884 | // Remember that we legalized the chain. |
| 5885 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF)); |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 5886 | if (TLI.isBigEndian()) |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5887 | std::swap(Lo, Hi); |
| 5888 | } else { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5889 | MVT EVT = LD->getMemoryVT(); |
Evan Cheng | 548f611 | 2006-12-13 03:19:57 +0000 | [diff] [blame] | 5890 | |
Dale Johannesen | b6210fc | 2007-10-19 20:29:00 +0000 | [diff] [blame] | 5891 | if ((VT == MVT::f64 && EVT == MVT::f32) || |
| 5892 | (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) { |
Evan Cheng | 548f611 | 2006-12-13 03:19:57 +0000 | [diff] [blame] | 5893 | // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5894 | SDValue Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 5895 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 548f611 | 2006-12-13 03:19:57 +0000 | [diff] [blame] | 5896 | // Remember that we legalized the chain. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5897 | AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1))); |
Evan Cheng | 548f611 | 2006-12-13 03:19:57 +0000 | [diff] [blame] | 5898 | ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi); |
| 5899 | break; |
| 5900 | } |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5901 | |
| 5902 | if (EVT == NVT) |
| 5903 | Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 5904 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5905 | else |
| 5906 | Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 5907 | SVOffset, EVT, isVolatile, |
| 5908 | Alignment); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5909 | |
| 5910 | // Remember that we legalized the chain. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5911 | AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1))); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5912 | |
| 5913 | if (ExtType == ISD::SEXTLOAD) { |
| 5914 | // The high part is obtained by SRA'ing all but one of the bits of the |
| 5915 | // lo part. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5916 | unsigned LoSize = Lo.getValueType().getSizeInBits(); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5917 | Hi = DAG.getNode(ISD::SRA, NVT, Lo, |
| 5918 | DAG.getConstant(LoSize-1, TLI.getShiftAmountTy())); |
| 5919 | } else if (ExtType == ISD::ZEXTLOAD) { |
| 5920 | // The high part is just a zero. |
| 5921 | Hi = DAG.getConstant(0, NVT); |
| 5922 | } else /* if (ExtType == ISD::EXTLOAD) */ { |
| 5923 | // The high part is undefined. |
| 5924 | Hi = DAG.getNode(ISD::UNDEF, NVT); |
| 5925 | } |
| 5926 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5927 | break; |
| 5928 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5929 | case ISD::AND: |
| 5930 | case ISD::OR: |
| 5931 | case ISD::XOR: { // Simple logical operators -> two trivial pieces. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5932 | SDValue LL, LH, RL, RH; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5933 | ExpandOp(Node->getOperand(0), LL, LH); |
| 5934 | ExpandOp(Node->getOperand(1), RL, RH); |
| 5935 | Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL); |
| 5936 | Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH); |
| 5937 | break; |
| 5938 | } |
| 5939 | case ISD::SELECT: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5940 | SDValue LL, LH, RL, RH; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5941 | ExpandOp(Node->getOperand(1), LL, LH); |
| 5942 | ExpandOp(Node->getOperand(2), RL, RH); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 5943 | if (getTypeAction(NVT) == Expand) |
| 5944 | NVT = TLI.getTypeToExpandTo(NVT); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 5945 | Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 5946 | if (VT != MVT::f32) |
| 5947 | Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5948 | break; |
| 5949 | } |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 5950 | case ISD::SELECT_CC: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5951 | SDValue TL, TH, FL, FH; |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 5952 | ExpandOp(Node->getOperand(2), TL, TH); |
| 5953 | ExpandOp(Node->getOperand(3), FL, FH); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 5954 | if (getTypeAction(NVT) == Expand) |
| 5955 | NVT = TLI.getTypeToExpandTo(NVT); |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 5956 | Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0), |
| 5957 | Node->getOperand(1), TL, FL, Node->getOperand(4)); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 5958 | if (VT != MVT::f32) |
| 5959 | Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0), |
| 5960 | Node->getOperand(1), TH, FH, Node->getOperand(4)); |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 5961 | break; |
| 5962 | } |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 5963 | case ISD::ANY_EXTEND: |
| 5964 | // The low part is any extension of the input (which degenerates to a copy). |
| 5965 | Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0)); |
| 5966 | // The high part is undefined. |
| 5967 | Hi = DAG.getNode(ISD::UNDEF, NVT); |
| 5968 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5969 | case ISD::SIGN_EXTEND: { |
| 5970 | // The low part is just a sign extension of the input (which degenerates to |
| 5971 | // a copy). |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 5972 | Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0)); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5973 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5974 | // The high part is obtained by SRA'ing all but one of the bits of the lo |
| 5975 | // part. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5976 | unsigned LoSize = Lo.getValueType().getSizeInBits(); |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 5977 | Hi = DAG.getNode(ISD::SRA, NVT, Lo, |
| 5978 | DAG.getConstant(LoSize-1, TLI.getShiftAmountTy())); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5979 | break; |
| 5980 | } |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 5981 | case ISD::ZERO_EXTEND: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5982 | // The low part is just a zero extension of the input (which degenerates to |
| 5983 | // a copy). |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 5984 | Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0)); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5985 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5986 | // The high part is just a zero. |
| 5987 | Hi = DAG.getConstant(0, NVT); |
| 5988 | break; |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 5989 | |
Chris Lattner | 4c948eb | 2007-02-13 23:55:16 +0000 | [diff] [blame] | 5990 | case ISD::TRUNCATE: { |
| 5991 | // The input value must be larger than this value. Expand *it*. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 5992 | SDValue NewLo; |
Chris Lattner | 4c948eb | 2007-02-13 23:55:16 +0000 | [diff] [blame] | 5993 | ExpandOp(Node->getOperand(0), NewLo, Hi); |
| 5994 | |
| 5995 | // The low part is now either the right size, or it is closer. If not the |
| 5996 | // right size, make an illegal truncate so we recursively expand it. |
| 5997 | if (NewLo.getValueType() != Node->getValueType(0)) |
| 5998 | NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo); |
| 5999 | ExpandOp(NewLo, Lo, Hi); |
| 6000 | break; |
| 6001 | } |
| 6002 | |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 6003 | case ISD::BIT_CONVERT: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6004 | SDValue Tmp; |
Chris Lattner | f3f333d | 2006-09-09 00:20:27 +0000 | [diff] [blame] | 6005 | if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){ |
| 6006 | // If the target wants to, allow it to lower this itself. |
| 6007 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 6008 | case Expand: assert(0 && "cannot expand FP!"); |
| 6009 | case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break; |
| 6010 | case Promote: Tmp = PromoteOp (Node->getOperand(0)); break; |
| 6011 | } |
| 6012 | Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG); |
| 6013 | } |
| 6014 | |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6015 | // f32 / f64 must be expanded to i32 / i64. |
Evan Cheng | 13acce3 | 2006-12-11 19:27:14 +0000 | [diff] [blame] | 6016 | if (VT == MVT::f32 || VT == MVT::f64) { |
| 6017 | Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0)); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 6018 | if (getTypeAction(NVT) == Expand) |
| 6019 | ExpandOp(Lo, Lo, Hi); |
Evan Cheng | 7b2b5c8 | 2006-12-12 19:53:13 +0000 | [diff] [blame] | 6020 | break; |
| 6021 | } |
| 6022 | |
| 6023 | // If source operand will be expanded to the same type as VT, i.e. |
| 6024 | // i64 <- f64, i32 <- f32, expand the source operand instead. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6025 | MVT VT0 = Node->getOperand(0).getValueType(); |
Evan Cheng | 7b2b5c8 | 2006-12-12 19:53:13 +0000 | [diff] [blame] | 6026 | if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) { |
| 6027 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6028 | break; |
| 6029 | } |
| 6030 | |
Chris Lattner | f3f333d | 2006-09-09 00:20:27 +0000 | [diff] [blame] | 6031 | // Turn this into a load/store pair by default. |
| 6032 | if (Tmp.Val == 0) |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 6033 | Tmp = EmitStackConvert(Node->getOperand(0), VT, VT); |
Chris Lattner | f3f333d | 2006-09-09 00:20:27 +0000 | [diff] [blame] | 6034 | |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 6035 | ExpandOp(Tmp, Lo, Hi); |
| 6036 | break; |
| 6037 | } |
Andrew Lenharth | f70e30b | 2005-11-20 21:32:07 +0000 | [diff] [blame] | 6038 | |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6039 | case ISD::READCYCLECOUNTER: { |
Chris Lattner | 308575b | 2005-11-20 22:56:56 +0000 | [diff] [blame] | 6040 | assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) == |
| 6041 | TargetLowering::Custom && |
| 6042 | "Must custom expand ReadCycleCounter"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6043 | SDValue Tmp = TLI.LowerOperation(Op, DAG); |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6044 | assert(Tmp.Val && "Node must be custom expanded!"); |
| 6045 | ExpandOp(Tmp.getValue(0), Lo, Hi); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6046 | AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain. |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6047 | LegalizeOp(Tmp.getValue(1))); |
Andrew Lenharth | f70e30b | 2005-11-20 21:32:07 +0000 | [diff] [blame] | 6048 | break; |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6049 | } |
Andrew Lenharth | f70e30b | 2005-11-20 21:32:07 +0000 | [diff] [blame] | 6050 | |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 6051 | case ISD::ATOMIC_CMP_SWAP: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6052 | SDValue Tmp = TLI.LowerOperation(Op, DAG); |
Andrew Lenharth | d19189e | 2008-03-05 01:15:49 +0000 | [diff] [blame] | 6053 | assert(Tmp.Val && "Node must be custom expanded!"); |
| 6054 | ExpandOp(Tmp.getValue(0), Lo, Hi); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6055 | AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain. |
Andrew Lenharth | d19189e | 2008-03-05 01:15:49 +0000 | [diff] [blame] | 6056 | LegalizeOp(Tmp.getValue(1))); |
| 6057 | break; |
| 6058 | } |
| 6059 | |
| 6060 | |
| 6061 | |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 6062 | // These operators cannot be expanded directly, emit them as calls to |
| 6063 | // library functions. |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6064 | case ISD::FP_TO_SINT: { |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6065 | if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6066 | SDValue Op; |
Chris Lattner | f20d183 | 2005-07-30 01:40:57 +0000 | [diff] [blame] | 6067 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 6068 | case Expand: assert(0 && "cannot expand FP!"); |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6069 | case Legal: Op = LegalizeOp(Node->getOperand(0)); break; |
| 6070 | case Promote: Op = PromoteOp (Node->getOperand(0)); break; |
Chris Lattner | f20d183 | 2005-07-30 01:40:57 +0000 | [diff] [blame] | 6071 | } |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 6072 | |
Chris Lattner | f20d183 | 2005-07-30 01:40:57 +0000 | [diff] [blame] | 6073 | Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG); |
| 6074 | |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6075 | // Now that the custom expander is done, expand the result, which is still |
| 6076 | // VT. |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 6077 | if (Op.Val) { |
| 6078 | ExpandOp(Op, Lo, Hi); |
| 6079 | break; |
| 6080 | } |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6081 | } |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 6082 | |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 6083 | RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(), |
| 6084 | VT); |
| 6085 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!"); |
| 6086 | Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi); |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 6087 | break; |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6088 | } |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 6089 | |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6090 | case ISD::FP_TO_UINT: { |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6091 | if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6092 | SDValue Op; |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6093 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 6094 | case Expand: assert(0 && "cannot expand FP!"); |
| 6095 | case Legal: Op = LegalizeOp(Node->getOperand(0)); break; |
| 6096 | case Promote: Op = PromoteOp (Node->getOperand(0)); break; |
| 6097 | } |
| 6098 | |
| 6099 | Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG); |
| 6100 | |
| 6101 | // Now that the custom expander is done, expand the result. |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 6102 | if (Op.Val) { |
| 6103 | ExpandOp(Op, Lo, Hi); |
| 6104 | break; |
| 6105 | } |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6106 | } |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 6107 | |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 6108 | RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(), |
| 6109 | VT); |
| 6110 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!"); |
| 6111 | Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi); |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 6112 | break; |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6113 | } |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 6114 | |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6115 | case ISD::SHL: { |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6116 | // If the target wants custom lowering, do so. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6117 | SDValue ShiftAmt = LegalizeOp(Node->getOperand(1)); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6118 | if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6119 | SDValue Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6120 | Op = TLI.LowerOperation(Op, DAG); |
| 6121 | if (Op.Val) { |
| 6122 | // Now that the custom expander is done, expand the result, which is |
| 6123 | // still VT. |
| 6124 | ExpandOp(Op, Lo, Hi); |
| 6125 | break; |
| 6126 | } |
| 6127 | } |
| 6128 | |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6129 | // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit |
| 6130 | // this X << 1 as X+X. |
| 6131 | if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 6132 | if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) && |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6133 | TLI.isOperationLegal(ISD::ADDE, NVT)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6134 | SDValue LoOps[2], HiOps[3]; |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6135 | ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]); |
| 6136 | SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag); |
| 6137 | LoOps[1] = LoOps[0]; |
| 6138 | Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2); |
| 6139 | |
| 6140 | HiOps[1] = HiOps[0]; |
| 6141 | HiOps[2] = Lo.getValue(1); |
| 6142 | Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3); |
| 6143 | break; |
| 6144 | } |
| 6145 | } |
| 6146 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6147 | // If we can emit an efficient shift operation, do so now. |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6148 | if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi)) |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6149 | break; |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6150 | |
| 6151 | // If this target supports SHL_PARTS, use it. |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6152 | TargetLowering::LegalizeAction Action = |
| 6153 | TLI.getOperationAction(ISD::SHL_PARTS, NVT); |
| 6154 | if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) || |
| 6155 | Action == TargetLowering::Custom) { |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6156 | ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi); |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6157 | break; |
| 6158 | } |
| 6159 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6160 | // Otherwise, emit a libcall. |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6161 | Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi); |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6162 | break; |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6163 | } |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6164 | |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6165 | case ISD::SRA: { |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6166 | // If the target wants custom lowering, do so. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6167 | SDValue ShiftAmt = LegalizeOp(Node->getOperand(1)); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6168 | if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6169 | SDValue Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6170 | Op = TLI.LowerOperation(Op, DAG); |
| 6171 | if (Op.Val) { |
| 6172 | // Now that the custom expander is done, expand the result, which is |
| 6173 | // still VT. |
| 6174 | ExpandOp(Op, Lo, Hi); |
| 6175 | break; |
| 6176 | } |
| 6177 | } |
| 6178 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6179 | // If we can emit an efficient shift operation, do so now. |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6180 | if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi)) |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6181 | break; |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6182 | |
| 6183 | // If this target supports SRA_PARTS, use it. |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6184 | TargetLowering::LegalizeAction Action = |
| 6185 | TLI.getOperationAction(ISD::SRA_PARTS, NVT); |
| 6186 | if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) || |
| 6187 | Action == TargetLowering::Custom) { |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6188 | ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi); |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6189 | break; |
| 6190 | } |
| 6191 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6192 | // Otherwise, emit a libcall. |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6193 | Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi); |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6194 | break; |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6195 | } |
| 6196 | |
| 6197 | case ISD::SRL: { |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6198 | // If the target wants custom lowering, do so. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6199 | SDValue ShiftAmt = LegalizeOp(Node->getOperand(1)); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6200 | if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6201 | SDValue Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6202 | Op = TLI.LowerOperation(Op, DAG); |
| 6203 | if (Op.Val) { |
| 6204 | // Now that the custom expander is done, expand the result, which is |
| 6205 | // still VT. |
| 6206 | ExpandOp(Op, Lo, Hi); |
| 6207 | break; |
| 6208 | } |
| 6209 | } |
| 6210 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6211 | // If we can emit an efficient shift operation, do so now. |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6212 | if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi)) |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6213 | break; |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6214 | |
| 6215 | // If this target supports SRL_PARTS, use it. |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6216 | TargetLowering::LegalizeAction Action = |
| 6217 | TLI.getOperationAction(ISD::SRL_PARTS, NVT); |
| 6218 | if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) || |
| 6219 | Action == TargetLowering::Custom) { |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6220 | ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi); |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6221 | break; |
| 6222 | } |
| 6223 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6224 | // Otherwise, emit a libcall. |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6225 | Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi); |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6226 | break; |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6227 | } |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6228 | |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 6229 | case ISD::ADD: |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6230 | case ISD::SUB: { |
| 6231 | // If the target wants to custom expand this, let them. |
| 6232 | if (TLI.getOperationAction(Node->getOpcode(), VT) == |
| 6233 | TargetLowering::Custom) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6234 | SDValue Result = TLI.LowerOperation(Op, DAG); |
Duncan Sands | 69bfb15 | 2008-06-22 09:42:16 +0000 | [diff] [blame] | 6235 | if (Result.Val) { |
| 6236 | ExpandOp(Result, Lo, Hi); |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6237 | break; |
| 6238 | } |
| 6239 | } |
| 6240 | |
| 6241 | // Expand the subcomponents. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6242 | SDValue LHSL, LHSH, RHSL, RHSH; |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6243 | ExpandOp(Node->getOperand(0), LHSL, LHSH); |
| 6244 | ExpandOp(Node->getOperand(1), RHSL, RHSH); |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6245 | SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6246 | SDValue LoOps[2], HiOps[3]; |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 6247 | LoOps[0] = LHSL; |
| 6248 | LoOps[1] = RHSL; |
| 6249 | HiOps[0] = LHSH; |
| 6250 | HiOps[1] = RHSH; |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 6251 | if (Node->getOpcode() == ISD::ADD) { |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6252 | Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2); |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 6253 | HiOps[2] = Lo.getValue(1); |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6254 | Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3); |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 6255 | } else { |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6256 | Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2); |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 6257 | HiOps[2] = Lo.getValue(1); |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6258 | Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3); |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 6259 | } |
Chris Lattner | 84f6788 | 2005-01-20 18:52:28 +0000 | [diff] [blame] | 6260 | break; |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6261 | } |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 6262 | |
| 6263 | case ISD::ADDC: |
| 6264 | case ISD::SUBC: { |
| 6265 | // Expand the subcomponents. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6266 | SDValue LHSL, LHSH, RHSL, RHSH; |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 6267 | ExpandOp(Node->getOperand(0), LHSL, LHSH); |
| 6268 | ExpandOp(Node->getOperand(1), RHSL, RHSH); |
| 6269 | SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6270 | SDValue LoOps[2] = { LHSL, RHSL }; |
| 6271 | SDValue HiOps[3] = { LHSH, RHSH }; |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 6272 | |
| 6273 | if (Node->getOpcode() == ISD::ADDC) { |
| 6274 | Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2); |
| 6275 | HiOps[2] = Lo.getValue(1); |
| 6276 | Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3); |
| 6277 | } else { |
| 6278 | Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2); |
| 6279 | HiOps[2] = Lo.getValue(1); |
| 6280 | Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3); |
| 6281 | } |
| 6282 | // Remember that we legalized the flag. |
| 6283 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1))); |
| 6284 | break; |
| 6285 | } |
| 6286 | case ISD::ADDE: |
| 6287 | case ISD::SUBE: { |
| 6288 | // Expand the subcomponents. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6289 | SDValue LHSL, LHSH, RHSL, RHSH; |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 6290 | ExpandOp(Node->getOperand(0), LHSL, LHSH); |
| 6291 | ExpandOp(Node->getOperand(1), RHSL, RHSH); |
| 6292 | SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6293 | SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) }; |
| 6294 | SDValue HiOps[3] = { LHSH, RHSH }; |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 6295 | |
| 6296 | Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3); |
| 6297 | HiOps[2] = Lo.getValue(1); |
| 6298 | Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3); |
| 6299 | |
| 6300 | // Remember that we legalized the flag. |
| 6301 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1))); |
| 6302 | break; |
| 6303 | } |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 6304 | case ISD::MUL: { |
Chris Lattner | 7d7bffe | 2006-09-16 00:09:24 +0000 | [diff] [blame] | 6305 | // If the target wants to custom expand this, let them. |
| 6306 | if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6307 | SDValue New = TLI.LowerOperation(Op, DAG); |
Chris Lattner | 8829dc8 | 2006-09-16 05:08:34 +0000 | [diff] [blame] | 6308 | if (New.Val) { |
| 6309 | ExpandOp(New, Lo, Hi); |
Chris Lattner | 7d7bffe | 2006-09-16 00:09:24 +0000 | [diff] [blame] | 6310 | break; |
| 6311 | } |
| 6312 | } |
| 6313 | |
Evan Cheng | 3f4fd0f | 2006-09-01 18:17:58 +0000 | [diff] [blame] | 6314 | bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT); |
| 6315 | bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6316 | bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT); |
| 6317 | bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT); |
| 6318 | if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6319 | SDValue LL, LH, RL, RH; |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 6320 | ExpandOp(Node->getOperand(0), LL, LH); |
| 6321 | ExpandOp(Node->getOperand(1), RL, RH); |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 6322 | unsigned OuterBitSize = Op.getValueSizeInBits(); |
| 6323 | unsigned InnerBitSize = RH.getValueSizeInBits(); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6324 | unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0)); |
| 6325 | unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1)); |
Dan Gohman | 76c605b | 2008-03-10 20:42:19 +0000 | [diff] [blame] | 6326 | APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize); |
| 6327 | if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) && |
| 6328 | DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) { |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6329 | // The inputs are both zero-extended. |
| 6330 | if (HasUMUL_LOHI) { |
| 6331 | // We can emit a umul_lohi. |
| 6332 | Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6333 | Hi = SDValue(Lo.Val, 1); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6334 | break; |
| 6335 | } |
| 6336 | if (HasMULHU) { |
| 6337 | // We can emit a mulhu+mul. |
| 6338 | Lo = DAG.getNode(ISD::MUL, NVT, LL, RL); |
| 6339 | Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL); |
| 6340 | break; |
| 6341 | } |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6342 | } |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 6343 | if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) { |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6344 | // The input values are both sign-extended. |
| 6345 | if (HasSMUL_LOHI) { |
| 6346 | // We can emit a smul_lohi. |
| 6347 | Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6348 | Hi = SDValue(Lo.Val, 1); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6349 | break; |
| 6350 | } |
| 6351 | if (HasMULHS) { |
| 6352 | // We can emit a mulhs+mul. |
| 6353 | Lo = DAG.getNode(ISD::MUL, NVT, LL, RL); |
| 6354 | Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL); |
| 6355 | break; |
| 6356 | } |
| 6357 | } |
| 6358 | if (HasUMUL_LOHI) { |
| 6359 | // Lo,Hi = umul LHS, RHS. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6360 | SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6361 | DAG.getVTList(NVT, NVT), LL, RL); |
| 6362 | Lo = UMulLOHI; |
| 6363 | Hi = UMulLOHI.getValue(1); |
Nate Begeman | 56eb868 | 2005-08-30 02:44:00 +0000 | [diff] [blame] | 6364 | RH = DAG.getNode(ISD::MUL, NVT, LL, RH); |
| 6365 | LH = DAG.getNode(ISD::MUL, NVT, LH, RL); |
| 6366 | Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH); |
| 6367 | Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH); |
Chris Lattner | a89654b | 2006-09-16 00:21:44 +0000 | [diff] [blame] | 6368 | break; |
Nate Begeman | 56eb868 | 2005-08-30 02:44:00 +0000 | [diff] [blame] | 6369 | } |
Dale Johannesen | 8eadd5a | 2007-10-24 22:26:08 +0000 | [diff] [blame] | 6370 | if (HasMULHU) { |
| 6371 | Lo = DAG.getNode(ISD::MUL, NVT, LL, RL); |
| 6372 | Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL); |
| 6373 | RH = DAG.getNode(ISD::MUL, NVT, LL, RH); |
| 6374 | LH = DAG.getNode(ISD::MUL, NVT, LH, RL); |
| 6375 | Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH); |
| 6376 | Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH); |
| 6377 | break; |
| 6378 | } |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 6379 | } |
Evan Cheng | 3f4fd0f | 2006-09-01 18:17:58 +0000 | [diff] [blame] | 6380 | |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6381 | // If nothing else, we can make a libcall. |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6382 | Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi); |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 6383 | break; |
| 6384 | } |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6385 | case ISD::SDIV: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6386 | Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6387 | break; |
| 6388 | case ISD::UDIV: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6389 | Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6390 | break; |
| 6391 | case ISD::SREM: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6392 | Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6393 | break; |
| 6394 | case ISD::UREM: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6395 | Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6396 | break; |
Evan Cheng | 5c9ce18 | 2006-12-12 21:51:17 +0000 | [diff] [blame] | 6397 | |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6398 | case ISD::FADD: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6399 | Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32, |
| 6400 | RTLIB::ADD_F64, |
| 6401 | RTLIB::ADD_F80, |
| 6402 | RTLIB::ADD_PPCF128), |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6403 | Node, false, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6404 | break; |
| 6405 | case ISD::FSUB: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6406 | Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32, |
| 6407 | RTLIB::SUB_F64, |
| 6408 | RTLIB::SUB_F80, |
| 6409 | RTLIB::SUB_PPCF128), |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6410 | Node, false, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6411 | break; |
| 6412 | case ISD::FMUL: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6413 | Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32, |
| 6414 | RTLIB::MUL_F64, |
| 6415 | RTLIB::MUL_F80, |
| 6416 | RTLIB::MUL_PPCF128), |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6417 | Node, false, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6418 | break; |
| 6419 | case ISD::FDIV: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6420 | Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32, |
| 6421 | RTLIB::DIV_F64, |
| 6422 | RTLIB::DIV_F80, |
| 6423 | RTLIB::DIV_PPCF128), |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6424 | Node, false, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6425 | break; |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 6426 | case ISD::FP_EXTEND: { |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 6427 | if (VT == MVT::ppcf128) { |
| 6428 | assert(Node->getOperand(0).getValueType()==MVT::f32 || |
| 6429 | Node->getOperand(0).getValueType()==MVT::f64); |
| 6430 | const uint64_t zero = 0; |
| 6431 | if (Node->getOperand(0).getValueType()==MVT::f32) |
| 6432 | Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0)); |
| 6433 | else |
| 6434 | Hi = Node->getOperand(0); |
| 6435 | Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64); |
| 6436 | break; |
| 6437 | } |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 6438 | RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT); |
| 6439 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!"); |
| 6440 | Lo = ExpandLibCall(LC, Node, true, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6441 | break; |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 6442 | } |
| 6443 | case ISD::FP_ROUND: { |
| 6444 | RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(), |
| 6445 | VT); |
| 6446 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!"); |
| 6447 | Lo = ExpandLibCall(LC, Node, true, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6448 | break; |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 6449 | } |
Lauro Ramos Venancio | c90f089 | 2007-08-15 22:13:27 +0000 | [diff] [blame] | 6450 | case ISD::FPOWI: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6451 | Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::POWI_F32, |
| 6452 | RTLIB::POWI_F64, |
| 6453 | RTLIB::POWI_F80, |
| 6454 | RTLIB::POWI_PPCF128), |
Lauro Ramos Venancio | c90f089 | 2007-08-15 22:13:27 +0000 | [diff] [blame] | 6455 | Node, false, Hi); |
| 6456 | break; |
Evan Cheng | 98ff3b9 | 2006-12-13 02:38:13 +0000 | [diff] [blame] | 6457 | case ISD::FSQRT: |
| 6458 | case ISD::FSIN: |
| 6459 | case ISD::FCOS: { |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6460 | RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; |
Evan Cheng | 98ff3b9 | 2006-12-13 02:38:13 +0000 | [diff] [blame] | 6461 | switch(Node->getOpcode()) { |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6462 | case ISD::FSQRT: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 6463 | LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64, |
| 6464 | RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6465 | break; |
| 6466 | case ISD::FSIN: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 6467 | LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64, |
| 6468 | RTLIB::SIN_F80, RTLIB::SIN_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6469 | break; |
| 6470 | case ISD::FCOS: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 6471 | LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64, |
| 6472 | RTLIB::COS_F80, RTLIB::COS_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6473 | break; |
Evan Cheng | 98ff3b9 | 2006-12-13 02:38:13 +0000 | [diff] [blame] | 6474 | default: assert(0 && "Unreachable!"); |
| 6475 | } |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6476 | Lo = ExpandLibCall(LC, Node, false, Hi); |
Evan Cheng | 98ff3b9 | 2006-12-13 02:38:13 +0000 | [diff] [blame] | 6477 | break; |
| 6478 | } |
Evan Cheng | 966bf24 | 2006-12-16 00:52:40 +0000 | [diff] [blame] | 6479 | case ISD::FABS: { |
Dale Johannesen | f646774 | 2007-10-12 19:02:17 +0000 | [diff] [blame] | 6480 | if (VT == MVT::ppcf128) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6481 | SDValue Tmp; |
Dale Johannesen | f646774 | 2007-10-12 19:02:17 +0000 | [diff] [blame] | 6482 | ExpandOp(Node->getOperand(0), Lo, Tmp); |
| 6483 | Hi = DAG.getNode(ISD::FABS, NVT, Tmp); |
| 6484 | // lo = hi==fabs(hi) ? lo : -lo; |
| 6485 | Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp, |
| 6486 | Lo, DAG.getNode(ISD::FNEG, NVT, Lo), |
| 6487 | DAG.getCondCode(ISD::SETEQ)); |
| 6488 | break; |
| 6489 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6490 | SDValue Mask = (VT == MVT::f64) |
Evan Cheng | 966bf24 | 2006-12-16 00:52:40 +0000 | [diff] [blame] | 6491 | ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT) |
| 6492 | : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT); |
| 6493 | Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask); |
| 6494 | Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0)); |
| 6495 | Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask); |
| 6496 | if (getTypeAction(NVT) == Expand) |
| 6497 | ExpandOp(Lo, Lo, Hi); |
| 6498 | break; |
| 6499 | } |
| 6500 | case ISD::FNEG: { |
Dale Johannesen | f646774 | 2007-10-12 19:02:17 +0000 | [diff] [blame] | 6501 | if (VT == MVT::ppcf128) { |
| 6502 | ExpandOp(Node->getOperand(0), Lo, Hi); |
| 6503 | Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo); |
| 6504 | Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi); |
| 6505 | break; |
| 6506 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6507 | SDValue Mask = (VT == MVT::f64) |
Evan Cheng | 966bf24 | 2006-12-16 00:52:40 +0000 | [diff] [blame] | 6508 | ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT) |
| 6509 | : DAG.getConstantFP(BitsToFloat(1U << 31), VT); |
| 6510 | Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask); |
| 6511 | Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0)); |
| 6512 | Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask); |
| 6513 | if (getTypeAction(NVT) == Expand) |
| 6514 | ExpandOp(Lo, Lo, Hi); |
| 6515 | break; |
| 6516 | } |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 6517 | case ISD::FCOPYSIGN: { |
| 6518 | Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI); |
| 6519 | if (getTypeAction(NVT) == Expand) |
| 6520 | ExpandOp(Lo, Lo, Hi); |
| 6521 | break; |
| 6522 | } |
Evan Cheng | 7df28dc | 2006-12-19 01:44:04 +0000 | [diff] [blame] | 6523 | case ISD::SINT_TO_FP: |
| 6524 | case ISD::UINT_TO_FP: { |
| 6525 | bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6526 | MVT SrcVT = Node->getOperand(0).getValueType(); |
Dale Johannesen | cf49819 | 2008-03-18 17:28:38 +0000 | [diff] [blame] | 6527 | |
| 6528 | // Promote the operand if needed. Do this before checking for |
| 6529 | // ppcf128 so conversions of i16 and i8 work. |
| 6530 | if (getTypeAction(SrcVT) == Promote) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6531 | SDValue Tmp = PromoteOp(Node->getOperand(0)); |
Dale Johannesen | cf49819 | 2008-03-18 17:28:38 +0000 | [diff] [blame] | 6532 | Tmp = isSigned |
| 6533 | ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp, |
| 6534 | DAG.getValueType(SrcVT)) |
| 6535 | : DAG.getZeroExtendInReg(Tmp, SrcVT); |
| 6536 | Node = DAG.UpdateNodeOperands(Op, Tmp).Val; |
| 6537 | SrcVT = Node->getOperand(0).getValueType(); |
| 6538 | } |
| 6539 | |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 6540 | if (VT == MVT::ppcf128 && SrcVT == MVT::i32) { |
Dan Gohman | f6283fd | 2008-02-25 21:39:34 +0000 | [diff] [blame] | 6541 | static const uint64_t zero = 0; |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 6542 | if (isSigned) { |
| 6543 | Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64, |
| 6544 | Node->getOperand(0))); |
| 6545 | Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64); |
| 6546 | } else { |
Dan Gohman | f6283fd | 2008-02-25 21:39:34 +0000 | [diff] [blame] | 6547 | static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 }; |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 6548 | Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64, |
| 6549 | Node->getOperand(0))); |
| 6550 | Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64); |
| 6551 | Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi); |
Dale Johannesen | 6e63e09 | 2007-10-12 17:52:03 +0000 | [diff] [blame] | 6552 | // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32 |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 6553 | ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0), |
| 6554 | DAG.getConstant(0, MVT::i32), |
| 6555 | DAG.getNode(ISD::FADD, MVT::ppcf128, Hi, |
| 6556 | DAG.getConstantFP( |
| 6557 | APFloat(APInt(128, 2, TwoE32)), |
| 6558 | MVT::ppcf128)), |
| 6559 | Hi, |
| 6560 | DAG.getCondCode(ISD::SETLT)), |
| 6561 | Lo, Hi); |
| 6562 | } |
| 6563 | break; |
| 6564 | } |
Dale Johannesen | 6e63e09 | 2007-10-12 17:52:03 +0000 | [diff] [blame] | 6565 | if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) { |
| 6566 | // si64->ppcf128 done by libcall, below |
Dan Gohman | f6283fd | 2008-02-25 21:39:34 +0000 | [diff] [blame] | 6567 | static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 }; |
Dale Johannesen | 6e63e09 | 2007-10-12 17:52:03 +0000 | [diff] [blame] | 6568 | ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)), |
| 6569 | Lo, Hi); |
| 6570 | Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi); |
| 6571 | // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64 |
| 6572 | ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0), |
| 6573 | DAG.getConstant(0, MVT::i64), |
| 6574 | DAG.getNode(ISD::FADD, MVT::ppcf128, Hi, |
| 6575 | DAG.getConstantFP( |
| 6576 | APFloat(APInt(128, 2, TwoE64)), |
| 6577 | MVT::ppcf128)), |
| 6578 | Hi, |
| 6579 | DAG.getCondCode(ISD::SETLT)), |
| 6580 | Lo, Hi); |
| 6581 | break; |
| 6582 | } |
Evan Cheng | 7df28dc | 2006-12-19 01:44:04 +0000 | [diff] [blame] | 6583 | |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 6584 | Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT, |
| 6585 | Node->getOperand(0)); |
Evan Cheng | 110cf48 | 2008-04-01 01:50:16 +0000 | [diff] [blame] | 6586 | if (getTypeAction(Lo.getValueType()) == Expand) |
Evan Cheng | 6ad2f93 | 2008-04-01 01:51:26 +0000 | [diff] [blame] | 6587 | // float to i32 etc. can be 'expanded' to a single node. |
Evan Cheng | 110cf48 | 2008-04-01 01:50:16 +0000 | [diff] [blame] | 6588 | ExpandOp(Lo, Lo, Hi); |
Evan Cheng | 7df28dc | 2006-12-19 01:44:04 +0000 | [diff] [blame] | 6589 | break; |
| 6590 | } |
Evan Cheng | 98ff3b9 | 2006-12-13 02:38:13 +0000 | [diff] [blame] | 6591 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6592 | |
Chris Lattner | 8339736 | 2005-12-21 18:02:52 +0000 | [diff] [blame] | 6593 | // Make sure the resultant values have been legalized themselves, unless this |
| 6594 | // is a type that requires multi-step expansion. |
| 6595 | if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) { |
| 6596 | Lo = LegalizeOp(Lo); |
Evan Cheng | 13acce3 | 2006-12-11 19:27:14 +0000 | [diff] [blame] | 6597 | if (Hi.Val) |
| 6598 | // Don't legalize the high part if it is expanded to a single node. |
| 6599 | Hi = LegalizeOp(Hi); |
Chris Lattner | 8339736 | 2005-12-21 18:02:52 +0000 | [diff] [blame] | 6600 | } |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6601 | |
| 6602 | // Remember in a map if the values will be reused later. |
Dan Gohman | 6b345ee | 2008-07-07 17:46:23 +0000 | [diff] [blame] | 6603 | bool isNew = |
| 6604 | ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second; |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6605 | assert(isNew && "Value already expanded?!?"); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6606 | } |
| 6607 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6608 | /// SplitVectorOp - Given an operand of vector type, break it down into |
| 6609 | /// two smaller values, still of vector type. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6610 | void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo, |
| 6611 | SDValue &Hi) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6612 | assert(Op.getValueType().isVector() && "Cannot split non-vector type!"); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6613 | SDNode *Node = Op.Val; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6614 | unsigned NumElements = Op.getValueType().getVectorNumElements(); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6615 | assert(NumElements > 1 && "Cannot split a single element vector!"); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6616 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6617 | MVT NewEltVT = Op.getValueType().getVectorElementType(); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6618 | |
| 6619 | unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1); |
| 6620 | unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo; |
| 6621 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6622 | MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo); |
| 6623 | MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6624 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6625 | // See if we already split it. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6626 | std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6627 | = SplitNodes.find(Op); |
| 6628 | if (I != SplitNodes.end()) { |
| 6629 | Lo = I->second.first; |
| 6630 | Hi = I->second.second; |
| 6631 | return; |
| 6632 | } |
| 6633 | |
| 6634 | switch (Node->getOpcode()) { |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 6635 | default: |
| 6636 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 6637 | Node->dump(&DAG); |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 6638 | #endif |
| 6639 | assert(0 && "Unhandled operation in SplitVectorOp!"); |
Chris Lattner | daf9bc8 | 2007-11-19 20:21:32 +0000 | [diff] [blame] | 6640 | case ISD::UNDEF: |
| 6641 | Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo); |
| 6642 | Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi); |
| 6643 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6644 | case ISD::BUILD_PAIR: |
| 6645 | Lo = Node->getOperand(0); |
| 6646 | Hi = Node->getOperand(1); |
| 6647 | break; |
Dan Gohman | 9fe4662 | 2007-09-28 23:53:40 +0000 | [diff] [blame] | 6648 | case ISD::INSERT_VECTOR_ELT: { |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 6649 | if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) { |
| 6650 | SplitVectorOp(Node->getOperand(0), Lo, Hi); |
| 6651 | unsigned Index = Idx->getValue(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6652 | SDValue ScalarOp = Node->getOperand(1); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 6653 | if (Index < NewNumElts_Lo) |
| 6654 | Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp, |
| 6655 | DAG.getIntPtrConstant(Index)); |
| 6656 | else |
| 6657 | Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp, |
| 6658 | DAG.getIntPtrConstant(Index - NewNumElts_Lo)); |
| 6659 | break; |
| 6660 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6661 | SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0), |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 6662 | Node->getOperand(1), |
| 6663 | Node->getOperand(2)); |
| 6664 | SplitVectorOp(Tmp, Lo, Hi); |
Dan Gohman | 9fe4662 | 2007-09-28 23:53:40 +0000 | [diff] [blame] | 6665 | break; |
| 6666 | } |
Chris Lattner | 6c9c680 | 2007-11-19 21:16:54 +0000 | [diff] [blame] | 6667 | case ISD::VECTOR_SHUFFLE: { |
| 6668 | // Build the low part. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6669 | SDValue Mask = Node->getOperand(2); |
| 6670 | SmallVector<SDValue, 8> Ops; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6671 | MVT PtrVT = TLI.getPointerTy(); |
Chris Lattner | 6c9c680 | 2007-11-19 21:16:54 +0000 | [diff] [blame] | 6672 | |
| 6673 | // Insert all of the elements from the input that are needed. We use |
| 6674 | // buildvector of extractelement here because the input vectors will have |
| 6675 | // to be legalized, so this makes the code simpler. |
| 6676 | for (unsigned i = 0; i != NewNumElts_Lo; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6677 | SDValue IdxNode = Mask.getOperand(i); |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 6678 | if (IdxNode.getOpcode() == ISD::UNDEF) { |
| 6679 | Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT)); |
| 6680 | continue; |
| 6681 | } |
| 6682 | unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6683 | SDValue InVec = Node->getOperand(0); |
Chris Lattner | 6c9c680 | 2007-11-19 21:16:54 +0000 | [diff] [blame] | 6684 | if (Idx >= NumElements) { |
| 6685 | InVec = Node->getOperand(1); |
| 6686 | Idx -= NumElements; |
| 6687 | } |
| 6688 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec, |
| 6689 | DAG.getConstant(Idx, PtrVT))); |
| 6690 | } |
| 6691 | Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size()); |
| 6692 | Ops.clear(); |
| 6693 | |
| 6694 | for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6695 | SDValue IdxNode = Mask.getOperand(i); |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 6696 | if (IdxNode.getOpcode() == ISD::UNDEF) { |
| 6697 | Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT)); |
| 6698 | continue; |
| 6699 | } |
| 6700 | unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6701 | SDValue InVec = Node->getOperand(0); |
Chris Lattner | 6c9c680 | 2007-11-19 21:16:54 +0000 | [diff] [blame] | 6702 | if (Idx >= NumElements) { |
| 6703 | InVec = Node->getOperand(1); |
| 6704 | Idx -= NumElements; |
| 6705 | } |
| 6706 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec, |
| 6707 | DAG.getConstant(Idx, PtrVT))); |
| 6708 | } |
Mon P Wang | 92879f3 | 2008-07-25 01:30:26 +0000 | [diff] [blame] | 6709 | Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &Ops[0], Ops.size()); |
Chris Lattner | 6c9c680 | 2007-11-19 21:16:54 +0000 | [diff] [blame] | 6710 | break; |
| 6711 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6712 | case ISD::BUILD_VECTOR: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6713 | SmallVector<SDValue, 8> LoOps(Node->op_begin(), |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6714 | Node->op_begin()+NewNumElts_Lo); |
| 6715 | Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size()); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6716 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6717 | SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo, |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6718 | Node->op_end()); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6719 | Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size()); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6720 | break; |
| 6721 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6722 | case ISD::CONCAT_VECTORS: { |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6723 | // FIXME: Handle non-power-of-two vectors? |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6724 | unsigned NewNumSubvectors = Node->getNumOperands() / 2; |
| 6725 | if (NewNumSubvectors == 1) { |
| 6726 | Lo = Node->getOperand(0); |
| 6727 | Hi = Node->getOperand(1); |
| 6728 | } else { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6729 | SmallVector<SDValue, 8> LoOps(Node->op_begin(), |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6730 | Node->op_begin()+NewNumSubvectors); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6731 | Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size()); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 6732 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6733 | SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors, |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6734 | Node->op_end()); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6735 | Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size()); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6736 | } |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 6737 | break; |
| 6738 | } |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 6739 | case ISD::SELECT: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6740 | SDValue Cond = Node->getOperand(0); |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 6741 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6742 | SDValue LL, LH, RL, RH; |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 6743 | SplitVectorOp(Node->getOperand(1), LL, LH); |
| 6744 | SplitVectorOp(Node->getOperand(2), RL, RH); |
| 6745 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6746 | if (Cond.getValueType().isVector()) { |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 6747 | // Handle a vector merge. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6748 | SDValue CL, CH; |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 6749 | SplitVectorOp(Cond, CL, CH); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6750 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL); |
| 6751 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH); |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 6752 | } else { |
| 6753 | // Handle a simple select with vector operands. |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6754 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL); |
| 6755 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH); |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 6756 | } |
| 6757 | break; |
| 6758 | } |
Chris Lattner | 80c1a56 | 2008-06-30 02:43:01 +0000 | [diff] [blame] | 6759 | case ISD::SELECT_CC: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6760 | SDValue CondLHS = Node->getOperand(0); |
| 6761 | SDValue CondRHS = Node->getOperand(1); |
| 6762 | SDValue CondCode = Node->getOperand(4); |
Chris Lattner | 80c1a56 | 2008-06-30 02:43:01 +0000 | [diff] [blame] | 6763 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6764 | SDValue LL, LH, RL, RH; |
Chris Lattner | 80c1a56 | 2008-06-30 02:43:01 +0000 | [diff] [blame] | 6765 | SplitVectorOp(Node->getOperand(2), LL, LH); |
| 6766 | SplitVectorOp(Node->getOperand(3), RL, RH); |
| 6767 | |
| 6768 | // Handle a simple select with vector operands. |
| 6769 | Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS, |
| 6770 | LL, RL, CondCode); |
| 6771 | Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS, |
| 6772 | LH, RH, CondCode); |
| 6773 | break; |
| 6774 | } |
Nate Begeman | b43e9c1 | 2008-05-12 19:40:03 +0000 | [diff] [blame] | 6775 | case ISD::VSETCC: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6776 | SDValue LL, LH, RL, RH; |
Nate Begeman | b43e9c1 | 2008-05-12 19:40:03 +0000 | [diff] [blame] | 6777 | SplitVectorOp(Node->getOperand(0), LL, LH); |
| 6778 | SplitVectorOp(Node->getOperand(1), RL, RH); |
| 6779 | Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2)); |
| 6780 | Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2)); |
| 6781 | break; |
| 6782 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6783 | case ISD::ADD: |
| 6784 | case ISD::SUB: |
| 6785 | case ISD::MUL: |
| 6786 | case ISD::FADD: |
| 6787 | case ISD::FSUB: |
| 6788 | case ISD::FMUL: |
| 6789 | case ISD::SDIV: |
| 6790 | case ISD::UDIV: |
| 6791 | case ISD::FDIV: |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 6792 | case ISD::FPOW: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6793 | case ISD::AND: |
| 6794 | case ISD::OR: |
Dan Gohman | 089617d | 2007-11-19 15:15:03 +0000 | [diff] [blame] | 6795 | case ISD::XOR: |
| 6796 | case ISD::UREM: |
| 6797 | case ISD::SREM: |
| 6798 | case ISD::FREM: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6799 | SDValue LL, LH, RL, RH; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6800 | SplitVectorOp(Node->getOperand(0), LL, LH); |
| 6801 | SplitVectorOp(Node->getOperand(1), RL, RH); |
| 6802 | |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6803 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL); |
| 6804 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6805 | break; |
| 6806 | } |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 6807 | case ISD::FPOWI: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6808 | SDValue L, H; |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 6809 | SplitVectorOp(Node->getOperand(0), L, H); |
| 6810 | |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6811 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1)); |
| 6812 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1)); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 6813 | break; |
| 6814 | } |
| 6815 | case ISD::CTTZ: |
| 6816 | case ISD::CTLZ: |
| 6817 | case ISD::CTPOP: |
| 6818 | case ISD::FNEG: |
| 6819 | case ISD::FABS: |
| 6820 | case ISD::FSQRT: |
| 6821 | case ISD::FSIN: |
Nate Begeman | b348d18 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 6822 | case ISD::FCOS: |
| 6823 | case ISD::FP_TO_SINT: |
| 6824 | case ISD::FP_TO_UINT: |
| 6825 | case ISD::SINT_TO_FP: |
| 6826 | case ISD::UINT_TO_FP: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6827 | SDValue L, H; |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 6828 | SplitVectorOp(Node->getOperand(0), L, H); |
| 6829 | |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6830 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L); |
| 6831 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 6832 | break; |
| 6833 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6834 | case ISD::LOAD: { |
| 6835 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6836 | SDValue Ch = LD->getChain(); |
| 6837 | SDValue Ptr = LD->getBasePtr(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6838 | const Value *SV = LD->getSrcValue(); |
| 6839 | int SVOffset = LD->getSrcValueOffset(); |
| 6840 | unsigned Alignment = LD->getAlignment(); |
| 6841 | bool isVolatile = LD->isVolatile(); |
| 6842 | |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6843 | Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6844 | unsigned IncrementSize = NewNumElts_Lo * NewEltVT.getSizeInBits()/8; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6845 | Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6846 | DAG.getIntPtrConstant(IncrementSize)); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6847 | SVOffset += IncrementSize; |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 6848 | Alignment = MinAlign(Alignment, IncrementSize); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6849 | Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6850 | |
| 6851 | // Build a factor node to remember that this load is independent of the |
| 6852 | // other one. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6853 | SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1), |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6854 | Hi.getValue(1)); |
| 6855 | |
| 6856 | // Remember that we legalized the chain. |
| 6857 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF)); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6858 | break; |
| 6859 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6860 | case ISD::BIT_CONVERT: { |
Chris Lattner | 7692eb4 | 2006-03-23 21:16:34 +0000 | [diff] [blame] | 6861 | // We know the result is a vector. The input may be either a vector or a |
| 6862 | // scalar value. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6863 | SDValue InOp = Node->getOperand(0); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6864 | if (!InOp.getValueType().isVector() || |
| 6865 | InOp.getValueType().getVectorNumElements() == 1) { |
Dan Gohman | 10a7aa6 | 2007-06-29 00:09:08 +0000 | [diff] [blame] | 6866 | // The input is a scalar or single-element vector. |
| 6867 | // Lower to a store/load so that it can be split. |
| 6868 | // FIXME: this could be improved probably. |
Mon P Wang | 2920d2b | 2008-07-15 05:28:34 +0000 | [diff] [blame] | 6869 | unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment( |
| 6870 | Op.getValueType().getTypeForMVT()); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6871 | SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign); |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 6872 | int FI = cast<FrameIndexSDNode>(Ptr.Val)->getIndex(); |
Chris Lattner | 7692eb4 | 2006-03-23 21:16:34 +0000 | [diff] [blame] | 6873 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6874 | SDValue St = DAG.getStore(DAG.getEntryNode(), |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 6875 | InOp, Ptr, |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 6876 | PseudoSourceValue::getFixedStack(FI), 0); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 6877 | InOp = DAG.getLoad(Op.getValueType(), St, Ptr, |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 6878 | PseudoSourceValue::getFixedStack(FI), 0); |
Chris Lattner | 7692eb4 | 2006-03-23 21:16:34 +0000 | [diff] [blame] | 6879 | } |
Dan Gohman | 10a7aa6 | 2007-06-29 00:09:08 +0000 | [diff] [blame] | 6880 | // Split the vector and convert each of the pieces now. |
| 6881 | SplitVectorOp(InOp, Lo, Hi); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6882 | Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo); |
| 6883 | Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi); |
Dan Gohman | 10a7aa6 | 2007-06-29 00:09:08 +0000 | [diff] [blame] | 6884 | break; |
Chris Lattner | 7692eb4 | 2006-03-23 21:16:34 +0000 | [diff] [blame] | 6885 | } |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6886 | } |
| 6887 | |
| 6888 | // Remember in a map if the values will be reused later. |
Chris Lattner | 40030bf | 2007-02-04 01:17:38 +0000 | [diff] [blame] | 6889 | bool isNew = |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6890 | SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second; |
Dan Gohman | 10a7aa6 | 2007-06-29 00:09:08 +0000 | [diff] [blame] | 6891 | assert(isNew && "Value already split?!?"); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6892 | } |
| 6893 | |
| 6894 | |
Dan Gohman | 89b20c0 | 2007-06-27 14:06:22 +0000 | [diff] [blame] | 6895 | /// ScalarizeVectorOp - Given an operand of single-element vector type |
| 6896 | /// (e.g. v1f32), convert it into the equivalent operation that returns a |
| 6897 | /// scalar (e.g. f32) value. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6898 | SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6899 | assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!"); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6900 | SDNode *Node = Op.Val; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6901 | MVT NewVT = Op.getValueType().getVectorElementType(); |
| 6902 | assert(Op.getValueType().getVectorNumElements() == 1); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6903 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6904 | // See if we already scalarized it. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6905 | std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6906 | if (I != ScalarizedNodes.end()) return I->second; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6907 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6908 | SDValue Result; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6909 | switch (Node->getOpcode()) { |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 6910 | default: |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 6911 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 6912 | Node->dump(&DAG); cerr << "\n"; |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 6913 | #endif |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6914 | assert(0 && "Unknown vector operation in ScalarizeVectorOp!"); |
| 6915 | case ISD::ADD: |
| 6916 | case ISD::FADD: |
| 6917 | case ISD::SUB: |
| 6918 | case ISD::FSUB: |
| 6919 | case ISD::MUL: |
| 6920 | case ISD::FMUL: |
| 6921 | case ISD::SDIV: |
| 6922 | case ISD::UDIV: |
| 6923 | case ISD::FDIV: |
| 6924 | case ISD::SREM: |
| 6925 | case ISD::UREM: |
| 6926 | case ISD::FREM: |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 6927 | case ISD::FPOW: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6928 | case ISD::AND: |
| 6929 | case ISD::OR: |
| 6930 | case ISD::XOR: |
| 6931 | Result = DAG.getNode(Node->getOpcode(), |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6932 | NewVT, |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6933 | ScalarizeVectorOp(Node->getOperand(0)), |
| 6934 | ScalarizeVectorOp(Node->getOperand(1))); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6935 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6936 | case ISD::FNEG: |
| 6937 | case ISD::FABS: |
| 6938 | case ISD::FSQRT: |
| 6939 | case ISD::FSIN: |
| 6940 | case ISD::FCOS: |
| 6941 | Result = DAG.getNode(Node->getOpcode(), |
| 6942 | NewVT, |
| 6943 | ScalarizeVectorOp(Node->getOperand(0))); |
| 6944 | break; |
Dan Gohman | 9e04c82 | 2007-10-12 14:13:46 +0000 | [diff] [blame] | 6945 | case ISD::FPOWI: |
| 6946 | Result = DAG.getNode(Node->getOpcode(), |
| 6947 | NewVT, |
| 6948 | ScalarizeVectorOp(Node->getOperand(0)), |
| 6949 | Node->getOperand(1)); |
| 6950 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6951 | case ISD::LOAD: { |
| 6952 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6953 | SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain. |
| 6954 | SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer. |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6955 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6956 | const Value *SV = LD->getSrcValue(); |
| 6957 | int SVOffset = LD->getSrcValueOffset(); |
| 6958 | Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset, |
| 6959 | LD->isVolatile(), LD->getAlignment()); |
| 6960 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6961 | // Remember that we legalized the chain. |
| 6962 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
| 6963 | break; |
| 6964 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6965 | case ISD::BUILD_VECTOR: |
| 6966 | Result = Node->getOperand(0); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6967 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6968 | case ISD::INSERT_VECTOR_ELT: |
| 6969 | // Returning the inserted scalar element. |
| 6970 | Result = Node->getOperand(1); |
| 6971 | break; |
| 6972 | case ISD::CONCAT_VECTORS: |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 6973 | assert(Node->getOperand(0).getValueType() == NewVT && |
| 6974 | "Concat of non-legal vectors not yet supported!"); |
| 6975 | Result = Node->getOperand(0); |
| 6976 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6977 | case ISD::VECTOR_SHUFFLE: { |
| 6978 | // Figure out if the scalar is the LHS or RHS and return it. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6979 | SDValue EltNum = Node->getOperand(2).getOperand(0); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6980 | if (cast<ConstantSDNode>(EltNum)->getValue()) |
| 6981 | Result = ScalarizeVectorOp(Node->getOperand(1)); |
| 6982 | else |
| 6983 | Result = ScalarizeVectorOp(Node->getOperand(0)); |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 6984 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6985 | } |
| 6986 | case ISD::EXTRACT_SUBVECTOR: |
| 6987 | Result = Node->getOperand(0); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 6988 | assert(Result.getValueType() == NewVT); |
| 6989 | break; |
Evan Cheng | 446efdd | 2008-05-16 17:19:05 +0000 | [diff] [blame] | 6990 | case ISD::BIT_CONVERT: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 6991 | SDValue Op0 = Op.getOperand(0); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6992 | if (Op0.getValueType().getVectorNumElements() == 1) |
Evan Cheng | 446efdd | 2008-05-16 17:19:05 +0000 | [diff] [blame] | 6993 | Op0 = ScalarizeVectorOp(Op0); |
| 6994 | Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0); |
Chris Lattner | 5b2316e | 2006-03-28 20:24:43 +0000 | [diff] [blame] | 6995 | break; |
Evan Cheng | 446efdd | 2008-05-16 17:19:05 +0000 | [diff] [blame] | 6996 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6997 | case ISD::SELECT: |
Chris Lattner | b22e35a | 2006-04-08 22:22:57 +0000 | [diff] [blame] | 6998 | Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0), |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6999 | ScalarizeVectorOp(Op.getOperand(1)), |
| 7000 | ScalarizeVectorOp(Op.getOperand(2))); |
Chris Lattner | b22e35a | 2006-04-08 22:22:57 +0000 | [diff] [blame] | 7001 | break; |
Chris Lattner | 80c1a56 | 2008-06-30 02:43:01 +0000 | [diff] [blame] | 7002 | case ISD::SELECT_CC: |
| 7003 | Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0), |
| 7004 | Node->getOperand(1), |
| 7005 | ScalarizeVectorOp(Op.getOperand(2)), |
| 7006 | ScalarizeVectorOp(Op.getOperand(3)), |
| 7007 | Node->getOperand(4)); |
| 7008 | break; |
Nate Begeman | 0d1704b | 2008-05-12 23:09:43 +0000 | [diff] [blame] | 7009 | case ISD::VSETCC: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame^] | 7010 | SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0)); |
| 7011 | SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1)); |
Nate Begeman | 0d1704b | 2008-05-12 23:09:43 +0000 | [diff] [blame] | 7012 | Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1, |
| 7013 | Op.getOperand(2)); |
| 7014 | Result = DAG.getNode(ISD::SELECT, NewVT, Result, |
| 7015 | DAG.getConstant(-1ULL, NewVT), |
| 7016 | DAG.getConstant(0ULL, NewVT)); |
| 7017 | break; |
| 7018 | } |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7019 | } |
| 7020 | |
| 7021 | if (TLI.isTypeLegal(NewVT)) |
| 7022 | Result = LegalizeOp(Result); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7023 | bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second; |
| 7024 | assert(isNew && "Value already scalarized?"); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7025 | return Result; |
| 7026 | } |
| 7027 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 7028 | |
| 7029 | // SelectionDAG::Legalize - This is the entry point for the file. |
| 7030 | // |
Chris Lattner | 9c32d3b | 2005-01-23 04:42:50 +0000 | [diff] [blame] | 7031 | void SelectionDAG::Legalize() { |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 7032 | /// run - This is the main entry point to this class. |
| 7033 | /// |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 7034 | SelectionDAGLegalize(*this).LegalizeDAG(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 7035 | } |
| 7036 | |