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" |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/DwarfWriter.h" |
| 20 | #include "llvm/Analysis/DebugInfo.h" |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/PseudoSourceValue.h" |
Evan Cheng | 61bbbab | 2007-08-16 23:50:06 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetFrameInfo.h" |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetLowering.h" |
Chris Lattner | e1bd822 | 2005-01-11 05:57:22 +0000 | [diff] [blame] | 24 | #include "llvm/Target/TargetData.h" |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 25 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetOptions.h" |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 27 | #include "llvm/Target/TargetSubtarget.h" |
Chris Lattner | adf6a96 | 2005-05-13 18:50:42 +0000 | [diff] [blame] | 28 | #include "llvm/CallingConv.h" |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 29 | #include "llvm/Constants.h" |
Reid Spencer | c103057 | 2007-01-19 21:13:56 +0000 | [diff] [blame] | 30 | #include "llvm/DerivedTypes.h" |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 31 | #include "llvm/GlobalVariable.h" |
Chris Lattner | 5e46a19 | 2006-04-02 03:07:27 +0000 | [diff] [blame] | 32 | #include "llvm/Support/CommandLine.h" |
Chris Lattner | a4f0b3a | 2006-08-27 12:54:02 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Compiler.h" |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 34 | #include "llvm/Support/MathExtras.h" |
Chris Lattner | 7971514 | 2007-02-03 01:12:36 +0000 | [diff] [blame] | 35 | #include "llvm/ADT/DenseMap.h" |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 36 | #include "llvm/ADT/SmallVector.h" |
Chris Lattner | 00755df | 2007-02-04 00:27:56 +0000 | [diff] [blame] | 37 | #include "llvm/ADT/SmallPtrSet.h" |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 38 | #include <map> |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 39 | using namespace llvm; |
| 40 | |
| 41 | //===----------------------------------------------------------------------===// |
| 42 | /// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and |
| 43 | /// hacks on it until the target machine can handle it. This involves |
| 44 | /// eliminating value sizes the machine cannot handle (promoting small sizes to |
| 45 | /// large sizes or splitting up large values into small values) as well as |
| 46 | /// eliminating operations the machine cannot handle. |
| 47 | /// |
| 48 | /// This code also does a small amount of optimization and recognition of idioms |
| 49 | /// as part of its processing. For example, if a target does not support a |
| 50 | /// 'setcc' instruction efficiently, but does support 'brcc' instruction, this |
| 51 | /// will attempt merge setcc and brc instructions into brcc's. |
| 52 | /// |
| 53 | namespace { |
Chris Lattner | 360e820 | 2006-06-28 21:58:30 +0000 | [diff] [blame] | 54 | class VISIBILITY_HIDDEN SelectionDAGLegalize { |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 55 | TargetLowering &TLI; |
| 56 | SelectionDAG &DAG; |
Duncan Sands | b6862bb | 2008-12-14 09:43:15 +0000 | [diff] [blame] | 57 | bool TypesNeedLegalizing; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 58 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 59 | // Libcall insertion helpers. |
| 60 | |
| 61 | /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been |
| 62 | /// legalized. We use this to ensure that calls are properly serialized |
| 63 | /// against each other, including inserted libcalls. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 64 | SDValue LastCALLSEQ_END; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 65 | |
| 66 | /// IsLegalizingCall - This member is used *only* for purposes of providing |
| 67 | /// helpful assertions that a libcall isn't created while another call is |
| 68 | /// being legalized (which could lead to non-serialized call sequences). |
| 69 | bool IsLegalizingCall; |
| 70 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 71 | enum LegalizeAction { |
Chris Lattner | 68a17fe | 2006-01-29 08:42:06 +0000 | [diff] [blame] | 72 | Legal, // The target natively supports this operation. |
| 73 | Promote, // This operation should be executed in a larger type. |
Chris Lattner | d74ea2b | 2006-05-24 17:04:05 +0000 | [diff] [blame] | 74 | Expand // Try to expand this to other ops, otherwise use a libcall. |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 75 | }; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 76 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 77 | /// ValueTypeActions - This is a bitvector that contains two bits for each |
| 78 | /// value type, where the two bits correspond to the LegalizeAction enum. |
| 79 | /// This can be queried with "getTypeAction(VT)". |
Chris Lattner | 68a17fe | 2006-01-29 08:42:06 +0000 | [diff] [blame] | 80 | TargetLowering::ValueTypeActionImpl ValueTypeActions; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 81 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 82 | /// LegalizedNodes - For nodes that are of legal width, and that have more |
| 83 | /// than one use, this map indicates what regularized operand to use. This |
| 84 | /// allows us to avoid legalizing the same thing more than once. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 85 | DenseMap<SDValue, SDValue> LegalizedNodes; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 86 | |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 87 | /// PromotedNodes - For nodes that are below legal width, and that have more |
| 88 | /// than one use, this map indicates what promoted value to use. This allows |
| 89 | /// us to avoid promoting the same thing more than once. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 90 | DenseMap<SDValue, SDValue> PromotedNodes; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 91 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 92 | /// ExpandedNodes - For nodes that need to be expanded this map indicates |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 93 | /// which operands are the expanded version of the input. This allows |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 94 | /// us to avoid expanding the same node more than once. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 95 | DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 96 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 97 | /// SplitNodes - For vector nodes that need to be split, this map indicates |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 98 | /// which operands are the split version of the input. This allows us |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 99 | /// to avoid splitting the same node more than once. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 100 | std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 101 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 102 | /// ScalarizedNodes - For nodes that need to be converted from vector types to |
| 103 | /// scalar types, this contains the mapping of ones we have already |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 104 | /// processed to the result. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 105 | std::map<SDValue, SDValue> ScalarizedNodes; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 106 | |
Mon P Wang | f007a8b | 2008-11-06 05:31:54 +0000 | [diff] [blame] | 107 | /// WidenNodes - For nodes that need to be widened from one vector type to |
| 108 | /// another, this contains the mapping of those that we have already widen. |
| 109 | /// This allows us to avoid widening more than once. |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 110 | std::map<SDValue, SDValue> WidenNodes; |
| 111 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 112 | void AddLegalizedOperand(SDValue From, SDValue To) { |
Chris Lattner | 69a889e | 2005-12-20 00:53:54 +0000 | [diff] [blame] | 113 | LegalizedNodes.insert(std::make_pair(From, To)); |
| 114 | // If someone requests legalization of the new node, return itself. |
| 115 | if (From != To) |
| 116 | LegalizedNodes.insert(std::make_pair(To, To)); |
Chris Lattner | 8afc48e | 2005-01-07 22:28:47 +0000 | [diff] [blame] | 117 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 118 | void AddPromotedOperand(SDValue From, SDValue To) { |
Dan Gohman | 6b345ee | 2008-07-07 17:46:23 +0000 | [diff] [blame] | 119 | bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 120 | assert(isNew && "Got into the map somehow?"); |
Evan Cheng | 24ac408 | 2008-11-24 07:09:49 +0000 | [diff] [blame] | 121 | isNew = isNew; |
Chris Lattner | 69a889e | 2005-12-20 00:53:54 +0000 | [diff] [blame] | 122 | // If someone requests legalization of the new node, return itself. |
| 123 | LegalizedNodes.insert(std::make_pair(To, To)); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 124 | } |
Mon P Wang | f007a8b | 2008-11-06 05:31:54 +0000 | [diff] [blame] | 125 | void AddWidenedOperand(SDValue From, SDValue To) { |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 126 | bool isNew = WidenNodes.insert(std::make_pair(From, To)).second; |
| 127 | assert(isNew && "Got into the map somehow?"); |
Evan Cheng | 24ac408 | 2008-11-24 07:09:49 +0000 | [diff] [blame] | 128 | isNew = isNew; |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 129 | // If someone requests legalization of the new node, return itself. |
| 130 | LegalizedNodes.insert(std::make_pair(To, To)); |
| 131 | } |
Chris Lattner | 8afc48e | 2005-01-07 22:28:47 +0000 | [diff] [blame] | 132 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 133 | public: |
Duncan Sands | b6862bb | 2008-12-14 09:43:15 +0000 | [diff] [blame] | 134 | explicit SelectionDAGLegalize(SelectionDAG &DAG, bool TypesNeedLegalizing); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 135 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 136 | /// getTypeAction - Return how we should legalize values of this type, either |
| 137 | /// it is already legal or we need to expand it into multiple registers of |
| 138 | /// 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] | 139 | LegalizeAction getTypeAction(MVT VT) const { |
Chris Lattner | 68a17fe | 2006-01-29 08:42:06 +0000 | [diff] [blame] | 140 | return (LegalizeAction)ValueTypeActions.getTypeAction(VT); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | /// isTypeLegal - Return true if this type is legal on this target. |
| 144 | /// |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 145 | bool isTypeLegal(MVT VT) const { |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 146 | return getTypeAction(VT) == Legal; |
| 147 | } |
| 148 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 149 | void LegalizeDAG(); |
| 150 | |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 151 | private: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 152 | /// HandleOp - Legalize, Promote, or Expand the specified operand as |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 153 | /// appropriate for its type. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 154 | void HandleOp(SDValue Op); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 155 | |
| 156 | /// LegalizeOp - We know that the specified value has a legal type. |
| 157 | /// Recursively ensure that the operands have legal types, then return the |
| 158 | /// result. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 159 | SDValue LegalizeOp(SDValue O); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 160 | |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 161 | /// UnrollVectorOp - We know that the given vector has a legal type, however |
| 162 | /// the operation it performs is not legal and is an operation that we have |
| 163 | /// no way of lowering. "Unroll" the vector, splitting out the scalars and |
| 164 | /// operating on each element individually. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 165 | SDValue UnrollVectorOp(SDValue O); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 166 | |
| 167 | /// PerformInsertVectorEltInMemory - Some target cannot handle a variable |
| 168 | /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it |
| 169 | /// is necessary to spill the vector being inserted into to memory, perform |
| 170 | /// the insert there, and then read the result back. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 171 | SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 172 | SDValue Idx, DebugLoc dl); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 173 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 174 | /// PromoteOp - Given an operation that produces a value in an invalid type, |
| 175 | /// promote it to compute the value into a larger type. The produced value |
| 176 | /// will have the correct bits for the low portion of the register, but no |
| 177 | /// guarantee is made about the top bits: it may be zero, sign-extended, or |
| 178 | /// garbage. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 179 | SDValue PromoteOp(SDValue O); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 180 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 181 | /// ExpandOp - Expand the specified SDValue into its two component pieces |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 182 | /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, |
Dan Gohman | 929d3eb | 2008-10-01 15:07:49 +0000 | [diff] [blame] | 183 | /// the LegalizedNodes map is filled in for any results that are not expanded, |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 184 | /// the ExpandedNodes map is filled in for any results that are expanded, and |
| 185 | /// the Lo/Hi values are returned. This applies to integer types and Vector |
| 186 | /// types. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 187 | void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 188 | |
Mon P Wang | f007a8b | 2008-11-06 05:31:54 +0000 | [diff] [blame] | 189 | /// WidenVectorOp - Widen a vector operation to a wider type given by WidenVT |
| 190 | /// (e.g., v3i32 to v4i32). The produced value will have the correct value |
| 191 | /// for the existing elements but no guarantee is made about the new elements |
| 192 | /// at the end of the vector: it may be zero, ones, or garbage. This is useful |
| 193 | /// when we have an instruction operating on an illegal vector type and we |
| 194 | /// want to widen it to do the computation on a legal wider vector type. |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 195 | SDValue WidenVectorOp(SDValue Op, MVT WidenVT); |
| 196 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 197 | /// SplitVectorOp - Given an operand of vector type, break it down into |
| 198 | /// two smaller values. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 199 | void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 200 | |
Dan Gohman | 89b20c0 | 2007-06-27 14:06:22 +0000 | [diff] [blame] | 201 | /// ScalarizeVectorOp - Given an operand of single-element vector type |
| 202 | /// (e.g. v1f32), convert it into the equivalent operation that returns a |
| 203 | /// scalar (e.g. f32) value. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 204 | SDValue ScalarizeVectorOp(SDValue O); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 205 | |
Mon P Wang | f007a8b | 2008-11-06 05:31:54 +0000 | [diff] [blame] | 206 | /// Useful 16 element vector type that is used to pass operands for widening. |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 207 | typedef SmallVector<SDValue, 16> SDValueVector; |
| 208 | |
| 209 | /// LoadWidenVectorOp - Load a vector for a wider type. Returns true if |
| 210 | /// the LdChain contains a single load and false if it contains a token |
| 211 | /// factor for multiple loads. It takes |
| 212 | /// Result: location to return the result |
| 213 | /// LdChain: location to return the load chain |
| 214 | /// Op: load operation to widen |
| 215 | /// NVT: widen vector result type we want for the load |
| 216 | bool LoadWidenVectorOp(SDValue& Result, SDValue& LdChain, |
| 217 | SDValue Op, MVT NVT); |
| 218 | |
| 219 | /// Helper genWidenVectorLoads - Helper function to generate a set of |
| 220 | /// loads to load a vector with a resulting wider type. It takes |
| 221 | /// LdChain: list of chains for the load we have generated |
| 222 | /// Chain: incoming chain for the ld vector |
| 223 | /// BasePtr: base pointer to load from |
| 224 | /// SV: memory disambiguation source value |
| 225 | /// SVOffset: memory disambiugation offset |
| 226 | /// Alignment: alignment of the memory |
| 227 | /// isVolatile: volatile load |
| 228 | /// LdWidth: width of memory that we want to load |
| 229 | /// ResType: the wider result result type for the resulting loaded vector |
| 230 | SDValue genWidenVectorLoads(SDValueVector& LdChain, SDValue Chain, |
| 231 | SDValue BasePtr, const Value *SV, |
| 232 | int SVOffset, unsigned Alignment, |
| 233 | bool isVolatile, unsigned LdWidth, |
| 234 | MVT ResType); |
| 235 | |
| 236 | /// StoreWidenVectorOp - Stores a widen vector into non widen memory |
| 237 | /// location. It takes |
| 238 | /// ST: store node that we want to replace |
| 239 | /// Chain: incoming store chain |
| 240 | /// BasePtr: base address of where we want to store into |
| 241 | SDValue StoreWidenVectorOp(StoreSDNode *ST, SDValue Chain, |
| 242 | SDValue BasePtr); |
| 243 | |
| 244 | /// Helper genWidenVectorStores - Helper function to generate a set of |
| 245 | /// stores to store a widen vector into non widen memory |
| 246 | // It takes |
| 247 | // StChain: list of chains for the stores we have generated |
| 248 | // Chain: incoming chain for the ld vector |
| 249 | // BasePtr: base pointer to load from |
| 250 | // SV: memory disambiguation source value |
| 251 | // SVOffset: memory disambiugation offset |
| 252 | // Alignment: alignment of the memory |
| 253 | // isVolatile: volatile lod |
| 254 | // ValOp: value to store |
| 255 | // StWidth: width of memory that we want to store |
| 256 | void genWidenVectorStores(SDValueVector& StChain, SDValue Chain, |
| 257 | SDValue BasePtr, const Value *SV, |
| 258 | int SVOffset, unsigned Alignment, |
| 259 | bool isVolatile, SDValue ValOp, |
| 260 | unsigned StWidth); |
| 261 | |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 262 | /// isShuffleLegal - Return non-null if a vector shuffle is legal with the |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 263 | /// specified mask and type. Targets can specify exactly which masks they |
| 264 | /// support and the code generator is tasked with not creating illegal masks. |
| 265 | /// |
| 266 | /// Note that this will also return true for shuffles that are promoted to a |
| 267 | /// different type. |
| 268 | /// |
| 269 | /// If this is a legal shuffle, this method returns the (possibly promoted) |
| 270 | /// 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] | 271 | SDNode *isShuffleLegal(MVT VT, SDValue Mask) const; |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 272 | |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 273 | bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest, |
Chris Lattner | 00755df | 2007-02-04 00:27:56 +0000 | [diff] [blame] | 274 | SmallPtrSet<SDNode*, 32> &NodesLeadingTo); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 275 | |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 276 | void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC, |
| 277 | DebugLoc dl); |
| 278 | void LegalizeSetCCCondCode(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC, |
| 279 | DebugLoc dl); |
| 280 | void LegalizeSetCC(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC, |
| 281 | DebugLoc dl) { |
| 282 | LegalizeSetCCOperands(LHS, RHS, CC, dl); |
| 283 | LegalizeSetCCCondCode(VT, LHS, RHS, CC, dl); |
Evan Cheng | 7f04268 | 2008-10-15 02:05:31 +0000 | [diff] [blame] | 284 | } |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 285 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 286 | SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned, |
| 287 | SDValue &Hi); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 288 | SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl); |
Chris Lattner | cad063f | 2005-07-16 00:19:57 +0000 | [diff] [blame] | 289 | |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 290 | SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT, DebugLoc dl); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 291 | SDValue ExpandBUILD_VECTOR(SDNode *Node); |
| 292 | SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 293 | SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, |
| 294 | SDValue Op, DebugLoc dl); |
| 295 | SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT, |
| 296 | DebugLoc dl); |
| 297 | SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned, |
| 298 | DebugLoc dl); |
| 299 | SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned, |
| 300 | DebugLoc dl); |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 301 | |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 302 | SDValue ExpandBSWAP(SDValue Op, DebugLoc dl); |
| 303 | SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 304 | bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt, |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 305 | SDValue &Lo, SDValue &Hi, DebugLoc dl); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 306 | void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt, |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 307 | SDValue &Lo, SDValue &Hi, DebugLoc dl); |
Chris Lattner | b9fa3bc | 2005-05-12 04:49:08 +0000 | [diff] [blame] | 308 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 309 | SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op); |
| 310 | SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 311 | }; |
| 312 | } |
| 313 | |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 314 | /// isVectorShuffleLegal - Return true if a vector shuffle is legal with the |
| 315 | /// specified mask and type. Targets can specify exactly which masks they |
| 316 | /// support and the code generator is tasked with not creating illegal masks. |
| 317 | /// |
| 318 | /// Note that this will also return true for shuffles that are promoted to a |
| 319 | /// different type. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 320 | SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDValue Mask) const { |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 321 | switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) { |
| 322 | default: return 0; |
| 323 | case TargetLowering::Legal: |
| 324 | case TargetLowering::Custom: |
| 325 | break; |
| 326 | case TargetLowering::Promote: { |
| 327 | // If this is promoted to a different type, convert the shuffle mask and |
| 328 | // ask if it is legal in the promoted type! |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 329 | MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 330 | MVT EltVT = NVT.getVectorElementType(); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 331 | |
| 332 | // If we changed # elements, change the shuffle mask. |
| 333 | unsigned NumEltsGrowth = |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 334 | NVT.getVectorNumElements() / VT.getVectorNumElements(); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 335 | assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!"); |
| 336 | if (NumEltsGrowth > 1) { |
| 337 | // Renumber the elements. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 338 | SmallVector<SDValue, 8> Ops; |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 339 | for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 340 | SDValue InOp = Mask.getOperand(i); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 341 | for (unsigned j = 0; j != NumEltsGrowth; ++j) { |
| 342 | if (InOp.getOpcode() == ISD::UNDEF) |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 343 | Ops.push_back(DAG.getNode(ISD::UNDEF, |
| 344 | InOp.getNode()->getDebugLoc(), EltVT)); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 345 | else { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 346 | unsigned InEltNo = cast<ConstantSDNode>(InOp)->getZExtValue(); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 347 | Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, EltVT)); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 348 | } |
| 349 | } |
| 350 | } |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 351 | Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getNode()->getDebugLoc(), |
| 352 | NVT, &Ops[0], Ops.size()); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 353 | } |
| 354 | VT = NVT; |
| 355 | break; |
| 356 | } |
| 357 | } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 358 | return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.getNode() : 0; |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 359 | } |
| 360 | |
Duncan Sands | b6862bb | 2008-12-14 09:43:15 +0000 | [diff] [blame] | 361 | SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag, bool types) |
| 362 | : TLI(dag.getTargetLoweringInfo()), DAG(dag), TypesNeedLegalizing(types), |
Chris Lattner | 9c32d3b | 2005-01-23 04:42:50 +0000 | [diff] [blame] | 363 | ValueTypeActions(TLI.getValueTypeActions()) { |
Nate Begeman | 6a64861 | 2005-11-29 05:45:29 +0000 | [diff] [blame] | 364 | assert(MVT::LAST_VALUETYPE <= 32 && |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 365 | "Too many value types for ValueTypeActions to hold!"); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 366 | } |
| 367 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 368 | void SelectionDAGLegalize::LegalizeDAG() { |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 369 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 370 | IsLegalizingCall = false; |
| 371 | |
Chris Lattner | ab510a7 | 2005-10-02 17:49:46 +0000 | [diff] [blame] | 372 | // The legalize process is inherently a bottom-up recursive process (users |
| 373 | // legalize their uses before themselves). Given infinite stack space, we |
| 374 | // could just start legalizing on the root and traverse the whole graph. In |
| 375 | // 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] | 376 | // blocks. To avoid this problem, compute an ordering of the nodes where each |
| 377 | // node is only legalized after all of its operands are legalized. |
Dan Gohman | f06c835 | 2008-09-30 18:30:35 +0000 | [diff] [blame] | 378 | DAG.AssignTopologicalOrder(); |
| 379 | for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(), |
| 380 | E = prior(DAG.allnodes_end()); I != next(E); ++I) |
| 381 | HandleOp(SDValue(I, 0)); |
Chris Lattner | 32fca00 | 2005-10-06 01:20:27 +0000 | [diff] [blame] | 382 | |
| 383 | // Finally, it's possible the root changed. Get the new root. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 384 | SDValue OldRoot = DAG.getRoot(); |
Chris Lattner | 32fca00 | 2005-10-06 01:20:27 +0000 | [diff] [blame] | 385 | assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?"); |
| 386 | DAG.setRoot(LegalizedNodes[OldRoot]); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 387 | |
| 388 | ExpandedNodes.clear(); |
| 389 | LegalizedNodes.clear(); |
Chris Lattner | 71c42a0 | 2005-01-16 01:11:45 +0000 | [diff] [blame] | 390 | PromotedNodes.clear(); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 391 | SplitNodes.clear(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 392 | ScalarizedNodes.clear(); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 393 | WidenNodes.clear(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 394 | |
| 395 | // Remove dead nodes now. |
Chris Lattner | 190a418 | 2006-08-04 17:45:20 +0000 | [diff] [blame] | 396 | DAG.RemoveDeadNodes(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 397 | } |
| 398 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 399 | |
| 400 | /// FindCallEndFromCallStart - Given a chained node that is part of a call |
| 401 | /// sequence, find the CALLSEQ_END node that terminates the call sequence. |
| 402 | static SDNode *FindCallEndFromCallStart(SDNode *Node) { |
| 403 | if (Node->getOpcode() == ISD::CALLSEQ_END) |
| 404 | return Node; |
| 405 | if (Node->use_empty()) |
| 406 | return 0; // No CallSeqEnd |
| 407 | |
| 408 | // The chain is usually at the end. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 409 | SDValue TheChain(Node, Node->getNumValues()-1); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 410 | if (TheChain.getValueType() != MVT::Other) { |
| 411 | // Sometimes it's at the beginning. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 412 | TheChain = SDValue(Node, 0); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 413 | if (TheChain.getValueType() != MVT::Other) { |
| 414 | // Otherwise, hunt for it. |
| 415 | for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i) |
| 416 | if (Node->getValueType(i) == MVT::Other) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 417 | TheChain = SDValue(Node, i); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 418 | break; |
| 419 | } |
| 420 | |
| 421 | // Otherwise, we walked into a node without a chain. |
| 422 | if (TheChain.getValueType() != MVT::Other) |
| 423 | return 0; |
| 424 | } |
| 425 | } |
| 426 | |
| 427 | for (SDNode::use_iterator UI = Node->use_begin(), |
| 428 | E = Node->use_end(); UI != E; ++UI) { |
| 429 | |
| 430 | // Make sure to only follow users of our token chain. |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 431 | SDNode *User = *UI; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 432 | for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) |
| 433 | if (User->getOperand(i) == TheChain) |
| 434 | if (SDNode *Result = FindCallEndFromCallStart(User)) |
| 435 | return Result; |
| 436 | } |
| 437 | return 0; |
| 438 | } |
| 439 | |
| 440 | /// FindCallStartFromCallEnd - Given a chained node that is part of a call |
| 441 | /// sequence, find the CALLSEQ_START node that initiates the call sequence. |
| 442 | static SDNode *FindCallStartFromCallEnd(SDNode *Node) { |
| 443 | assert(Node && "Didn't find callseq_start for a call??"); |
| 444 | if (Node->getOpcode() == ISD::CALLSEQ_START) return Node; |
| 445 | |
| 446 | assert(Node->getOperand(0).getValueType() == MVT::Other && |
| 447 | "Node doesn't have a token chain argument!"); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 448 | return FindCallStartFromCallEnd(Node->getOperand(0).getNode()); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | /// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to |
| 452 | /// see if any uses can reach Dest. If no dest operands can get to dest, |
| 453 | /// legalize them, legalize ourself, and return false, otherwise, return true. |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 454 | /// |
| 455 | /// Keep track of the nodes we fine that actually do lead to Dest in |
| 456 | /// NodesLeadingTo. This avoids retraversing them exponential number of times. |
| 457 | /// |
| 458 | bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest, |
Chris Lattner | 00755df | 2007-02-04 00:27:56 +0000 | [diff] [blame] | 459 | SmallPtrSet<SDNode*, 32> &NodesLeadingTo) { |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 460 | if (N == Dest) return true; // N certainly leads to Dest :) |
| 461 | |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 462 | // If we've already processed this node and it does lead to Dest, there is no |
| 463 | // need to reprocess it. |
| 464 | if (NodesLeadingTo.count(N)) return true; |
| 465 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 466 | // If the first result of this node has been already legalized, then it cannot |
| 467 | // reach N. |
| 468 | switch (getTypeAction(N->getValueType(0))) { |
| 469 | case Legal: |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 470 | if (LegalizedNodes.count(SDValue(N, 0))) return false; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 471 | break; |
| 472 | case Promote: |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 473 | if (PromotedNodes.count(SDValue(N, 0))) return false; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 474 | break; |
| 475 | case Expand: |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 476 | if (ExpandedNodes.count(SDValue(N, 0))) return false; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 477 | break; |
| 478 | } |
| 479 | |
| 480 | // Okay, this node has not already been legalized. Check and legalize all |
| 481 | // operands. If none lead to Dest, then we can legalize this node. |
| 482 | bool OperandsLeadToDest = false; |
| 483 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) |
| 484 | OperandsLeadToDest |= // If an operand leads to Dest, so do we. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 485 | LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 486 | |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 487 | if (OperandsLeadToDest) { |
| 488 | NodesLeadingTo.insert(N); |
| 489 | return true; |
| 490 | } |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 491 | |
| 492 | // Okay, this node looks safe, legalize it and return false. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 493 | HandleOp(SDValue(N, 0)); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 494 | return false; |
| 495 | } |
| 496 | |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 497 | /// HandleOp - Legalize, Promote, Widen, or Expand the specified operand as |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 498 | /// appropriate for its type. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 499 | void SelectionDAGLegalize::HandleOp(SDValue Op) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 500 | MVT VT = Op.getValueType(); |
Duncan Sands | b6862bb | 2008-12-14 09:43:15 +0000 | [diff] [blame] | 501 | // If the type legalizer was run then we should never see any illegal result |
| 502 | // types here except for target constants (the type legalizer does not touch |
Mon P Wang | 87c8a8f | 2008-12-18 20:03:17 +0000 | [diff] [blame] | 503 | // those) or for build vector used as a mask for a vector shuffle. |
| 504 | // FIXME: We can removed the BUILD_VECTOR case when we fix PR2957. |
Duncan Sands | b6862bb | 2008-12-14 09:43:15 +0000 | [diff] [blame] | 505 | assert((TypesNeedLegalizing || getTypeAction(VT) == Legal || |
Mon P Wang | 87c8a8f | 2008-12-18 20:03:17 +0000 | [diff] [blame] | 506 | Op.getOpcode() == ISD::TargetConstant || |
| 507 | Op.getOpcode() == ISD::BUILD_VECTOR) && |
Duncan Sands | b6862bb | 2008-12-14 09:43:15 +0000 | [diff] [blame] | 508 | "Illegal type introduced after type legalization?"); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 509 | switch (getTypeAction(VT)) { |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 510 | default: assert(0 && "Bad type action!"); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 511 | case Legal: (void)LegalizeOp(Op); break; |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 512 | case Promote: |
| 513 | if (!VT.isVector()) { |
| 514 | (void)PromoteOp(Op); |
| 515 | break; |
| 516 | } |
| 517 | else { |
| 518 | // See if we can widen otherwise use Expand to either scalarize or split |
| 519 | MVT WidenVT = TLI.getWidenVectorType(VT); |
| 520 | if (WidenVT != MVT::Other) { |
| 521 | (void) WidenVectorOp(Op, WidenVT); |
| 522 | break; |
| 523 | } |
| 524 | // else fall thru to expand since we can't widen the vector |
| 525 | } |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 526 | case Expand: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 527 | if (!VT.isVector()) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 528 | // If this is an illegal scalar, expand it into its two component |
| 529 | // pieces. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 530 | SDValue X, Y; |
Chris Lattner | 09ec1b0 | 2007-08-25 01:00:22 +0000 | [diff] [blame] | 531 | if (Op.getOpcode() == ISD::TargetConstant) |
| 532 | break; // Allow illegal target nodes. |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 533 | ExpandOp(Op, X, Y); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 534 | } else if (VT.getVectorNumElements() == 1) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 535 | // If this is an illegal single element vector, convert it to a |
| 536 | // scalar operation. |
| 537 | (void)ScalarizeVectorOp(Op); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 538 | } else { |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 539 | // This is an illegal multiple element vector. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 540 | // Split it in half and legalize both parts. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 541 | SDValue X, Y; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 542 | SplitVectorOp(Op, X, Y); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 543 | } |
| 544 | break; |
| 545 | } |
| 546 | } |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 547 | |
Evan Cheng | 9f87788 | 2006-12-13 20:57:08 +0000 | [diff] [blame] | 548 | /// ExpandConstantFP - Expands the ConstantFP node to an integer constant or |
| 549 | /// a load from the constant pool. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 550 | static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP, |
Dan Gohman | 0d137d7 | 2009-01-15 16:43:02 +0000 | [diff] [blame] | 551 | SelectionDAG &DAG, const TargetLowering &TLI) { |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 552 | bool Extend = false; |
| 553 | |
| 554 | // If a FP immediate is precise when represented as a float and if the |
| 555 | // target can do an extending load from float to double, we put it into |
| 556 | // 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] | 557 | // double. This shrinks FP constants and canonicalizes them for targets where |
| 558 | // an FP extending load is the same cost as a normal load (such as on the x87 |
| 559 | // fp stack or PPC FP unit). |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 560 | MVT VT = CFP->getValueType(0); |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 561 | ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue()); |
Evan Cheng | 9f87788 | 2006-12-13 20:57:08 +0000 | [diff] [blame] | 562 | if (!UseCP) { |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 563 | if (VT!=MVT::f64 && VT!=MVT::f32) |
| 564 | assert(0 && "Invalid type expansion"); |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 565 | return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(), |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 566 | (VT == MVT::f64) ? MVT::i64 : MVT::i32); |
Evan Cheng | 279101e | 2006-12-12 22:19:28 +0000 | [diff] [blame] | 567 | } |
| 568 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 569 | MVT OrigVT = VT; |
| 570 | MVT SVT = VT; |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 571 | while (SVT != MVT::f32) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 572 | SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1); |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 573 | if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) && |
| 574 | // Only do this if the target has a native EXTLOAD instruction from |
| 575 | // smaller type. |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 576 | TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) && |
Chris Lattner | aa2acbb | 2008-03-05 06:46:58 +0000 | [diff] [blame] | 577 | TLI.ShouldShrinkFPConstant(OrigVT)) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 578 | const Type *SType = SVT.getTypeForMVT(); |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 579 | LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType)); |
| 580 | VT = SVT; |
| 581 | Extend = true; |
| 582 | } |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 583 | } |
| 584 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 585 | SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy()); |
Dan Gohman | 50284d8 | 2008-09-16 22:05:41 +0000 | [diff] [blame] | 586 | unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment(); |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 587 | if (Extend) |
| 588 | return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(), |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 589 | CPIdx, PseudoSourceValue::getConstantPool(), |
Dan Gohman | 50284d8 | 2008-09-16 22:05:41 +0000 | [diff] [blame] | 590 | 0, VT, false, Alignment); |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 591 | return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx, |
Dan Gohman | 50284d8 | 2008-09-16 22:05:41 +0000 | [diff] [blame] | 592 | PseudoSourceValue::getConstantPool(), 0, false, Alignment); |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 593 | } |
| 594 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 595 | |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 596 | /// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise |
| 597 | /// operations. |
| 598 | static |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 599 | SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT, |
Dan Gohman | 0d137d7 | 2009-01-15 16:43:02 +0000 | [diff] [blame] | 600 | SelectionDAG &DAG, |
| 601 | const TargetLowering &TLI) { |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 602 | DebugLoc dl = Node->getDebugLoc(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 603 | MVT VT = Node->getValueType(0); |
| 604 | MVT SrcVT = Node->getOperand(1).getValueType(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 605 | assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) && |
| 606 | "fcopysign expansion only supported for f32 and f64"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 607 | MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32; |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 608 | |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 609 | // First get the sign bit of second operand. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 610 | SDValue Mask1 = (SrcVT == MVT::f64) |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 611 | ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT) |
| 612 | : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 613 | Mask1 = DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT, Mask1); |
| 614 | SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT, |
| 615 | Node->getOperand(1)); |
| 616 | SignBit = DAG.getNode(ISD::AND, dl, SrcNVT, SignBit, Mask1); |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 617 | // 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] | 618 | int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits(); |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 619 | if (SizeDiff > 0) { |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 620 | SignBit = DAG.getNode(ISD::SRL, dl, SrcNVT, SignBit, |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 621 | DAG.getConstant(SizeDiff, TLI.getShiftAmountTy())); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 622 | SignBit = DAG.getNode(ISD::TRUNCATE, dl, NVT, SignBit); |
Chris Lattner | c563e1d | 2008-07-10 23:46:13 +0000 | [diff] [blame] | 623 | } else if (SizeDiff < 0) { |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 624 | SignBit = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, SignBit); |
| 625 | SignBit = DAG.getNode(ISD::SHL, dl, NVT, SignBit, |
Chris Lattner | c563e1d | 2008-07-10 23:46:13 +0000 | [diff] [blame] | 626 | DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy())); |
| 627 | } |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 628 | |
| 629 | // Clear the sign bit of first operand. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 630 | SDValue Mask2 = (VT == MVT::f64) |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 631 | ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT) |
| 632 | : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 633 | Mask2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask2); |
| 634 | SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0)); |
| 635 | Result = DAG.getNode(ISD::AND, dl, NVT, Result, Mask2); |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 636 | |
| 637 | // Or the value with the sign bit. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 638 | Result = DAG.getNode(ISD::OR, dl, NVT, Result, SignBit); |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 639 | return Result; |
| 640 | } |
| 641 | |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 642 | /// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores. |
| 643 | static |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 644 | SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG, |
Dan Gohman | 0d137d7 | 2009-01-15 16:43:02 +0000 | [diff] [blame] | 645 | const TargetLowering &TLI) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 646 | SDValue Chain = ST->getChain(); |
| 647 | SDValue Ptr = ST->getBasePtr(); |
| 648 | SDValue Val = ST->getValue(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 649 | MVT VT = Val.getValueType(); |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 650 | int Alignment = ST->getAlignment(); |
| 651 | int SVOffset = ST->getSrcValueOffset(); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 652 | DebugLoc dl = ST->getDebugLoc(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 653 | if (ST->getMemoryVT().isFloatingPoint() || |
| 654 | ST->getMemoryVT().isVector()) { |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 655 | MVT intVT = MVT::getIntegerVT(VT.getSizeInBits()); |
| 656 | if (TLI.isTypeLegal(intVT)) { |
| 657 | // Expand to a bitconvert of the value to the integer type of the |
| 658 | // same size, then a (misaligned) int store. |
| 659 | // FIXME: Does not handle truncating floating point stores! |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 660 | SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, intVT, Val); |
| 661 | return DAG.getStore(Chain, dl, Result, Ptr, ST->getSrcValue(), |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 662 | SVOffset, ST->isVolatile(), Alignment); |
| 663 | } else { |
| 664 | // Do a (aligned) store to a stack slot, then copy from the stack slot |
| 665 | // to the final destination using (unaligned) integer loads and stores. |
| 666 | MVT StoredVT = ST->getMemoryVT(); |
| 667 | MVT RegVT = |
| 668 | TLI.getRegisterType(MVT::getIntegerVT(StoredVT.getSizeInBits())); |
| 669 | unsigned StoredBytes = StoredVT.getSizeInBits() / 8; |
| 670 | unsigned RegBytes = RegVT.getSizeInBits() / 8; |
| 671 | unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes; |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 672 | |
Duncan Sands | fd6673c | 2008-12-13 07:18:38 +0000 | [diff] [blame] | 673 | // Make sure the stack slot is also aligned for the register type. |
| 674 | SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT); |
| 675 | |
| 676 | // Perform the original store, only redirected to the stack slot. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 677 | SDValue Store = DAG.getTruncStore(Chain, dl, |
| 678 | Val, StackPtr, NULL, 0,StoredVT); |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 679 | SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy()); |
| 680 | SmallVector<SDValue, 8> Stores; |
| 681 | unsigned Offset = 0; |
| 682 | |
| 683 | // Do all but one copies using the full register width. |
| 684 | for (unsigned i = 1; i < NumRegs; i++) { |
| 685 | // Load one integer register's worth from the stack slot. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 686 | SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, NULL, 0); |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 687 | // Store it to the final location. Remember the store. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 688 | Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr, |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 689 | ST->getSrcValue(), SVOffset + Offset, |
| 690 | ST->isVolatile(), |
| 691 | MinAlign(ST->getAlignment(), Offset))); |
| 692 | // Increment the pointers. |
| 693 | Offset += RegBytes; |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 694 | StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr, |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 695 | Increment); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 696 | Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment); |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 697 | } |
| 698 | |
Duncan Sands | fd6673c | 2008-12-13 07:18:38 +0000 | [diff] [blame] | 699 | // The last store may be partial. Do a truncating store. On big-endian |
| 700 | // machines this requires an extending load from the stack slot to ensure |
| 701 | // that the bits are in the right place. |
| 702 | MVT MemVT = MVT::getIntegerVT(8 * (StoredBytes - Offset)); |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 703 | |
Duncan Sands | fd6673c | 2008-12-13 07:18:38 +0000 | [diff] [blame] | 704 | // Load from the stack slot. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 705 | SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr, |
Duncan Sands | fd6673c | 2008-12-13 07:18:38 +0000 | [diff] [blame] | 706 | NULL, 0, MemVT); |
| 707 | |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 708 | Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr, |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 709 | ST->getSrcValue(), SVOffset + Offset, |
Duncan Sands | fd6673c | 2008-12-13 07:18:38 +0000 | [diff] [blame] | 710 | MemVT, ST->isVolatile(), |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 711 | MinAlign(ST->getAlignment(), Offset))); |
| 712 | // The order of the stores doesn't matter - say it with a TokenFactor. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 713 | return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0], |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 714 | Stores.size()); |
| 715 | } |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 716 | } |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 717 | assert(ST->getMemoryVT().isInteger() && |
| 718 | !ST->getMemoryVT().isVector() && |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 719 | "Unaligned store of unknown type."); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 720 | // Get the half-size VT |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 721 | MVT NewStoredVT = |
| 722 | (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1); |
| 723 | int NumBits = NewStoredVT.getSizeInBits(); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 724 | int IncrementSize = NumBits / 8; |
| 725 | |
| 726 | // Divide the stored value in two parts. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 727 | SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy()); |
| 728 | SDValue Lo = Val; |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 729 | SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 730 | |
| 731 | // Store the two parts |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 732 | SDValue Store1, Store2; |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 733 | Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr, |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 734 | ST->getSrcValue(), SVOffset, NewStoredVT, |
| 735 | ST->isVolatile(), Alignment); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 736 | Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 737 | DAG.getConstant(IncrementSize, TLI.getPointerTy())); |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 738 | Alignment = MinAlign(Alignment, IncrementSize); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 739 | Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr, |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 740 | ST->getSrcValue(), SVOffset + IncrementSize, |
| 741 | NewStoredVT, ST->isVolatile(), Alignment); |
| 742 | |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 743 | return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 744 | } |
| 745 | |
| 746 | /// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads. |
| 747 | static |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 748 | SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG, |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 749 | const TargetLowering &TLI) { |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 750 | int SVOffset = LD->getSrcValueOffset(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 751 | SDValue Chain = LD->getChain(); |
| 752 | SDValue Ptr = LD->getBasePtr(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 753 | MVT VT = LD->getValueType(0); |
| 754 | MVT LoadedVT = LD->getMemoryVT(); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 755 | DebugLoc dl = LD->getDebugLoc(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 756 | if (VT.isFloatingPoint() || VT.isVector()) { |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 757 | MVT intVT = MVT::getIntegerVT(LoadedVT.getSizeInBits()); |
| 758 | if (TLI.isTypeLegal(intVT)) { |
| 759 | // Expand to a (misaligned) integer load of the same size, |
| 760 | // then bitconvert to floating point or vector. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 761 | SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getSrcValue(), |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 762 | SVOffset, LD->isVolatile(), |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 763 | LD->getAlignment()); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 764 | SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, LoadedVT, newLoad); |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 765 | if (VT.isFloatingPoint() && LoadedVT != VT) |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 766 | Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result); |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 767 | |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 768 | SDValue Ops[] = { Result, Chain }; |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 769 | return DAG.getMergeValues(Ops, 2, dl); |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 770 | } else { |
| 771 | // Copy the value to a (aligned) stack slot using (unaligned) integer |
| 772 | // loads and stores, then do a (aligned) load from the stack slot. |
| 773 | MVT RegVT = TLI.getRegisterType(intVT); |
| 774 | unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8; |
| 775 | unsigned RegBytes = RegVT.getSizeInBits() / 8; |
| 776 | unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes; |
| 777 | |
Duncan Sands | fd6673c | 2008-12-13 07:18:38 +0000 | [diff] [blame] | 778 | // Make sure the stack slot is also aligned for the register type. |
| 779 | SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT); |
| 780 | |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 781 | SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy()); |
| 782 | SmallVector<SDValue, 8> Stores; |
| 783 | SDValue StackPtr = StackBase; |
| 784 | unsigned Offset = 0; |
| 785 | |
| 786 | // Do all but one copies using the full register width. |
| 787 | for (unsigned i = 1; i < NumRegs; i++) { |
| 788 | // Load one integer register's worth from the original location. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 789 | SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr, LD->getSrcValue(), |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 790 | SVOffset + Offset, LD->isVolatile(), |
| 791 | MinAlign(LD->getAlignment(), Offset)); |
| 792 | // Follow the load with a store to the stack slot. Remember the store. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 793 | Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr, |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 794 | NULL, 0)); |
| 795 | // Increment the pointers. |
| 796 | Offset += RegBytes; |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 797 | Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment); |
| 798 | StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr, |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 799 | Increment); |
| 800 | } |
| 801 | |
| 802 | // The last copy may be partial. Do an extending load. |
Duncan Sands | fd6673c | 2008-12-13 07:18:38 +0000 | [diff] [blame] | 803 | MVT MemVT = MVT::getIntegerVT(8 * (LoadedBytes - Offset)); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 804 | SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr, |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 805 | LD->getSrcValue(), SVOffset + Offset, |
Duncan Sands | fd6673c | 2008-12-13 07:18:38 +0000 | [diff] [blame] | 806 | MemVT, LD->isVolatile(), |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 807 | MinAlign(LD->getAlignment(), Offset)); |
| 808 | // Follow the load with a store to the stack slot. Remember the store. |
Duncan Sands | fd6673c | 2008-12-13 07:18:38 +0000 | [diff] [blame] | 809 | // On big-endian machines this requires a truncating store to ensure |
| 810 | // that the bits end up in the right place. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 811 | Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr, |
Duncan Sands | fd6673c | 2008-12-13 07:18:38 +0000 | [diff] [blame] | 812 | NULL, 0, MemVT)); |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 813 | |
| 814 | // The order of the stores doesn't matter - say it with a TokenFactor. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 815 | SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0], |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 816 | Stores.size()); |
| 817 | |
| 818 | // Finally, perform the original load only redirected to the stack slot. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 819 | Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase, |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 820 | NULL, 0, LoadedVT); |
| 821 | |
| 822 | // Callers expect a MERGE_VALUES node. |
| 823 | SDValue Ops[] = { Load, TF }; |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 824 | return DAG.getMergeValues(Ops, 2, dl); |
Duncan Sands | 05e11fa | 2008-12-12 21:47:02 +0000 | [diff] [blame] | 825 | } |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 826 | } |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 827 | assert(LoadedVT.isInteger() && !LoadedVT.isVector() && |
Chris Lattner | e400af8 | 2007-11-19 21:38:03 +0000 | [diff] [blame] | 828 | "Unaligned load of unsupported type."); |
| 829 | |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 830 | // Compute the new VT that is half the size of the old one. This is an |
| 831 | // integer MVT. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 832 | unsigned NumBits = LoadedVT.getSizeInBits(); |
| 833 | MVT NewLoadedVT; |
| 834 | NewLoadedVT = MVT::getIntegerVT(NumBits/2); |
Chris Lattner | e400af8 | 2007-11-19 21:38:03 +0000 | [diff] [blame] | 835 | NumBits >>= 1; |
| 836 | |
| 837 | unsigned Alignment = LD->getAlignment(); |
| 838 | unsigned IncrementSize = NumBits / 8; |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 839 | ISD::LoadExtType HiExtType = LD->getExtensionType(); |
| 840 | |
| 841 | // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD. |
| 842 | if (HiExtType == ISD::NON_EXTLOAD) |
| 843 | HiExtType = ISD::ZEXTLOAD; |
| 844 | |
| 845 | // Load the value in two parts |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 846 | SDValue Lo, Hi; |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 847 | if (TLI.isLittleEndian()) { |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 848 | Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(), |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 849 | SVOffset, NewLoadedVT, LD->isVolatile(), Alignment); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 850 | Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 851 | DAG.getConstant(IncrementSize, TLI.getPointerTy())); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 852 | Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(), |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 853 | SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(), |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 854 | MinAlign(Alignment, IncrementSize)); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 855 | } else { |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 856 | Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(), |
| 857 | SVOffset, NewLoadedVT,LD->isVolatile(), Alignment); |
| 858 | Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 859 | DAG.getConstant(IncrementSize, TLI.getPointerTy())); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 860 | Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(), |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 861 | SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(), |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 862 | MinAlign(Alignment, IncrementSize)); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 863 | } |
| 864 | |
| 865 | // aggregate the two parts |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 866 | SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy()); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 867 | SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount); |
| 868 | Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 869 | |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 870 | SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1), |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 871 | Hi.getValue(1)); |
| 872 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 873 | SDValue Ops[] = { Result, TF }; |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 874 | return DAG.getMergeValues(Ops, 2, dl); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 875 | } |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 876 | |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 877 | /// UnrollVectorOp - We know that the given vector has a legal type, however |
| 878 | /// the operation it performs is not legal and is an operation that we have |
| 879 | /// no way of lowering. "Unroll" the vector, splitting out the scalars and |
| 880 | /// operating on each element individually. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 881 | SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 882 | MVT VT = Op.getValueType(); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 883 | assert(isTypeLegal(VT) && |
| 884 | "Caller should expand or promote operands that are not legal!"); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 885 | assert(Op.getNode()->getNumValues() == 1 && |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 886 | "Can't unroll a vector with multiple results!"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 887 | unsigned NE = VT.getVectorNumElements(); |
| 888 | MVT EltVT = VT.getVectorElementType(); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 889 | DebugLoc dl = Op.getNode()->getDebugLoc(); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 890 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 891 | SmallVector<SDValue, 8> Scalars; |
| 892 | SmallVector<SDValue, 4> Operands(Op.getNumOperands()); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 893 | for (unsigned i = 0; i != NE; ++i) { |
| 894 | for (unsigned j = 0; j != Op.getNumOperands(); ++j) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 895 | SDValue Operand = Op.getOperand(j); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 896 | MVT OperandVT = Operand.getValueType(); |
| 897 | if (OperandVT.isVector()) { |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 898 | // A vector operand; extract a single element. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 899 | MVT OperandEltVT = OperandVT.getVectorElementType(); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 900 | Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 901 | OperandEltVT, |
| 902 | Operand, |
| 903 | DAG.getConstant(i, MVT::i32)); |
| 904 | } else { |
| 905 | // A scalar operand; just use it as is. |
| 906 | Operands[j] = Operand; |
| 907 | } |
| 908 | } |
Mon P Wang | e9f1015 | 2008-12-09 05:46:39 +0000 | [diff] [blame] | 909 | |
| 910 | switch (Op.getOpcode()) { |
| 911 | default: |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 912 | Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT, |
Mon P Wang | e9f1015 | 2008-12-09 05:46:39 +0000 | [diff] [blame] | 913 | &Operands[0], Operands.size())); |
| 914 | break; |
| 915 | case ISD::SHL: |
| 916 | case ISD::SRA: |
| 917 | case ISD::SRL: |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 918 | case ISD::ROTL: |
| 919 | case ISD::ROTR: |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 920 | Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT, Operands[0], |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 921 | DAG.getShiftAmountOperand(Operands[1]))); |
Mon P Wang | e9f1015 | 2008-12-09 05:46:39 +0000 | [diff] [blame] | 922 | break; |
| 923 | } |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 924 | } |
| 925 | |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 926 | return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Scalars[0], Scalars.size()); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 927 | } |
| 928 | |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 929 | /// GetFPLibCall - Return the right libcall for the given floating point type. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 930 | static RTLIB::Libcall GetFPLibCall(MVT VT, |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 931 | RTLIB::Libcall Call_F32, |
| 932 | RTLIB::Libcall Call_F64, |
| 933 | RTLIB::Libcall Call_F80, |
| 934 | RTLIB::Libcall Call_PPCF128) { |
| 935 | return |
| 936 | VT == MVT::f32 ? Call_F32 : |
| 937 | VT == MVT::f64 ? Call_F64 : |
| 938 | VT == MVT::f80 ? Call_F80 : |
| 939 | VT == MVT::ppcf128 ? Call_PPCF128 : |
| 940 | RTLIB::UNKNOWN_LIBCALL; |
| 941 | } |
| 942 | |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 943 | /// PerformInsertVectorEltInMemory - Some target cannot handle a variable |
| 944 | /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it |
| 945 | /// is necessary to spill the vector being inserted into to memory, perform |
| 946 | /// the insert there, and then read the result back. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 947 | SDValue SelectionDAGLegalize:: |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 948 | PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx, |
| 949 | DebugLoc dl) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 950 | SDValue Tmp1 = Vec; |
| 951 | SDValue Tmp2 = Val; |
| 952 | SDValue Tmp3 = Idx; |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 953 | |
| 954 | // If the target doesn't support this, we have to spill the input vector |
| 955 | // to a temporary stack slot, update the element, then reload it. This is |
| 956 | // badness. We could also load the value into a vector register (either |
| 957 | // with a "move to register" or "extload into register" instruction, then |
| 958 | // permute it into place, if the idx is a constant and if the idx is |
| 959 | // supported by the target. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 960 | MVT VT = Tmp1.getValueType(); |
| 961 | MVT EltVT = VT.getVectorElementType(); |
| 962 | MVT IdxVT = Tmp3.getValueType(); |
| 963 | MVT PtrVT = TLI.getPointerTy(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 964 | SDValue StackPtr = DAG.CreateStackTemporary(VT); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 965 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 966 | int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex(); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 967 | |
| 968 | // Store the vector. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 969 | SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr, |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 970 | PseudoSourceValue::getFixedStack(SPFI), 0); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 971 | |
| 972 | // Truncate or zero extend offset to target pointer type. |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 973 | unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND; |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 974 | Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 975 | // Add the offset to the index. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 976 | unsigned EltSize = EltVT.getSizeInBits()/8; |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 977 | Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT)); |
| 978 | SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 979 | // Store the scalar value. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 980 | Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 981 | PseudoSourceValue::getFixedStack(SPFI), 0, EltVT); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 982 | // Load the updated vector. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 983 | return DAG.getLoad(VT, dl, Ch, StackPtr, |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 984 | PseudoSourceValue::getFixedStack(SPFI), 0); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 985 | } |
| 986 | |
Mon P Wang | e9f1015 | 2008-12-09 05:46:39 +0000 | [diff] [blame] | 987 | |
Dan Gohman | a346615 | 2007-07-13 20:14:11 +0000 | [diff] [blame] | 988 | /// LegalizeOp - We know that the specified value has a legal type, and |
| 989 | /// that its operands are legal. Now ensure that the operation itself |
| 990 | /// is legal, recursively ensuring that the operands' operations remain |
| 991 | /// legal. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 992 | SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) { |
Chris Lattner | 09ec1b0 | 2007-08-25 01:00:22 +0000 | [diff] [blame] | 993 | if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes. |
| 994 | return Op; |
| 995 | |
Chris Lattner | c9c60f6 | 2005-08-24 16:35:28 +0000 | [diff] [blame] | 996 | assert(isTypeLegal(Op.getValueType()) && |
Chris Lattner | e3304a3 | 2005-01-08 20:35:13 +0000 | [diff] [blame] | 997 | "Caller should expand or promote operands that are not legal!"); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 998 | SDNode *Node = Op.getNode(); |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 999 | DebugLoc dl = Node->getDebugLoc(); |
Chris Lattner | e3304a3 | 2005-01-08 20:35:13 +0000 | [diff] [blame] | 1000 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1001 | // If this operation defines any values that cannot be represented in a |
Chris Lattner | e3304a3 | 2005-01-08 20:35:13 +0000 | [diff] [blame] | 1002 | // register on this target, make sure to expand or promote them. |
Chris Lattner | 45982da | 2005-05-12 16:53:42 +0000 | [diff] [blame] | 1003 | if (Node->getNumValues() > 1) { |
| 1004 | for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 1005 | if (getTypeAction(Node->getValueType(i)) != Legal) { |
| 1006 | HandleOp(Op.getValue(i)); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1007 | assert(LegalizedNodes.count(Op) && |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 1008 | "Handling didn't add legal operands!"); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 1009 | return LegalizedNodes[Op]; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1010 | } |
| 1011 | } |
| 1012 | |
Chris Lattner | 45982da | 2005-05-12 16:53:42 +0000 | [diff] [blame] | 1013 | // Note that LegalizeOp may be reentered even from single-use nodes, which |
| 1014 | // means that we always must cache transformed nodes. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1015 | DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op); |
Chris Lattner | e1bd822 | 2005-01-11 05:57:22 +0000 | [diff] [blame] | 1016 | if (I != LegalizedNodes.end()) return I->second; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1017 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1018 | SDValue Tmp1, Tmp2, Tmp3, Tmp4; |
| 1019 | SDValue Result = Op; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1020 | bool isCustom = false; |
| 1021 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1022 | switch (Node->getOpcode()) { |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 1023 | case ISD::FrameIndex: |
| 1024 | case ISD::EntryToken: |
| 1025 | case ISD::Register: |
| 1026 | case ISD::BasicBlock: |
| 1027 | case ISD::TargetFrameIndex: |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1028 | case ISD::TargetJumpTable: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 1029 | case ISD::TargetConstant: |
Chris Lattner | 3181a77 | 2006-01-29 06:26:56 +0000 | [diff] [blame] | 1030 | case ISD::TargetConstantFP: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 1031 | case ISD::TargetConstantPool: |
| 1032 | case ISD::TargetGlobalAddress: |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 1033 | case ISD::TargetGlobalTLSAddress: |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 1034 | case ISD::TargetExternalSymbol: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 1035 | case ISD::VALUETYPE: |
| 1036 | case ISD::SRCVALUE: |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 1037 | case ISD::MEMOPERAND: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 1038 | case ISD::CONDCODE: |
Duncan Sands | 276dcbd | 2008-03-21 09:14:45 +0000 | [diff] [blame] | 1039 | case ISD::ARG_FLAGS: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 1040 | // Primitives must all be legal. |
Duncan Sands | a7c97a7 | 2007-10-16 09:07:20 +0000 | [diff] [blame] | 1041 | assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) && |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 1042 | "This must be legal!"); |
| 1043 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1044 | default: |
Chris Lattner | d73cc5d | 2005-05-14 06:34:48 +0000 | [diff] [blame] | 1045 | if (Node->getOpcode() >= ISD::BUILTIN_OP_END) { |
| 1046 | // If this is a target node, legalize it by legalizing the operands then |
| 1047 | // passing it through. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1048 | SmallVector<SDValue, 8> Ops; |
Chris Lattner | c5d7d7c | 2006-05-17 18:00:08 +0000 | [diff] [blame] | 1049 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) |
Chris Lattner | d73cc5d | 2005-05-14 06:34:48 +0000 | [diff] [blame] | 1050 | Ops.push_back(LegalizeOp(Node->getOperand(i))); |
Chris Lattner | c5d7d7c | 2006-05-17 18:00:08 +0000 | [diff] [blame] | 1051 | |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1052 | Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size()); |
Chris Lattner | d73cc5d | 2005-05-14 06:34:48 +0000 | [diff] [blame] | 1053 | |
| 1054 | for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) |
| 1055 | AddLegalizedOperand(Op.getValue(i), Result.getValue(i)); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 1056 | return Result.getValue(Op.getResNo()); |
Chris Lattner | d73cc5d | 2005-05-14 06:34:48 +0000 | [diff] [blame] | 1057 | } |
| 1058 | // Otherwise this is an unhandled builtin node. splat. |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 1059 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 1060 | cerr << "NODE: "; Node->dump(&DAG); cerr << "\n"; |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 1061 | #endif |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1062 | assert(0 && "Do not know how to legalize this operator!"); |
| 1063 | abort(); |
Lauro Ramos Venancio | 0d3b678 | 2007-04-20 23:02:39 +0000 | [diff] [blame] | 1064 | case ISD::GLOBAL_OFFSET_TABLE: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1065 | case ISD::GlobalAddress: |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 1066 | case ISD::GlobalTLSAddress: |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 1067 | case ISD::ExternalSymbol: |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1068 | case ISD::ConstantPool: |
| 1069 | case ISD::JumpTable: // Nothing to do. |
Chris Lattner | 0c8fbe3 | 2005-11-17 06:41:44 +0000 | [diff] [blame] | 1070 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
| 1071 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 1072 | case TargetLowering::Custom: |
| 1073 | Tmp1 = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1074 | if (Tmp1.getNode()) Result = Tmp1; |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 1075 | // 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] | 1076 | case TargetLowering::Legal: |
Chris Lattner | 0c8fbe3 | 2005-11-17 06:41:44 +0000 | [diff] [blame] | 1077 | break; |
| 1078 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1079 | break; |
Nate Begeman | bcc5f36 | 2007-01-29 22:58:52 +0000 | [diff] [blame] | 1080 | case ISD::FRAMEADDR: |
| 1081 | case ISD::RETURNADDR: |
| 1082 | // The only option for these nodes is to custom lower them. If the target |
| 1083 | // does not custom lower them, then return zero. |
| 1084 | Tmp1 = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1085 | if (Tmp1.getNode()) |
Nate Begeman | bcc5f36 | 2007-01-29 22:58:52 +0000 | [diff] [blame] | 1086 | Result = Tmp1; |
| 1087 | else |
| 1088 | Result = DAG.getConstant(0, TLI.getPointerTy()); |
| 1089 | break; |
Anton Korobeynikov | 055c544 | 2007-08-29 23:18:48 +0000 | [diff] [blame] | 1090 | case ISD::FRAME_TO_ARGS_OFFSET: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1091 | MVT VT = Node->getValueType(0); |
Anton Korobeynikov | 066f7b4 | 2007-08-29 19:28:29 +0000 | [diff] [blame] | 1092 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 1093 | default: assert(0 && "This action is not supported yet!"); |
| 1094 | case TargetLowering::Custom: |
| 1095 | Result = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1096 | if (Result.getNode()) break; |
Anton Korobeynikov | 066f7b4 | 2007-08-29 19:28:29 +0000 | [diff] [blame] | 1097 | // Fall Thru |
| 1098 | case TargetLowering::Legal: |
| 1099 | Result = DAG.getConstant(0, VT); |
| 1100 | break; |
| 1101 | } |
Anton Korobeynikov | 055c544 | 2007-08-29 23:18:48 +0000 | [diff] [blame] | 1102 | } |
Anton Korobeynikov | 066f7b4 | 2007-08-29 19:28:29 +0000 | [diff] [blame] | 1103 | break; |
Jim Laskey | 2bc210d | 2007-02-22 15:37:19 +0000 | [diff] [blame] | 1104 | case ISD::EXCEPTIONADDR: { |
| 1105 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1106 | MVT VT = Node->getValueType(0); |
Jim Laskey | 2bc210d | 2007-02-22 15:37:19 +0000 | [diff] [blame] | 1107 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 1108 | default: assert(0 && "This action is not supported yet!"); |
| 1109 | case TargetLowering::Expand: { |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 1110 | unsigned Reg = TLI.getExceptionAddressRegister(); |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 1111 | Result = DAG.getCopyFromReg(Tmp1, Reg, VT); |
Jim Laskey | 2bc210d | 2007-02-22 15:37:19 +0000 | [diff] [blame] | 1112 | } |
| 1113 | break; |
| 1114 | case TargetLowering::Custom: |
| 1115 | Result = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1116 | if (Result.getNode()) break; |
Jim Laskey | 2bc210d | 2007-02-22 15:37:19 +0000 | [diff] [blame] | 1117 | // Fall Thru |
Chris Lattner | eb7f34f | 2007-04-27 17:12:52 +0000 | [diff] [blame] | 1118 | case TargetLowering::Legal: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1119 | SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 }; |
Duncan Sands | 4bdcb61 | 2008-07-02 17:40:58 +0000 | [diff] [blame] | 1120 | Result = DAG.getMergeValues(Ops, 2); |
Jim Laskey | 2bc210d | 2007-02-22 15:37:19 +0000 | [diff] [blame] | 1121 | break; |
| 1122 | } |
| 1123 | } |
Chris Lattner | eb7f34f | 2007-04-27 17:12:52 +0000 | [diff] [blame] | 1124 | } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1125 | if (Result.getNode()->getNumValues() == 1) break; |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 1126 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1127 | assert(Result.getNode()->getNumValues() == 2 && |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 1128 | "Cannot return more than two values!"); |
| 1129 | |
| 1130 | // Since we produced two values, make sure to remember that we |
| 1131 | // legalized both of them. |
| 1132 | Tmp1 = LegalizeOp(Result); |
| 1133 | Tmp2 = LegalizeOp(Result.getValue(1)); |
| 1134 | AddLegalizedOperand(Op.getValue(0), Tmp1); |
| 1135 | AddLegalizedOperand(Op.getValue(1), Tmp2); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 1136 | return Op.getResNo() ? Tmp2 : Tmp1; |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 1137 | case ISD::EHSELECTION: { |
| 1138 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 1139 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1140 | MVT VT = Node->getValueType(0); |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 1141 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 1142 | default: assert(0 && "This action is not supported yet!"); |
| 1143 | case TargetLowering::Expand: { |
| 1144 | unsigned Reg = TLI.getExceptionSelectorRegister(); |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 1145 | Result = DAG.getCopyFromReg(Tmp2, Reg, VT); |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 1146 | } |
| 1147 | break; |
| 1148 | case TargetLowering::Custom: |
| 1149 | Result = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1150 | if (Result.getNode()) break; |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 1151 | // Fall Thru |
Chris Lattner | eb7f34f | 2007-04-27 17:12:52 +0000 | [diff] [blame] | 1152 | case TargetLowering::Legal: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1153 | SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 }; |
Duncan Sands | 4bdcb61 | 2008-07-02 17:40:58 +0000 | [diff] [blame] | 1154 | Result = DAG.getMergeValues(Ops, 2); |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 1155 | break; |
| 1156 | } |
| 1157 | } |
Chris Lattner | eb7f34f | 2007-04-27 17:12:52 +0000 | [diff] [blame] | 1158 | } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1159 | if (Result.getNode()->getNumValues() == 1) break; |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 1160 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1161 | assert(Result.getNode()->getNumValues() == 2 && |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 1162 | "Cannot return more than two values!"); |
| 1163 | |
| 1164 | // Since we produced two values, make sure to remember that we |
| 1165 | // legalized both of them. |
| 1166 | Tmp1 = LegalizeOp(Result); |
| 1167 | Tmp2 = LegalizeOp(Result.getValue(1)); |
| 1168 | AddLegalizedOperand(Op.getValue(0), Tmp1); |
| 1169 | AddLegalizedOperand(Op.getValue(1), Tmp2); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 1170 | return Op.getResNo() ? Tmp2 : Tmp1; |
Nick Lewycky | 6d4b711 | 2007-07-14 15:11:14 +0000 | [diff] [blame] | 1171 | case ISD::EH_RETURN: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1172 | MVT VT = Node->getValueType(0); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 1173 | // The only "good" option for this node is to custom lower it. |
| 1174 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 1175 | default: assert(0 && "This action is not supported at all!"); |
| 1176 | case TargetLowering::Custom: |
| 1177 | Result = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1178 | if (Result.getNode()) break; |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 1179 | // Fall Thru |
| 1180 | case TargetLowering::Legal: |
| 1181 | // Target does not know, how to lower this, lower to noop |
| 1182 | Result = LegalizeOp(Node->getOperand(0)); |
| 1183 | break; |
| 1184 | } |
Nick Lewycky | 6d4b711 | 2007-07-14 15:11:14 +0000 | [diff] [blame] | 1185 | } |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 1186 | break; |
Chris Lattner | 08951a3 | 2005-09-02 01:15:01 +0000 | [diff] [blame] | 1187 | case ISD::AssertSext: |
| 1188 | case ISD::AssertZext: |
| 1189 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1190 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | 08951a3 | 2005-09-02 01:15:01 +0000 | [diff] [blame] | 1191 | break; |
Chris Lattner | 308575b | 2005-11-20 22:56:56 +0000 | [diff] [blame] | 1192 | case ISD::MERGE_VALUES: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1193 | // Legalize eliminates MERGE_VALUES nodes. |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 1194 | Result = Node->getOperand(Op.getResNo()); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1195 | break; |
Chris Lattner | 69a5215 | 2005-01-14 22:38:01 +0000 | [diff] [blame] | 1196 | case ISD::CopyFromReg: |
| 1197 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 1198 | Result = Op.getValue(0); |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 1199 | if (Node->getNumValues() == 2) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1200 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 1201 | } else { |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 1202 | assert(Node->getNumValues() == 3 && "Invalid copyfromreg!"); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1203 | if (Node->getNumOperands() == 3) { |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 1204 | Tmp2 = LegalizeOp(Node->getOperand(2)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1205 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2); |
| 1206 | } else { |
| 1207 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
| 1208 | } |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 1209 | AddLegalizedOperand(Op.getValue(2), Result.getValue(2)); |
| 1210 | } |
Chris Lattner | 13c184d | 2005-01-28 06:27:38 +0000 | [diff] [blame] | 1211 | // Since CopyFromReg produces two values, make sure to remember that we |
| 1212 | // legalized both of them. |
| 1213 | AddLegalizedOperand(Op.getValue(0), Result); |
| 1214 | AddLegalizedOperand(Op.getValue(1), Result.getValue(1)); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 1215 | return Result.getValue(Op.getResNo()); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 1216 | case ISD::UNDEF: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1217 | MVT VT = Op.getValueType(); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 1218 | switch (TLI.getOperationAction(ISD::UNDEF, VT)) { |
Nate Begeman | ea19cd5 | 2005-04-02 00:41:14 +0000 | [diff] [blame] | 1219 | default: assert(0 && "This action is not supported yet!"); |
| 1220 | case TargetLowering::Expand: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1221 | if (VT.isInteger()) |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 1222 | Result = DAG.getConstant(0, VT); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1223 | else if (VT.isFloatingPoint()) |
| 1224 | Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)), |
Dale Johannesen | f41db21 | 2007-09-26 17:26:49 +0000 | [diff] [blame] | 1225 | VT); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 1226 | else |
| 1227 | assert(0 && "Unknown value type!"); |
| 1228 | break; |
Nate Begeman | ea19cd5 | 2005-04-02 00:41:14 +0000 | [diff] [blame] | 1229 | case TargetLowering::Legal: |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 1230 | break; |
| 1231 | } |
| 1232 | break; |
| 1233 | } |
Chris Lattner | d1f04d4 | 2006-03-24 02:26:29 +0000 | [diff] [blame] | 1234 | |
Chris Lattner | 48b61a7 | 2006-03-28 00:40:33 +0000 | [diff] [blame] | 1235 | case ISD::INTRINSIC_W_CHAIN: |
| 1236 | case ISD::INTRINSIC_WO_CHAIN: |
| 1237 | case ISD::INTRINSIC_VOID: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1238 | SmallVector<SDValue, 8> Ops; |
Chris Lattner | d1f04d4 | 2006-03-24 02:26:29 +0000 | [diff] [blame] | 1239 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) |
| 1240 | Ops.push_back(LegalizeOp(Node->getOperand(i))); |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1241 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 10d7fa6 | 2006-03-26 09:12:51 +0000 | [diff] [blame] | 1242 | |
| 1243 | // Allow the target to custom lower its intrinsics if it wants to. |
Chris Lattner | 48b61a7 | 2006-03-28 00:40:33 +0000 | [diff] [blame] | 1244 | if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) == |
Chris Lattner | 10d7fa6 | 2006-03-26 09:12:51 +0000 | [diff] [blame] | 1245 | TargetLowering::Custom) { |
| 1246 | Tmp3 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1247 | if (Tmp3.getNode()) Result = Tmp3; |
Chris Lattner | 13fc2f1 | 2006-03-27 20:28:29 +0000 | [diff] [blame] | 1248 | } |
| 1249 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1250 | if (Result.getNode()->getNumValues() == 1) break; |
Chris Lattner | 13fc2f1 | 2006-03-27 20:28:29 +0000 | [diff] [blame] | 1251 | |
| 1252 | // Must have return value and chain result. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1253 | assert(Result.getNode()->getNumValues() == 2 && |
Chris Lattner | 13fc2f1 | 2006-03-27 20:28:29 +0000 | [diff] [blame] | 1254 | "Cannot return more than two values!"); |
| 1255 | |
| 1256 | // Since loads produce two values, make sure to remember that we |
| 1257 | // legalized both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1258 | AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0)); |
| 1259 | AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1)); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 1260 | return Result.getValue(Op.getResNo()); |
Chris Lattner | d1f04d4 | 2006-03-24 02:26:29 +0000 | [diff] [blame] | 1261 | } |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1262 | |
Dan Gohman | 7f46020 | 2008-06-30 20:59:49 +0000 | [diff] [blame] | 1263 | case ISD::DBG_STOPPOINT: |
| 1264 | assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!"); |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1265 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain. |
| 1266 | |
Dan Gohman | 7f46020 | 2008-06-30 20:59:49 +0000 | [diff] [blame] | 1267 | switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) { |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1268 | case TargetLowering::Promote: |
| 1269 | default: assert(0 && "This action is not supported yet!"); |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1270 | case TargetLowering::Expand: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 1271 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 1272 | bool useDEBUG_LOC = TLI.isOperationLegalOrCustom(ISD::DEBUG_LOC, |
| 1273 | MVT::Other); |
| 1274 | bool useLABEL = TLI.isOperationLegalOrCustom(ISD::DBG_LABEL, MVT::Other); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1275 | |
Dan Gohman | 7f46020 | 2008-06-30 20:59:49 +0000 | [diff] [blame] | 1276 | const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node); |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 1277 | GlobalVariable *CU_GV = cast<GlobalVariable>(DSP->getCompileUnit()); |
| 1278 | if (DW && (useDEBUG_LOC || useLABEL) && !CU_GV->isDeclaration()) { |
| 1279 | DICompileUnit CU(cast<GlobalVariable>(DSP->getCompileUnit())); |
| 1280 | unsigned SrcFile = DW->RecordSource(CU.getDirectory(), |
| 1281 | CU.getFilename()); |
| 1282 | |
Dan Gohman | 7f46020 | 2008-06-30 20:59:49 +0000 | [diff] [blame] | 1283 | unsigned Line = DSP->getLine(); |
| 1284 | unsigned Col = DSP->getColumn(); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1285 | |
| 1286 | if (useDEBUG_LOC) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1287 | SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32), |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1288 | DAG.getConstant(Col, MVT::i32), |
| 1289 | DAG.getConstant(SrcFile, MVT::i32) }; |
| 1290 | Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops, 4); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1291 | } else { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 1292 | unsigned ID = DW->RecordSourceLine(Line, Col, SrcFile); |
Dan Gohman | 4406604 | 2008-07-01 00:05:16 +0000 | [diff] [blame] | 1293 | Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1294 | } |
Jim Laskey | e81aecb | 2005-12-21 20:51:37 +0000 | [diff] [blame] | 1295 | } else { |
| 1296 | Result = Tmp1; // chain |
| 1297 | } |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1298 | break; |
Chris Lattner | e773673 | 2005-12-18 23:54:29 +0000 | [diff] [blame] | 1299 | } |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1300 | case TargetLowering::Legal: { |
| 1301 | LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType()); |
| 1302 | if (Action == Legal && Tmp1 == Node->getOperand(0)) |
| 1303 | break; |
| 1304 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1305 | SmallVector<SDValue, 8> Ops; |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1306 | Ops.push_back(Tmp1); |
| 1307 | if (Action == Legal) { |
| 1308 | Ops.push_back(Node->getOperand(1)); // line # must be legal. |
| 1309 | Ops.push_back(Node->getOperand(2)); // col # must be legal. |
| 1310 | } else { |
| 1311 | // Otherwise promote them. |
| 1312 | Ops.push_back(PromoteOp(Node->getOperand(1))); |
| 1313 | Ops.push_back(PromoteOp(Node->getOperand(2))); |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1314 | } |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1315 | Ops.push_back(Node->getOperand(3)); // filename must be legal. |
| 1316 | Ops.push_back(Node->getOperand(4)); // working dir # must be legal. |
| 1317 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1318 | break; |
| 1319 | } |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1320 | } |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1321 | break; |
Evan Cheng | a844bde | 2008-02-02 04:07:54 +0000 | [diff] [blame] | 1322 | |
| 1323 | case ISD::DECLARE: |
| 1324 | assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!"); |
| 1325 | switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) { |
| 1326 | default: assert(0 && "This action is not supported yet!"); |
| 1327 | case TargetLowering::Legal: |
| 1328 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1329 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address. |
| 1330 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable. |
| 1331 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
| 1332 | break; |
Chris Lattner | e07415d | 2008-02-28 05:53:40 +0000 | [diff] [blame] | 1333 | case TargetLowering::Expand: |
| 1334 | Result = LegalizeOp(Node->getOperand(0)); |
| 1335 | break; |
Evan Cheng | a844bde | 2008-02-02 04:07:54 +0000 | [diff] [blame] | 1336 | } |
| 1337 | break; |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1338 | |
| 1339 | case ISD::DEBUG_LOC: |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1340 | assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!"); |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1341 | switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) { |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1342 | default: assert(0 && "This action is not supported yet!"); |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1343 | case TargetLowering::Legal: { |
| 1344 | LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType()); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1345 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1346 | if (Action == Legal && Tmp1 == Node->getOperand(0)) |
| 1347 | break; |
| 1348 | if (Action == Legal) { |
| 1349 | Tmp2 = Node->getOperand(1); |
| 1350 | Tmp3 = Node->getOperand(2); |
| 1351 | Tmp4 = Node->getOperand(3); |
| 1352 | } else { |
| 1353 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #. |
| 1354 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #. |
| 1355 | Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id. |
| 1356 | } |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1357 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1358 | break; |
| 1359 | } |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 1360 | } |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1361 | break; |
| 1362 | |
Dan Gohman | 4406604 | 2008-07-01 00:05:16 +0000 | [diff] [blame] | 1363 | case ISD::DBG_LABEL: |
| 1364 | case ISD::EH_LABEL: |
| 1365 | assert(Node->getNumOperands() == 1 && "Invalid LABEL node!"); |
| 1366 | switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) { |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1367 | default: assert(0 && "This action is not supported yet!"); |
| 1368 | case TargetLowering::Legal: |
| 1369 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Dan Gohman | 4406604 | 2008-07-01 00:05:16 +0000 | [diff] [blame] | 1370 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1371 | break; |
Chris Lattner | a9569f1 | 2007-03-03 19:21:38 +0000 | [diff] [blame] | 1372 | case TargetLowering::Expand: |
| 1373 | Result = LegalizeOp(Node->getOperand(0)); |
| 1374 | break; |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1375 | } |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 1376 | break; |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1377 | |
Evan Cheng | 27b7db5 | 2008-03-08 00:58:38 +0000 | [diff] [blame] | 1378 | case ISD::PREFETCH: |
| 1379 | assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!"); |
| 1380 | switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) { |
| 1381 | default: assert(0 && "This action is not supported yet!"); |
| 1382 | case TargetLowering::Legal: |
| 1383 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1384 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address. |
| 1385 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier. |
| 1386 | Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier. |
| 1387 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4); |
| 1388 | break; |
| 1389 | case TargetLowering::Expand: |
| 1390 | // It's a noop. |
| 1391 | Result = LegalizeOp(Node->getOperand(0)); |
| 1392 | break; |
| 1393 | } |
| 1394 | break; |
| 1395 | |
Andrew Lenharth | 22c5c1b | 2008-02-16 01:24:58 +0000 | [diff] [blame] | 1396 | case ISD::MEMBARRIER: { |
| 1397 | assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!"); |
Andrew Lenharth | d497d9f | 2008-02-16 14:46:26 +0000 | [diff] [blame] | 1398 | switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) { |
| 1399 | default: assert(0 && "This action is not supported yet!"); |
| 1400 | case TargetLowering::Legal: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1401 | SDValue Ops[6]; |
Andrew Lenharth | d497d9f | 2008-02-16 14:46:26 +0000 | [diff] [blame] | 1402 | Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Duncan Sands | e90a615 | 2008-02-27 08:53:44 +0000 | [diff] [blame] | 1403 | for (int x = 1; x < 6; ++x) { |
| 1404 | Ops[x] = Node->getOperand(x); |
| 1405 | if (!isTypeLegal(Ops[x].getValueType())) |
| 1406 | Ops[x] = PromoteOp(Ops[x]); |
| 1407 | } |
Andrew Lenharth | d497d9f | 2008-02-16 14:46:26 +0000 | [diff] [blame] | 1408 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6); |
| 1409 | break; |
| 1410 | } |
| 1411 | case TargetLowering::Expand: |
| 1412 | //There is no libgcc call for this op |
| 1413 | Result = Node->getOperand(0); // Noop |
| 1414 | break; |
| 1415 | } |
Andrew Lenharth | 22c5c1b | 2008-02-16 01:24:58 +0000 | [diff] [blame] | 1416 | break; |
| 1417 | } |
| 1418 | |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 1419 | case ISD::ATOMIC_CMP_SWAP: { |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 1420 | unsigned int num_operands = 4; |
| 1421 | assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1422 | SDValue Ops[4]; |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 1423 | for (unsigned int x = 0; x < num_operands; ++x) |
Andrew Lenharth | 26ed869 | 2008-03-01 21:52:34 +0000 | [diff] [blame] | 1424 | Ops[x] = LegalizeOp(Node->getOperand(x)); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 1425 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands); |
| 1426 | |
| 1427 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
| 1428 | default: assert(0 && "This action is not supported yet!"); |
| 1429 | case TargetLowering::Custom: |
| 1430 | Result = TLI.LowerOperation(Result, DAG); |
| 1431 | break; |
| 1432 | case TargetLowering::Legal: |
| 1433 | break; |
| 1434 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1435 | AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0)); |
| 1436 | AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1)); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 1437 | return Result.getValue(Op.getResNo()); |
Duncan Sands | 126d907 | 2008-07-04 11:47:58 +0000 | [diff] [blame] | 1438 | } |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 1439 | case ISD::ATOMIC_LOAD_ADD: |
| 1440 | case ISD::ATOMIC_LOAD_SUB: |
| 1441 | case ISD::ATOMIC_LOAD_AND: |
| 1442 | case ISD::ATOMIC_LOAD_OR: |
| 1443 | case ISD::ATOMIC_LOAD_XOR: |
| 1444 | case ISD::ATOMIC_LOAD_NAND: |
| 1445 | case ISD::ATOMIC_LOAD_MIN: |
| 1446 | case ISD::ATOMIC_LOAD_MAX: |
| 1447 | case ISD::ATOMIC_LOAD_UMIN: |
| 1448 | case ISD::ATOMIC_LOAD_UMAX: |
| 1449 | case ISD::ATOMIC_SWAP: { |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 1450 | unsigned int num_operands = 3; |
| 1451 | assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1452 | SDValue Ops[3]; |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 1453 | for (unsigned int x = 0; x < num_operands; ++x) |
| 1454 | Ops[x] = LegalizeOp(Node->getOperand(x)); |
| 1455 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands); |
Duncan Sands | 126d907 | 2008-07-04 11:47:58 +0000 | [diff] [blame] | 1456 | |
Andrew Lenharth | 26ed869 | 2008-03-01 21:52:34 +0000 | [diff] [blame] | 1457 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 1458 | default: assert(0 && "This action is not supported yet!"); |
Andrew Lenharth | 26ed869 | 2008-03-01 21:52:34 +0000 | [diff] [blame] | 1459 | case TargetLowering::Custom: |
| 1460 | Result = TLI.LowerOperation(Result, DAG); |
| 1461 | break; |
| 1462 | case TargetLowering::Legal: |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 1463 | break; |
| 1464 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1465 | AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0)); |
| 1466 | AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1)); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 1467 | return Result.getValue(Op.getResNo()); |
Duncan Sands | 126d907 | 2008-07-04 11:47:58 +0000 | [diff] [blame] | 1468 | } |
Scott Michel | c1513d2 | 2007-08-08 23:23:31 +0000 | [diff] [blame] | 1469 | case ISD::Constant: { |
| 1470 | ConstantSDNode *CN = cast<ConstantSDNode>(Node); |
| 1471 | unsigned opAction = |
| 1472 | TLI.getOperationAction(ISD::Constant, CN->getValueType(0)); |
| 1473 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1474 | // We know we don't need to expand constants here, constants only have one |
| 1475 | // value and we check that it is fine above. |
| 1476 | |
Scott Michel | c1513d2 | 2007-08-08 23:23:31 +0000 | [diff] [blame] | 1477 | if (opAction == TargetLowering::Custom) { |
| 1478 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1479 | if (Tmp1.getNode()) |
Scott Michel | c1513d2 | 2007-08-08 23:23:31 +0000 | [diff] [blame] | 1480 | Result = Tmp1; |
| 1481 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1482 | break; |
Scott Michel | c1513d2 | 2007-08-08 23:23:31 +0000 | [diff] [blame] | 1483 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1484 | case ISD::ConstantFP: { |
| 1485 | // Spill FP immediates to the constant pool if the target cannot directly |
| 1486 | // codegen them. Targets often have some immediate values that can be |
| 1487 | // efficiently generated into an FP register without a load. We explicitly |
| 1488 | // leave these constants as ConstantFP nodes for the target to deal with. |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1489 | ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node); |
| 1490 | |
Chris Lattner | 3181a77 | 2006-01-29 06:26:56 +0000 | [diff] [blame] | 1491 | switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) { |
| 1492 | default: assert(0 && "This action is not supported yet!"); |
Nate Begeman | e179584 | 2008-02-14 08:57:00 +0000 | [diff] [blame] | 1493 | case TargetLowering::Legal: |
| 1494 | break; |
Chris Lattner | 3181a77 | 2006-01-29 06:26:56 +0000 | [diff] [blame] | 1495 | case TargetLowering::Custom: |
| 1496 | Tmp3 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1497 | if (Tmp3.getNode()) { |
Chris Lattner | 3181a77 | 2006-01-29 06:26:56 +0000 | [diff] [blame] | 1498 | Result = Tmp3; |
| 1499 | break; |
| 1500 | } |
| 1501 | // FALLTHROUGH |
Nate Begeman | e179584 | 2008-02-14 08:57:00 +0000 | [diff] [blame] | 1502 | case TargetLowering::Expand: { |
| 1503 | // Check to see if this FP immediate is already legal. |
| 1504 | bool isLegal = false; |
| 1505 | for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(), |
| 1506 | E = TLI.legal_fpimm_end(); I != E; ++I) { |
| 1507 | if (CFP->isExactlyValue(*I)) { |
| 1508 | isLegal = true; |
| 1509 | break; |
| 1510 | } |
| 1511 | } |
| 1512 | // If this is a legal constant, turn it into a TargetConstantFP node. |
| 1513 | if (isLegal) |
| 1514 | break; |
Evan Cheng | 279101e | 2006-12-12 22:19:28 +0000 | [diff] [blame] | 1515 | Result = ExpandConstantFP(CFP, true, DAG, TLI); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1516 | } |
Nate Begeman | e179584 | 2008-02-14 08:57:00 +0000 | [diff] [blame] | 1517 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1518 | break; |
| 1519 | } |
Chris Lattner | 040c11c | 2005-11-09 18:48:57 +0000 | [diff] [blame] | 1520 | case ISD::TokenFactor: |
| 1521 | if (Node->getNumOperands() == 2) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1522 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 1523 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1524 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 1525 | } else if (Node->getNumOperands() == 3) { |
| 1526 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 1527 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1528 | Tmp3 = LegalizeOp(Node->getOperand(2)); |
| 1529 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | 040c11c | 2005-11-09 18:48:57 +0000 | [diff] [blame] | 1530 | } else { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1531 | SmallVector<SDValue, 8> Ops; |
Chris Lattner | 040c11c | 2005-11-09 18:48:57 +0000 | [diff] [blame] | 1532 | // Legalize the operands. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1533 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) |
| 1534 | Ops.push_back(LegalizeOp(Node->getOperand(i))); |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1535 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | a385e9b | 2005-01-13 17:59:25 +0000 | [diff] [blame] | 1536 | } |
Chris Lattner | a385e9b | 2005-01-13 17:59:25 +0000 | [diff] [blame] | 1537 | break; |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 1538 | |
| 1539 | case ISD::FORMAL_ARGUMENTS: |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 1540 | case ISD::CALL: |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 1541 | // The only option for this is to custom lower it. |
Chris Lattner | b248e16 | 2006-05-17 17:55:45 +0000 | [diff] [blame] | 1542 | Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1543 | assert(Tmp3.getNode() && "Target didn't custom lower this node!"); |
Dale Johannesen | 0ea0356 | 2008-03-05 19:14:03 +0000 | [diff] [blame] | 1544 | // A call within a calling sequence must be legalized to something |
| 1545 | // other than the normal CALLSEQ_END. Violating this gets Legalize |
| 1546 | // into an infinite loop. |
| 1547 | assert ((!IsLegalizingCall || |
| 1548 | Node->getOpcode() != ISD::CALL || |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1549 | Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) && |
Dale Johannesen | 0ea0356 | 2008-03-05 19:14:03 +0000 | [diff] [blame] | 1550 | "Nested CALLSEQ_START..CALLSEQ_END not supported."); |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1551 | |
| 1552 | // The number of incoming and outgoing values should match; unless the final |
| 1553 | // outgoing value is a flag. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1554 | assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() || |
| 1555 | (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 && |
| 1556 | Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) == |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1557 | MVT::Flag)) && |
Chris Lattner | b248e16 | 2006-05-17 17:55:45 +0000 | [diff] [blame] | 1558 | "Lowering call/formal_arguments produced unexpected # results!"); |
Chris Lattner | e2e4173 | 2006-05-16 05:49:56 +0000 | [diff] [blame] | 1559 | |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 1560 | // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to |
Chris Lattner | e2e4173 | 2006-05-16 05:49:56 +0000 | [diff] [blame] | 1561 | // remember that we legalized all of them, so it doesn't get relegalized. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1562 | for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) { |
| 1563 | if (Tmp3.getNode()->getValueType(i) == MVT::Flag) |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1564 | continue; |
Chris Lattner | b248e16 | 2006-05-17 17:55:45 +0000 | [diff] [blame] | 1565 | Tmp1 = LegalizeOp(Tmp3.getValue(i)); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 1566 | if (Op.getResNo() == i) |
Chris Lattner | e2e4173 | 2006-05-16 05:49:56 +0000 | [diff] [blame] | 1567 | Tmp2 = Tmp1; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1568 | AddLegalizedOperand(SDValue(Node, i), Tmp1); |
Chris Lattner | e2e4173 | 2006-05-16 05:49:56 +0000 | [diff] [blame] | 1569 | } |
| 1570 | return Tmp2; |
Christopher Lamb | 557c363 | 2007-07-26 07:34:40 +0000 | [diff] [blame] | 1571 | case ISD::EXTRACT_SUBREG: { |
| 1572 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 1573 | ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1)); |
| 1574 | assert(idx && "Operand must be a constant"); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1575 | Tmp2 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0)); |
Christopher Lamb | 557c363 | 2007-07-26 07:34:40 +0000 | [diff] [blame] | 1576 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 1577 | } |
| 1578 | break; |
| 1579 | case ISD::INSERT_SUBREG: { |
| 1580 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 1581 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1582 | ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2)); |
| 1583 | assert(idx && "Operand must be a constant"); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1584 | Tmp3 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0)); |
Christopher Lamb | 557c363 | 2007-07-26 07:34:40 +0000 | [diff] [blame] | 1585 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
| 1586 | } |
| 1587 | break; |
Chris Lattner | b2827b0 | 2006-03-19 00:52:58 +0000 | [diff] [blame] | 1588 | case ISD::BUILD_VECTOR: |
| 1589 | switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) { |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1590 | default: assert(0 && "This action is not supported yet!"); |
| 1591 | case TargetLowering::Custom: |
| 1592 | Tmp3 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1593 | if (Tmp3.getNode()) { |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1594 | Result = Tmp3; |
| 1595 | break; |
| 1596 | } |
| 1597 | // FALLTHROUGH |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1598 | case TargetLowering::Expand: |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1599 | Result = ExpandBUILD_VECTOR(Result.getNode()); |
Chris Lattner | b2827b0 | 2006-03-19 00:52:58 +0000 | [diff] [blame] | 1600 | break; |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1601 | } |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1602 | break; |
| 1603 | case ISD::INSERT_VECTOR_ELT: |
| 1604 | Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1605 | Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1606 | |
| 1607 | // The type of the value to insert may not be legal, even though the vector |
| 1608 | // type is legal. Legalize/Promote accordingly. We do not handle Expand |
| 1609 | // here. |
| 1610 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
| 1611 | default: assert(0 && "Cannot expand insert element operand"); |
| 1612 | case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break; |
| 1613 | case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break; |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 1614 | case Expand: |
| 1615 | // FIXME: An alternative would be to check to see if the target is not |
| 1616 | // going to custom lower this operation, we could bitcast to half elt |
| 1617 | // width and perform two inserts at that width, if that is legal. |
| 1618 | Tmp2 = Node->getOperand(1); |
| 1619 | break; |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1620 | } |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1621 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
| 1622 | |
| 1623 | switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT, |
| 1624 | Node->getValueType(0))) { |
| 1625 | default: assert(0 && "This action is not supported yet!"); |
| 1626 | case TargetLowering::Legal: |
| 1627 | break; |
| 1628 | case TargetLowering::Custom: |
Nate Begeman | 2281a99 | 2008-01-05 20:47:37 +0000 | [diff] [blame] | 1629 | Tmp4 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1630 | if (Tmp4.getNode()) { |
Nate Begeman | 2281a99 | 2008-01-05 20:47:37 +0000 | [diff] [blame] | 1631 | Result = Tmp4; |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1632 | break; |
| 1633 | } |
| 1634 | // FALLTHROUGH |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 1635 | case TargetLowering::Promote: |
| 1636 | // Fall thru for vector case |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1637 | case TargetLowering::Expand: { |
Chris Lattner | 8d5a894 | 2006-04-17 19:21:01 +0000 | [diff] [blame] | 1638 | // If the insert index is a constant, codegen this as a scalar_to_vector, |
| 1639 | // then a shuffle that inserts it into the right position in the vector. |
| 1640 | if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) { |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1641 | // SCALAR_TO_VECTOR requires that the type of the value being inserted |
| 1642 | // match the element type of the vector being created. |
| 1643 | if (Tmp2.getValueType() == |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1644 | Op.getValueType().getVectorElementType()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1645 | SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1646 | Tmp1.getValueType(), Tmp2); |
| 1647 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1648 | unsigned NumElts = Tmp1.getValueType().getVectorNumElements(); |
| 1649 | MVT ShufMaskVT = |
| 1650 | MVT::getIntVectorWithNumElements(NumElts); |
| 1651 | MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType(); |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1652 | |
| 1653 | // We generate a shuffle of InVec and ScVec, so the shuffle mask |
| 1654 | // should be 0,1,2,3,4,5... with the appropriate element replaced with |
| 1655 | // elt 0 of the RHS. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1656 | SmallVector<SDValue, 8> ShufOps; |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1657 | for (unsigned i = 0; i != NumElts; ++i) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1658 | if (i != InsertPos->getZExtValue()) |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1659 | ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT)); |
| 1660 | else |
| 1661 | ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT)); |
| 1662 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1663 | SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT, |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1664 | &ShufOps[0], ShufOps.size()); |
| 1665 | |
| 1666 | Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(), |
| 1667 | Tmp1, ScVec, ShufMask); |
| 1668 | Result = LegalizeOp(Result); |
| 1669 | break; |
Chris Lattner | 8d5a894 | 2006-04-17 19:21:01 +0000 | [diff] [blame] | 1670 | } |
Chris Lattner | 8d5a894 | 2006-04-17 19:21:01 +0000 | [diff] [blame] | 1671 | } |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 1672 | Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl); |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1673 | break; |
| 1674 | } |
| 1675 | } |
| 1676 | break; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1677 | case ISD::SCALAR_TO_VECTOR: |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1678 | if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) { |
| 1679 | Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node)); |
| 1680 | break; |
| 1681 | } |
| 1682 | |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1683 | Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal |
| 1684 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 1685 | switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR, |
| 1686 | Node->getValueType(0))) { |
| 1687 | default: assert(0 && "This action is not supported yet!"); |
| 1688 | case TargetLowering::Legal: |
| 1689 | break; |
Chris Lattner | 4d3abee | 2006-03-19 06:47:21 +0000 | [diff] [blame] | 1690 | case TargetLowering::Custom: |
| 1691 | Tmp3 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1692 | if (Tmp3.getNode()) { |
Chris Lattner | 4d3abee | 2006-03-19 06:47:21 +0000 | [diff] [blame] | 1693 | Result = Tmp3; |
| 1694 | break; |
| 1695 | } |
| 1696 | // FALLTHROUGH |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1697 | case TargetLowering::Expand: |
| 1698 | Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node)); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1699 | break; |
| 1700 | } |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1701 | break; |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 1702 | case ISD::VECTOR_SHUFFLE: |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 1703 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors, |
| 1704 | Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask. |
| 1705 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
| 1706 | |
| 1707 | // Allow targets to custom lower the SHUFFLEs they support. |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1708 | switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) { |
| 1709 | default: assert(0 && "Unknown operation action!"); |
| 1710 | case TargetLowering::Legal: |
| 1711 | assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) && |
| 1712 | "vector shuffle should not be created if not legal!"); |
| 1713 | break; |
| 1714 | case TargetLowering::Custom: |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1715 | Tmp3 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1716 | if (Tmp3.getNode()) { |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1717 | Result = Tmp3; |
| 1718 | break; |
| 1719 | } |
| 1720 | // FALLTHROUGH |
| 1721 | case TargetLowering::Expand: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1722 | MVT VT = Node->getValueType(0); |
| 1723 | MVT EltVT = VT.getVectorElementType(); |
| 1724 | MVT PtrVT = TLI.getPointerTy(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1725 | SDValue Mask = Node->getOperand(2); |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1726 | unsigned NumElems = Mask.getNumOperands(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1727 | SmallVector<SDValue,8> Ops; |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1728 | for (unsigned i = 0; i != NumElems; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1729 | SDValue Arg = Mask.getOperand(i); |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1730 | if (Arg.getOpcode() == ISD::UNDEF) { |
| 1731 | Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT)); |
| 1732 | } else { |
| 1733 | assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!"); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1734 | unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue(); |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1735 | if (Idx < NumElems) |
| 1736 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, |
| 1737 | DAG.getConstant(Idx, PtrVT))); |
| 1738 | else |
| 1739 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, |
| 1740 | DAG.getConstant(Idx - NumElems, PtrVT))); |
| 1741 | } |
| 1742 | } |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1743 | Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size()); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1744 | break; |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1745 | } |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1746 | case TargetLowering::Promote: { |
| 1747 | // Change base type to a different vector type. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1748 | MVT OVT = Node->getValueType(0); |
| 1749 | MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1750 | |
| 1751 | // Cast the two input vectors. |
| 1752 | Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1); |
| 1753 | Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2); |
| 1754 | |
| 1755 | // Convert the shuffle mask to the right # elements. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1756 | Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1757 | assert(Tmp3.getNode() && "Shuffle not legal?"); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1758 | Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3); |
| 1759 | Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result); |
| 1760 | break; |
| 1761 | } |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 1762 | } |
| 1763 | break; |
Chris Lattner | 384504c | 2006-03-21 20:44:12 +0000 | [diff] [blame] | 1764 | |
| 1765 | case ISD::EXTRACT_VECTOR_ELT: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1766 | Tmp1 = Node->getOperand(0); |
Chris Lattner | 384504c | 2006-03-21 20:44:12 +0000 | [diff] [blame] | 1767 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1768 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1769 | Result = ExpandEXTRACT_VECTOR_ELT(Result); |
Chris Lattner | 384504c | 2006-03-21 20:44:12 +0000 | [diff] [blame] | 1770 | break; |
| 1771 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1772 | case ISD::EXTRACT_SUBVECTOR: |
| 1773 | Tmp1 = Node->getOperand(0); |
| 1774 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1775 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 1776 | Result = ExpandEXTRACT_SUBVECTOR(Result); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 1777 | break; |
| 1778 | |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 1779 | case ISD::CONCAT_VECTORS: { |
| 1780 | // Use extract/insert/build vector for now. We might try to be |
| 1781 | // more clever later. |
| 1782 | MVT PtrVT = TLI.getPointerTy(); |
| 1783 | SmallVector<SDValue, 8> Ops; |
| 1784 | unsigned NumOperands = Node->getNumOperands(); |
| 1785 | for (unsigned i=0; i < NumOperands; ++i) { |
| 1786 | SDValue SubOp = Node->getOperand(i); |
| 1787 | MVT VVT = SubOp.getNode()->getValueType(0); |
| 1788 | MVT EltVT = VVT.getVectorElementType(); |
| 1789 | unsigned NumSubElem = VVT.getVectorNumElements(); |
| 1790 | for (unsigned j=0; j < NumSubElem; ++j) { |
| 1791 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, SubOp, |
| 1792 | DAG.getConstant(j, PtrVT))); |
| 1793 | } |
| 1794 | } |
| 1795 | return LegalizeOp(DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0), |
| 1796 | &Ops[0], Ops.size())); |
| 1797 | } |
| 1798 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1799 | case ISD::CALLSEQ_START: { |
| 1800 | SDNode *CallEnd = FindCallEndFromCallStart(Node); |
| 1801 | |
| 1802 | // Recursively Legalize all of the inputs of the call end that do not lead |
| 1803 | // to this call start. This ensures that any libcalls that need be inserted |
| 1804 | // are inserted *before* the CALLSEQ_START. |
Chris Lattner | 00755df | 2007-02-04 00:27:56 +0000 | [diff] [blame] | 1805 | {SmallPtrSet<SDNode*, 32> NodesLeadingTo; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1806 | for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1807 | LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node, |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 1808 | NodesLeadingTo); |
| 1809 | } |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1810 | |
| 1811 | // Now that we legalized all of the inputs (which may have inserted |
| 1812 | // libcalls) create the new CALLSEQ_START node. |
| 1813 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1814 | |
| 1815 | // Merge in the last call, to ensure that this call start after the last |
| 1816 | // call ended. |
Chris Lattner | c5d7d7c | 2006-05-17 18:00:08 +0000 | [diff] [blame] | 1817 | if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) { |
Chris Lattner | b248e16 | 2006-05-17 17:55:45 +0000 | [diff] [blame] | 1818 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1819 | Tmp1 = LegalizeOp(Tmp1); |
| 1820 | } |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1821 | |
| 1822 | // Do not try to legalize the target-specific arguments (#1+). |
| 1823 | if (Tmp1 != Node->getOperand(0)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1824 | SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end()); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1825 | Ops[0] = Tmp1; |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1826 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1827 | } |
| 1828 | |
| 1829 | // Remember that the CALLSEQ_START is legalized. |
Chris Lattner | 4b653a0 | 2006-02-14 00:55:02 +0000 | [diff] [blame] | 1830 | AddLegalizedOperand(Op.getValue(0), Result); |
| 1831 | if (Node->getNumValues() == 2) // If this has a flag result, remember it. |
| 1832 | AddLegalizedOperand(Op.getValue(1), Result.getValue(1)); |
| 1833 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1834 | // Now that the callseq_start and all of the non-call nodes above this call |
| 1835 | // sequence have been legalized, legalize the call itself. During this |
| 1836 | // process, no libcalls can/will be inserted, guaranteeing that no calls |
| 1837 | // can overlap. |
| 1838 | assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!"); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1839 | // Note that we are selecting this call! |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1840 | LastCALLSEQ_END = SDValue(CallEnd, 0); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1841 | IsLegalizingCall = true; |
| 1842 | |
| 1843 | // Legalize the call, starting from the CALLSEQ_END. |
| 1844 | LegalizeOp(LastCALLSEQ_END); |
| 1845 | assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!"); |
| 1846 | return Result; |
| 1847 | } |
Chris Lattner | 16cd04d | 2005-05-12 23:24:06 +0000 | [diff] [blame] | 1848 | case ISD::CALLSEQ_END: |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1849 | // If the CALLSEQ_START node hasn't been legalized first, legalize it. This |
| 1850 | // will cause this node to be legalized as well as handling libcalls right. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1851 | if (LastCALLSEQ_END.getNode() != Node) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1852 | LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0)); |
| 1853 | DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1854 | assert(I != LegalizedNodes.end() && |
| 1855 | "Legalizing the call start should have legalized this node!"); |
| 1856 | return I->second; |
| 1857 | } |
| 1858 | |
| 1859 | // Otherwise, the call start has been legalized and everything is going |
| 1860 | // according to plan. Just legalize ourselves normally here. |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1861 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1862 | // Do not try to legalize the target-specific arguments (#1+), except for |
| 1863 | // an optional flag input. |
| 1864 | if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){ |
| 1865 | if (Tmp1 != Node->getOperand(0)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1866 | SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end()); |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1867 | Ops[0] = Tmp1; |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1868 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1869 | } |
| 1870 | } else { |
| 1871 | Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1)); |
| 1872 | if (Tmp1 != Node->getOperand(0) || |
| 1873 | Tmp2 != Node->getOperand(Node->getNumOperands()-1)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1874 | SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end()); |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1875 | Ops[0] = Tmp1; |
| 1876 | Ops.back() = Tmp2; |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1877 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1878 | } |
Chris Lattner | 6a54289 | 2006-01-24 05:48:21 +0000 | [diff] [blame] | 1879 | } |
Chris Lattner | 4b653a0 | 2006-02-14 00:55:02 +0000 | [diff] [blame] | 1880 | assert(IsLegalizingCall && "Call sequence imbalance between start/end?"); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1881 | // This finishes up call legalization. |
| 1882 | IsLegalizingCall = false; |
Chris Lattner | 4b653a0 | 2006-02-14 00:55:02 +0000 | [diff] [blame] | 1883 | |
| 1884 | // 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] | 1885 | AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0)); |
Chris Lattner | 4b653a0 | 2006-02-14 00:55:02 +0000 | [diff] [blame] | 1886 | if (Node->getNumValues() == 2) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1887 | AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1)); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 1888 | return Result.getValue(Op.getResNo()); |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1889 | case ISD::DYNAMIC_STACKALLOC: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1890 | MVT VT = Node->getValueType(0); |
Chris Lattner | fa404e8 | 2005-01-09 19:03:49 +0000 | [diff] [blame] | 1891 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1892 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size. |
| 1893 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1894 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | fa404e8 | 2005-01-09 19:03:49 +0000 | [diff] [blame] | 1895 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1896 | Tmp1 = Result.getValue(0); |
Chris Lattner | 5f65229 | 2006-01-15 08:43:08 +0000 | [diff] [blame] | 1897 | Tmp2 = Result.getValue(1); |
Evan Cheng | 61bbbab | 2007-08-16 23:50:06 +0000 | [diff] [blame] | 1898 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1899 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1900 | case TargetLowering::Expand: { |
| 1901 | unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore(); |
| 1902 | assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and" |
| 1903 | " not tell us which reg is the stack pointer!"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1904 | SDValue Chain = Tmp1.getOperand(0); |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1905 | |
| 1906 | // Chain the dynamic stack allocation so that it doesn't modify the stack |
| 1907 | // pointer when other instructions are using the stack. |
Chris Lattner | e563bbc | 2008-10-11 22:08:30 +0000 | [diff] [blame] | 1908 | Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true)); |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1909 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1910 | SDValue Size = Tmp2.getOperand(1); |
| 1911 | SDValue SP = DAG.getCopyFromReg(Chain, SPReg, VT); |
Evan Cheng | 61bbbab | 2007-08-16 23:50:06 +0000 | [diff] [blame] | 1912 | Chain = SP.getValue(1); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1913 | unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue(); |
Evan Cheng | 61bbbab | 2007-08-16 23:50:06 +0000 | [diff] [blame] | 1914 | unsigned StackAlign = |
| 1915 | TLI.getTargetMachine().getFrameInfo()->getStackAlignment(); |
| 1916 | if (Align > StackAlign) |
Evan Cheng | 3e20bba | 2007-08-17 18:02:22 +0000 | [diff] [blame] | 1917 | SP = DAG.getNode(ISD::AND, VT, SP, |
| 1918 | DAG.getConstant(-(uint64_t)Align, VT)); |
Evan Cheng | 61bbbab | 2007-08-16 23:50:06 +0000 | [diff] [blame] | 1919 | Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1920 | Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain |
| 1921 | |
Chris Lattner | e563bbc | 2008-10-11 22:08:30 +0000 | [diff] [blame] | 1922 | Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true), |
| 1923 | DAG.getIntPtrConstant(0, true), SDValue()); |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1924 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1925 | Tmp1 = LegalizeOp(Tmp1); |
| 1926 | Tmp2 = LegalizeOp(Tmp2); |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1927 | break; |
| 1928 | } |
| 1929 | case TargetLowering::Custom: |
Chris Lattner | 5f65229 | 2006-01-15 08:43:08 +0000 | [diff] [blame] | 1930 | Tmp3 = TLI.LowerOperation(Tmp1, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1931 | if (Tmp3.getNode()) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1932 | Tmp1 = LegalizeOp(Tmp3); |
| 1933 | Tmp2 = LegalizeOp(Tmp3.getValue(1)); |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1934 | } |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1935 | break; |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1936 | case TargetLowering::Legal: |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1937 | break; |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1938 | } |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1939 | // Since this op produce two values, make sure to remember that we |
| 1940 | // legalized both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1941 | AddLegalizedOperand(SDValue(Node, 0), Tmp1); |
| 1942 | AddLegalizedOperand(SDValue(Node, 1), Tmp2); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 1943 | return Op.getResNo() ? Tmp2 : Tmp1; |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1944 | } |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1945 | case ISD::INLINEASM: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1946 | SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end()); |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1947 | bool Changed = false; |
| 1948 | // Legalize all of the operands of the inline asm, in case they are nodes |
| 1949 | // that need to be expanded or something. Note we skip the asm string and |
| 1950 | // all of the TargetConstant flags. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1951 | SDValue Op = LegalizeOp(Ops[0]); |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1952 | Changed = Op != Ops[0]; |
| 1953 | Ops[0] = Op; |
| 1954 | |
| 1955 | bool HasInFlag = Ops.back().getValueType() == MVT::Flag; |
| 1956 | for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1957 | unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getZExtValue() >> 3; |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1958 | for (++i; NumVals; ++i, --NumVals) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1959 | SDValue Op = LegalizeOp(Ops[i]); |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1960 | if (Op != Ops[i]) { |
| 1961 | Changed = true; |
| 1962 | Ops[i] = Op; |
| 1963 | } |
| 1964 | } |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1965 | } |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1966 | |
| 1967 | if (HasInFlag) { |
| 1968 | Op = LegalizeOp(Ops.back()); |
| 1969 | Changed |= Op != Ops.back(); |
| 1970 | Ops.back() = Op; |
| 1971 | } |
| 1972 | |
| 1973 | if (Changed) |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1974 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1975 | |
| 1976 | // 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] | 1977 | AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0)); |
| 1978 | AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1)); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 1979 | return Result.getValue(Op.getResNo()); |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1980 | } |
Chris Lattner | c7af179 | 2005-01-07 22:12:08 +0000 | [diff] [blame] | 1981 | case ISD::BR: |
| 1982 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1983 | // Ensure that libcalls are emitted before a branch. |
| 1984 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1985 | Tmp1 = LegalizeOp(Tmp1); |
| 1986 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 1987 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1988 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | c7af179 | 2005-01-07 22:12:08 +0000 | [diff] [blame] | 1989 | break; |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1990 | case ISD::BRIND: |
| 1991 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1992 | // Ensure that libcalls are emitted before a branch. |
| 1993 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1994 | Tmp1 = LegalizeOp(Tmp1); |
| 1995 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 1996 | |
| 1997 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
| 1998 | default: assert(0 && "Indirect target must be legal type (pointer)!"); |
| 1999 | case Legal: |
| 2000 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition. |
| 2001 | break; |
| 2002 | } |
| 2003 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 2004 | break; |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 2005 | case ISD::BR_JT: |
| 2006 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 2007 | // Ensure that libcalls are emitted before a branch. |
| 2008 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 2009 | Tmp1 = LegalizeOp(Tmp1); |
| 2010 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 2011 | |
| 2012 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node. |
| 2013 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
| 2014 | |
| 2015 | switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) { |
| 2016 | default: assert(0 && "This action is not supported yet!"); |
| 2017 | case TargetLowering::Legal: break; |
| 2018 | case TargetLowering::Custom: |
| 2019 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2020 | if (Tmp1.getNode()) Result = Tmp1; |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 2021 | break; |
| 2022 | case TargetLowering::Expand: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2023 | SDValue Chain = Result.getOperand(0); |
| 2024 | SDValue Table = Result.getOperand(1); |
| 2025 | SDValue Index = Result.getOperand(2); |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 2026 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2027 | MVT PTy = TLI.getPointerTy(); |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 2028 | MachineFunction &MF = DAG.getMachineFunction(); |
| 2029 | unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize(); |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 2030 | Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2031 | SDValue Addr = DAG.getNode(ISD::ADD, PTy, Index, Table); |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 2032 | |
Duncan Sands | 712f7b3 | 2008-12-12 08:13:38 +0000 | [diff] [blame] | 2033 | MVT MemVT = MVT::getIntegerVT(EntrySize * 8); |
| 2034 | SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, PTy, Chain, Addr, |
| 2035 | PseudoSourceValue::getJumpTable(), 0, MemVT); |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 2036 | Addr = LD; |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 2037 | if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) { |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 2038 | // For PIC, the sequence is: |
| 2039 | // BRIND(load(Jumptable + index) + RelocBase) |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 2040 | // RelocBase can be JumpTable, GOT or some sort of global base. |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 2041 | Addr = DAG.getNode(ISD::ADD, PTy, Addr, |
| 2042 | TLI.getPICJumpTableRelocBase(Table, DAG)); |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 2043 | } |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 2044 | Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr); |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 2045 | } |
| 2046 | } |
| 2047 | break; |
Chris Lattner | c18ae4c | 2005-01-07 08:19:42 +0000 | [diff] [blame] | 2048 | case ISD::BRCOND: |
| 2049 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 2050 | // Ensure that libcalls are emitted before a return. |
| 2051 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 2052 | Tmp1 = LegalizeOp(Tmp1); |
| 2053 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 2054 | |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 2055 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
| 2056 | case Expand: assert(0 && "It's impossible to expand bools"); |
| 2057 | case Legal: |
| 2058 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition. |
| 2059 | break; |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2060 | case Promote: { |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 2061 | Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition. |
Chris Lattner | f990817 | 2006-11-27 04:39:56 +0000 | [diff] [blame] | 2062 | |
| 2063 | // The top bits of the promoted condition are not necessarily zero, ensure |
| 2064 | // that the value is properly zero extended. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2065 | unsigned BitWidth = Tmp2.getValueSizeInBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2066 | if (!DAG.MaskedValueIsZero(Tmp2, |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2067 | APInt::getHighBitsSet(BitWidth, BitWidth-1))) |
Chris Lattner | f990817 | 2006-11-27 04:39:56 +0000 | [diff] [blame] | 2068 | Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1); |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 2069 | break; |
| 2070 | } |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2071 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2072 | |
| 2073 | // Basic block destination (Op#2) is always legal. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2074 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
Nate Begeman | 7cbd525 | 2005-08-16 19:49:35 +0000 | [diff] [blame] | 2075 | |
| 2076 | switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) { |
| 2077 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2078 | case TargetLowering::Legal: break; |
| 2079 | case TargetLowering::Custom: |
| 2080 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2081 | if (Tmp1.getNode()) Result = Tmp1; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2082 | break; |
Nate Begeman | 7cbd525 | 2005-08-16 19:49:35 +0000 | [diff] [blame] | 2083 | case TargetLowering::Expand: |
| 2084 | // Expand brcond's setcc into its constituent parts and create a BR_CC |
| 2085 | // Node. |
| 2086 | if (Tmp2.getOpcode() == ISD::SETCC) { |
| 2087 | Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2), |
| 2088 | Tmp2.getOperand(0), Tmp2.getOperand(1), |
| 2089 | Node->getOperand(2)); |
| 2090 | } else { |
| 2091 | Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, |
| 2092 | DAG.getCondCode(ISD::SETNE), Tmp2, |
| 2093 | DAG.getConstant(0, Tmp2.getValueType()), |
| 2094 | Node->getOperand(2)); |
| 2095 | } |
| 2096 | break; |
Nate Begeman | 7cbd525 | 2005-08-16 19:49:35 +0000 | [diff] [blame] | 2097 | } |
| 2098 | break; |
| 2099 | case ISD::BR_CC: |
| 2100 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 2101 | // Ensure that libcalls are emitted before a branch. |
| 2102 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 2103 | Tmp1 = LegalizeOp(Tmp1); |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 2104 | Tmp2 = Node->getOperand(2); // LHS |
| 2105 | Tmp3 = Node->getOperand(3); // RHS |
| 2106 | Tmp4 = Node->getOperand(1); // CC |
| 2107 | |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 2108 | LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()), |
| 2109 | Tmp2, Tmp3, Tmp4, dl); |
Evan Cheng | 722cb36 | 2006-12-18 22:55:34 +0000 | [diff] [blame] | 2110 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 2111 | |
Evan Cheng | 7f04268 | 2008-10-15 02:05:31 +0000 | [diff] [blame] | 2112 | // If we didn't get both a LHS and RHS back from LegalizeSetCC, |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 2113 | // the LHS is a legal SETCC itself. In this case, we need to compare |
| 2114 | // the result against zero to select between true and false values. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2115 | if (Tmp3.getNode() == 0) { |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 2116 | Tmp3 = DAG.getConstant(0, Tmp2.getValueType()); |
| 2117 | Tmp4 = DAG.getCondCode(ISD::SETNE); |
Chris Lattner | 181b7a3 | 2005-12-17 23:46:46 +0000 | [diff] [blame] | 2118 | } |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 2119 | |
| 2120 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3, |
| 2121 | Node->getOperand(4)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2122 | |
Chris Lattner | 181b7a3 | 2005-12-17 23:46:46 +0000 | [diff] [blame] | 2123 | switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) { |
| 2124 | default: assert(0 && "Unexpected action for BR_CC!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2125 | case TargetLowering::Legal: break; |
| 2126 | case TargetLowering::Custom: |
| 2127 | Tmp4 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2128 | if (Tmp4.getNode()) Result = Tmp4; |
Chris Lattner | 181b7a3 | 2005-12-17 23:46:46 +0000 | [diff] [blame] | 2129 | break; |
Nate Begeman | 7cbd525 | 2005-08-16 19:49:35 +0000 | [diff] [blame] | 2130 | } |
Chris Lattner | c18ae4c | 2005-01-07 08:19:42 +0000 | [diff] [blame] | 2131 | break; |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 2132 | case ISD::LOAD: { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2133 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
| 2134 | Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain. |
| 2135 | Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer. |
Andrew Lenharth | 2d86ea2 | 2005-04-27 20:10:01 +0000 | [diff] [blame] | 2136 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2137 | ISD::LoadExtType ExtType = LD->getExtensionType(); |
| 2138 | if (ExtType == ISD::NON_EXTLOAD) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2139 | MVT VT = Node->getValueType(0); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2140 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset()); |
| 2141 | Tmp3 = Result.getValue(0); |
| 2142 | Tmp4 = Result.getValue(1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2143 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2144 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 2145 | default: assert(0 && "This action is not supported yet!"); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2146 | case TargetLowering::Legal: |
| 2147 | // If this is an unaligned load and the target doesn't support it, |
| 2148 | // expand it. |
| 2149 | if (!TLI.allowsUnalignedMemoryAccesses()) { |
| 2150 | unsigned ABIAlignment = TLI.getTargetData()-> |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2151 | getABITypeAlignment(LD->getMemoryVT().getTypeForMVT()); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2152 | if (LD->getAlignment() < ABIAlignment){ |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2153 | Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG, |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2154 | TLI); |
| 2155 | Tmp3 = Result.getOperand(0); |
| 2156 | Tmp4 = Result.getOperand(1); |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 2157 | Tmp3 = LegalizeOp(Tmp3); |
| 2158 | Tmp4 = LegalizeOp(Tmp4); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2159 | } |
| 2160 | } |
| 2161 | break; |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2162 | case TargetLowering::Custom: |
| 2163 | Tmp1 = TLI.LowerOperation(Tmp3, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2164 | if (Tmp1.getNode()) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2165 | Tmp3 = LegalizeOp(Tmp1); |
| 2166 | Tmp4 = LegalizeOp(Tmp1.getValue(1)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2167 | } |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2168 | break; |
| 2169 | case TargetLowering::Promote: { |
| 2170 | // Only promote a load of vector type to another. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2171 | assert(VT.isVector() && "Cannot promote this load!"); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2172 | // Change base type to a different vector type. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2173 | MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2174 | |
| 2175 | Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2176 | LD->getSrcValueOffset(), |
| 2177 | LD->isVolatile(), LD->getAlignment()); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2178 | Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1)); |
| 2179 | Tmp4 = LegalizeOp(Tmp1.getValue(1)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2180 | break; |
Andrew Lenharth | 9d416f7 | 2005-06-30 19:22:37 +0000 | [diff] [blame] | 2181 | } |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2182 | } |
| 2183 | // Since loads produce two values, make sure to remember that we |
| 2184 | // legalized both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2185 | AddLegalizedOperand(SDValue(Node, 0), Tmp3); |
| 2186 | AddLegalizedOperand(SDValue(Node, 1), Tmp4); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 2187 | return Op.getResNo() ? Tmp4 : Tmp3; |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2188 | } else { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2189 | MVT SrcVT = LD->getMemoryVT(); |
| 2190 | unsigned SrcWidth = SrcVT.getSizeInBits(); |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2191 | int SVOffset = LD->getSrcValueOffset(); |
| 2192 | unsigned Alignment = LD->getAlignment(); |
| 2193 | bool isVolatile = LD->isVolatile(); |
| 2194 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2195 | if (SrcWidth != SrcVT.getStoreSizeInBits() && |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2196 | // Some targets pretend to have an i1 loading operation, and actually |
| 2197 | // load an i8. This trick is correct for ZEXTLOAD because the top 7 |
| 2198 | // bits are guaranteed to be zero; it helps the optimizers understand |
| 2199 | // that these bits are zero. It is also useful for EXTLOAD, since it |
| 2200 | // tells the optimizers that those bits are undefined. It would be |
| 2201 | // nice to have an effective generic way of getting these benefits... |
| 2202 | // Until such a way is found, don't insist on promoting i1 here. |
| 2203 | (SrcVT != MVT::i1 || |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 2204 | TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) { |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2205 | // Promote to a byte-sized load if not loading an integral number of |
| 2206 | // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2207 | unsigned NewWidth = SrcVT.getStoreSizeInBits(); |
| 2208 | MVT NVT = MVT::getIntegerVT(NewWidth); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2209 | SDValue Ch; |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2210 | |
| 2211 | // The extra bits are guaranteed to be zero, since we stored them that |
| 2212 | // way. A zext load from NVT thus automatically gives zext from SrcVT. |
| 2213 | |
| 2214 | ISD::LoadExtType NewExtType = |
| 2215 | ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD; |
| 2216 | |
| 2217 | Result = DAG.getExtLoad(NewExtType, Node->getValueType(0), |
| 2218 | Tmp1, Tmp2, LD->getSrcValue(), SVOffset, |
| 2219 | NVT, isVolatile, Alignment); |
| 2220 | |
| 2221 | Ch = Result.getValue(1); // The chain. |
| 2222 | |
| 2223 | if (ExtType == ISD::SEXTLOAD) |
| 2224 | // Having the top bits zero doesn't help when sign extending. |
| 2225 | Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(), |
| 2226 | Result, DAG.getValueType(SrcVT)); |
| 2227 | else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType()) |
| 2228 | // All the top bits are guaranteed to be zero - inform the optimizers. |
| 2229 | Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result, |
| 2230 | DAG.getValueType(SrcVT)); |
| 2231 | |
| 2232 | Tmp1 = LegalizeOp(Result); |
| 2233 | Tmp2 = LegalizeOp(Ch); |
| 2234 | } else if (SrcWidth & (SrcWidth - 1)) { |
| 2235 | // 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] | 2236 | assert(SrcVT.isExtended() && !SrcVT.isVector() && |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2237 | "Unsupported extload!"); |
| 2238 | unsigned RoundWidth = 1 << Log2_32(SrcWidth); |
| 2239 | assert(RoundWidth < SrcWidth); |
| 2240 | unsigned ExtraWidth = SrcWidth - RoundWidth; |
| 2241 | assert(ExtraWidth < RoundWidth); |
| 2242 | assert(!(RoundWidth % 8) && !(ExtraWidth % 8) && |
| 2243 | "Load size not an integral number of bytes!"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2244 | MVT RoundVT = MVT::getIntegerVT(RoundWidth); |
| 2245 | MVT ExtraVT = MVT::getIntegerVT(ExtraWidth); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2246 | SDValue Lo, Hi, Ch; |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2247 | unsigned IncrementSize; |
| 2248 | |
| 2249 | if (TLI.isLittleEndian()) { |
| 2250 | // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16) |
| 2251 | // Load the bottom RoundWidth bits. |
| 2252 | Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2, |
| 2253 | LD->getSrcValue(), SVOffset, RoundVT, isVolatile, |
| 2254 | Alignment); |
| 2255 | |
| 2256 | // Load the remaining ExtraWidth bits. |
| 2257 | IncrementSize = RoundWidth / 8; |
| 2258 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
| 2259 | DAG.getIntPtrConstant(IncrementSize)); |
| 2260 | Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2, |
| 2261 | LD->getSrcValue(), SVOffset + IncrementSize, |
| 2262 | ExtraVT, isVolatile, |
| 2263 | MinAlign(Alignment, IncrementSize)); |
| 2264 | |
| 2265 | // Build a factor node to remember that this load is independent of the |
| 2266 | // other one. |
| 2267 | Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1), |
| 2268 | Hi.getValue(1)); |
| 2269 | |
| 2270 | // Move the top bits to the right place. |
| 2271 | Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi, |
| 2272 | DAG.getConstant(RoundWidth, TLI.getShiftAmountTy())); |
| 2273 | |
| 2274 | // Join the hi and lo parts. |
| 2275 | Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2276 | } else { |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2277 | // Big endian - avoid unaligned loads. |
| 2278 | // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8 |
| 2279 | // Load the top RoundWidth bits. |
| 2280 | Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2, |
| 2281 | LD->getSrcValue(), SVOffset, RoundVT, isVolatile, |
| 2282 | Alignment); |
| 2283 | |
| 2284 | // Load the remaining ExtraWidth bits. |
| 2285 | IncrementSize = RoundWidth / 8; |
| 2286 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
| 2287 | DAG.getIntPtrConstant(IncrementSize)); |
| 2288 | Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2, |
| 2289 | LD->getSrcValue(), SVOffset + IncrementSize, |
| 2290 | ExtraVT, isVolatile, |
| 2291 | MinAlign(Alignment, IncrementSize)); |
| 2292 | |
| 2293 | // Build a factor node to remember that this load is independent of the |
| 2294 | // other one. |
| 2295 | Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1), |
| 2296 | Hi.getValue(1)); |
| 2297 | |
| 2298 | // Move the top bits to the right place. |
| 2299 | Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi, |
| 2300 | DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy())); |
| 2301 | |
| 2302 | // Join the hi and lo parts. |
| 2303 | Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi); |
| 2304 | } |
| 2305 | |
| 2306 | Tmp1 = LegalizeOp(Result); |
| 2307 | Tmp2 = LegalizeOp(Ch); |
| 2308 | } else { |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 2309 | switch (TLI.getLoadExtAction(ExtType, SrcVT)) { |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2310 | default: assert(0 && "This action is not supported yet!"); |
| 2311 | case TargetLowering::Custom: |
| 2312 | isCustom = true; |
| 2313 | // FALLTHROUGH |
| 2314 | case TargetLowering::Legal: |
| 2315 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset()); |
| 2316 | Tmp1 = Result.getValue(0); |
| 2317 | Tmp2 = Result.getValue(1); |
| 2318 | |
| 2319 | if (isCustom) { |
| 2320 | Tmp3 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2321 | if (Tmp3.getNode()) { |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2322 | Tmp1 = LegalizeOp(Tmp3); |
| 2323 | Tmp2 = LegalizeOp(Tmp3.getValue(1)); |
| 2324 | } |
| 2325 | } else { |
| 2326 | // If this is an unaligned load and the target doesn't support it, |
| 2327 | // expand it. |
| 2328 | if (!TLI.allowsUnalignedMemoryAccesses()) { |
| 2329 | unsigned ABIAlignment = TLI.getTargetData()-> |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2330 | getABITypeAlignment(LD->getMemoryVT().getTypeForMVT()); |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2331 | if (LD->getAlignment() < ABIAlignment){ |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2332 | Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG, |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2333 | TLI); |
| 2334 | Tmp1 = Result.getOperand(0); |
| 2335 | Tmp2 = Result.getOperand(1); |
| 2336 | Tmp1 = LegalizeOp(Tmp1); |
| 2337 | Tmp2 = LegalizeOp(Tmp2); |
| 2338 | } |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2339 | } |
| 2340 | } |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2341 | break; |
| 2342 | case TargetLowering::Expand: |
| 2343 | // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND |
| 2344 | if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2345 | SDValue Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(), |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2346 | LD->getSrcValueOffset(), |
| 2347 | LD->isVolatile(), LD->getAlignment()); |
| 2348 | Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load); |
| 2349 | Tmp1 = LegalizeOp(Result); // Relegalize new nodes. |
| 2350 | Tmp2 = LegalizeOp(Load.getValue(1)); |
| 2351 | break; |
| 2352 | } |
| 2353 | assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!"); |
| 2354 | // Turn the unsupported load into an EXTLOAD followed by an explicit |
| 2355 | // zero/sign extend inreg. |
| 2356 | Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0), |
| 2357 | Tmp1, Tmp2, LD->getSrcValue(), |
| 2358 | LD->getSrcValueOffset(), SrcVT, |
| 2359 | LD->isVolatile(), LD->getAlignment()); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2360 | SDValue ValRes; |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2361 | if (ExtType == ISD::SEXTLOAD) |
| 2362 | ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(), |
| 2363 | Result, DAG.getValueType(SrcVT)); |
| 2364 | else |
| 2365 | ValRes = DAG.getZeroExtendInReg(Result, SrcVT); |
| 2366 | Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes. |
| 2367 | Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes. |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2368 | break; |
| 2369 | } |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2370 | } |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2371 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2372 | // Since loads produce two values, make sure to remember that we legalized |
| 2373 | // both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2374 | AddLegalizedOperand(SDValue(Node, 0), Tmp1); |
| 2375 | AddLegalizedOperand(SDValue(Node, 1), Tmp2); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 2376 | return Op.getResNo() ? Tmp2 : Tmp1; |
Chris Lattner | 01ff721 | 2005-04-10 22:54:25 +0000 | [diff] [blame] | 2377 | } |
Chris Lattner | 01ff721 | 2005-04-10 22:54:25 +0000 | [diff] [blame] | 2378 | } |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2379 | case ISD::EXTRACT_ELEMENT: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2380 | MVT OpTy = Node->getOperand(0).getValueType(); |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2381 | switch (getTypeAction(OpTy)) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2382 | default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!"); |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2383 | case Legal: |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2384 | if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) { |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2385 | // 1 -> Hi |
| 2386 | Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0), |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2387 | DAG.getConstant(OpTy.getSizeInBits()/2, |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2388 | TLI.getShiftAmountTy())); |
| 2389 | Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result); |
| 2390 | } else { |
| 2391 | // 0 -> Lo |
| 2392 | Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), |
| 2393 | Node->getOperand(0)); |
| 2394 | } |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2395 | break; |
| 2396 | case Expand: |
| 2397 | // Get both the low and high parts. |
| 2398 | ExpandOp(Node->getOperand(0), Tmp1, Tmp2); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2399 | if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2400 | Result = Tmp2; // 1 -> Hi |
| 2401 | else |
| 2402 | Result = Tmp1; // 0 -> Lo |
| 2403 | break; |
| 2404 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2405 | break; |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2406 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2407 | |
| 2408 | case ISD::CopyToReg: |
| 2409 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2410 | |
Chris Lattner | c9c60f6 | 2005-08-24 16:35:28 +0000 | [diff] [blame] | 2411 | assert(isTypeLegal(Node->getOperand(2).getValueType()) && |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 2412 | "Register type must be legal!"); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 2413 | // Legalize the incoming value (must be a legal type). |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 2414 | Tmp2 = LegalizeOp(Node->getOperand(2)); |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 2415 | if (Node->getNumValues() == 1) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2416 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 2417 | } else { |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 2418 | assert(Node->getNumValues() == 2 && "Unknown CopyToReg"); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2419 | if (Node->getNumOperands() == 4) { |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 2420 | Tmp3 = LegalizeOp(Node->getOperand(3)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2421 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2, |
| 2422 | Tmp3); |
| 2423 | } else { |
| 2424 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 2425 | } |
| 2426 | |
| 2427 | // Since this produces two values, make sure to remember that we legalized |
| 2428 | // both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2429 | AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0)); |
| 2430 | AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2431 | return Result; |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 2432 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2433 | break; |
| 2434 | |
| 2435 | case ISD::RET: |
| 2436 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 2437 | |
| 2438 | // Ensure that libcalls are emitted before a return. |
| 2439 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 2440 | Tmp1 = LegalizeOp(Tmp1); |
| 2441 | LastCALLSEQ_END = DAG.getEntryNode(); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2442 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2443 | switch (Node->getNumOperands()) { |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2444 | case 3: // ret val |
Evan Cheng | 98f8aeb | 2006-04-11 06:33:39 +0000 | [diff] [blame] | 2445 | Tmp2 = Node->getOperand(1); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2446 | Tmp3 = Node->getOperand(2); // Signness |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2447 | switch (getTypeAction(Tmp2.getValueType())) { |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2448 | case Legal: |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2449 | Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2450 | break; |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2451 | case Expand: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2452 | if (!Tmp2.getValueType().isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2453 | SDValue Lo, Hi; |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2454 | ExpandOp(Tmp2, Lo, Hi); |
Chris Lattner | edf2e8d | 2007-03-06 20:01:06 +0000 | [diff] [blame] | 2455 | |
| 2456 | // Big endian systems want the hi reg first. |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 2457 | if (TLI.isBigEndian()) |
Chris Lattner | edf2e8d | 2007-03-06 20:01:06 +0000 | [diff] [blame] | 2458 | std::swap(Lo, Hi); |
| 2459 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2460 | if (Hi.getNode()) |
Evan Cheng | 13acce3 | 2006-12-11 19:27:14 +0000 | [diff] [blame] | 2461 | Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3); |
| 2462 | else |
| 2463 | Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3); |
Chris Lattner | f921a51 | 2006-08-21 20:24:53 +0000 | [diff] [blame] | 2464 | Result = LegalizeOp(Result); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2465 | } else { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2466 | SDNode *InVal = Tmp2.getNode(); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 2467 | int InIx = Tmp2.getResNo(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2468 | unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements(); |
| 2469 | MVT EVT = InVal->getValueType(InIx).getVectorElementType(); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2470 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2471 | // Figure out if there is a simple type corresponding to this Vector |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 2472 | // type. If so, convert to the vector type. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2473 | MVT TVT = MVT::getVectorVT(EVT, NumElems); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2474 | if (TLI.isTypeLegal(TVT)) { |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 2475 | // Turn this into a return of the vector type. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2476 | Tmp2 = LegalizeOp(Tmp2); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2477 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2478 | } else if (NumElems == 1) { |
| 2479 | // Turn this into a return of the scalar type. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2480 | Tmp2 = ScalarizeVectorOp(Tmp2); |
| 2481 | Tmp2 = LegalizeOp(Tmp2); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2482 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | b49e52c | 2006-04-11 02:00:08 +0000 | [diff] [blame] | 2483 | |
| 2484 | // FIXME: Returns of gcc generic vectors smaller than a legal type |
| 2485 | // should be returned in integer registers! |
| 2486 | |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2487 | // The scalarized value type may not be legal, e.g. it might require |
| 2488 | // promotion or expansion. Relegalize the return. |
| 2489 | Result = LegalizeOp(Result); |
| 2490 | } else { |
Chris Lattner | b49e52c | 2006-04-11 02:00:08 +0000 | [diff] [blame] | 2491 | // FIXME: Returns of gcc generic vectors larger than a legal vector |
| 2492 | // type should be returned by reference! |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2493 | SDValue Lo, Hi; |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2494 | SplitVectorOp(Tmp2, Lo, Hi); |
Chris Lattner | fea997a | 2007-02-01 04:55:59 +0000 | [diff] [blame] | 2495 | Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2496 | Result = LegalizeOp(Result); |
| 2497 | } |
| 2498 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2499 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2500 | case Promote: |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 2501 | Tmp2 = PromoteOp(Node->getOperand(1)); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2502 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2503 | Result = LegalizeOp(Result); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 2504 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2505 | } |
| 2506 | break; |
| 2507 | case 1: // ret void |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2508 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2509 | break; |
| 2510 | default: { // ret <values> |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2511 | SmallVector<SDValue, 8> NewValues; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2512 | NewValues.push_back(Tmp1); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2513 | for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2) |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2514 | switch (getTypeAction(Node->getOperand(i).getValueType())) { |
| 2515 | case Legal: |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 2516 | NewValues.push_back(LegalizeOp(Node->getOperand(i))); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2517 | NewValues.push_back(Node->getOperand(i+1)); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2518 | break; |
| 2519 | case Expand: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2520 | SDValue Lo, Hi; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2521 | assert(!Node->getOperand(i).getValueType().isExtended() && |
Chris Lattner | b49e52c | 2006-04-11 02:00:08 +0000 | [diff] [blame] | 2522 | "FIXME: TODO: implement returning non-legal vector types!"); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2523 | ExpandOp(Node->getOperand(i), Lo, Hi); |
| 2524 | NewValues.push_back(Lo); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2525 | NewValues.push_back(Node->getOperand(i+1)); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2526 | if (Hi.getNode()) { |
Evan Cheng | 13acce3 | 2006-12-11 19:27:14 +0000 | [diff] [blame] | 2527 | NewValues.push_back(Hi); |
| 2528 | NewValues.push_back(Node->getOperand(i+1)); |
| 2529 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2530 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2531 | } |
| 2532 | case Promote: |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 2533 | assert(0 && "Can't promote multiple return value yet!"); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2534 | } |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2535 | |
| 2536 | if (NewValues.size() == Node->getNumOperands()) |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 2537 | Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size()); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2538 | else |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 2539 | Result = DAG.getNode(ISD::RET, MVT::Other, |
| 2540 | &NewValues[0], NewValues.size()); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2541 | break; |
| 2542 | } |
| 2543 | } |
Evan Cheng | 17c428e | 2006-01-06 00:41:43 +0000 | [diff] [blame] | 2544 | |
Chris Lattner | 6862dbc | 2006-01-29 21:02:23 +0000 | [diff] [blame] | 2545 | if (Result.getOpcode() == ISD::RET) { |
| 2546 | switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) { |
| 2547 | default: assert(0 && "This action is not supported yet!"); |
| 2548 | case TargetLowering::Legal: break; |
| 2549 | case TargetLowering::Custom: |
| 2550 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2551 | if (Tmp1.getNode()) Result = Tmp1; |
Chris Lattner | 6862dbc | 2006-01-29 21:02:23 +0000 | [diff] [blame] | 2552 | break; |
| 2553 | } |
Evan Cheng | 17c428e | 2006-01-06 00:41:43 +0000 | [diff] [blame] | 2554 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2555 | break; |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 2556 | case ISD::STORE: { |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2557 | StoreSDNode *ST = cast<StoreSDNode>(Node); |
| 2558 | Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain. |
| 2559 | Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer. |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2560 | int SVOffset = ST->getSrcValueOffset(); |
| 2561 | unsigned Alignment = ST->getAlignment(); |
| 2562 | bool isVolatile = ST->isVolatile(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2563 | |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2564 | if (!ST->isTruncatingStore()) { |
Chris Lattner | d93d46e | 2006-12-12 04:18:56 +0000 | [diff] [blame] | 2565 | // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr' |
| 2566 | // FIXME: We shouldn't do this for TargetConstantFP's. |
| 2567 | // FIXME: move this to the DAG Combiner! Note that we can't regress due |
| 2568 | // to phase ordering between legalized code and the dag combiner. This |
| 2569 | // probably means that we need to integrate dag combiner and legalizer |
| 2570 | // together. |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 2571 | // We generally can't do this one for long doubles. |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 2572 | if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) { |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2573 | if (CFP->getValueType(0) == MVT::f32 && |
| 2574 | getTypeAction(MVT::i32) == Legal) { |
Dan Gohman | 6cf9b8a | 2008-03-11 00:11:06 +0000 | [diff] [blame] | 2575 | Tmp3 = DAG.getConstant(CFP->getValueAPF(). |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 2576 | bitcastToAPInt().zextOrTrunc(32), |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2577 | MVT::i32); |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 2578 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2579 | SVOffset, isVolatile, Alignment); |
| 2580 | break; |
| 2581 | } else if (CFP->getValueType(0) == MVT::f64) { |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2582 | // If this target supports 64-bit registers, do a single 64-bit store. |
| 2583 | if (getTypeAction(MVT::i64) == Legal) { |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 2584 | Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt(). |
Dan Gohman | 6cf9b8a | 2008-03-11 00:11:06 +0000 | [diff] [blame] | 2585 | zextOrTrunc(64), MVT::i64); |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2586 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2587 | SVOffset, isVolatile, Alignment); |
| 2588 | break; |
Duncan Sands | d4b9c17 | 2008-06-13 19:07:40 +0000 | [diff] [blame] | 2589 | } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) { |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2590 | // Otherwise, if the target supports 32-bit registers, use 2 32-bit |
| 2591 | // stores. If the target supports neither 32- nor 64-bits, this |
| 2592 | // xform is certainly not worth it. |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 2593 | const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2594 | SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32); |
| 2595 | SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32); |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 2596 | if (TLI.isBigEndian()) std::swap(Lo, Hi); |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2597 | |
| 2598 | Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(), |
| 2599 | SVOffset, isVolatile, Alignment); |
| 2600 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 2601 | DAG.getIntPtrConstant(4)); |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2602 | Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4, |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 2603 | isVolatile, MinAlign(Alignment, 4U)); |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2604 | |
| 2605 | Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi); |
| 2606 | break; |
| 2607 | } |
Chris Lattner | d93d46e | 2006-12-12 04:18:56 +0000 | [diff] [blame] | 2608 | } |
Chris Lattner | d93d46e | 2006-12-12 04:18:56 +0000 | [diff] [blame] | 2609 | } |
| 2610 | |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 2611 | switch (getTypeAction(ST->getMemoryVT())) { |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2612 | case Legal: { |
| 2613 | Tmp3 = LegalizeOp(ST->getValue()); |
| 2614 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2, |
| 2615 | ST->getOffset()); |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 2616 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2617 | MVT VT = Tmp3.getValueType(); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2618 | switch (TLI.getOperationAction(ISD::STORE, VT)) { |
| 2619 | default: assert(0 && "This action is not supported yet!"); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2620 | case TargetLowering::Legal: |
| 2621 | // If this is an unaligned store and the target doesn't support it, |
| 2622 | // expand it. |
| 2623 | if (!TLI.allowsUnalignedMemoryAccesses()) { |
| 2624 | unsigned ABIAlignment = TLI.getTargetData()-> |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2625 | getABITypeAlignment(ST->getMemoryVT().getTypeForMVT()); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2626 | if (ST->getAlignment() < ABIAlignment) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2627 | Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG, |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2628 | TLI); |
| 2629 | } |
| 2630 | break; |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2631 | case TargetLowering::Custom: |
| 2632 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2633 | if (Tmp1.getNode()) Result = Tmp1; |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2634 | break; |
| 2635 | case TargetLowering::Promote: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2636 | assert(VT.isVector() && "Unknown legal promote case!"); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2637 | Tmp3 = DAG.getNode(ISD::BIT_CONVERT, |
| 2638 | TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3); |
| 2639 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2640 | ST->getSrcValue(), SVOffset, isVolatile, |
| 2641 | Alignment); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2642 | break; |
| 2643 | } |
| 2644 | break; |
| 2645 | } |
| 2646 | case Promote: |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 2647 | if (!ST->getMemoryVT().isVector()) { |
| 2648 | // Truncate the value and store the result. |
| 2649 | Tmp3 = PromoteOp(ST->getValue()); |
| 2650 | Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2651 | SVOffset, ST->getMemoryVT(), |
| 2652 | isVolatile, Alignment); |
| 2653 | break; |
| 2654 | } |
| 2655 | // Fall thru to expand for vector |
| 2656 | case Expand: { |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2657 | unsigned IncrementSize = 0; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2658 | SDValue Lo, Hi; |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2659 | |
| 2660 | // If this is a vector type, then we have to calculate the increment as |
| 2661 | // the product of the element size in bytes, and the number of elements |
| 2662 | // in the high half of the vector. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2663 | if (ST->getValue().getValueType().isVector()) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2664 | SDNode *InVal = ST->getValue().getNode(); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 2665 | int InIx = ST->getValue().getResNo(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2666 | MVT InVT = InVal->getValueType(InIx); |
| 2667 | unsigned NumElems = InVT.getVectorNumElements(); |
| 2668 | MVT EVT = InVT.getVectorElementType(); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2669 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2670 | // Figure out if there is a simple type corresponding to this Vector |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 2671 | // type. If so, convert to the vector type. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2672 | MVT TVT = MVT::getVectorVT(EVT, NumElems); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2673 | if (TLI.isTypeLegal(TVT)) { |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 2674 | // Turn this into a normal store of the vector type. |
Dan Gohman | 21be384 | 2008-02-15 18:11:59 +0000 | [diff] [blame] | 2675 | Tmp3 = LegalizeOp(ST->getValue()); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2676 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2677 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2678 | Result = LegalizeOp(Result); |
| 2679 | break; |
| 2680 | } else if (NumElems == 1) { |
| 2681 | // Turn this into a normal store of the scalar type. |
Dan Gohman | 21be384 | 2008-02-15 18:11:59 +0000 | [diff] [blame] | 2682 | Tmp3 = ScalarizeVectorOp(ST->getValue()); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2683 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2684 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2685 | // The scalarized value type may not be legal, e.g. it might require |
| 2686 | // promotion or expansion. Relegalize the scalar store. |
| 2687 | Result = LegalizeOp(Result); |
| 2688 | break; |
| 2689 | } else { |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 2690 | // Check if we have widen this node with another value |
| 2691 | std::map<SDValue, SDValue>::iterator I = |
| 2692 | WidenNodes.find(ST->getValue()); |
| 2693 | if (I != WidenNodes.end()) { |
| 2694 | Result = StoreWidenVectorOp(ST, Tmp1, Tmp2); |
| 2695 | break; |
| 2696 | } |
| 2697 | else { |
| 2698 | SplitVectorOp(ST->getValue(), Lo, Hi); |
| 2699 | IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() * |
| 2700 | EVT.getSizeInBits()/8; |
| 2701 | } |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2702 | } |
| 2703 | } else { |
Dan Gohman | 21be384 | 2008-02-15 18:11:59 +0000 | [diff] [blame] | 2704 | ExpandOp(ST->getValue(), Lo, Hi); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2705 | IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0; |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2706 | |
Richard Pennington | 4b052dc | 2008-09-25 16:15:10 +0000 | [diff] [blame] | 2707 | if (Hi.getNode() && TLI.isBigEndian()) |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2708 | std::swap(Lo, Hi); |
| 2709 | } |
| 2710 | |
| 2711 | Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2712 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 7b2b5c8 | 2006-12-12 19:53:13 +0000 | [diff] [blame] | 2713 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2714 | if (Hi.getNode() == NULL) { |
Evan Cheng | 7b2b5c8 | 2006-12-12 19:53:13 +0000 | [diff] [blame] | 2715 | // Must be int <-> float one-to-one expansion. |
| 2716 | Result = Lo; |
| 2717 | break; |
| 2718 | } |
| 2719 | |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2720 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 2721 | DAG.getIntPtrConstant(IncrementSize)); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2722 | assert(isTypeLegal(Tmp2.getValueType()) && |
| 2723 | "Pointers must be legal!"); |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2724 | SVOffset += IncrementSize; |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 2725 | Alignment = MinAlign(Alignment, IncrementSize); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2726 | Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2727 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2728 | Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi); |
| 2729 | break; |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 2730 | } // case Expand |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2731 | } |
| 2732 | } else { |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 2733 | switch (getTypeAction(ST->getValue().getValueType())) { |
| 2734 | case Legal: |
| 2735 | Tmp3 = LegalizeOp(ST->getValue()); |
| 2736 | break; |
| 2737 | case Promote: |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 2738 | if (!ST->getValue().getValueType().isVector()) { |
| 2739 | // We can promote the value, the truncstore will still take care of it. |
| 2740 | Tmp3 = PromoteOp(ST->getValue()); |
| 2741 | break; |
| 2742 | } |
| 2743 | // Vector case falls through to expand |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 2744 | case Expand: |
| 2745 | // Just store the low part. This may become a non-trunc store, so make |
| 2746 | // sure to use getTruncStore, not UpdateNodeOperands below. |
| 2747 | ExpandOp(ST->getValue(), Tmp3, Tmp4); |
| 2748 | return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2749 | SVOffset, MVT::i8, isVolatile, Alignment); |
| 2750 | } |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2751 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2752 | MVT StVT = ST->getMemoryVT(); |
| 2753 | unsigned StWidth = StVT.getSizeInBits(); |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2754 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2755 | if (StWidth != StVT.getStoreSizeInBits()) { |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2756 | // Promote to a byte-sized store with upper bits zero if not |
| 2757 | // storing an integral number of bytes. For example, promote |
| 2758 | // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1) |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2759 | MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits()); |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2760 | Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT); |
| 2761 | Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2762 | SVOffset, NVT, isVolatile, Alignment); |
| 2763 | } else if (StWidth & (StWidth - 1)) { |
| 2764 | // 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] | 2765 | assert(StVT.isExtended() && !StVT.isVector() && |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2766 | "Unsupported truncstore!"); |
| 2767 | unsigned RoundWidth = 1 << Log2_32(StWidth); |
| 2768 | assert(RoundWidth < StWidth); |
| 2769 | unsigned ExtraWidth = StWidth - RoundWidth; |
| 2770 | assert(ExtraWidth < RoundWidth); |
| 2771 | assert(!(RoundWidth % 8) && !(ExtraWidth % 8) && |
| 2772 | "Store size not an integral number of bytes!"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2773 | MVT RoundVT = MVT::getIntegerVT(RoundWidth); |
| 2774 | MVT ExtraVT = MVT::getIntegerVT(ExtraWidth); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2775 | SDValue Lo, Hi; |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2776 | unsigned IncrementSize; |
| 2777 | |
| 2778 | if (TLI.isLittleEndian()) { |
| 2779 | // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16) |
| 2780 | // Store the bottom RoundWidth bits. |
| 2781 | Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2782 | SVOffset, RoundVT, |
| 2783 | isVolatile, Alignment); |
| 2784 | |
| 2785 | // Store the remaining ExtraWidth bits. |
| 2786 | IncrementSize = RoundWidth / 8; |
| 2787 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
| 2788 | DAG.getIntPtrConstant(IncrementSize)); |
| 2789 | Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3, |
| 2790 | DAG.getConstant(RoundWidth, TLI.getShiftAmountTy())); |
| 2791 | Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), |
| 2792 | SVOffset + IncrementSize, ExtraVT, isVolatile, |
| 2793 | MinAlign(Alignment, IncrementSize)); |
| 2794 | } else { |
| 2795 | // Big endian - avoid unaligned stores. |
| 2796 | // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X |
| 2797 | // Store the top RoundWidth bits. |
| 2798 | Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3, |
| 2799 | DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy())); |
| 2800 | Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset, |
| 2801 | RoundVT, isVolatile, Alignment); |
| 2802 | |
| 2803 | // Store the remaining ExtraWidth bits. |
| 2804 | IncrementSize = RoundWidth / 8; |
| 2805 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
| 2806 | DAG.getIntPtrConstant(IncrementSize)); |
| 2807 | Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2808 | SVOffset + IncrementSize, ExtraVT, isVolatile, |
| 2809 | MinAlign(Alignment, IncrementSize)); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2810 | } |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2811 | |
| 2812 | // The order of the stores doesn't matter. |
| 2813 | Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi); |
| 2814 | } else { |
| 2815 | if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() || |
| 2816 | Tmp2 != ST->getBasePtr()) |
| 2817 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2, |
| 2818 | ST->getOffset()); |
| 2819 | |
| 2820 | switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) { |
| 2821 | default: assert(0 && "This action is not supported yet!"); |
| 2822 | case TargetLowering::Legal: |
| 2823 | // If this is an unaligned store and the target doesn't support it, |
| 2824 | // expand it. |
| 2825 | if (!TLI.allowsUnalignedMemoryAccesses()) { |
| 2826 | unsigned ABIAlignment = TLI.getTargetData()-> |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2827 | getABITypeAlignment(ST->getMemoryVT().getTypeForMVT()); |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2828 | if (ST->getAlignment() < ABIAlignment) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2829 | Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG, |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2830 | TLI); |
| 2831 | } |
| 2832 | break; |
| 2833 | case TargetLowering::Custom: |
| 2834 | Result = TLI.LowerOperation(Result, DAG); |
| 2835 | break; |
| 2836 | case Expand: |
| 2837 | // TRUNCSTORE:i16 i32 -> STORE i16 |
| 2838 | assert(isTypeLegal(StVT) && "Do not know how to expand this store!"); |
| 2839 | Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3); |
| 2840 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset, |
| 2841 | isVolatile, Alignment); |
| 2842 | break; |
| 2843 | } |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 2844 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2845 | } |
| 2846 | break; |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 2847 | } |
Andrew Lenharth | 9576212 | 2005-03-31 21:24:06 +0000 | [diff] [blame] | 2848 | case ISD::PCMARKER: |
| 2849 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2850 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Andrew Lenharth | 9576212 | 2005-03-31 21:24:06 +0000 | [diff] [blame] | 2851 | break; |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2852 | case ISD::STACKSAVE: |
| 2853 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2854 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 2855 | Tmp1 = Result.getValue(0); |
| 2856 | Tmp2 = Result.getValue(1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2857 | |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2858 | switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) { |
| 2859 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2860 | case TargetLowering::Legal: break; |
| 2861 | case TargetLowering::Custom: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2862 | Tmp3 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2863 | if (Tmp3.getNode()) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2864 | Tmp1 = LegalizeOp(Tmp3); |
| 2865 | Tmp2 = LegalizeOp(Tmp3.getValue(1)); |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2866 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2867 | break; |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2868 | case TargetLowering::Expand: |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2869 | // Expand to CopyFromReg if the target set |
| 2870 | // StackPointerRegisterToSaveRestore. |
| 2871 | if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2872 | Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP, |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2873 | Node->getValueType(0)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2874 | Tmp2 = Tmp1.getValue(1); |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2875 | } else { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2876 | Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0)); |
| 2877 | Tmp2 = Node->getOperand(0); |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2878 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2879 | break; |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2880 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2881 | |
| 2882 | // Since stacksave produce two values, make sure to remember that we |
| 2883 | // legalized both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2884 | AddLegalizedOperand(SDValue(Node, 0), Tmp1); |
| 2885 | AddLegalizedOperand(SDValue(Node, 1), Tmp2); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 2886 | return Op.getResNo() ? Tmp2 : Tmp1; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2887 | |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2888 | case ISD::STACKRESTORE: |
| 2889 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 2890 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2891 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2892 | |
| 2893 | switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) { |
| 2894 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2895 | case TargetLowering::Legal: break; |
| 2896 | case TargetLowering::Custom: |
| 2897 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2898 | if (Tmp1.getNode()) Result = Tmp1; |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2899 | break; |
| 2900 | case TargetLowering::Expand: |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2901 | // Expand to CopyToReg if the target set |
| 2902 | // StackPointerRegisterToSaveRestore. |
| 2903 | if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) { |
| 2904 | Result = DAG.getCopyToReg(Tmp1, SP, Tmp2); |
| 2905 | } else { |
| 2906 | Result = Tmp1; |
| 2907 | } |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2908 | break; |
| 2909 | } |
| 2910 | break; |
| 2911 | |
Andrew Lenharth | 51b8d54 | 2005-11-11 16:47:30 +0000 | [diff] [blame] | 2912 | case ISD::READCYCLECOUNTER: |
| 2913 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2914 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Evan Cheng | f0b3ba6 | 2006-11-29 08:26:18 +0000 | [diff] [blame] | 2915 | switch (TLI.getOperationAction(ISD::READCYCLECOUNTER, |
| 2916 | Node->getValueType(0))) { |
| 2917 | default: assert(0 && "This action is not supported yet!"); |
Evan Cheng | 6a16c5a | 2006-11-29 19:13:47 +0000 | [diff] [blame] | 2918 | case TargetLowering::Legal: |
| 2919 | Tmp1 = Result.getValue(0); |
| 2920 | Tmp2 = Result.getValue(1); |
| 2921 | break; |
Evan Cheng | f0b3ba6 | 2006-11-29 08:26:18 +0000 | [diff] [blame] | 2922 | case TargetLowering::Custom: |
| 2923 | Result = TLI.LowerOperation(Result, DAG); |
Evan Cheng | 6a16c5a | 2006-11-29 19:13:47 +0000 | [diff] [blame] | 2924 | Tmp1 = LegalizeOp(Result.getValue(0)); |
| 2925 | Tmp2 = LegalizeOp(Result.getValue(1)); |
Evan Cheng | f0b3ba6 | 2006-11-29 08:26:18 +0000 | [diff] [blame] | 2926 | break; |
| 2927 | } |
Andrew Lenharth | 49c709f | 2005-12-02 04:56:24 +0000 | [diff] [blame] | 2928 | |
| 2929 | // Since rdcc produce two values, make sure to remember that we legalized |
| 2930 | // both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2931 | AddLegalizedOperand(SDValue(Node, 0), Tmp1); |
| 2932 | AddLegalizedOperand(SDValue(Node, 1), Tmp2); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2933 | return Result; |
Andrew Lenharth | f70e30b | 2005-11-20 21:32:07 +0000 | [diff] [blame] | 2934 | |
Chris Lattner | 2ee743f | 2005-01-14 22:08:15 +0000 | [diff] [blame] | 2935 | case ISD::SELECT: |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 2936 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 2937 | case Expand: assert(0 && "It's impossible to expand bools"); |
| 2938 | case Legal: |
| 2939 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition. |
| 2940 | break; |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2941 | case Promote: { |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 2942 | assert(!Node->getOperand(0).getValueType().isVector() && "not possible"); |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 2943 | Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition. |
Chris Lattner | b6c8060 | 2006-11-28 01:03:30 +0000 | [diff] [blame] | 2944 | // Make sure the condition is either zero or one. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2945 | unsigned BitWidth = Tmp1.getValueSizeInBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2946 | if (!DAG.MaskedValueIsZero(Tmp1, |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2947 | APInt::getHighBitsSet(BitWidth, BitWidth-1))) |
Chris Lattner | b6c8060 | 2006-11-28 01:03:30 +0000 | [diff] [blame] | 2948 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1); |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 2949 | break; |
| 2950 | } |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2951 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2952 | Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal |
Chris Lattner | 2ee743f | 2005-01-14 22:08:15 +0000 | [diff] [blame] | 2953 | Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2954 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2955 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2956 | |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 2957 | switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) { |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2958 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2959 | case TargetLowering::Legal: break; |
| 2960 | case TargetLowering::Custom: { |
| 2961 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2962 | if (Tmp1.getNode()) Result = Tmp1; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2963 | break; |
| 2964 | } |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 2965 | case TargetLowering::Expand: |
| 2966 | if (Tmp1.getOpcode() == ISD::SETCC) { |
| 2967 | Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1), |
| 2968 | Tmp2, Tmp3, |
| 2969 | cast<CondCodeSDNode>(Tmp1.getOperand(2))->get()); |
| 2970 | } else { |
| 2971 | Result = DAG.getSelectCC(Tmp1, |
| 2972 | DAG.getConstant(0, Tmp1.getValueType()), |
| 2973 | Tmp2, Tmp3, ISD::SETNE); |
| 2974 | } |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2975 | break; |
| 2976 | case TargetLowering::Promote: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2977 | MVT NVT = |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2978 | TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType()); |
| 2979 | unsigned ExtOp, TruncOp; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2980 | if (Tmp2.getValueType().isVector()) { |
Evan Cheng | 41f6cbb | 2006-04-12 16:33:18 +0000 | [diff] [blame] | 2981 | ExtOp = ISD::BIT_CONVERT; |
| 2982 | TruncOp = ISD::BIT_CONVERT; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2983 | } else if (Tmp2.getValueType().isInteger()) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2984 | ExtOp = ISD::ANY_EXTEND; |
| 2985 | TruncOp = ISD::TRUNCATE; |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2986 | } else { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2987 | ExtOp = ISD::FP_EXTEND; |
| 2988 | TruncOp = ISD::FP_ROUND; |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2989 | } |
| 2990 | // Promote each of the values to the new type. |
| 2991 | Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2); |
| 2992 | Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3); |
| 2993 | // Perform the larger operation, then round down. |
| 2994 | Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 2995 | if (TruncOp != ISD::FP_ROUND) |
| 2996 | Result = DAG.getNode(TruncOp, Node->getValueType(0), Result); |
| 2997 | else |
| 2998 | Result = DAG.getNode(TruncOp, Node->getValueType(0), Result, |
| 2999 | DAG.getIntPtrConstant(0)); |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 3000 | break; |
| 3001 | } |
| 3002 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3003 | break; |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 3004 | case ISD::SELECT_CC: { |
| 3005 | Tmp1 = Node->getOperand(0); // LHS |
| 3006 | Tmp2 = Node->getOperand(1); // RHS |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 3007 | Tmp3 = LegalizeOp(Node->getOperand(2)); // True |
| 3008 | Tmp4 = LegalizeOp(Node->getOperand(3)); // False |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3009 | SDValue CC = Node->getOperand(4); |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 3010 | |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 3011 | LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()), |
| 3012 | Tmp1, Tmp2, CC, dl); |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 3013 | |
Evan Cheng | 7f04268 | 2008-10-15 02:05:31 +0000 | [diff] [blame] | 3014 | // If we didn't get both a LHS and RHS back from LegalizeSetCC, |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 3015 | // the LHS is a legal SETCC itself. In this case, we need to compare |
| 3016 | // the result against zero to select between true and false values. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3017 | if (Tmp2.getNode() == 0) { |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 3018 | Tmp2 = DAG.getConstant(0, Tmp1.getValueType()); |
| 3019 | CC = DAG.getCondCode(ISD::SETNE); |
| 3020 | } |
| 3021 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC); |
| 3022 | |
| 3023 | // Everything is legal, see if we should expand this op or something. |
| 3024 | switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) { |
| 3025 | default: assert(0 && "This action is not supported yet!"); |
| 3026 | case TargetLowering::Legal: break; |
| 3027 | case TargetLowering::Custom: |
| 3028 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3029 | if (Tmp1.getNode()) Result = Tmp1; |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 3030 | break; |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 3031 | } |
| 3032 | break; |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 3033 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3034 | case ISD::SETCC: |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 3035 | Tmp1 = Node->getOperand(0); |
| 3036 | Tmp2 = Node->getOperand(1); |
| 3037 | Tmp3 = Node->getOperand(2); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 3038 | LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl); |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 3039 | |
| 3040 | // If we had to Expand the SetCC operands into a SELECT node, then it may |
| 3041 | // not always be possible to return a true LHS & RHS. In this case, just |
| 3042 | // return the value we legalized, returned in the LHS |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3043 | if (Tmp2.getNode() == 0) { |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 3044 | Result = Tmp1; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3045 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3046 | } |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 3047 | |
Chris Lattner | 73e142f | 2006-01-30 22:43:50 +0000 | [diff] [blame] | 3048 | switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3049 | default: assert(0 && "Cannot handle this action for SETCC yet!"); |
| 3050 | case TargetLowering::Custom: |
| 3051 | isCustom = true; |
| 3052 | // FALLTHROUGH. |
| 3053 | case TargetLowering::Legal: |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 3054 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3055 | if (isCustom) { |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 3056 | Tmp4 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3057 | if (Tmp4.getNode()) Result = Tmp4; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3058 | } |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 3059 | break; |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 3060 | case TargetLowering::Promote: { |
| 3061 | // First step, figure out the appropriate operation to use. |
| 3062 | // Allow SETCC to not be supported for all legal data types |
| 3063 | // Mostly this targets FP |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3064 | MVT NewInTy = Node->getOperand(0).getValueType(); |
| 3065 | MVT OldVT = NewInTy; OldVT = OldVT; |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 3066 | |
| 3067 | // Scan for the appropriate larger type to use. |
| 3068 | while (1) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3069 | NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1); |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 3070 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3071 | assert(NewInTy.isInteger() == OldVT.isInteger() && |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 3072 | "Fell off of the edge of the integer world"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3073 | assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() && |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 3074 | "Fell off of the edge of the floating point world"); |
| 3075 | |
| 3076 | // If the target supports SETCC of this type, use it. |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 3077 | if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy)) |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 3078 | break; |
| 3079 | } |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3080 | if (NewInTy.isInteger()) |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 3081 | assert(0 && "Cannot promote Legal Integer SETCC yet"); |
| 3082 | else { |
| 3083 | Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1); |
| 3084 | Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2); |
| 3085 | } |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3086 | Tmp1 = LegalizeOp(Tmp1); |
| 3087 | Tmp2 = LegalizeOp(Tmp2); |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 3088 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Evan Cheng | 433f8ac | 2006-01-17 19:47:13 +0000 | [diff] [blame] | 3089 | Result = LegalizeOp(Result); |
Andrew Lenharth | 5e3efbc | 2005-08-29 20:46:51 +0000 | [diff] [blame] | 3090 | break; |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 3091 | } |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 3092 | case TargetLowering::Expand: |
| 3093 | // Expand a setcc node into a select_cc of the same condition, lhs, and |
| 3094 | // rhs that selects between const 1 (true) and const 0 (false). |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3095 | MVT VT = Node->getValueType(0); |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 3096 | Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2, |
| 3097 | DAG.getConstant(1, VT), DAG.getConstant(0, VT), |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 3098 | Tmp3); |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 3099 | break; |
| 3100 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3101 | break; |
Nate Begeman | b43e9c1 | 2008-05-12 19:40:03 +0000 | [diff] [blame] | 3102 | case ISD::VSETCC: { |
| 3103 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
| 3104 | Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3105 | SDValue CC = Node->getOperand(2); |
Nate Begeman | b43e9c1 | 2008-05-12 19:40:03 +0000 | [diff] [blame] | 3106 | |
| 3107 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC); |
| 3108 | |
| 3109 | // Everything is legal, see if we should expand this op or something. |
| 3110 | switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) { |
| 3111 | default: assert(0 && "This action is not supported yet!"); |
| 3112 | case TargetLowering::Legal: break; |
| 3113 | case TargetLowering::Custom: |
| 3114 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3115 | if (Tmp1.getNode()) Result = Tmp1; |
Nate Begeman | b43e9c1 | 2008-05-12 19:40:03 +0000 | [diff] [blame] | 3116 | break; |
Mon P Wang | e1a0b2e | 2008-12-13 08:15:14 +0000 | [diff] [blame] | 3117 | case TargetLowering::Expand: { |
| 3118 | // Unroll into a nasty set of scalar code for now. |
| 3119 | MVT VT = Node->getValueType(0); |
| 3120 | unsigned NumElems = VT.getVectorNumElements(); |
| 3121 | MVT EltVT = VT.getVectorElementType(); |
| 3122 | MVT TmpEltVT = Tmp1.getValueType().getVectorElementType(); |
| 3123 | SmallVector<SDValue, 8> Ops(NumElems); |
| 3124 | for (unsigned i = 0; i < NumElems; ++i) { |
| 3125 | SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, TmpEltVT, |
| 3126 | Tmp1, DAG.getIntPtrConstant(i)); |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 3127 | Ops[i] = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(TmpEltVT), In1, |
Mon P Wang | 84aff84 | 2008-12-17 08:49:47 +0000 | [diff] [blame] | 3128 | DAG.getNode(ISD::EXTRACT_VECTOR_ELT, TmpEltVT, |
| 3129 | Tmp2, DAG.getIntPtrConstant(i)), |
| 3130 | CC); |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 3131 | Ops[i] = DAG.getNode(ISD::SELECT, EltVT, Ops[i], DAG.getConstant( |
| 3132 | APInt::getAllOnesValue(EltVT.getSizeInBits()), |
| 3133 | EltVT), DAG.getConstant(0, EltVT)); |
Mon P Wang | e1a0b2e | 2008-12-13 08:15:14 +0000 | [diff] [blame] | 3134 | } |
| 3135 | Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], NumElems); |
| 3136 | break; |
| 3137 | } |
Nate Begeman | b43e9c1 | 2008-05-12 19:40:03 +0000 | [diff] [blame] | 3138 | } |
| 3139 | break; |
| 3140 | } |
Chris Lattner | 52d08bd | 2005-05-09 20:23:03 +0000 | [diff] [blame] | 3141 | |
Chris Lattner | 5b359c6 | 2005-04-02 04:00:59 +0000 | [diff] [blame] | 3142 | case ISD::SHL_PARTS: |
| 3143 | case ISD::SRA_PARTS: |
| 3144 | case ISD::SRL_PARTS: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3145 | SmallVector<SDValue, 8> Ops; |
Chris Lattner | 84f6788 | 2005-01-20 18:52:28 +0000 | [diff] [blame] | 3146 | bool Changed = false; |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3147 | unsigned N = Node->getNumOperands(); |
| 3148 | for (unsigned i = 0; i + 1 < N; ++i) { |
Chris Lattner | 84f6788 | 2005-01-20 18:52:28 +0000 | [diff] [blame] | 3149 | Ops.push_back(LegalizeOp(Node->getOperand(i))); |
| 3150 | Changed |= Ops.back() != Node->getOperand(i); |
| 3151 | } |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3152 | Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1)))); |
| 3153 | Changed |= Ops.back() != Node->getOperand(N-1); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3154 | if (Changed) |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 3155 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3156 | |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 3157 | switch (TLI.getOperationAction(Node->getOpcode(), |
| 3158 | Node->getValueType(0))) { |
| 3159 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3160 | case TargetLowering::Legal: break; |
| 3161 | case TargetLowering::Custom: |
| 3162 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3163 | if (Tmp1.getNode()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3164 | SDValue Tmp2, RetVal(0, 0); |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 3165 | for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3166 | Tmp2 = LegalizeOp(Tmp1.getValue(i)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3167 | AddLegalizedOperand(SDValue(Node, i), Tmp2); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 3168 | if (i == Op.getResNo()) |
Evan Cheng | 12f2274 | 2006-01-19 04:54:52 +0000 | [diff] [blame] | 3169 | RetVal = Tmp2; |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 3170 | } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3171 | assert(RetVal.getNode() && "Illegal result number"); |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 3172 | return RetVal; |
| 3173 | } |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 3174 | break; |
| 3175 | } |
| 3176 | |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3177 | // Since these produce multiple values, make sure to remember that we |
| 3178 | // legalized all of them. |
| 3179 | for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3180 | AddLegalizedOperand(SDValue(Node, i), Result.getValue(i)); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 3181 | return Result.getValue(Op.getResNo()); |
Chris Lattner | 84f6788 | 2005-01-20 18:52:28 +0000 | [diff] [blame] | 3182 | } |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3183 | |
| 3184 | // Binary operators |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3185 | case ISD::ADD: |
| 3186 | case ISD::SUB: |
| 3187 | case ISD::MUL: |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 3188 | case ISD::MULHS: |
| 3189 | case ISD::MULHU: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3190 | case ISD::UDIV: |
| 3191 | case ISD::SDIV: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3192 | case ISD::AND: |
| 3193 | case ISD::OR: |
| 3194 | case ISD::XOR: |
Chris Lattner | 03c0cf8 | 2005-01-07 21:45:56 +0000 | [diff] [blame] | 3195 | case ISD::SHL: |
| 3196 | case ISD::SRL: |
| 3197 | case ISD::SRA: |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 3198 | case ISD::FADD: |
| 3199 | case ISD::FSUB: |
| 3200 | case ISD::FMUL: |
| 3201 | case ISD::FDIV: |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3202 | case ISD::FPOW: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3203 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3204 | Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS |
Nate Begeman | 5bc1ea0 | 2008-07-29 15:49:41 +0000 | [diff] [blame] | 3205 | |
| 3206 | if ((Node->getOpcode() == ISD::SHL || |
| 3207 | Node->getOpcode() == ISD::SRL || |
| 3208 | Node->getOpcode() == ISD::SRA) && |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3209 | !Node->getValueType(0).isVector()) |
| 3210 | Tmp2 = DAG.getShiftAmountOperand(Tmp2); |
| 3211 | |
| 3212 | switch (getTypeAction(Tmp2.getValueType())) { |
| 3213 | case Expand: assert(0 && "Not possible"); |
| 3214 | case Legal: |
| 3215 | Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS. |
| 3216 | break; |
| 3217 | case Promote: |
| 3218 | Tmp2 = PromoteOp(Tmp2); // Promote the RHS. |
| 3219 | break; |
Mon P Wang | e1a0b2e | 2008-12-13 08:15:14 +0000 | [diff] [blame] | 3220 | } |
Nate Begeman | 5bc1ea0 | 2008-07-29 15:49:41 +0000 | [diff] [blame] | 3221 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3222 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 3223 | |
Andrew Lenharth | e8f65f1 | 2005-12-24 23:42:32 +0000 | [diff] [blame] | 3224 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Chris Lattner | bc70cf8 | 2006-04-02 03:57:31 +0000 | [diff] [blame] | 3225 | default: assert(0 && "BinOp legalize operation not supported"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3226 | case TargetLowering::Legal: break; |
| 3227 | case TargetLowering::Custom: |
| 3228 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3229 | if (Tmp1.getNode()) { |
Nate Begeman | 5bc1ea0 | 2008-07-29 15:49:41 +0000 | [diff] [blame] | 3230 | Result = Tmp1; |
| 3231 | break; |
Nate Begeman | 24dc346 | 2008-07-29 19:07:27 +0000 | [diff] [blame] | 3232 | } |
Nate Begeman | 5bc1ea0 | 2008-07-29 15:49:41 +0000 | [diff] [blame] | 3233 | // Fall through if the custom lower can't deal with the operation |
Chris Lattner | bc70cf8 | 2006-04-02 03:57:31 +0000 | [diff] [blame] | 3234 | case TargetLowering::Expand: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3235 | MVT VT = Op.getValueType(); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 3236 | |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3237 | // See if multiply or divide can be lowered using two-result operations. |
| 3238 | SDVTList VTs = DAG.getVTList(VT, VT); |
| 3239 | if (Node->getOpcode() == ISD::MUL) { |
| 3240 | // We just need the low half of the multiply; try both the signed |
| 3241 | // and unsigned forms. If the target supports both SMUL_LOHI and |
| 3242 | // UMUL_LOHI, form a preference by checking which forms of plain |
| 3243 | // MULH it supports. |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 3244 | bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT); |
| 3245 | bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT); |
| 3246 | bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT); |
| 3247 | bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3248 | unsigned OpToUse = 0; |
| 3249 | if (HasSMUL_LOHI && !HasMULHS) { |
| 3250 | OpToUse = ISD::SMUL_LOHI; |
| 3251 | } else if (HasUMUL_LOHI && !HasMULHU) { |
| 3252 | OpToUse = ISD::UMUL_LOHI; |
| 3253 | } else if (HasSMUL_LOHI) { |
| 3254 | OpToUse = ISD::SMUL_LOHI; |
| 3255 | } else if (HasUMUL_LOHI) { |
| 3256 | OpToUse = ISD::UMUL_LOHI; |
| 3257 | } |
| 3258 | if (OpToUse) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3259 | Result = SDValue(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).getNode(), 0); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3260 | break; |
| 3261 | } |
| 3262 | } |
| 3263 | if (Node->getOpcode() == ISD::MULHS && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 3264 | TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) { |
Chris Lattner | 31d7161 | 2008-10-04 21:27:46 +0000 | [diff] [blame] | 3265 | Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).getNode(), |
| 3266 | 1); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3267 | break; |
| 3268 | } |
| 3269 | if (Node->getOpcode() == ISD::MULHU && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 3270 | TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) { |
Chris Lattner | 31d7161 | 2008-10-04 21:27:46 +0000 | [diff] [blame] | 3271 | Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).getNode(), |
| 3272 | 1); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3273 | break; |
| 3274 | } |
| 3275 | if (Node->getOpcode() == ISD::SDIV && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 3276 | TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) { |
Chris Lattner | 31d7161 | 2008-10-04 21:27:46 +0000 | [diff] [blame] | 3277 | Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(), |
| 3278 | 0); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3279 | break; |
| 3280 | } |
| 3281 | if (Node->getOpcode() == ISD::UDIV && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 3282 | TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) { |
Chris Lattner | 31d7161 | 2008-10-04 21:27:46 +0000 | [diff] [blame] | 3283 | Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(), |
| 3284 | 0); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3285 | break; |
| 3286 | } |
Mon P Wang | 87c8a8f | 2008-12-18 20:03:17 +0000 | [diff] [blame] | 3287 | |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3288 | // Check to see if we have a libcall for this operator. |
| 3289 | RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; |
| 3290 | bool isSigned = false; |
| 3291 | switch (Node->getOpcode()) { |
| 3292 | case ISD::UDIV: |
| 3293 | case ISD::SDIV: |
| 3294 | if (VT == MVT::i32) { |
| 3295 | LC = Node->getOpcode() == ISD::UDIV |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 3296 | ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32; |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3297 | isSigned = Node->getOpcode() == ISD::SDIV; |
| 3298 | } |
| 3299 | break; |
Chris Lattner | 31d7161 | 2008-10-04 21:27:46 +0000 | [diff] [blame] | 3300 | case ISD::MUL: |
| 3301 | if (VT == MVT::i32) |
| 3302 | LC = RTLIB::MUL_I32; |
Nate Begeman | 9b99485 | 2009-01-24 22:12:48 +0000 | [diff] [blame] | 3303 | else if (VT == MVT::i64) |
Scott Michel | 845145f | 2008-12-29 03:21:37 +0000 | [diff] [blame] | 3304 | LC = RTLIB::MUL_I64; |
Chris Lattner | 31d7161 | 2008-10-04 21:27:46 +0000 | [diff] [blame] | 3305 | break; |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3306 | case ISD::FPOW: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3307 | LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80, |
| 3308 | RTLIB::POW_PPCF128); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3309 | break; |
Scott Michel | d1e8d9c | 2009-01-21 04:58:48 +0000 | [diff] [blame] | 3310 | case ISD::FDIV: |
| 3311 | LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80, |
| 3312 | RTLIB::DIV_PPCF128); |
| 3313 | break; |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3314 | default: break; |
| 3315 | } |
| 3316 | if (LC != RTLIB::UNKNOWN_LIBCALL) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3317 | SDValue Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3318 | Result = ExpandLibCall(LC, Node, isSigned, Dummy); |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3319 | break; |
| 3320 | } |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 3321 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3322 | assert(Node->getValueType(0).isVector() && |
Chris Lattner | bc70cf8 | 2006-04-02 03:57:31 +0000 | [diff] [blame] | 3323 | "Cannot expand this binary operator!"); |
| 3324 | // Expand the operation into a bunch of nasty scalar code. |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3325 | Result = LegalizeOp(UnrollVectorOp(Op)); |
Chris Lattner | bc70cf8 | 2006-04-02 03:57:31 +0000 | [diff] [blame] | 3326 | break; |
| 3327 | } |
Evan Cheng | cc98761 | 2006-04-12 21:20:24 +0000 | [diff] [blame] | 3328 | case TargetLowering::Promote: { |
| 3329 | switch (Node->getOpcode()) { |
| 3330 | default: assert(0 && "Do not know how to promote this BinOp!"); |
| 3331 | case ISD::AND: |
| 3332 | case ISD::OR: |
| 3333 | case ISD::XOR: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3334 | MVT OVT = Node->getValueType(0); |
| 3335 | MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); |
| 3336 | assert(OVT.isVector() && "Cannot promote this BinOp!"); |
Evan Cheng | cc98761 | 2006-04-12 21:20:24 +0000 | [diff] [blame] | 3337 | // Bit convert each of the values to the new type. |
| 3338 | Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1); |
| 3339 | Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2); |
| 3340 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2); |
| 3341 | // Bit convert the result back the original type. |
| 3342 | Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result); |
| 3343 | break; |
| 3344 | } |
| 3345 | } |
| 3346 | } |
Andrew Lenharth | e8f65f1 | 2005-12-24 23:42:32 +0000 | [diff] [blame] | 3347 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3348 | break; |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3349 | |
Dan Gohman | e14ea86 | 2007-10-05 14:17:22 +0000 | [diff] [blame] | 3350 | case ISD::SMUL_LOHI: |
| 3351 | case ISD::UMUL_LOHI: |
| 3352 | case ISD::SDIVREM: |
| 3353 | case ISD::UDIVREM: |
| 3354 | // These nodes will only be produced by target-specific lowering, so |
| 3355 | // they shouldn't be here if they aren't legal. |
Duncan Sands | a7c97a7 | 2007-10-16 09:07:20 +0000 | [diff] [blame] | 3356 | assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) && |
Dan Gohman | e14ea86 | 2007-10-05 14:17:22 +0000 | [diff] [blame] | 3357 | "This must be legal!"); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3358 | |
| 3359 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
| 3360 | Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS |
| 3361 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Dan Gohman | e14ea86 | 2007-10-05 14:17:22 +0000 | [diff] [blame] | 3362 | break; |
| 3363 | |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3364 | case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type! |
| 3365 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
| 3366 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
| 3367 | case Expand: assert(0 && "Not possible"); |
| 3368 | case Legal: |
| 3369 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS. |
| 3370 | break; |
| 3371 | case Promote: |
| 3372 | Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS. |
| 3373 | break; |
| 3374 | } |
| 3375 | |
| 3376 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 3377 | |
| 3378 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
| 3379 | default: assert(0 && "Operation not supported"); |
| 3380 | case TargetLowering::Custom: |
| 3381 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3382 | if (Tmp1.getNode()) Result = Tmp1; |
Chris Lattner | 8f4191d | 2006-03-13 06:08:38 +0000 | [diff] [blame] | 3383 | break; |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3384 | case TargetLowering::Legal: break; |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 3385 | case TargetLowering::Expand: { |
Evan Cheng | 636c753 | 2007-01-05 23:33:44 +0000 | [diff] [blame] | 3386 | // If this target supports fabs/fneg natively and select is cheap, |
| 3387 | // do this efficiently. |
| 3388 | if (!TLI.isSelectExpensive() && |
| 3389 | TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) == |
| 3390 | TargetLowering::Legal && |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 3391 | TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) == |
Evan Cheng | 636c753 | 2007-01-05 23:33:44 +0000 | [diff] [blame] | 3392 | TargetLowering::Legal) { |
Chris Lattner | 8f4191d | 2006-03-13 06:08:38 +0000 | [diff] [blame] | 3393 | // Get the sign bit of the RHS. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3394 | MVT IVT = |
Chris Lattner | 8f4191d | 2006-03-13 06:08:38 +0000 | [diff] [blame] | 3395 | Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3396 | SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2); |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 3397 | SignBit = DAG.getSetCC(TLI.getSetCCResultType(IVT), |
Chris Lattner | 8f4191d | 2006-03-13 06:08:38 +0000 | [diff] [blame] | 3398 | SignBit, DAG.getConstant(0, IVT), ISD::SETLT); |
| 3399 | // Get the absolute value of the result. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3400 | SDValue AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1); |
Chris Lattner | 8f4191d | 2006-03-13 06:08:38 +0000 | [diff] [blame] | 3401 | // Select between the nabs and abs value based on the sign bit of |
| 3402 | // the input. |
| 3403 | Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit, |
| 3404 | DAG.getNode(ISD::FNEG, AbsVal.getValueType(), |
| 3405 | AbsVal), |
| 3406 | AbsVal); |
| 3407 | Result = LegalizeOp(Result); |
| 3408 | break; |
| 3409 | } |
| 3410 | |
| 3411 | // Otherwise, do bitwise ops! |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3412 | MVT NVT = |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 3413 | Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64; |
| 3414 | Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI); |
| 3415 | Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result); |
| 3416 | Result = LegalizeOp(Result); |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3417 | break; |
| 3418 | } |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 3419 | } |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3420 | break; |
| 3421 | |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 3422 | case ISD::ADDC: |
| 3423 | case ISD::SUBC: |
| 3424 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3425 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 3426 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Sanjiv Gupta | d3f01aa | 2008-11-26 11:19:00 +0000 | [diff] [blame] | 3427 | Tmp3 = Result.getValue(0); |
| 3428 | Tmp4 = Result.getValue(1); |
| 3429 | |
| 3430 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
| 3431 | default: assert(0 && "This action is not supported yet!"); |
| 3432 | case TargetLowering::Legal: |
| 3433 | break; |
| 3434 | case TargetLowering::Custom: |
| 3435 | Tmp1 = TLI.LowerOperation(Tmp3, DAG); |
| 3436 | if (Tmp1.getNode() != NULL) { |
Sanjiv Gupta | 9b0f0b5 | 2008-11-27 05:58:04 +0000 | [diff] [blame] | 3437 | Tmp3 = LegalizeOp(Tmp1); |
Sanjiv Gupta | d3f01aa | 2008-11-26 11:19:00 +0000 | [diff] [blame] | 3438 | Tmp4 = LegalizeOp(Tmp1.getValue(1)); |
| 3439 | } |
| 3440 | break; |
| 3441 | } |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 3442 | // Since this produces two values, make sure to remember that we legalized |
| 3443 | // both of them. |
Sanjiv Gupta | d3f01aa | 2008-11-26 11:19:00 +0000 | [diff] [blame] | 3444 | AddLegalizedOperand(SDValue(Node, 0), Tmp3); |
| 3445 | AddLegalizedOperand(SDValue(Node, 1), Tmp4); |
| 3446 | return Op.getResNo() ? Tmp4 : Tmp3; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 3447 | |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 3448 | case ISD::ADDE: |
| 3449 | case ISD::SUBE: |
| 3450 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3451 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 3452 | Tmp3 = LegalizeOp(Node->getOperand(2)); |
| 3453 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Sanjiv Gupta | d3f01aa | 2008-11-26 11:19:00 +0000 | [diff] [blame] | 3454 | Tmp3 = Result.getValue(0); |
| 3455 | Tmp4 = Result.getValue(1); |
| 3456 | |
| 3457 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
| 3458 | default: assert(0 && "This action is not supported yet!"); |
| 3459 | case TargetLowering::Legal: |
| 3460 | break; |
| 3461 | case TargetLowering::Custom: |
| 3462 | Tmp1 = TLI.LowerOperation(Tmp3, DAG); |
| 3463 | if (Tmp1.getNode() != NULL) { |
Sanjiv Gupta | 9b0f0b5 | 2008-11-27 05:58:04 +0000 | [diff] [blame] | 3464 | Tmp3 = LegalizeOp(Tmp1); |
Sanjiv Gupta | d3f01aa | 2008-11-26 11:19:00 +0000 | [diff] [blame] | 3465 | Tmp4 = LegalizeOp(Tmp1.getValue(1)); |
| 3466 | } |
| 3467 | break; |
| 3468 | } |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 3469 | // Since this produces two values, make sure to remember that we legalized |
| 3470 | // both of them. |
Sanjiv Gupta | d3f01aa | 2008-11-26 11:19:00 +0000 | [diff] [blame] | 3471 | AddLegalizedOperand(SDValue(Node, 0), Tmp3); |
| 3472 | AddLegalizedOperand(SDValue(Node, 1), Tmp4); |
| 3473 | return Op.getResNo() ? Tmp4 : Tmp3; |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 3474 | |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3475 | case ISD::BUILD_PAIR: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3476 | MVT PairTy = Node->getValueType(0); |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3477 | // TODO: handle the case where the Lo and Hi operands are not of legal type |
| 3478 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo |
| 3479 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi |
| 3480 | switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3481 | case TargetLowering::Promote: |
| 3482 | case TargetLowering::Custom: |
| 3483 | assert(0 && "Cannot promote/custom this yet!"); |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3484 | case TargetLowering::Legal: |
| 3485 | if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1)) |
| 3486 | Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2); |
| 3487 | break; |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3488 | case TargetLowering::Expand: |
| 3489 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1); |
| 3490 | Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2); |
| 3491 | Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3492 | DAG.getConstant(PairTy.getSizeInBits()/2, |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3493 | TLI.getShiftAmountTy())); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3494 | Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2); |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3495 | break; |
| 3496 | } |
| 3497 | break; |
| 3498 | } |
| 3499 | |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3500 | case ISD::UREM: |
| 3501 | case ISD::SREM: |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 3502 | case ISD::FREM: |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3503 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
| 3504 | Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3505 | |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3506 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3507 | case TargetLowering::Promote: assert(0 && "Cannot promote this yet!"); |
| 3508 | case TargetLowering::Custom: |
| 3509 | isCustom = true; |
| 3510 | // FALLTHROUGH |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3511 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3512 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3513 | if (isCustom) { |
| 3514 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3515 | if (Tmp1.getNode()) Result = Tmp1; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3516 | } |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3517 | break; |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3518 | case TargetLowering::Expand: { |
Evan Cheng | 6b5578f | 2006-09-18 23:28:33 +0000 | [diff] [blame] | 3519 | unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV; |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 3520 | bool isSigned = DivOpc == ISD::SDIV; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3521 | MVT VT = Node->getValueType(0); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3522 | |
| 3523 | // See if remainder can be lowered using two-result operations. |
| 3524 | SDVTList VTs = DAG.getVTList(VT, VT); |
| 3525 | if (Node->getOpcode() == ISD::SREM && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 3526 | TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3527 | Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(), 1); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3528 | break; |
| 3529 | } |
| 3530 | if (Node->getOpcode() == ISD::UREM && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 3531 | TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3532 | Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(), 1); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3533 | break; |
| 3534 | } |
| 3535 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3536 | if (VT.isInteger()) { |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3537 | if (TLI.getOperationAction(DivOpc, VT) == |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3538 | TargetLowering::Legal) { |
| 3539 | // X % Y -> X-X/Y*Y |
Evan Cheng | 6b5578f | 2006-09-18 23:28:33 +0000 | [diff] [blame] | 3540 | Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2); |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3541 | Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2); |
| 3542 | Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3543 | } else if (VT.isVector()) { |
Dan Gohman | 8017631 | 2007-11-05 23:35:22 +0000 | [diff] [blame] | 3544 | Result = LegalizeOp(UnrollVectorOp(Op)); |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3545 | } else { |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3546 | assert(VT == MVT::i32 && |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3547 | "Cannot expand this binary operator!"); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3548 | RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM |
| 3549 | ? RTLIB::UREM_I32 : RTLIB::SREM_I32; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3550 | SDValue Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3551 | Result = ExpandLibCall(LC, Node, isSigned, Dummy); |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3552 | } |
Dan Gohman | 0d97426 | 2007-11-06 22:11:54 +0000 | [diff] [blame] | 3553 | } else { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3554 | assert(VT.isFloatingPoint() && |
Dan Gohman | 0d97426 | 2007-11-06 22:11:54 +0000 | [diff] [blame] | 3555 | "remainder op must have integer or floating-point type"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3556 | if (VT.isVector()) { |
Dan Gohman | 8017631 | 2007-11-05 23:35:22 +0000 | [diff] [blame] | 3557 | Result = LegalizeOp(UnrollVectorOp(Op)); |
| 3558 | } else { |
| 3559 | // Floating point mod -> fmod libcall. |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3560 | RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64, |
| 3561 | RTLIB::REM_F80, RTLIB::REM_PPCF128); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3562 | SDValue Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3563 | Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy); |
Dan Gohman | 8017631 | 2007-11-05 23:35:22 +0000 | [diff] [blame] | 3564 | } |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3565 | } |
| 3566 | break; |
| 3567 | } |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3568 | } |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3569 | break; |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3570 | case ISD::VAARG: { |
| 3571 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 3572 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer. |
| 3573 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3574 | MVT VT = Node->getValueType(0); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3575 | switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) { |
| 3576 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3577 | case TargetLowering::Custom: |
| 3578 | isCustom = true; |
| 3579 | // FALLTHROUGH |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3580 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3581 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
| 3582 | Result = Result.getValue(0); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3583 | Tmp1 = Result.getValue(1); |
| 3584 | |
| 3585 | if (isCustom) { |
| 3586 | Tmp2 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3587 | if (Tmp2.getNode()) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3588 | Result = LegalizeOp(Tmp2); |
| 3589 | Tmp1 = LegalizeOp(Tmp2.getValue(1)); |
| 3590 | } |
| 3591 | } |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3592 | break; |
| 3593 | case TargetLowering::Expand: { |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 3594 | const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3595 | SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3596 | // Increment the pointer, VAList, to the next vaarg |
Duncan Sands | 5c58a31 | 2008-11-03 11:51:11 +0000 | [diff] [blame] | 3597 | Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList, |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 3598 | DAG.getConstant(TLI.getTargetData()-> |
| 3599 | getTypePaddedSize(VT.getTypeForMVT()), |
| 3600 | TLI.getPointerTy())); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3601 | // Store the incremented VAList to the legalized pointer |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 3602 | Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3603 | // Load the actual argument out of the pointer VAList |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 3604 | Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3605 | Tmp1 = LegalizeOp(Result.getValue(1)); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3606 | Result = LegalizeOp(Result); |
| 3607 | break; |
| 3608 | } |
| 3609 | } |
| 3610 | // Since VAARG produces two values, make sure to remember that we |
| 3611 | // legalized both of them. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3612 | AddLegalizedOperand(SDValue(Node, 0), Result); |
| 3613 | AddLegalizedOperand(SDValue(Node, 1), Tmp1); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 3614 | return Op.getResNo() ? Tmp1 : Result; |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3615 | } |
| 3616 | |
| 3617 | case ISD::VACOPY: |
| 3618 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 3619 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer. |
| 3620 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer. |
| 3621 | |
| 3622 | switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) { |
| 3623 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3624 | case TargetLowering::Custom: |
| 3625 | isCustom = true; |
| 3626 | // FALLTHROUGH |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3627 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3628 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, |
| 3629 | Node->getOperand(3), Node->getOperand(4)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3630 | if (isCustom) { |
| 3631 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3632 | if (Tmp1.getNode()) Result = Tmp1; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3633 | } |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3634 | break; |
| 3635 | case TargetLowering::Expand: |
| 3636 | // This defaults to loading a pointer from the input and storing it to the |
| 3637 | // output, returning the chain. |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 3638 | const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue(); |
| 3639 | const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue(); |
Dan Gohman | 499c1bd | 2008-04-17 02:09:26 +0000 | [diff] [blame] | 3640 | Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0); |
| 3641 | Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3642 | break; |
| 3643 | } |
| 3644 | break; |
| 3645 | |
| 3646 | case ISD::VAEND: |
| 3647 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 3648 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer. |
| 3649 | |
| 3650 | switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) { |
| 3651 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3652 | case TargetLowering::Custom: |
| 3653 | isCustom = true; |
| 3654 | // FALLTHROUGH |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3655 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3656 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3657 | if (isCustom) { |
| 3658 | Tmp1 = TLI.LowerOperation(Tmp1, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3659 | if (Tmp1.getNode()) Result = Tmp1; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3660 | } |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3661 | break; |
| 3662 | case TargetLowering::Expand: |
| 3663 | Result = Tmp1; // Default to a no-op, return the chain |
| 3664 | break; |
| 3665 | } |
| 3666 | break; |
| 3667 | |
| 3668 | case ISD::VASTART: |
| 3669 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 3670 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer. |
| 3671 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3672 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
| 3673 | |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3674 | switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) { |
| 3675 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3676 | case TargetLowering::Legal: break; |
| 3677 | case TargetLowering::Custom: |
| 3678 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3679 | if (Tmp1.getNode()) Result = Tmp1; |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3680 | break; |
| 3681 | } |
| 3682 | break; |
| 3683 | |
Nate Begeman | 35ef913 | 2006-01-11 21:21:00 +0000 | [diff] [blame] | 3684 | case ISD::ROTL: |
| 3685 | case ISD::ROTR: |
| 3686 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3687 | Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3688 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3689 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
| 3690 | default: |
| 3691 | assert(0 && "ROTL/ROTR legalize operation not supported"); |
| 3692 | break; |
| 3693 | case TargetLowering::Legal: |
| 3694 | break; |
| 3695 | case TargetLowering::Custom: |
| 3696 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3697 | if (Tmp1.getNode()) Result = Tmp1; |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3698 | break; |
| 3699 | case TargetLowering::Promote: |
| 3700 | assert(0 && "Do not know how to promote ROTL/ROTR"); |
| 3701 | break; |
| 3702 | case TargetLowering::Expand: |
| 3703 | assert(0 && "Do not know how to expand ROTL/ROTR"); |
| 3704 | break; |
| 3705 | } |
Nate Begeman | 35ef913 | 2006-01-11 21:21:00 +0000 | [diff] [blame] | 3706 | break; |
| 3707 | |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 3708 | case ISD::BSWAP: |
| 3709 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Op |
| 3710 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3711 | case TargetLowering::Custom: |
| 3712 | assert(0 && "Cannot custom legalize this yet!"); |
| 3713 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3714 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3715 | break; |
| 3716 | case TargetLowering::Promote: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3717 | MVT OVT = Tmp1.getValueType(); |
| 3718 | MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); |
| 3719 | unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits(); |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 3720 | |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3721 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1); |
| 3722 | Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1); |
| 3723 | Result = DAG.getNode(ISD::SRL, NVT, Tmp1, |
| 3724 | DAG.getConstant(DiffBits, TLI.getShiftAmountTy())); |
| 3725 | break; |
| 3726 | } |
| 3727 | case TargetLowering::Expand: |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 3728 | Result = ExpandBSWAP(Tmp1, dl); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3729 | break; |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 3730 | } |
| 3731 | break; |
| 3732 | |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3733 | case ISD::CTPOP: |
| 3734 | case ISD::CTTZ: |
| 3735 | case ISD::CTLZ: |
| 3736 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Op |
| 3737 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Scott Michel | 910b66d | 2007-07-30 21:00:31 +0000 | [diff] [blame] | 3738 | case TargetLowering::Custom: |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3739 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3740 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Scott Michel | 910b66d | 2007-07-30 21:00:31 +0000 | [diff] [blame] | 3741 | if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) == |
Scott Michel | 335f4f7 | 2007-08-02 02:22:46 +0000 | [diff] [blame] | 3742 | TargetLowering::Custom) { |
| 3743 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3744 | if (Tmp1.getNode()) { |
Scott Michel | 335f4f7 | 2007-08-02 02:22:46 +0000 | [diff] [blame] | 3745 | Result = Tmp1; |
| 3746 | } |
Scott Michel | 910b66d | 2007-07-30 21:00:31 +0000 | [diff] [blame] | 3747 | } |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3748 | break; |
| 3749 | case TargetLowering::Promote: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3750 | MVT OVT = Tmp1.getValueType(); |
| 3751 | MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); |
Chris Lattner | edb1add | 2005-05-11 04:51:16 +0000 | [diff] [blame] | 3752 | |
| 3753 | // Zero extend the argument. |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3754 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1); |
| 3755 | // Perform the larger operation, then subtract if needed. |
| 3756 | Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3757 | switch (Node->getOpcode()) { |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3758 | case ISD::CTPOP: |
| 3759 | Result = Tmp1; |
| 3760 | break; |
| 3761 | case ISD::CTTZ: |
| 3762 | //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT) |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 3763 | Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3764 | DAG.getConstant(NVT.getSizeInBits(), NVT), |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 3765 | ISD::SETEQ); |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 3766 | Result = DAG.getNode(ISD::SELECT, NVT, Tmp2, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3767 | DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1); |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3768 | break; |
| 3769 | case ISD::CTLZ: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3770 | // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT)) |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 3771 | Result = DAG.getNode(ISD::SUB, NVT, Tmp1, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3772 | DAG.getConstant(NVT.getSizeInBits() - |
| 3773 | OVT.getSizeInBits(), NVT)); |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3774 | break; |
| 3775 | } |
| 3776 | break; |
| 3777 | } |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3778 | case TargetLowering::Expand: |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 3779 | Result = ExpandBitCount(Node->getOpcode(), Tmp1, dl); |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3780 | break; |
| 3781 | } |
| 3782 | break; |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 3783 | |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3784 | // Unary operators |
| 3785 | case ISD::FABS: |
| 3786 | case ISD::FNEG: |
Chris Lattner | da6ba87 | 2005-04-28 21:44:33 +0000 | [diff] [blame] | 3787 | case ISD::FSQRT: |
| 3788 | case ISD::FSIN: |
| 3789 | case ISD::FCOS: |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 3790 | case ISD::FLOG: |
| 3791 | case ISD::FLOG2: |
| 3792 | case ISD::FLOG10: |
| 3793 | case ISD::FEXP: |
| 3794 | case ISD::FEXP2: |
Dan Gohman | 509e84f | 2008-08-21 17:55:02 +0000 | [diff] [blame] | 3795 | case ISD::FTRUNC: |
| 3796 | case ISD::FFLOOR: |
| 3797 | case ISD::FCEIL: |
| 3798 | case ISD::FRINT: |
| 3799 | case ISD::FNEARBYINT: |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3800 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3801 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3802 | case TargetLowering::Promote: |
| 3803 | case TargetLowering::Custom: |
Evan Cheng | 59ad781 | 2006-01-31 18:14:25 +0000 | [diff] [blame] | 3804 | isCustom = true; |
| 3805 | // FALLTHROUGH |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3806 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3807 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Evan Cheng | 59ad781 | 2006-01-31 18:14:25 +0000 | [diff] [blame] | 3808 | if (isCustom) { |
| 3809 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3810 | if (Tmp1.getNode()) Result = Tmp1; |
Evan Cheng | 59ad781 | 2006-01-31 18:14:25 +0000 | [diff] [blame] | 3811 | } |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3812 | break; |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3813 | case TargetLowering::Expand: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3814 | switch (Node->getOpcode()) { |
| 3815 | default: assert(0 && "Unreachable!"); |
| 3816 | case ISD::FNEG: |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3817 | // Expand Y = FNEG(X) -> Y = SUB -0.0, X |
| 3818 | Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3819 | Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1); |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3820 | break; |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3821 | case ISD::FABS: { |
Chris Lattner | 4af6e0d | 2005-04-02 05:26:37 +0000 | [diff] [blame] | 3822 | // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X). |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3823 | MVT VT = Node->getValueType(0); |
Chris Lattner | 4af6e0d | 2005-04-02 05:26:37 +0000 | [diff] [blame] | 3824 | Tmp2 = DAG.getConstantFP(0.0, VT); |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 3825 | Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1.getValueType()), |
| 3826 | Tmp1, Tmp2, ISD::SETUGT); |
Chris Lattner | 4af6e0d | 2005-04-02 05:26:37 +0000 | [diff] [blame] | 3827 | Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1); |
| 3828 | Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3); |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3829 | break; |
| 3830 | } |
Evan Cheng | 9d24ac5 | 2008-09-09 23:35:53 +0000 | [diff] [blame] | 3831 | case ISD::FSQRT: |
| 3832 | case ISD::FSIN: |
| 3833 | case ISD::FCOS: |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 3834 | case ISD::FLOG: |
| 3835 | case ISD::FLOG2: |
| 3836 | case ISD::FLOG10: |
| 3837 | case ISD::FEXP: |
| 3838 | case ISD::FEXP2: |
Dan Gohman | 2bb1e3e | 2008-08-21 18:38:14 +0000 | [diff] [blame] | 3839 | case ISD::FTRUNC: |
| 3840 | case ISD::FFLOOR: |
| 3841 | case ISD::FCEIL: |
| 3842 | case ISD::FRINT: |
Evan Cheng | 9d24ac5 | 2008-09-09 23:35:53 +0000 | [diff] [blame] | 3843 | case ISD::FNEARBYINT: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3844 | MVT VT = Node->getValueType(0); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3845 | |
| 3846 | // Expand unsupported unary vector operators by unrolling them. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3847 | if (VT.isVector()) { |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3848 | Result = LegalizeOp(UnrollVectorOp(Op)); |
| 3849 | break; |
| 3850 | } |
| 3851 | |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3852 | RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3853 | switch(Node->getOpcode()) { |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3854 | case ISD::FSQRT: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3855 | LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64, |
| 3856 | RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3857 | break; |
| 3858 | case ISD::FSIN: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3859 | LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64, |
| 3860 | RTLIB::SIN_F80, RTLIB::SIN_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3861 | break; |
| 3862 | case ISD::FCOS: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3863 | LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64, |
| 3864 | RTLIB::COS_F80, RTLIB::COS_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3865 | break; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 3866 | case ISD::FLOG: |
| 3867 | LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64, |
| 3868 | RTLIB::LOG_F80, RTLIB::LOG_PPCF128); |
| 3869 | break; |
| 3870 | case ISD::FLOG2: |
| 3871 | LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64, |
| 3872 | RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128); |
| 3873 | break; |
| 3874 | case ISD::FLOG10: |
| 3875 | LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64, |
| 3876 | RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128); |
| 3877 | break; |
| 3878 | case ISD::FEXP: |
| 3879 | LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64, |
| 3880 | RTLIB::EXP_F80, RTLIB::EXP_PPCF128); |
| 3881 | break; |
| 3882 | case ISD::FEXP2: |
| 3883 | LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64, |
| 3884 | RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128); |
| 3885 | break; |
Dan Gohman | 2bb1e3e | 2008-08-21 18:38:14 +0000 | [diff] [blame] | 3886 | case ISD::FTRUNC: |
| 3887 | LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64, |
| 3888 | RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128); |
| 3889 | break; |
| 3890 | case ISD::FFLOOR: |
| 3891 | LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64, |
| 3892 | RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128); |
| 3893 | break; |
| 3894 | case ISD::FCEIL: |
| 3895 | LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64, |
| 3896 | RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128); |
| 3897 | break; |
| 3898 | case ISD::FRINT: |
| 3899 | LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64, |
| 3900 | RTLIB::RINT_F80, RTLIB::RINT_PPCF128); |
| 3901 | break; |
| 3902 | case ISD::FNEARBYINT: |
| 3903 | LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64, |
| 3904 | RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128); |
| 3905 | break; |
Evan Cheng | 9d24ac5 | 2008-09-09 23:35:53 +0000 | [diff] [blame] | 3906 | break; |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3907 | default: assert(0 && "Unreachable!"); |
| 3908 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3909 | SDValue Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3910 | Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy); |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3911 | break; |
| 3912 | } |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3913 | } |
| 3914 | break; |
| 3915 | } |
| 3916 | break; |
Chris Lattner | 6ddf8ed | 2006-09-09 06:03:30 +0000 | [diff] [blame] | 3917 | case ISD::FPOWI: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3918 | MVT VT = Node->getValueType(0); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3919 | |
| 3920 | // Expand unsupported unary vector operators by unrolling them. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3921 | if (VT.isVector()) { |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3922 | Result = LegalizeOp(UnrollVectorOp(Op)); |
| 3923 | break; |
| 3924 | } |
| 3925 | |
| 3926 | // 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] | 3927 | RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, |
| 3928 | RTLIB::POWI_F80, RTLIB::POWI_PPCF128); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3929 | SDValue Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3930 | Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy); |
Chris Lattner | 6ddf8ed | 2006-09-09 06:03:30 +0000 | [diff] [blame] | 3931 | break; |
| 3932 | } |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 3933 | case ISD::BIT_CONVERT: |
Chris Lattner | 67993f7 | 2006-01-23 07:30:46 +0000 | [diff] [blame] | 3934 | if (!isTypeLegal(Node->getOperand(0).getValueType())) { |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 3935 | Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0), |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 3936 | Node->getValueType(0), dl); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3937 | } else if (Op.getOperand(0).getValueType().isVector()) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3938 | // The input has to be a vector type, we have to either scalarize it, pack |
| 3939 | // it, or convert it based on whether the input vector type is legal. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3940 | SDNode *InVal = Node->getOperand(0).getNode(); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 3941 | int InIx = Node->getOperand(0).getResNo(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3942 | unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements(); |
| 3943 | MVT EVT = InVal->getValueType(InIx).getVectorElementType(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3944 | |
| 3945 | // Figure out if there is a simple type corresponding to this Vector |
| 3946 | // type. If so, convert to the vector type. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3947 | MVT TVT = MVT::getVectorVT(EVT, NumElems); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3948 | if (TLI.isTypeLegal(TVT)) { |
Dan Gohman | 07a9676 | 2007-07-16 14:29:03 +0000 | [diff] [blame] | 3949 | // Turn this into a bit convert of the vector input. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3950 | Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), |
| 3951 | LegalizeOp(Node->getOperand(0))); |
| 3952 | break; |
| 3953 | } else if (NumElems == 1) { |
| 3954 | // Turn this into a bit convert of the scalar input. |
| 3955 | Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), |
| 3956 | ScalarizeVectorOp(Node->getOperand(0))); |
| 3957 | break; |
| 3958 | } else { |
| 3959 | // FIXME: UNIMP! Store then reload |
| 3960 | assert(0 && "Cast from unsupported vector type not implemented yet!"); |
| 3961 | } |
Chris Lattner | 67993f7 | 2006-01-23 07:30:46 +0000 | [diff] [blame] | 3962 | } else { |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 3963 | switch (TLI.getOperationAction(ISD::BIT_CONVERT, |
| 3964 | Node->getOperand(0).getValueType())) { |
| 3965 | default: assert(0 && "Unknown operation action!"); |
| 3966 | case TargetLowering::Expand: |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 3967 | Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0), |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 3968 | Node->getValueType(0), dl); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 3969 | break; |
| 3970 | case TargetLowering::Legal: |
| 3971 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3972 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 3973 | break; |
| 3974 | } |
| 3975 | } |
| 3976 | break; |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 3977 | case ISD::CONVERT_RNDSAT: { |
| 3978 | ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode(); |
| 3979 | switch (CvtCode) { |
| 3980 | default: assert(0 && "Unknown cvt code!"); |
| 3981 | case ISD::CVT_SF: |
| 3982 | case ISD::CVT_UF: |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 3983 | case ISD::CVT_FF: |
Mon P Wang | 1cd46bb | 2008-12-09 07:27:39 +0000 | [diff] [blame] | 3984 | break; |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 3985 | case ISD::CVT_FS: |
| 3986 | case ISD::CVT_FU: |
| 3987 | case ISD::CVT_SS: |
| 3988 | case ISD::CVT_SU: |
| 3989 | case ISD::CVT_US: |
| 3990 | case ISD::CVT_UU: { |
| 3991 | SDValue DTyOp = Node->getOperand(1); |
| 3992 | SDValue STyOp = Node->getOperand(2); |
| 3993 | SDValue RndOp = Node->getOperand(3); |
| 3994 | SDValue SatOp = Node->getOperand(4); |
| 3995 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 3996 | case Expand: assert(0 && "Shouldn't need to expand other operators here!"); |
| 3997 | case Legal: |
| 3998 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3999 | Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp, |
| 4000 | RndOp, SatOp); |
| 4001 | if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) == |
| 4002 | TargetLowering::Custom) { |
| 4003 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 4004 | if (Tmp1.getNode()) Result = Tmp1; |
| 4005 | } |
| 4006 | break; |
| 4007 | case Promote: |
| 4008 | Result = PromoteOp(Node->getOperand(0)); |
| 4009 | // For FP, make Op1 a i32 |
| 4010 | |
Mon P Wang | 1cd46bb | 2008-12-09 07:27:39 +0000 | [diff] [blame] | 4011 | Result = DAG.getConvertRndSat(Op.getValueType(), Result, |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4012 | DTyOp, STyOp, RndOp, SatOp, CvtCode); |
| 4013 | break; |
| 4014 | } |
| 4015 | break; |
| 4016 | } |
| 4017 | } // end switch CvtCode |
| 4018 | break; |
| 4019 | } |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 4020 | // Conversion operators. The source and destination have different types. |
Chris Lattner | ae0aacb | 2005-01-08 08:08:56 +0000 | [diff] [blame] | 4021 | case ISD::SINT_TO_FP: |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 4022 | case ISD::UINT_TO_FP: { |
| 4023 | bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP; |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 4024 | Result = LegalizeINT_TO_FP(Result, isSigned, |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 4025 | Node->getValueType(0), Node->getOperand(0), dl); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 4026 | break; |
| 4027 | } |
| 4028 | case ISD::TRUNCATE: |
| 4029 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4030 | case Legal: |
| 4031 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Scott Michel | 546d7b5 | 2008-12-02 19:55:08 +0000 | [diff] [blame] | 4032 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
| 4033 | default: assert(0 && "Unknown TRUNCATE legalization operation action!"); |
| 4034 | case TargetLowering::Custom: |
Mon P Wang | f67303d | 2008-12-11 00:44:22 +0000 | [diff] [blame] | 4035 | isCustom = true; |
| 4036 | // FALLTHROUGH |
Scott Michel | 546d7b5 | 2008-12-02 19:55:08 +0000 | [diff] [blame] | 4037 | case TargetLowering::Legal: |
Mon P Wang | f67303d | 2008-12-11 00:44:22 +0000 | [diff] [blame] | 4038 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 4039 | if (isCustom) { |
| 4040 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 4041 | if (Tmp1.getNode()) Result = Tmp1; |
| 4042 | } |
| 4043 | break; |
Mon P Wang | 9e5ecb8 | 2008-12-12 01:25:51 +0000 | [diff] [blame] | 4044 | case TargetLowering::Expand: |
| 4045 | assert(Result.getValueType().isVector() && "must be vector type"); |
| 4046 | // Unroll the truncate. We should do better. |
| 4047 | Result = LegalizeOp(UnrollVectorOp(Result)); |
Tilmann Scheller | b0a5cdd | 2008-12-02 12:12:25 +0000 | [diff] [blame] | 4048 | } |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 4049 | break; |
| 4050 | case Expand: |
| 4051 | ExpandOp(Node->getOperand(0), Tmp1, Tmp2); |
| 4052 | |
| 4053 | // Since the result is legal, we should just be able to truncate the low |
| 4054 | // part of the source. |
| 4055 | Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1); |
| 4056 | break; |
| 4057 | case Promote: |
| 4058 | Result = PromoteOp(Node->getOperand(0)); |
| 4059 | Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result); |
| 4060 | break; |
| 4061 | } |
| 4062 | break; |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 4063 | |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 4064 | case ISD::FP_TO_SINT: |
| 4065 | case ISD::FP_TO_UINT: |
| 4066 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4067 | case Legal: |
Chris Lattner | f1fa74e | 2005-07-30 00:04:12 +0000 | [diff] [blame] | 4068 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 4069 | |
Chris Lattner | 1618beb | 2005-07-29 00:11:56 +0000 | [diff] [blame] | 4070 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){ |
| 4071 | default: assert(0 && "Unknown operation action!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4072 | case TargetLowering::Custom: |
| 4073 | isCustom = true; |
| 4074 | // FALLTHROUGH |
| 4075 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 4076 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4077 | if (isCustom) { |
| 4078 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4079 | if (Tmp1.getNode()) Result = Tmp1; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4080 | } |
| 4081 | break; |
| 4082 | case TargetLowering::Promote: |
| 4083 | Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0), |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 4084 | Node->getOpcode() == ISD::FP_TO_SINT, |
| 4085 | dl); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4086 | break; |
Chris Lattner | 1618beb | 2005-07-29 00:11:56 +0000 | [diff] [blame] | 4087 | case TargetLowering::Expand: |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 4088 | if (Node->getOpcode() == ISD::FP_TO_UINT) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4089 | SDValue True, False; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4090 | MVT VT = Node->getOperand(0).getValueType(); |
| 4091 | MVT NVT = Node->getValueType(0); |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 4092 | const uint64_t zero[] = {0, 0}; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4093 | APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero)); |
| 4094 | APInt x = APInt::getSignBit(NVT.getSizeInBits()); |
Dan Gohman | c7773bf | 2008-02-29 01:44:25 +0000 | [diff] [blame] | 4095 | (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven); |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 4096 | Tmp2 = DAG.getConstantFP(apf, VT); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 4097 | Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), |
| 4098 | Node->getOperand(0), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 4099 | Tmp2, ISD::SETLT); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 4100 | True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0)); |
| 4101 | False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, |
| 4102 | DAG.getNode(ISD::FSUB, dl, VT, |
| 4103 | Node->getOperand(0), Tmp2)); |
| 4104 | False = DAG.getNode(ISD::XOR, dl, NVT, False, |
Dan Gohman | c7773bf | 2008-02-29 01:44:25 +0000 | [diff] [blame] | 4105 | DAG.getConstant(x, NVT)); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 4106 | Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4107 | break; |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 4108 | } else { |
| 4109 | assert(0 && "Do not know how to expand FP_TO_SINT yet!"); |
| 4110 | } |
| 4111 | break; |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 4112 | } |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 4113 | break; |
Evan Cheng | 6af00d5 | 2006-12-13 01:57:55 +0000 | [diff] [blame] | 4114 | case Expand: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4115 | MVT VT = Op.getValueType(); |
| 4116 | MVT OVT = Node->getOperand(0).getValueType(); |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 4117 | // Convert ppcf128 to i32 |
Dale Johannesen | 6eaeff2 | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 4118 | if (OVT == MVT::ppcf128 && VT == MVT::i32) { |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4119 | if (Node->getOpcode() == ISD::FP_TO_SINT) { |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 4120 | Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4121 | Node->getOperand(0), DAG.getValueType(MVT::f64)); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 4122 | Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4123 | DAG.getIntPtrConstant(1)); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 4124 | Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4125 | } else { |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 4126 | const uint64_t TwoE31[] = {0x41e0000000000000LL, 0}; |
| 4127 | APFloat apf = APFloat(APInt(128, 2, TwoE31)); |
| 4128 | Tmp2 = DAG.getConstantFP(apf, OVT); |
| 4129 | // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X |
| 4130 | // FIXME: generated code sucks. |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 4131 | Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0), |
| 4132 | Tmp2, |
| 4133 | DAG.getNode(ISD::ADD, dl, MVT::i32, |
| 4134 | DAG.getNode(ISD::FP_TO_SINT, dl, VT, |
| 4135 | DAG.getNode(ISD::FSUB, dl, OVT, |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 4136 | Node->getOperand(0), Tmp2)), |
| 4137 | DAG.getConstant(0x80000000, MVT::i32)), |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 4138 | DAG.getNode(ISD::FP_TO_SINT, dl, VT, |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 4139 | Node->getOperand(0)), |
| 4140 | DAG.getCondCode(ISD::SETGE)); |
| 4141 | } |
Dale Johannesen | 6eaeff2 | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 4142 | break; |
| 4143 | } |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 4144 | // Convert f32 / f64 to i32 / i64 / i128. |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 4145 | RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ? |
| 4146 | RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT); |
| 4147 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4148 | SDValue Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 4149 | Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy); |
Evan Cheng | 6af00d5 | 2006-12-13 01:57:55 +0000 | [diff] [blame] | 4150 | break; |
| 4151 | } |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 4152 | case Promote: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 4153 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4154 | Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1)); |
| 4155 | Result = LegalizeOp(Result); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 4156 | break; |
| 4157 | } |
| 4158 | break; |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 4159 | |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 4160 | case ISD::FP_EXTEND: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4161 | MVT DstVT = Op.getValueType(); |
| 4162 | MVT SrcVT = Op.getOperand(0).getValueType(); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4163 | if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) { |
| 4164 | // The only other way we can lower this is to turn it into a STORE, |
| 4165 | // LOAD pair, targetting a temporary location (a stack slot). |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4166 | Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT, dl); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4167 | break; |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 4168 | } |
| 4169 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4170 | case Expand: assert(0 && "Shouldn't need to expand other operators here!"); |
| 4171 | case Legal: |
| 4172 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 4173 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 4174 | break; |
| 4175 | case Promote: |
| 4176 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4177 | Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1); |
| 4178 | break; |
| 4179 | } |
| 4180 | break; |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4181 | } |
Dale Johannesen | 5411a39 | 2007-08-09 01:04:01 +0000 | [diff] [blame] | 4182 | case ISD::FP_ROUND: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4183 | MVT DstVT = Op.getValueType(); |
| 4184 | MVT SrcVT = Op.getOperand(0).getValueType(); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4185 | if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) { |
| 4186 | if (SrcVT == MVT::ppcf128) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4187 | SDValue Lo; |
Dale Johannesen | 713ed3f | 2008-01-20 01:18:38 +0000 | [diff] [blame] | 4188 | ExpandOp(Node->getOperand(0), Lo, Result); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4189 | // 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] | 4190 | if (DstVT!=MVT::f64) |
| 4191 | Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1)); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4192 | break; |
Dale Johannesen | 5411a39 | 2007-08-09 01:04:01 +0000 | [diff] [blame] | 4193 | } |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4194 | // The only other way we can lower this is to turn it into a STORE, |
| 4195 | // LOAD pair, targetting a temporary location (a stack slot). |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4196 | Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT, dl); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4197 | break; |
Dale Johannesen | 849f214 | 2007-07-03 00:53:03 +0000 | [diff] [blame] | 4198 | } |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 4199 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4200 | case Expand: assert(0 && "Shouldn't need to expand other operators here!"); |
| 4201 | case Legal: |
| 4202 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4203 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 4204 | break; |
| 4205 | case Promote: |
| 4206 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4207 | Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1, |
| 4208 | Node->getOperand(1)); |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 4209 | break; |
| 4210 | } |
| 4211 | break; |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4212 | } |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 4213 | case ISD::ANY_EXTEND: |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 4214 | case ISD::ZERO_EXTEND: |
| 4215 | case ISD::SIGN_EXTEND: |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 4216 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4217 | case Expand: assert(0 && "Shouldn't need to expand other operators here!"); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 4218 | case Legal: |
| 4219 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Scott Michel | 82747a5 | 2008-04-30 00:26:38 +0000 | [diff] [blame] | 4220 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Scott Michel | 0123b7d | 2008-02-15 23:05:48 +0000 | [diff] [blame] | 4221 | if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) == |
| 4222 | TargetLowering::Custom) { |
Scott Michel | 82747a5 | 2008-04-30 00:26:38 +0000 | [diff] [blame] | 4223 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4224 | if (Tmp1.getNode()) Result = Tmp1; |
Scott Michel | 0123b7d | 2008-02-15 23:05:48 +0000 | [diff] [blame] | 4225 | } |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 4226 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4227 | case Promote: |
| 4228 | switch (Node->getOpcode()) { |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 4229 | case ISD::ANY_EXTEND: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 4230 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4231 | Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1); |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 4232 | break; |
Chris Lattner | 1713e73 | 2005-01-16 00:38:00 +0000 | [diff] [blame] | 4233 | case ISD::ZERO_EXTEND: |
| 4234 | Result = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 4235 | Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result); |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 4236 | Result = DAG.getZeroExtendInReg(Result, |
| 4237 | Node->getOperand(0).getValueType()); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4238 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4239 | case ISD::SIGN_EXTEND: |
Chris Lattner | 1713e73 | 2005-01-16 00:38:00 +0000 | [diff] [blame] | 4240 | Result = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 4241 | Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result); |
Chris Lattner | 1713e73 | 2005-01-16 00:38:00 +0000 | [diff] [blame] | 4242 | Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(), |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4243 | Result, |
| 4244 | DAG.getValueType(Node->getOperand(0).getValueType())); |
Chris Lattner | 1713e73 | 2005-01-16 00:38:00 +0000 | [diff] [blame] | 4245 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4246 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 4247 | } |
| 4248 | break; |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 4249 | case ISD::FP_ROUND_INREG: |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 4250 | case ISD::SIGN_EXTEND_INREG: { |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 4251 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4252 | MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT(); |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 4253 | |
| 4254 | // If this operation is not supported, convert it to a shl/shr or load/store |
| 4255 | // pair. |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 4256 | switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) { |
| 4257 | default: assert(0 && "This action not supported for this op yet!"); |
| 4258 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 4259 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 4260 | break; |
| 4261 | case TargetLowering::Expand: |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 4262 | // If this is an integer extend and shifts are supported, do that. |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 4263 | if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) { |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 4264 | // NOTE: we could fall back on load/store here too for targets without |
| 4265 | // SAR. However, it is doubtful that any exist. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4266 | unsigned BitsDiff = Node->getValueType(0).getSizeInBits() - |
| 4267 | ExtraVT.getSizeInBits(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4268 | SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy()); |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 4269 | Result = DAG.getNode(ISD::SHL, Node->getValueType(0), |
| 4270 | Node->getOperand(0), ShiftCst); |
| 4271 | Result = DAG.getNode(ISD::SRA, Node->getValueType(0), |
| 4272 | Result, ShiftCst); |
| 4273 | } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) { |
Jim Laskey | 2d84c4c | 2006-10-11 17:52:19 +0000 | [diff] [blame] | 4274 | // 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] | 4275 | // EXTLOAD pair, targetting a temporary location (a stack slot). |
| 4276 | |
| 4277 | // NOTE: there is a choice here between constantly creating new stack |
| 4278 | // slots and always reusing the same one. We currently always create |
| 4279 | // new ones, as reuse may inhibit scheduling. |
Chris Lattner | a66bb39 | 2008-01-16 07:51:34 +0000 | [diff] [blame] | 4280 | Result = EmitStackConvert(Node->getOperand(0), ExtraVT, |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4281 | Node->getValueType(0), dl); |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 4282 | } else { |
| 4283 | assert(0 && "Unknown op"); |
| 4284 | } |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 4285 | break; |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 4286 | } |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 4287 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 4288 | } |
Duncan Sands | 36397f5 | 2007-07-27 12:58:54 +0000 | [diff] [blame] | 4289 | case ISD::TRAMPOLINE: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4290 | SDValue Ops[6]; |
Duncan Sands | 36397f5 | 2007-07-27 12:58:54 +0000 | [diff] [blame] | 4291 | for (unsigned i = 0; i != 6; ++i) |
| 4292 | Ops[i] = LegalizeOp(Node->getOperand(i)); |
| 4293 | Result = DAG.UpdateNodeOperands(Result, Ops, 6); |
| 4294 | // The only option for this node is to custom lower it. |
| 4295 | Result = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4296 | assert(Result.getNode() && "Should always custom lower!"); |
Duncan Sands | f7331b3 | 2007-09-11 14:10:23 +0000 | [diff] [blame] | 4297 | |
| 4298 | // Since trampoline produces two values, make sure to remember that we |
| 4299 | // legalized both of them. |
| 4300 | Tmp1 = LegalizeOp(Result.getValue(1)); |
| 4301 | Result = LegalizeOp(Result); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4302 | AddLegalizedOperand(SDValue(Node, 0), Result); |
| 4303 | AddLegalizedOperand(SDValue(Node, 1), Tmp1); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 4304 | return Op.getResNo() ? Tmp1 : Result; |
Duncan Sands | 36397f5 | 2007-07-27 12:58:54 +0000 | [diff] [blame] | 4305 | } |
Dan Gohman | 9c78a39 | 2008-05-14 00:43:10 +0000 | [diff] [blame] | 4306 | case ISD::FLT_ROUNDS_: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4307 | MVT VT = Node->getValueType(0); |
Anton Korobeynikov | 917c2a6 | 2007-11-15 23:25:33 +0000 | [diff] [blame] | 4308 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 4309 | default: assert(0 && "This action not supported for this op yet!"); |
| 4310 | case TargetLowering::Custom: |
| 4311 | Result = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4312 | if (Result.getNode()) break; |
Anton Korobeynikov | 917c2a6 | 2007-11-15 23:25:33 +0000 | [diff] [blame] | 4313 | // Fall Thru |
| 4314 | case TargetLowering::Legal: |
| 4315 | // If this operation is not supported, lower it to constant 1 |
| 4316 | Result = DAG.getConstant(1, VT); |
| 4317 | break; |
| 4318 | } |
Dan Gohman | 9ab9ee8 | 2008-05-12 16:07:15 +0000 | [diff] [blame] | 4319 | break; |
Anton Korobeynikov | 917c2a6 | 2007-11-15 23:25:33 +0000 | [diff] [blame] | 4320 | } |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 4321 | case ISD::TRAP: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4322 | MVT VT = Node->getValueType(0); |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 4323 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 4324 | default: assert(0 && "This action not supported for this op yet!"); |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 4325 | case TargetLowering::Legal: |
| 4326 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 4327 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 4328 | break; |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 4329 | case TargetLowering::Custom: |
| 4330 | Result = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4331 | if (Result.getNode()) break; |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 4332 | // Fall Thru |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 4333 | case TargetLowering::Expand: |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 4334 | // If this operation is not supported, lower it to 'abort()' call |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 4335 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 4336 | TargetLowering::ArgListTy Args; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4337 | std::pair<SDValue,SDValue> CallResult = |
Duncan Sands | 00fee65 | 2008-02-14 17:28:50 +0000 | [diff] [blame] | 4338 | TLI.LowerCallTo(Tmp1, Type::VoidTy, |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 4339 | false, false, false, false, CallingConv::C, false, |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 4340 | DAG.getExternalSymbol("abort", TLI.getPointerTy()), |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 4341 | Args, DAG, dl); |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 4342 | Result = CallResult.second; |
| 4343 | break; |
| 4344 | } |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 4345 | break; |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 4346 | } |
Bill Wendling | 8ac0d4b | 2008-11-22 00:22:52 +0000 | [diff] [blame] | 4347 | |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4348 | case ISD::SADDO: |
| 4349 | case ISD::SSUBO: { |
Bill Wendling | c0062fb | 2008-11-25 08:12:19 +0000 | [diff] [blame] | 4350 | MVT VT = Node->getValueType(0); |
| 4351 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 4352 | default: assert(0 && "This action not supported for this op yet!"); |
| 4353 | case TargetLowering::Custom: |
| 4354 | Result = TLI.LowerOperation(Op, DAG); |
| 4355 | if (Result.getNode()) break; |
| 4356 | // FALLTHROUGH |
| 4357 | case TargetLowering::Legal: { |
| 4358 | SDValue LHS = LegalizeOp(Node->getOperand(0)); |
| 4359 | SDValue RHS = LegalizeOp(Node->getOperand(1)); |
| 4360 | |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4361 | SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ? |
| 4362 | ISD::ADD : ISD::SUB, LHS.getValueType(), |
| 4363 | LHS, RHS); |
Bill Wendling | c0062fb | 2008-11-25 08:12:19 +0000 | [diff] [blame] | 4364 | MVT OType = Node->getValueType(1); |
| 4365 | |
Bill Wendling | a6af91a | 2008-11-25 08:19:22 +0000 | [diff] [blame] | 4366 | SDValue Zero = DAG.getConstant(0, LHS.getValueType()); |
Bill Wendling | c0062fb | 2008-11-25 08:12:19 +0000 | [diff] [blame] | 4367 | |
Bill Wendling | 740464e | 2008-11-25 19:40:17 +0000 | [diff] [blame] | 4368 | // LHSSign -> LHS >= 0 |
| 4369 | // RHSSign -> RHS >= 0 |
| 4370 | // SumSign -> Sum >= 0 |
| 4371 | // |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4372 | // Add: |
Bill Wendling | 740464e | 2008-11-25 19:40:17 +0000 | [diff] [blame] | 4373 | // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign) |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4374 | // Sub: |
| 4375 | // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign) |
Bill Wendling | 740464e | 2008-11-25 19:40:17 +0000 | [diff] [blame] | 4376 | // |
| 4377 | SDValue LHSSign = DAG.getSetCC(OType, LHS, Zero, ISD::SETGE); |
| 4378 | SDValue RHSSign = DAG.getSetCC(OType, RHS, Zero, ISD::SETGE); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4379 | SDValue SignsMatch = DAG.getSetCC(OType, LHSSign, RHSSign, |
| 4380 | Node->getOpcode() == ISD::SADDO ? |
| 4381 | ISD::SETEQ : ISD::SETNE); |
Bill Wendling | c0062fb | 2008-11-25 08:12:19 +0000 | [diff] [blame] | 4382 | |
Bill Wendling | 740464e | 2008-11-25 19:40:17 +0000 | [diff] [blame] | 4383 | SDValue SumSign = DAG.getSetCC(OType, Sum, Zero, ISD::SETGE); |
| 4384 | SDValue SumSignNE = DAG.getSetCC(OType, LHSSign, SumSign, ISD::SETNE); |
Bill Wendling | c0062fb | 2008-11-25 08:12:19 +0000 | [diff] [blame] | 4385 | |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4386 | SDValue Cmp = DAG.getNode(ISD::AND, OType, SignsMatch, SumSignNE); |
Bill Wendling | c0062fb | 2008-11-25 08:12:19 +0000 | [diff] [blame] | 4387 | |
| 4388 | MVT ValueVTs[] = { LHS.getValueType(), OType }; |
| 4389 | SDValue Ops[] = { Sum, Cmp }; |
| 4390 | |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 4391 | Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(&ValueVTs[0], 2), |
| 4392 | &Ops[0], 2); |
Bill Wendling | c0062fb | 2008-11-25 08:12:19 +0000 | [diff] [blame] | 4393 | SDNode *RNode = Result.getNode(); |
| 4394 | DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0)); |
| 4395 | DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1)); |
| 4396 | break; |
| 4397 | } |
| 4398 | } |
| 4399 | |
| 4400 | break; |
| 4401 | } |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4402 | case ISD::UADDO: |
| 4403 | case ISD::USUBO: { |
Bill Wendling | 41ea7e7 | 2008-11-24 19:21:46 +0000 | [diff] [blame] | 4404 | MVT VT = Node->getValueType(0); |
| 4405 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 4406 | default: assert(0 && "This action not supported for this op yet!"); |
| 4407 | case TargetLowering::Custom: |
| 4408 | Result = TLI.LowerOperation(Op, DAG); |
| 4409 | if (Result.getNode()) break; |
| 4410 | // FALLTHROUGH |
| 4411 | case TargetLowering::Legal: { |
| 4412 | SDValue LHS = LegalizeOp(Node->getOperand(0)); |
| 4413 | SDValue RHS = LegalizeOp(Node->getOperand(1)); |
Bill Wendling | 8ac0d4b | 2008-11-22 00:22:52 +0000 | [diff] [blame] | 4414 | |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4415 | SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ? |
| 4416 | ISD::ADD : ISD::SUB, LHS.getValueType(), |
| 4417 | LHS, RHS); |
Bill Wendling | 41ea7e7 | 2008-11-24 19:21:46 +0000 | [diff] [blame] | 4418 | MVT OType = Node->getValueType(1); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4419 | SDValue Cmp = DAG.getSetCC(OType, Sum, LHS, |
| 4420 | Node->getOpcode () == ISD::UADDO ? |
| 4421 | ISD::SETULT : ISD::SETUGT); |
Bill Wendling | 8ac0d4b | 2008-11-22 00:22:52 +0000 | [diff] [blame] | 4422 | |
Bill Wendling | 41ea7e7 | 2008-11-24 19:21:46 +0000 | [diff] [blame] | 4423 | MVT ValueVTs[] = { LHS.getValueType(), OType }; |
| 4424 | SDValue Ops[] = { Sum, Cmp }; |
Bill Wendling | 8ac0d4b | 2008-11-22 00:22:52 +0000 | [diff] [blame] | 4425 | |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 4426 | Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(&ValueVTs[0], 2), |
| 4427 | &Ops[0], 2); |
Bill Wendling | 41ea7e7 | 2008-11-24 19:21:46 +0000 | [diff] [blame] | 4428 | SDNode *RNode = Result.getNode(); |
| 4429 | DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0)); |
| 4430 | DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1)); |
| 4431 | break; |
| 4432 | } |
| 4433 | } |
| 4434 | |
Bill Wendling | 8ac0d4b | 2008-11-22 00:22:52 +0000 | [diff] [blame] | 4435 | break; |
| 4436 | } |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4437 | case ISD::SMULO: |
| 4438 | case ISD::UMULO: { |
| 4439 | MVT VT = Node->getValueType(0); |
| 4440 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 4441 | default: assert(0 && "This action is not supported at all!"); |
| 4442 | case TargetLowering::Custom: |
| 4443 | Result = TLI.LowerOperation(Op, DAG); |
| 4444 | if (Result.getNode()) break; |
| 4445 | // Fall Thru |
| 4446 | case TargetLowering::Legal: |
| 4447 | // FIXME: According to Hacker's Delight, this can be implemented in |
| 4448 | // target independent lowering, but it would be inefficient, since it |
Bill Wendling | bc5e15e | 2008-12-10 02:01:32 +0000 | [diff] [blame] | 4449 | // requires a division + a branch. |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4450 | assert(0 && "Target independent lowering is not supported for SMULO/UMULO!"); |
| 4451 | break; |
| 4452 | } |
| 4453 | break; |
| 4454 | } |
| 4455 | |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 4456 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4457 | |
Chris Lattner | 4ddd283 | 2006-04-08 04:13:17 +0000 | [diff] [blame] | 4458 | assert(Result.getValueType() == Op.getValueType() && |
| 4459 | "Bad legalization!"); |
| 4460 | |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4461 | // Make sure that the generated code is itself legal. |
| 4462 | if (Result != Op) |
| 4463 | Result = LegalizeOp(Result); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 4464 | |
Chris Lattner | 45982da | 2005-05-12 16:53:42 +0000 | [diff] [blame] | 4465 | // Note that LegalizeOp may be reentered even from single-use nodes, which |
| 4466 | // means that we always must cache transformed nodes. |
| 4467 | AddLegalizedOperand(Op, Result); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 4468 | return Result; |
| 4469 | } |
| 4470 | |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4471 | /// PromoteOp - Given an operation that produces a value in an invalid type, |
| 4472 | /// promote it to compute the value into a larger type. The produced value will |
| 4473 | /// have the correct bits for the low portion of the register, but no guarantee |
| 4474 | /// 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] | 4475 | SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4476 | MVT VT = Op.getValueType(); |
| 4477 | MVT NVT = TLI.getTypeToTransformTo(VT); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4478 | assert(getTypeAction(VT) == Promote && |
| 4479 | "Caller should expand or legalize operands that are not promotable!"); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4480 | assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() && |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4481 | "Cannot promote to smaller type!"); |
| 4482 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4483 | SDValue Tmp1, Tmp2, Tmp3; |
| 4484 | SDValue Result; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4485 | SDNode *Node = Op.getNode(); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4486 | DebugLoc dl = Node->getDebugLoc(); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4487 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4488 | DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op); |
Chris Lattner | 6fdcb25 | 2005-09-02 20:32:45 +0000 | [diff] [blame] | 4489 | if (I != PromotedNodes.end()) return I->second; |
Chris Lattner | 45982da | 2005-05-12 16:53:42 +0000 | [diff] [blame] | 4490 | |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4491 | switch (Node->getOpcode()) { |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 4492 | case ISD::CopyFromReg: |
| 4493 | assert(0 && "CopyFromReg must be legal!"); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4494 | default: |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 4495 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 4496 | cerr << "NODE: "; Node->dump(&DAG); cerr << "\n"; |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 4497 | #endif |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4498 | assert(0 && "Do not know how to promote this operator!"); |
| 4499 | abort(); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 4500 | case ISD::UNDEF: |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4501 | Result = DAG.getNode(ISD::UNDEF, dl, NVT); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 4502 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4503 | case ISD::Constant: |
Chris Lattner | ec176e3 | 2005-08-30 16:56:19 +0000 | [diff] [blame] | 4504 | if (VT != MVT::i1) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4505 | Result = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Op); |
Chris Lattner | ec176e3 | 2005-08-30 16:56:19 +0000 | [diff] [blame] | 4506 | else |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4507 | Result = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Op); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4508 | assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?"); |
| 4509 | break; |
| 4510 | case ISD::ConstantFP: |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4511 | Result = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4512 | assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?"); |
| 4513 | break; |
Chris Lattner | ef5cd1d | 2005-01-18 17:54:55 +0000 | [diff] [blame] | 4514 | |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 4515 | case ISD::SETCC: { |
| 4516 | MVT VT0 = Node->getOperand(0).getValueType(); |
| 4517 | assert(isTypeLegal(TLI.getSetCCResultType(VT0)) |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 4518 | && "SetCC type is not legal??"); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4519 | Result = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(VT0), |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 4520 | Node->getOperand(0), Node->getOperand(1), |
| 4521 | Node->getOperand(2)); |
Chris Lattner | 82fbfb6 | 2005-01-18 02:59:52 +0000 | [diff] [blame] | 4522 | break; |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 4523 | } |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4524 | case ISD::TRUNCATE: |
| 4525 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4526 | case Legal: |
| 4527 | Result = LegalizeOp(Node->getOperand(0)); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4528 | assert(Result.getValueType().bitsGE(NVT) && |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4529 | "This truncation doesn't make sense!"); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 4530 | if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4531 | Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Result); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4532 | break; |
Chris Lattner | e76ad6d | 2005-01-28 22:52:50 +0000 | [diff] [blame] | 4533 | case Promote: |
| 4534 | // The truncation is not required, because we don't guarantee anything |
| 4535 | // about high bits anyway. |
| 4536 | Result = PromoteOp(Node->getOperand(0)); |
| 4537 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4538 | case Expand: |
Nate Begeman | 79e46ac | 2005-04-04 00:57:08 +0000 | [diff] [blame] | 4539 | ExpandOp(Node->getOperand(0), Tmp1, Tmp2); |
| 4540 | // Truncate the low part of the expanded value to the result type |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4541 | Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Tmp1); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4542 | } |
| 4543 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4544 | case ISD::SIGN_EXTEND: |
| 4545 | case ISD::ZERO_EXTEND: |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 4546 | case ISD::ANY_EXTEND: |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4547 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4548 | case Expand: assert(0 && "BUG: Smaller reg should have been promoted!"); |
| 4549 | case Legal: |
| 4550 | // Input is legal? Just do extend all the way to the larger type. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4551 | Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4552 | break; |
| 4553 | case Promote: |
| 4554 | // Promote the reg if it's smaller. |
| 4555 | Result = PromoteOp(Node->getOperand(0)); |
| 4556 | // The high bits are not guaranteed to be anything. Insert an extend. |
| 4557 | if (Node->getOpcode() == ISD::SIGN_EXTEND) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4558 | Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result, |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4559 | DAG.getValueType(Node->getOperand(0).getValueType())); |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 4560 | else if (Node->getOpcode() == ISD::ZERO_EXTEND) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4561 | Result = DAG.getZeroExtendInReg(Result, dl, |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 4562 | Node->getOperand(0).getValueType()); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4563 | break; |
| 4564 | } |
| 4565 | break; |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4566 | case ISD::CONVERT_RNDSAT: { |
| 4567 | ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode(); |
| 4568 | assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU || |
| 4569 | CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU || |
| 4570 | CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) && |
| 4571 | "can only promote integers"); |
| 4572 | Result = DAG.getConvertRndSat(NVT, Node->getOperand(0), |
| 4573 | Node->getOperand(1), Node->getOperand(2), |
| 4574 | Node->getOperand(3), Node->getOperand(4), |
| 4575 | CvtCode); |
| 4576 | break; |
| 4577 | |
| 4578 | } |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 4579 | case ISD::BIT_CONVERT: |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4580 | Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0), |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4581 | Node->getValueType(0), dl); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 4582 | Result = PromoteOp(Result); |
| 4583 | break; |
| 4584 | |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4585 | case ISD::FP_EXTEND: |
| 4586 | assert(0 && "Case not implemented. Dynamically dead with 2 FP types!"); |
| 4587 | case ISD::FP_ROUND: |
| 4588 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4589 | case Expand: assert(0 && "BUG: Cannot expand FP regs!"); |
| 4590 | case Promote: assert(0 && "Unreachable with 2 FP types!"); |
| 4591 | case Legal: |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4592 | if (Node->getConstantOperandVal(1) == 0) { |
| 4593 | // Input is legal? Do an FP_ROUND_INREG. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4594 | Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Node->getOperand(0), |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4595 | DAG.getValueType(VT)); |
| 4596 | } else { |
| 4597 | // Just remove the truncate, it isn't affecting the value. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4598 | Result = DAG.getNode(ISD::FP_ROUND, dl, NVT, Node->getOperand(0), |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4599 | Node->getOperand(1)); |
| 4600 | } |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4601 | break; |
| 4602 | } |
| 4603 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4604 | case ISD::SINT_TO_FP: |
| 4605 | case ISD::UINT_TO_FP: |
| 4606 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4607 | case Legal: |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4608 | // No extra round required here. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4609 | Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4610 | break; |
| 4611 | |
| 4612 | case Promote: |
| 4613 | Result = PromoteOp(Node->getOperand(0)); |
| 4614 | if (Node->getOpcode() == ISD::SINT_TO_FP) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4615 | Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(), |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4616 | Result, |
| 4617 | DAG.getValueType(Node->getOperand(0).getValueType())); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4618 | else |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4619 | Result = DAG.getZeroExtendInReg(Result, dl, |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 4620 | Node->getOperand(0).getValueType()); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4621 | // No extra round required here. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4622 | Result = DAG.getNode(Node->getOpcode(), dl, NVT, Result); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4623 | break; |
| 4624 | case Expand: |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4625 | Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT, |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4626 | Node->getOperand(0), dl); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4627 | // Round if we cannot tolerate excess precision. |
| 4628 | if (NoExcessFPPrecision) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4629 | Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result, |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4630 | DAG.getValueType(VT)); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4631 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4632 | } |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4633 | break; |
| 4634 | |
Chris Lattner | 5e3c5b4 | 2005-12-09 17:32:47 +0000 | [diff] [blame] | 4635 | case ISD::SIGN_EXTEND_INREG: |
| 4636 | Result = PromoteOp(Node->getOperand(0)); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4637 | Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result, |
Chris Lattner | 5e3c5b4 | 2005-12-09 17:32:47 +0000 | [diff] [blame] | 4638 | Node->getOperand(1)); |
| 4639 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4640 | case ISD::FP_TO_SINT: |
| 4641 | case ISD::FP_TO_UINT: |
| 4642 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4643 | case Legal: |
Evan Cheng | 0b1b9dc | 2006-12-16 02:10:30 +0000 | [diff] [blame] | 4644 | case Expand: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4645 | Tmp1 = Node->getOperand(0); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4646 | break; |
| 4647 | case Promote: |
| 4648 | // The input result is prerounded, so we don't have to do anything |
| 4649 | // special. |
| 4650 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4651 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4652 | } |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 4653 | // If we're promoting a UINT to a larger size, check to see if the new node |
| 4654 | // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since |
| 4655 | // we can use that instead. This allows us to generate better code for |
| 4656 | // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not |
| 4657 | // legal, such as PowerPC. |
| 4658 | if (Node->getOpcode() == ISD::FP_TO_UINT && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 4659 | !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) && |
| 4660 | (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) || |
Nate Begeman | b7f6ef1 | 2005-10-25 23:47:25 +0000 | [diff] [blame] | 4661 | TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){ |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4662 | Result = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Tmp1); |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 4663 | } else { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4664 | Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1); |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 4665 | } |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4666 | break; |
| 4667 | |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 4668 | case ISD::FABS: |
| 4669 | case ISD::FNEG: |
| 4670 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4671 | assert(Tmp1.getValueType() == NVT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4672 | Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1); |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 4673 | // NOTE: we do not have to do any extra rounding here for |
| 4674 | // NoExcessFPPrecision, because we know the input will have the appropriate |
| 4675 | // precision, and these operations don't modify precision at all. |
| 4676 | break; |
| 4677 | |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4678 | case ISD::FLOG: |
| 4679 | case ISD::FLOG2: |
| 4680 | case ISD::FLOG10: |
| 4681 | case ISD::FEXP: |
| 4682 | case ISD::FEXP2: |
Chris Lattner | da6ba87 | 2005-04-28 21:44:33 +0000 | [diff] [blame] | 4683 | case ISD::FSQRT: |
| 4684 | case ISD::FSIN: |
| 4685 | case ISD::FCOS: |
Dan Gohman | 2bb1e3e | 2008-08-21 18:38:14 +0000 | [diff] [blame] | 4686 | case ISD::FTRUNC: |
| 4687 | case ISD::FFLOOR: |
| 4688 | case ISD::FCEIL: |
| 4689 | case ISD::FRINT: |
| 4690 | case ISD::FNEARBYINT: |
Chris Lattner | da6ba87 | 2005-04-28 21:44:33 +0000 | [diff] [blame] | 4691 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4692 | assert(Tmp1.getValueType() == NVT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4693 | Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4694 | if (NoExcessFPPrecision) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4695 | Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result, |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4696 | DAG.getValueType(VT)); |
Chris Lattner | da6ba87 | 2005-04-28 21:44:33 +0000 | [diff] [blame] | 4697 | break; |
| 4698 | |
Evan Cheng | 9d24ac5 | 2008-09-09 23:35:53 +0000 | [diff] [blame] | 4699 | case ISD::FPOW: |
Chris Lattner | 8b2d42c | 2007-03-03 23:43:21 +0000 | [diff] [blame] | 4700 | case ISD::FPOWI: { |
Evan Cheng | 9d24ac5 | 2008-09-09 23:35:53 +0000 | [diff] [blame] | 4701 | // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall |
Chris Lattner | 8b2d42c | 2007-03-03 23:43:21 +0000 | [diff] [blame] | 4702 | // directly as well, which may be better. |
| 4703 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Evan Cheng | 9d24ac5 | 2008-09-09 23:35:53 +0000 | [diff] [blame] | 4704 | Tmp2 = Node->getOperand(1); |
| 4705 | if (Node->getOpcode() == ISD::FPOW) |
| 4706 | Tmp2 = PromoteOp(Tmp2); |
Chris Lattner | 8b2d42c | 2007-03-03 23:43:21 +0000 | [diff] [blame] | 4707 | assert(Tmp1.getValueType() == NVT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4708 | Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2); |
Chris Lattner | 8b2d42c | 2007-03-03 23:43:21 +0000 | [diff] [blame] | 4709 | if (NoExcessFPPrecision) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4710 | Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result, |
Chris Lattner | 8b2d42c | 2007-03-03 23:43:21 +0000 | [diff] [blame] | 4711 | DAG.getValueType(VT)); |
| 4712 | break; |
| 4713 | } |
| 4714 | |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4715 | case ISD::ATOMIC_CMP_SWAP: { |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 4716 | AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node); |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 4717 | Tmp2 = PromoteOp(Node->getOperand(2)); |
| 4718 | Tmp3 = PromoteOp(Node->getOperand(3)); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4719 | Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4720 | AtomNode->getChain(), |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 4721 | AtomNode->getBasePtr(), Tmp2, Tmp3, |
Dan Gohman | fd4418f | 2008-06-25 16:07:49 +0000 | [diff] [blame] | 4722 | AtomNode->getSrcValue(), |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 4723 | AtomNode->getAlignment()); |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 4724 | // Remember that we legalized the chain. |
| 4725 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
| 4726 | break; |
| 4727 | } |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4728 | case ISD::ATOMIC_LOAD_ADD: |
| 4729 | case ISD::ATOMIC_LOAD_SUB: |
| 4730 | case ISD::ATOMIC_LOAD_AND: |
| 4731 | case ISD::ATOMIC_LOAD_OR: |
| 4732 | case ISD::ATOMIC_LOAD_XOR: |
| 4733 | case ISD::ATOMIC_LOAD_NAND: |
| 4734 | case ISD::ATOMIC_LOAD_MIN: |
| 4735 | case ISD::ATOMIC_LOAD_MAX: |
| 4736 | case ISD::ATOMIC_LOAD_UMIN: |
| 4737 | case ISD::ATOMIC_LOAD_UMAX: |
| 4738 | case ISD::ATOMIC_SWAP: { |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 4739 | AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node); |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 4740 | Tmp2 = PromoteOp(Node->getOperand(2)); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4741 | Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4742 | AtomNode->getChain(), |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 4743 | AtomNode->getBasePtr(), Tmp2, |
Dan Gohman | fd4418f | 2008-06-25 16:07:49 +0000 | [diff] [blame] | 4744 | AtomNode->getSrcValue(), |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 4745 | AtomNode->getAlignment()); |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 4746 | // Remember that we legalized the chain. |
| 4747 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
| 4748 | break; |
| 4749 | } |
| 4750 | |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4751 | case ISD::AND: |
| 4752 | case ISD::OR: |
| 4753 | case ISD::XOR: |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 4754 | case ISD::ADD: |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4755 | case ISD::SUB: |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 4756 | case ISD::MUL: |
| 4757 | // 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] | 4758 | // 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] | 4759 | // that too is okay if they are integer operations. |
| 4760 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4761 | Tmp2 = PromoteOp(Node->getOperand(1)); |
| 4762 | assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4763 | Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4764 | break; |
| 4765 | case ISD::FADD: |
| 4766 | case ISD::FSUB: |
| 4767 | case ISD::FMUL: |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4768 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4769 | Tmp2 = PromoteOp(Node->getOperand(1)); |
| 4770 | assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4771 | Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4772 | |
| 4773 | // Floating point operations will give excess precision that we may not be |
| 4774 | // able to tolerate. If we DO allow excess precision, just leave it, |
| 4775 | // otherwise excise it. |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4776 | // FIXME: Why would we need to round FP ops more than integer ones? |
| 4777 | // 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] | 4778 | if (NoExcessFPPrecision) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4779 | Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result, |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4780 | DAG.getValueType(VT)); |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 4781 | break; |
| 4782 | |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4783 | case ISD::SDIV: |
| 4784 | case ISD::SREM: |
| 4785 | // These operators require that their input be sign extended. |
| 4786 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4787 | Tmp2 = PromoteOp(Node->getOperand(1)); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4788 | if (NVT.isInteger()) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4789 | Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1, |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4790 | DAG.getValueType(VT)); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4791 | Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2, |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4792 | DAG.getValueType(VT)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4793 | } |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4794 | Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4795 | |
| 4796 | // Perform FP_ROUND: this is probably overly pessimistic. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4797 | if (NVT.isFloatingPoint() && NoExcessFPPrecision) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4798 | Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result, |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4799 | DAG.getValueType(VT)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4800 | break; |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4801 | case ISD::FDIV: |
| 4802 | case ISD::FREM: |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 4803 | case ISD::FCOPYSIGN: |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4804 | // These operators require that their input be fp extended. |
Nate Begeman | ec57fd9 | 2006-05-09 18:20:51 +0000 | [diff] [blame] | 4805 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4806 | case Expand: assert(0 && "not implemented"); |
| 4807 | case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break; |
| 4808 | case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break; |
Nate Begeman | ec57fd9 | 2006-05-09 18:20:51 +0000 | [diff] [blame] | 4809 | } |
| 4810 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4811 | case Expand: assert(0 && "not implemented"); |
| 4812 | case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break; |
| 4813 | case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break; |
Nate Begeman | ec57fd9 | 2006-05-09 18:20:51 +0000 | [diff] [blame] | 4814 | } |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4815 | Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4816 | |
| 4817 | // Perform FP_ROUND: this is probably overly pessimistic. |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 4818 | if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4819 | Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result, |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4820 | DAG.getValueType(VT)); |
| 4821 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4822 | |
| 4823 | case ISD::UDIV: |
| 4824 | case ISD::UREM: |
| 4825 | // These operators require that their input be zero extended. |
| 4826 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4827 | Tmp2 = PromoteOp(Node->getOperand(1)); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4828 | assert(NVT.isInteger() && "Operators don't apply to FP!"); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4829 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT); |
| 4830 | Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT); |
| 4831 | Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4832 | break; |
| 4833 | |
| 4834 | case ISD::SHL: |
| 4835 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4836 | Result = DAG.getNode(ISD::SHL, dl, NVT, Tmp1, Node->getOperand(1)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4837 | break; |
| 4838 | case ISD::SRA: |
| 4839 | // The input value must be properly sign extended. |
| 4840 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4841 | Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1, |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4842 | DAG.getValueType(VT)); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4843 | Result = DAG.getNode(ISD::SRA, dl, NVT, Tmp1, Node->getOperand(1)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4844 | break; |
| 4845 | case ISD::SRL: |
| 4846 | // The input value must be properly zero extended. |
| 4847 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4848 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT); |
| 4849 | Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, Node->getOperand(1)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4850 | break; |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4851 | |
| 4852 | case ISD::VAARG: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4853 | Tmp1 = Node->getOperand(0); // Get the chain. |
| 4854 | Tmp2 = Node->getOperand(1); // Get the pointer. |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4855 | if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) { |
| 4856 | Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2)); |
Duncan Sands | 126d907 | 2008-07-04 11:47:58 +0000 | [diff] [blame] | 4857 | Result = TLI.LowerOperation(Tmp3, DAG); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4858 | } else { |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4859 | const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4860 | SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4861 | // Increment the pointer, VAList, to the next vaarg |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4862 | Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4863 | DAG.getConstant(VT.getSizeInBits()/8, |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4864 | TLI.getPointerTy())); |
| 4865 | // Store the incremented VAList to the legalized pointer |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4866 | Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4867 | // Load the actual argument out of the pointer VAList |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4868 | Result = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Tmp3, VAList, NULL, 0, VT); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4869 | } |
| 4870 | // Remember that we legalized the chain. |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4871 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4872 | break; |
| 4873 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 4874 | case ISD::LOAD: { |
| 4875 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
Evan Cheng | 62f2a3c | 2006-10-10 07:51:21 +0000 | [diff] [blame] | 4876 | ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node) |
| 4877 | ? ISD::EXTLOAD : LD->getExtensionType(); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4878 | Result = DAG.getExtLoad(ExtType, dl, NVT, |
Evan Cheng | 62f2a3c | 2006-10-10 07:51:21 +0000 | [diff] [blame] | 4879 | LD->getChain(), LD->getBasePtr(), |
Chris Lattner | 55b5708 | 2006-10-10 18:54:19 +0000 | [diff] [blame] | 4880 | LD->getSrcValue(), LD->getSrcValueOffset(), |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 4881 | LD->getMemoryVT(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 4882 | LD->isVolatile(), |
| 4883 | LD->getAlignment()); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4884 | // Remember that we legalized the chain. |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4885 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4886 | break; |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 4887 | } |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 4888 | case ISD::SELECT: { |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4889 | Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0 |
| 4890 | Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1 |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 4891 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4892 | MVT VT2 = Tmp2.getValueType(); |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 4893 | assert(VT2 == Tmp3.getValueType() |
Scott Michel | ba12f57 | 2008-06-03 19:13:20 +0000 | [diff] [blame] | 4894 | && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match"); |
| 4895 | // Ensure that the resulting node is at least the same size as the operands' |
| 4896 | // value types, because we cannot assume that TLI.getSetCCValueType() is |
| 4897 | // constant. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4898 | Result = DAG.getNode(ISD::SELECT, dl, VT2, Node->getOperand(0), Tmp2, Tmp3); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4899 | break; |
Scott Michel | 8bf61e8 | 2008-06-02 22:18:03 +0000 | [diff] [blame] | 4900 | } |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 4901 | case ISD::SELECT_CC: |
| 4902 | Tmp2 = PromoteOp(Node->getOperand(2)); // True |
| 4903 | Tmp3 = PromoteOp(Node->getOperand(3)); // False |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4904 | Result = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0), |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4905 | Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4)); |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 4906 | break; |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 4907 | case ISD::BSWAP: |
| 4908 | Tmp1 = Node->getOperand(0); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4909 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1); |
| 4910 | Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1); |
| 4911 | Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4912 | DAG.getConstant(NVT.getSizeInBits() - |
| 4913 | VT.getSizeInBits(), |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 4914 | TLI.getShiftAmountTy())); |
| 4915 | break; |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4916 | case ISD::CTPOP: |
| 4917 | case ISD::CTTZ: |
| 4918 | case ISD::CTLZ: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4919 | // Zero extend the argument |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4920 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0)); |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4921 | // Perform the larger operation, then subtract if needed. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4922 | Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4923 | switch(Node->getOpcode()) { |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4924 | case ISD::CTPOP: |
| 4925 | Result = Tmp1; |
| 4926 | break; |
| 4927 | case ISD::CTTZ: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4928 | // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4929 | Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4930 | DAG.getConstant(NVT.getSizeInBits(), NVT), |
Dan Gohman | b55757e | 2007-05-18 17:52:13 +0000 | [diff] [blame] | 4931 | ISD::SETEQ); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4932 | Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4933 | DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1); |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4934 | break; |
| 4935 | case ISD::CTLZ: |
| 4936 | //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT)) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 4937 | Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4938 | DAG.getConstant(NVT.getSizeInBits() - |
| 4939 | VT.getSizeInBits(), NVT)); |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4940 | break; |
| 4941 | } |
| 4942 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4943 | case ISD::EXTRACT_SUBVECTOR: |
| 4944 | Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op)); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4945 | break; |
Chris Lattner | 4aab2f4 | 2006-04-02 05:06:04 +0000 | [diff] [blame] | 4946 | case ISD::EXTRACT_VECTOR_ELT: |
| 4947 | Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op)); |
| 4948 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4949 | } |
| 4950 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4951 | assert(Result.getNode() && "Didn't set a result!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4952 | |
| 4953 | // Make sure the result is itself legal. |
| 4954 | Result = LegalizeOp(Result); |
| 4955 | |
| 4956 | // Remember that we promoted this! |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4957 | AddPromotedOperand(Op, Result); |
| 4958 | return Result; |
| 4959 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 4960 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4961 | /// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into |
| 4962 | /// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic, |
| 4963 | /// based on the vector type. The return type of this matches the element type |
| 4964 | /// of the vector, which may not be legal for the target. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4965 | SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) { |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4966 | // We know that operand #0 is the Vec vector. If the index is a constant |
| 4967 | // or if the invec is a supported hardware type, we can use it. Otherwise, |
| 4968 | // lower to a store then an indexed load. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4969 | SDValue Vec = Op.getOperand(0); |
| 4970 | SDValue Idx = Op.getOperand(1); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 4971 | DebugLoc dl = Op.getNode()->getDebugLoc(); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4972 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4973 | MVT TVT = Vec.getValueType(); |
| 4974 | unsigned NumElems = TVT.getVectorNumElements(); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4975 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4976 | switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) { |
| 4977 | default: assert(0 && "This action is not supported yet!"); |
| 4978 | case TargetLowering::Custom: { |
| 4979 | Vec = LegalizeOp(Vec); |
| 4980 | Op = DAG.UpdateNodeOperands(Op, Vec, Idx); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4981 | SDValue Tmp3 = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4982 | if (Tmp3.getNode()) |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4983 | return Tmp3; |
| 4984 | break; |
| 4985 | } |
| 4986 | case TargetLowering::Legal: |
| 4987 | if (isTypeLegal(TVT)) { |
| 4988 | Vec = LegalizeOp(Vec); |
| 4989 | Op = DAG.UpdateNodeOperands(Op, Vec, Idx); |
Christopher Lamb | 844228a | 2007-07-26 03:33:13 +0000 | [diff] [blame] | 4990 | return Op; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4991 | } |
| 4992 | break; |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 4993 | case TargetLowering::Promote: |
| 4994 | assert(TVT.isVector() && "not vector type"); |
| 4995 | // fall thru to expand since vectors are by default are promote |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4996 | case TargetLowering::Expand: |
| 4997 | break; |
| 4998 | } |
| 4999 | |
| 5000 | if (NumElems == 1) { |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 5001 | // This must be an access of the only element. Return it. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5002 | Op = ScalarizeVectorOp(Vec); |
| 5003 | } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) { |
Nate Begeman | 55030dc | 2008-01-29 02:24:00 +0000 | [diff] [blame] | 5004 | unsigned NumLoElts = 1 << Log2_32(NumElems-1); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5005 | ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5006 | SDValue Lo, Hi; |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 5007 | SplitVectorOp(Vec, Lo, Hi); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5008 | if (CIdx->getZExtValue() < NumLoElts) { |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 5009 | Vec = Lo; |
| 5010 | } else { |
| 5011 | Vec = Hi; |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5012 | Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts, |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5013 | Idx.getValueType()); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 5014 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5015 | |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 5016 | // It's now an extract from the appropriate high or low part. Recurse. |
| 5017 | Op = DAG.UpdateNodeOperands(Op, Vec, Idx); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5018 | Op = ExpandEXTRACT_VECTOR_ELT(Op); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 5019 | } else { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5020 | // Store the value to a temporary stack slot, then LOAD the scalar |
| 5021 | // element back out. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5022 | SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType()); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5023 | SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5024 | |
| 5025 | // Add the offset to the index. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5026 | unsigned EltSize = Op.getValueType().getSizeInBits()/8; |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5027 | Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx, |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5028 | DAG.getConstant(EltSize, Idx.getValueType())); |
Bill Wendling | 90bfc2d | 2007-10-18 08:32:37 +0000 | [diff] [blame] | 5029 | |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 5030 | if (Idx.getValueType().bitsGT(TLI.getPointerTy())) |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5031 | Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx); |
Bill Wendling | 90bfc2d | 2007-10-18 08:32:37 +0000 | [diff] [blame] | 5032 | else |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5033 | Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx); |
Bill Wendling | 90bfc2d | 2007-10-18 08:32:37 +0000 | [diff] [blame] | 5034 | |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5035 | StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5036 | |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5037 | Op = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 5038 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5039 | return Op; |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 5040 | } |
| 5041 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5042 | /// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 5043 | /// 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] | 5044 | SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) { |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 5045 | // We know that operand #0 is the Vec vector. For now we assume the index |
| 5046 | // 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] | 5047 | SDValue Vec = Op.getOperand(0); |
| 5048 | SDValue Idx = LegalizeOp(Op.getOperand(1)); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 5049 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5050 | unsigned NumElems = Vec.getValueType().getVectorNumElements(); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 5051 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5052 | if (NumElems == Op.getValueType().getVectorNumElements()) { |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 5053 | // This must be an access of the desired vector length. Return it. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5054 | return Vec; |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 5055 | } |
| 5056 | |
| 5057 | ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5058 | SDValue Lo, Hi; |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 5059 | SplitVectorOp(Vec, Lo, Hi); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5060 | if (CIdx->getZExtValue() < NumElems/2) { |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 5061 | Vec = Lo; |
| 5062 | } else { |
| 5063 | Vec = Hi; |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5064 | Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2, |
| 5065 | Idx.getValueType()); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 5066 | } |
| 5067 | |
| 5068 | // It's now an extract from the appropriate high or low part. Recurse. |
| 5069 | Op = DAG.UpdateNodeOperands(Op, Vec, Idx); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5070 | return ExpandEXTRACT_SUBVECTOR(Op); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 5071 | } |
| 5072 | |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5073 | /// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC |
| 5074 | /// with condition CC on the current target. This usually involves legalizing |
| 5075 | /// or promoting the arguments. In the case where LHS and RHS must be expanded, |
| 5076 | /// there may be no choice but to create a new SetCC node to represent the |
| 5077 | /// 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] | 5078 | /// LHS, and the SDValue returned in RHS has a nil SDNode value. |
| 5079 | void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS, |
| 5080 | SDValue &RHS, |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5081 | SDValue &CC, |
| 5082 | DebugLoc dl) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5083 | SDValue Tmp1, Tmp2, Tmp3, Result; |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5084 | |
| 5085 | switch (getTypeAction(LHS.getValueType())) { |
| 5086 | case Legal: |
| 5087 | Tmp1 = LegalizeOp(LHS); // LHS |
| 5088 | Tmp2 = LegalizeOp(RHS); // RHS |
| 5089 | break; |
| 5090 | case Promote: |
| 5091 | Tmp1 = PromoteOp(LHS); // LHS |
| 5092 | Tmp2 = PromoteOp(RHS); // RHS |
| 5093 | |
| 5094 | // If this is an FP compare, the operands have already been extended. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5095 | if (LHS.getValueType().isInteger()) { |
| 5096 | MVT VT = LHS.getValueType(); |
| 5097 | MVT NVT = TLI.getTypeToTransformTo(VT); |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5098 | |
| 5099 | // Otherwise, we have to insert explicit sign or zero extends. Note |
| 5100 | // that we could insert sign extends for ALL conditions, but zero extend |
| 5101 | // is cheaper on many machines (an AND instead of two shifts), so prefer |
| 5102 | // it. |
| 5103 | switch (cast<CondCodeSDNode>(CC)->get()) { |
| 5104 | default: assert(0 && "Unknown integer comparison!"); |
| 5105 | case ISD::SETEQ: |
| 5106 | case ISD::SETNE: |
| 5107 | case ISD::SETUGE: |
| 5108 | case ISD::SETUGT: |
| 5109 | case ISD::SETULE: |
| 5110 | case ISD::SETULT: |
| 5111 | // ALL of these operations will work if we either sign or zero extend |
| 5112 | // the operands (including the unsigned comparisons!). Zero extend is |
| 5113 | // usually a simpler/cheaper operation, so prefer it. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5114 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT); |
| 5115 | Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT); |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5116 | break; |
| 5117 | case ISD::SETGE: |
| 5118 | case ISD::SETGT: |
| 5119 | case ISD::SETLT: |
| 5120 | case ISD::SETLE: |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5121 | Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1, |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5122 | DAG.getValueType(VT)); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5123 | Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2, |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5124 | DAG.getValueType(VT)); |
Evan Cheng | efa5339 | 2008-10-13 18:46:18 +0000 | [diff] [blame] | 5125 | Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes. |
| 5126 | Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes. |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5127 | break; |
| 5128 | } |
| 5129 | } |
| 5130 | break; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5131 | case Expand: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5132 | MVT VT = LHS.getValueType(); |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5133 | if (VT == MVT::f32 || VT == MVT::f64) { |
| 5134 | // Expand into one or more soft-fp libcall(s). |
Evan Cheng | 6518c6e | 2008-07-01 21:35:46 +0000 | [diff] [blame] | 5135 | RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5136 | switch (cast<CondCodeSDNode>(CC)->get()) { |
| 5137 | case ISD::SETEQ: |
| 5138 | case ISD::SETOEQ: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5139 | LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5140 | break; |
| 5141 | case ISD::SETNE: |
| 5142 | case ISD::SETUNE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5143 | LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5144 | break; |
| 5145 | case ISD::SETGE: |
| 5146 | case ISD::SETOGE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5147 | LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5148 | break; |
| 5149 | case ISD::SETLT: |
| 5150 | case ISD::SETOLT: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5151 | LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5152 | break; |
| 5153 | case ISD::SETLE: |
| 5154 | case ISD::SETOLE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5155 | LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5156 | break; |
| 5157 | case ISD::SETGT: |
| 5158 | case ISD::SETOGT: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5159 | LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5160 | break; |
| 5161 | case ISD::SETUO: |
Evan Cheng | d385fd6 | 2007-01-31 09:29:11 +0000 | [diff] [blame] | 5162 | LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64; |
| 5163 | break; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5164 | case ISD::SETO: |
Evan Cheng | 5efdecc | 2007-02-03 00:43:46 +0000 | [diff] [blame] | 5165 | LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5166 | break; |
| 5167 | default: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5168 | LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5169 | switch (cast<CondCodeSDNode>(CC)->get()) { |
| 5170 | case ISD::SETONE: |
| 5171 | // SETONE = SETOLT | SETOGT |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5172 | LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5173 | // Fallthrough |
| 5174 | case ISD::SETUGT: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5175 | LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5176 | break; |
| 5177 | case ISD::SETUGE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5178 | LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5179 | break; |
| 5180 | case ISD::SETULT: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5181 | LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5182 | break; |
| 5183 | case ISD::SETULE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5184 | LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5185 | break; |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5186 | case ISD::SETUEQ: |
| 5187 | LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64; |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5188 | break; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5189 | default: assert(0 && "Unsupported FP setcc!"); |
| 5190 | } |
| 5191 | } |
Duncan Sands | f951620 | 2008-06-30 10:19:09 +0000 | [diff] [blame] | 5192 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5193 | SDValue Dummy; |
| 5194 | SDValue Ops[2] = { LHS, RHS }; |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5195 | Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(), |
Reid Spencer | b47b25c | 2007-01-03 04:22:32 +0000 | [diff] [blame] | 5196 | false /*sign irrelevant*/, Dummy); |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5197 | Tmp2 = DAG.getConstant(0, MVT::i32); |
Evan Cheng | d385fd6 | 2007-01-31 09:29:11 +0000 | [diff] [blame] | 5198 | CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1)); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5199 | if (LC2 != RTLIB::UNKNOWN_LIBCALL) { |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5200 | Tmp1 = DAG.getNode(ISD::SETCC, dl, |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 5201 | TLI.getSetCCResultType(Tmp1.getValueType()), |
| 5202 | Tmp1, Tmp2, CC); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5203 | LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(), |
Reid Spencer | b47b25c | 2007-01-03 04:22:32 +0000 | [diff] [blame] | 5204 | false /*sign irrelevant*/, Dummy); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5205 | Tmp2 = DAG.getNode(ISD::SETCC, dl, |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 5206 | TLI.getSetCCResultType(LHS.getValueType()), LHS, |
| 5207 | Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2))); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5208 | Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5209 | Tmp2 = SDValue(); |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5210 | } |
Evan Cheng | 21cacc4 | 2008-07-07 07:18:09 +0000 | [diff] [blame] | 5211 | LHS = LegalizeOp(Tmp1); |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5212 | RHS = Tmp2; |
| 5213 | return; |
| 5214 | } |
| 5215 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5216 | SDValue LHSLo, LHSHi, RHSLo, RHSHi; |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5217 | ExpandOp(LHS, LHSLo, LHSHi); |
Dale Johannesen | 638ccd5 | 2007-10-06 01:24:11 +0000 | [diff] [blame] | 5218 | ExpandOp(RHS, RHSLo, RHSHi); |
| 5219 | ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get(); |
| 5220 | |
| 5221 | if (VT==MVT::ppcf128) { |
| 5222 | // FIXME: This generated code sucks. We want to generate |
Dale Johannesen | e2f2083 | 2008-09-12 00:30:56 +0000 | [diff] [blame] | 5223 | // FCMPU crN, hi1, hi2 |
Dale Johannesen | 638ccd5 | 2007-10-06 01:24:11 +0000 | [diff] [blame] | 5224 | // BNE crN, L: |
Dale Johannesen | e2f2083 | 2008-09-12 00:30:56 +0000 | [diff] [blame] | 5225 | // FCMPU crN, lo1, lo2 |
Dale Johannesen | 638ccd5 | 2007-10-06 01:24:11 +0000 | [diff] [blame] | 5226 | // The following can be improved, but not that much. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5227 | Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 5228 | LHSHi, RHSHi, ISD::SETOEQ); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5229 | Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 5230 | LHSLo, RHSLo, CCCode); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5231 | Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2); |
| 5232 | Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 5233 | LHSHi, RHSHi, ISD::SETUNE); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5234 | Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 5235 | LHSHi, RHSHi, CCCode); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5236 | Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2); |
| 5237 | Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5238 | Tmp2 = SDValue(); |
Dale Johannesen | 638ccd5 | 2007-10-06 01:24:11 +0000 | [diff] [blame] | 5239 | break; |
| 5240 | } |
| 5241 | |
| 5242 | switch (CCCode) { |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5243 | case ISD::SETEQ: |
| 5244 | case ISD::SETNE: |
| 5245 | if (RHSLo == RHSHi) |
| 5246 | if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo)) |
| 5247 | if (RHSCST->isAllOnesValue()) { |
| 5248 | // Comparison to -1. |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5249 | Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi); |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5250 | Tmp2 = RHSLo; |
| 5251 | break; |
| 5252 | } |
| 5253 | |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5254 | Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo); |
| 5255 | Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi); |
| 5256 | Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2); |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5257 | Tmp2 = DAG.getConstant(0, Tmp1.getValueType()); |
| 5258 | break; |
| 5259 | default: |
| 5260 | // If this is a comparison of the sign bit, just look at the top part. |
| 5261 | // X > -1, x < 0 |
| 5262 | if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS)) |
| 5263 | if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT && |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 5264 | CST->isNullValue()) || // X < 0 |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5265 | (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT && |
| 5266 | CST->isAllOnesValue())) { // X > -1 |
| 5267 | Tmp1 = LHSHi; |
| 5268 | Tmp2 = RHSHi; |
| 5269 | break; |
| 5270 | } |
| 5271 | |
| 5272 | // FIXME: This generated code sucks. |
| 5273 | ISD::CondCode LowCC; |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 5274 | switch (CCCode) { |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5275 | default: assert(0 && "Unknown integer setcc!"); |
| 5276 | case ISD::SETLT: |
| 5277 | case ISD::SETULT: LowCC = ISD::SETULT; break; |
| 5278 | case ISD::SETGT: |
| 5279 | case ISD::SETUGT: LowCC = ISD::SETUGT; break; |
| 5280 | case ISD::SETLE: |
| 5281 | case ISD::SETULE: LowCC = ISD::SETULE; break; |
| 5282 | case ISD::SETGE: |
| 5283 | case ISD::SETUGE: LowCC = ISD::SETUGE; break; |
| 5284 | } |
| 5285 | |
| 5286 | // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison |
| 5287 | // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands |
| 5288 | // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2; |
| 5289 | |
| 5290 | // NOTE: on targets without efficient SELECT of bools, we can always use |
| 5291 | // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3) |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 5292 | TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL); |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 5293 | Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()), |
| 5294 | LHSLo, RHSLo, LowCC, false, DagCombineInfo); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5295 | if (!Tmp1.getNode()) |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5296 | Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 5297 | LHSLo, RHSLo, LowCC); |
| 5298 | Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()), |
| 5299 | LHSHi, RHSHi, CCCode, false, DagCombineInfo); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5300 | if (!Tmp2.getNode()) |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5301 | Tmp2 = DAG.getNode(ISD::SETCC, dl, |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 5302 | TLI.getSetCCResultType(LHSHi.getValueType()), |
| 5303 | LHSHi, RHSHi,CC); |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 5304 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5305 | ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode()); |
| 5306 | ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode()); |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 5307 | if ((Tmp1C && Tmp1C->isNullValue()) || |
| 5308 | (Tmp2C && Tmp2C->isNullValue() && |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 5309 | (CCCode == ISD::SETLE || CCCode == ISD::SETGE || |
| 5310 | CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) || |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 5311 | (Tmp2C && Tmp2C->getAPIntValue() == 1 && |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 5312 | (CCCode == ISD::SETLT || CCCode == ISD::SETGT || |
| 5313 | CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) { |
| 5314 | // low part is known false, returns high part. |
| 5315 | // For LE / GE, if high part is known false, ignore the low part. |
| 5316 | // For LT / GT, if high part is known true, ignore the low part. |
| 5317 | Tmp1 = Tmp2; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5318 | Tmp2 = SDValue(); |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 5319 | } else { |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 5320 | Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()), |
| 5321 | LHSHi, RHSHi, ISD::SETEQ, false, |
| 5322 | DagCombineInfo); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5323 | if (!Result.getNode()) |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5324 | Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 5325 | LHSHi, RHSHi, ISD::SETEQ); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5326 | Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(), |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 5327 | Result, Tmp1, Tmp2)); |
| 5328 | Tmp1 = Result; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5329 | Tmp2 = SDValue(); |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 5330 | } |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5331 | } |
| 5332 | } |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 5333 | } |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 5334 | LHS = Tmp1; |
| 5335 | RHS = Tmp2; |
| 5336 | } |
| 5337 | |
Evan Cheng | 7f04268 | 2008-10-15 02:05:31 +0000 | [diff] [blame] | 5338 | /// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and |
| 5339 | /// condition code CC on the current target. This routine assumes LHS and rHS |
| 5340 | /// have already been legalized by LegalizeSetCCOperands. It expands SETCC with |
| 5341 | /// illegal condition code into AND / OR of multiple SETCC values. |
| 5342 | void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT, |
| 5343 | SDValue &LHS, SDValue &RHS, |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5344 | SDValue &CC, |
| 5345 | DebugLoc dl) { |
Evan Cheng | 7f04268 | 2008-10-15 02:05:31 +0000 | [diff] [blame] | 5346 | MVT OpVT = LHS.getValueType(); |
| 5347 | ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get(); |
| 5348 | switch (TLI.getCondCodeAction(CCCode, OpVT)) { |
| 5349 | default: assert(0 && "Unknown condition code action!"); |
| 5350 | case TargetLowering::Legal: |
| 5351 | // Nothing to do. |
| 5352 | break; |
| 5353 | case TargetLowering::Expand: { |
| 5354 | ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID; |
| 5355 | unsigned Opc = 0; |
| 5356 | switch (CCCode) { |
| 5357 | default: assert(0 && "Don't know how to expand this condition!"); abort(); |
Dan Gohman | e7d238e | 2008-10-21 03:12:54 +0000 | [diff] [blame] | 5358 | case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break; |
| 5359 | case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break; |
| 5360 | case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break; |
| 5361 | case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break; |
| 5362 | case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break; |
| 5363 | case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break; |
| 5364 | case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break; |
| 5365 | case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break; |
| 5366 | case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break; |
| 5367 | case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break; |
| 5368 | case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break; |
| 5369 | case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break; |
Evan Cheng | 7f04268 | 2008-10-15 02:05:31 +0000 | [diff] [blame] | 5370 | // FIXME: Implement more expansions. |
| 5371 | } |
| 5372 | |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 5373 | SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1); |
| 5374 | SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2); |
| 5375 | LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2); |
Evan Cheng | 7f04268 | 2008-10-15 02:05:31 +0000 | [diff] [blame] | 5376 | RHS = SDValue(); |
| 5377 | CC = SDValue(); |
| 5378 | break; |
| 5379 | } |
| 5380 | } |
| 5381 | } |
| 5382 | |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 5383 | /// EmitStackConvert - Emit a store/load combination to the stack. This stores |
| 5384 | /// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does |
| 5385 | /// a load from the stack slot to DestVT, extending it if needed. |
| 5386 | /// The resultant code need not be legal. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5387 | SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp, |
| 5388 | MVT SlotVT, |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5389 | MVT DestVT, |
| 5390 | DebugLoc dl) { |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 5391 | // Create the stack frame object. |
Mon P Wang | 364d73d | 2008-07-05 20:40:31 +0000 | [diff] [blame] | 5392 | unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment( |
| 5393 | SrcOp.getValueType().getTypeForMVT()); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5394 | SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign); |
Mon P Wang | 364d73d | 2008-07-05 20:40:31 +0000 | [diff] [blame] | 5395 | |
Dan Gohman | bbbbb9c | 2008-02-11 18:58:42 +0000 | [diff] [blame] | 5396 | FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5397 | int SPFI = StackPtrFI->getIndex(); |
Dan Gohman | 15b3830 | 2009-01-29 21:02:43 +0000 | [diff] [blame] | 5398 | const Value *SV = PseudoSourceValue::getFixedStack(SPFI); |
| 5399 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5400 | unsigned SrcSize = SrcOp.getValueType().getSizeInBits(); |
| 5401 | unsigned SlotSize = SlotVT.getSizeInBits(); |
| 5402 | unsigned DestSize = DestVT.getSizeInBits(); |
Mon P Wang | 364d73d | 2008-07-05 20:40:31 +0000 | [diff] [blame] | 5403 | unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment( |
| 5404 | DestVT.getTypeForMVT()); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 5405 | |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 5406 | // Emit a store to the stack slot. Use a truncstore if the input value is |
| 5407 | // later than DestVT. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5408 | SDValue Store; |
Mon P Wang | 364d73d | 2008-07-05 20:40:31 +0000 | [diff] [blame] | 5409 | |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 5410 | if (SrcSize > SlotSize) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5411 | Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr, |
Dan Gohman | 15b3830 | 2009-01-29 21:02:43 +0000 | [diff] [blame] | 5412 | SV, 0, SlotVT, false, SrcAlign); |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 5413 | else { |
| 5414 | assert(SrcSize == SlotSize && "Invalid store"); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5415 | Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr, |
Dan Gohman | 15b3830 | 2009-01-29 21:02:43 +0000 | [diff] [blame] | 5416 | SV, 0, false, SrcAlign); |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 5417 | } |
| 5418 | |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 5419 | // Result is a load from the stack slot. |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 5420 | if (SlotSize == DestSize) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5421 | return DAG.getLoad(DestVT, dl, Store, FIPtr, SV, 0, false, DestAlign); |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 5422 | |
| 5423 | assert(SlotSize < DestSize && "Unknown extension!"); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5424 | return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, SV, 0, SlotVT, |
Mon P Wang | 364d73d | 2008-07-05 20:40:31 +0000 | [diff] [blame] | 5425 | false, DestAlign); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 5426 | } |
| 5427 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5428 | SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5429 | DebugLoc dl = Node->getDebugLoc(); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 5430 | // Create a vector sized/aligned stack slot, store the value to element #0, |
| 5431 | // then load the whole vector back out. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5432 | SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0)); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5433 | |
Dan Gohman | bbbbb9c | 2008-02-11 18:58:42 +0000 | [diff] [blame] | 5434 | FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5435 | int SPFI = StackPtrFI->getIndex(); |
| 5436 | |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5437 | SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(0), |
| 5438 | StackPtr, |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 5439 | PseudoSourceValue::getFixedStack(SPFI), 0); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5440 | return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr, |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 5441 | PseudoSourceValue::getFixedStack(SPFI), 0); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 5442 | } |
| 5443 | |
| 5444 | |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5445 | /// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't |
Dan Gohman | 07a9676 | 2007-07-16 14:29:03 +0000 | [diff] [blame] | 5446 | /// support the operation, but do support the resultant vector type. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5447 | SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) { |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5448 | |
| 5449 | // 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] | 5450 | // 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] | 5451 | unsigned NumElems = Node->getNumOperands(); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5452 | bool isOnlyLowElement = true; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5453 | SDValue SplatValue = Node->getOperand(0); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5454 | DebugLoc dl = Node->getDebugLoc(); |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 5455 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5456 | // 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] | 5457 | // and use a bitmask instead of a list of elements. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5458 | std::map<SDValue, std::vector<unsigned> > Values; |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 5459 | Values[SplatValue].push_back(0); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 5460 | bool isConstant = true; |
| 5461 | if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) && |
| 5462 | SplatValue.getOpcode() != ISD::UNDEF) |
| 5463 | isConstant = false; |
| 5464 | |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 5465 | for (unsigned i = 1; i < NumElems; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5466 | SDValue V = Node->getOperand(i); |
Chris Lattner | 89a1b38 | 2006-04-19 23:17:50 +0000 | [diff] [blame] | 5467 | Values[V].push_back(i); |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 5468 | if (V.getOpcode() != ISD::UNDEF) |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5469 | isOnlyLowElement = false; |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 5470 | if (SplatValue != V) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5471 | SplatValue = SDValue(0,0); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 5472 | |
| 5473 | // If this isn't a constant element or an undef, we can't use a constant |
| 5474 | // pool load. |
| 5475 | if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) && |
| 5476 | V.getOpcode() != ISD::UNDEF) |
| 5477 | isConstant = false; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5478 | } |
| 5479 | |
| 5480 | if (isOnlyLowElement) { |
| 5481 | // If the low element is an undef too, then this whole things is an undef. |
| 5482 | if (Node->getOperand(0).getOpcode() == ISD::UNDEF) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5483 | return DAG.getNode(ISD::UNDEF, dl, Node->getValueType(0)); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5484 | // Otherwise, turn this into a scalar_to_vector node. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5485 | return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, Node->getValueType(0), |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5486 | Node->getOperand(0)); |
| 5487 | } |
| 5488 | |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 5489 | // If all elements are constants, create a load from the constant pool. |
| 5490 | if (isConstant) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5491 | MVT VT = Node->getValueType(0); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 5492 | std::vector<Constant*> CV; |
| 5493 | for (unsigned i = 0, e = NumElems; i != e; ++i) { |
| 5494 | if (ConstantFPSDNode *V = |
| 5495 | dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) { |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 5496 | CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue())); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 5497 | } else if (ConstantSDNode *V = |
Chris Lattner | 02a260a | 2008-04-20 00:41:09 +0000 | [diff] [blame] | 5498 | dyn_cast<ConstantSDNode>(Node->getOperand(i))) { |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 5499 | CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue())); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 5500 | } else { |
| 5501 | assert(Node->getOperand(i).getOpcode() == ISD::UNDEF); |
Chris Lattner | 02a260a | 2008-04-20 00:41:09 +0000 | [diff] [blame] | 5502 | const Type *OpNTy = |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5503 | Node->getOperand(0).getValueType().getTypeForMVT(); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 5504 | CV.push_back(UndefValue::get(OpNTy)); |
| 5505 | } |
| 5506 | } |
Reid Spencer | 9d6565a | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 5507 | Constant *CP = ConstantVector::get(CV); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5508 | SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy()); |
Dan Gohman | 50284d8 | 2008-09-16 22:05:41 +0000 | [diff] [blame] | 5509 | unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment(); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5510 | return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, |
Dan Gohman | 50284d8 | 2008-09-16 22:05:41 +0000 | [diff] [blame] | 5511 | PseudoSourceValue::getConstantPool(), 0, |
| 5512 | false, Alignment); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 5513 | } |
| 5514 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5515 | if (SplatValue.getNode()) { // Splat of one value? |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 5516 | // Build the shuffle constant vector: <0, 0, 0, 0> |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5517 | MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5518 | SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType()); |
| 5519 | std::vector<SDValue> ZeroVec(NumElems, Zero); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5520 | SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 5521 | &ZeroVec[0], ZeroVec.size()); |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 5522 | |
| 5523 | // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it. |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 5524 | if (isShuffleLegal(Node->getValueType(0), SplatMask)) { |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 5525 | // Get the splatted value into the low element of a vector register. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5526 | SDValue LowValVec = |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5527 | DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, |
| 5528 | Node->getValueType(0), SplatValue); |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 5529 | |
| 5530 | // Return shuffle(LowValVec, undef, <0,0,0,0>) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5531 | return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, |
| 5532 | Node->getValueType(0), LowValVec, |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 5533 | DAG.getNode(ISD::UNDEF, Node->getValueType(0)), |
| 5534 | SplatMask); |
| 5535 | } |
| 5536 | } |
| 5537 | |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 5538 | // If there are only two unique elements, we may be able to turn this into a |
| 5539 | // vector shuffle. |
| 5540 | if (Values.size() == 2) { |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 5541 | // Get the two values in deterministic order. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5542 | SDValue Val1 = Node->getOperand(1); |
| 5543 | SDValue Val2; |
| 5544 | std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin(); |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 5545 | if (MI->first != Val1) |
| 5546 | Val2 = MI->first; |
| 5547 | else |
| 5548 | Val2 = (++MI)->first; |
| 5549 | |
| 5550 | // If Val1 is an undef, make sure end ends up as Val2, to ensure that our |
| 5551 | // vector shuffle has the undef vector on the RHS. |
| 5552 | if (Val1.getOpcode() == ISD::UNDEF) |
| 5553 | std::swap(Val1, Val2); |
| 5554 | |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 5555 | // Build the shuffle constant vector: e.g. <0, 4, 0, 4> |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5556 | MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems); |
| 5557 | MVT MaskEltVT = MaskVT.getVectorElementType(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5558 | std::vector<SDValue> MaskVec(NumElems); |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 5559 | |
| 5560 | // Set elements of the shuffle mask for Val1. |
| 5561 | std::vector<unsigned> &Val1Elts = Values[Val1]; |
| 5562 | for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i) |
| 5563 | MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT); |
| 5564 | |
| 5565 | // Set elements of the shuffle mask for Val2. |
| 5566 | std::vector<unsigned> &Val2Elts = Values[Val2]; |
| 5567 | for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i) |
| 5568 | if (Val2.getOpcode() != ISD::UNDEF) |
| 5569 | MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT); |
| 5570 | else |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5571 | MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, dl, MaskEltVT); |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 5572 | |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5573 | SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT, |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 5574 | &MaskVec[0], MaskVec.size()); |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 5575 | |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 5576 | // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it. |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 5577 | if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR, |
| 5578 | Node->getValueType(0)) && |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 5579 | isShuffleLegal(Node->getValueType(0), ShuffleMask)) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5580 | Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,Node->getValueType(0), Val1); |
| 5581 | Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,Node->getValueType(0), Val2); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5582 | SDValue Ops[] = { Val1, Val2, ShuffleMask }; |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 5583 | |
| 5584 | // Return shuffle(LoValVec, HiValVec, <0,1,0,1>) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5585 | return DAG.getNode(ISD::VECTOR_SHUFFLE, dl,Node->getValueType(0), Ops, 3); |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 5586 | } |
| 5587 | } |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5588 | |
| 5589 | // Otherwise, we can't handle this case efficiently. Allocate a sufficiently |
| 5590 | // aligned object on the stack, store each element into it, then load |
| 5591 | // the result as a vector. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5592 | MVT VT = Node->getValueType(0); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5593 | // Create the stack frame object. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5594 | SDValue FIPtr = DAG.CreateStackTemporary(VT); |
Dan Gohman | 15b3830 | 2009-01-29 21:02:43 +0000 | [diff] [blame] | 5595 | int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex(); |
| 5596 | const Value *SV = PseudoSourceValue::getFixedStack(FI); |
| 5597 | |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5598 | // Emit a store of each element to the stack slot. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5599 | SmallVector<SDValue, 8> Stores; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5600 | unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5601 | // Store (in the right endianness) the elements to memory. |
| 5602 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) { |
| 5603 | // Ignore undef elements. |
| 5604 | if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue; |
| 5605 | |
Chris Lattner | 841c882 | 2006-03-22 01:46:54 +0000 | [diff] [blame] | 5606 | unsigned Offset = TypeByteSize*i; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5607 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5608 | SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType()); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5609 | Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5610 | |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5611 | Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(i), |
| 5612 | Idx, SV, Offset)); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5613 | } |
| 5614 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5615 | SDValue StoreChain; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5616 | if (!Stores.empty()) // Not all undef elements? |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5617 | StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 5618 | &Stores[0], Stores.size()); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5619 | else |
| 5620 | StoreChain = DAG.getEntryNode(); |
| 5621 | |
| 5622 | // Result is a load from the stack slot. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5623 | return DAG.getLoad(VT, dl, StoreChain, FIPtr, SV, 0); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5624 | } |
| 5625 | |
Chris Lattner | 5b359c6 | 2005-04-02 04:00:59 +0000 | [diff] [blame] | 5626 | void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5627 | SDValue Op, SDValue Amt, |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5628 | SDValue &Lo, SDValue &Hi, |
| 5629 | DebugLoc dl) { |
Chris Lattner | 5b359c6 | 2005-04-02 04:00:59 +0000 | [diff] [blame] | 5630 | // Expand the subcomponents. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5631 | SDValue LHSL, LHSH; |
Chris Lattner | 5b359c6 | 2005-04-02 04:00:59 +0000 | [diff] [blame] | 5632 | ExpandOp(Op, LHSL, LHSH); |
| 5633 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5634 | SDValue Ops[] = { LHSL, LHSH, Amt }; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5635 | MVT VT = LHSL.getValueType(); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5636 | Lo = DAG.getNode(NodeOp, dl, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3); |
Chris Lattner | 5b359c6 | 2005-04-02 04:00:59 +0000 | [diff] [blame] | 5637 | Hi = Lo.getValue(1); |
| 5638 | } |
| 5639 | |
| 5640 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 5641 | /// ExpandShift - Try to find a clever way to expand this shift operation out to |
| 5642 | /// smaller elements. If we can't find a way that is more efficient than a |
| 5643 | /// libcall on this target, return false. Otherwise, return true with the |
| 5644 | /// low-parts expanded into Lo and Hi. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5645 | bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt, |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5646 | SDValue &Lo, SDValue &Hi, |
| 5647 | DebugLoc dl) { |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 5648 | assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) && |
| 5649 | "This is not a shift!"); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5650 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5651 | MVT NVT = TLI.getTypeToTransformTo(Op.getValueType()); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5652 | SDValue ShAmt = LegalizeOp(Amt); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5653 | MVT ShTy = ShAmt.getValueType(); |
| 5654 | unsigned ShBits = ShTy.getSizeInBits(); |
| 5655 | unsigned VTBits = Op.getValueType().getSizeInBits(); |
| 5656 | unsigned NVTBits = NVT.getSizeInBits(); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5657 | |
Chris Lattner | 7a3c855 | 2007-10-14 20:35:12 +0000 | [diff] [blame] | 5658 | // Handle the case when Amt is an immediate. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5659 | if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5660 | unsigned Cst = CN->getZExtValue(); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5661 | // 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] | 5662 | SDValue InL, InH; |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5663 | ExpandOp(Op, InL, InH); |
| 5664 | switch(Opc) { |
| 5665 | case ISD::SHL: |
| 5666 | if (Cst > VTBits) { |
| 5667 | Lo = DAG.getConstant(0, NVT); |
| 5668 | Hi = DAG.getConstant(0, NVT); |
| 5669 | } else if (Cst > NVTBits) { |
| 5670 | Lo = DAG.getConstant(0, NVT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5671 | Hi = DAG.getNode(ISD::SHL, dl, |
| 5672 | NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy)); |
Chris Lattner | ee27f57 | 2005-04-11 20:08:52 +0000 | [diff] [blame] | 5673 | } else if (Cst == NVTBits) { |
| 5674 | Lo = DAG.getConstant(0, NVT); |
| 5675 | Hi = InL; |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5676 | } else { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5677 | Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)); |
| 5678 | Hi = DAG.getNode(ISD::OR, dl, NVT, |
| 5679 | DAG.getNode(ISD::SHL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)), |
| 5680 | DAG.getNode(ISD::SRL, dl, NVT, InL, |
| 5681 | DAG.getConstant(NVTBits-Cst, ShTy))); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5682 | } |
| 5683 | return true; |
| 5684 | case ISD::SRL: |
| 5685 | if (Cst > VTBits) { |
| 5686 | Lo = DAG.getConstant(0, NVT); |
| 5687 | Hi = DAG.getConstant(0, NVT); |
| 5688 | } else if (Cst > NVTBits) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5689 | Lo = DAG.getNode(ISD::SRL, dl, NVT, |
| 5690 | InH, DAG.getConstant(Cst-NVTBits,ShTy)); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5691 | Hi = DAG.getConstant(0, NVT); |
Chris Lattner | ee27f57 | 2005-04-11 20:08:52 +0000 | [diff] [blame] | 5692 | } else if (Cst == NVTBits) { |
| 5693 | Lo = InH; |
| 5694 | Hi = DAG.getConstant(0, NVT); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5695 | } else { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5696 | Lo = DAG.getNode(ISD::OR, dl, NVT, |
| 5697 | DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)), |
| 5698 | DAG.getNode(ISD::SHL, dl, NVT, InH, |
| 5699 | DAG.getConstant(NVTBits-Cst, ShTy))); |
| 5700 | Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5701 | } |
| 5702 | return true; |
| 5703 | case ISD::SRA: |
| 5704 | if (Cst > VTBits) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5705 | Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5706 | DAG.getConstant(NVTBits-1, ShTy)); |
| 5707 | } else if (Cst > NVTBits) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5708 | Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5709 | DAG.getConstant(Cst-NVTBits, ShTy)); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5710 | Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5711 | DAG.getConstant(NVTBits-1, ShTy)); |
Chris Lattner | ee27f57 | 2005-04-11 20:08:52 +0000 | [diff] [blame] | 5712 | } else if (Cst == NVTBits) { |
| 5713 | Lo = InH; |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5714 | Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, |
Chris Lattner | ee27f57 | 2005-04-11 20:08:52 +0000 | [diff] [blame] | 5715 | DAG.getConstant(NVTBits-1, ShTy)); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5716 | } else { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5717 | Lo = DAG.getNode(ISD::OR, dl, NVT, |
| 5718 | DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)), |
| 5719 | DAG.getNode(ISD::SHL, dl, |
| 5720 | NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy))); |
| 5721 | Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Cst, ShTy)); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5722 | } |
| 5723 | return true; |
| 5724 | } |
| 5725 | } |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5726 | |
| 5727 | // Okay, the shift amount isn't constant. However, if we can tell that it is |
| 5728 | // >= 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] | 5729 | APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits)); |
| 5730 | APInt KnownZero, KnownOne; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 5731 | DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne); |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5732 | |
Dan Gohman | 9e255b7 | 2008-02-22 01:12:31 +0000 | [diff] [blame] | 5733 | // If we know that if any of the high bits of the shift amount are one, then |
| 5734 | // we can do this as a couple of simple shifts. |
Dan Gohman | 91dc17b | 2008-02-20 16:57:27 +0000 | [diff] [blame] | 5735 | if (KnownOne.intersects(Mask)) { |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5736 | // Mask out the high bit, which we know is set. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5737 | Amt = DAG.getNode(ISD::AND, dl, Amt.getValueType(), Amt, |
Dan Gohman | 91dc17b | 2008-02-20 16:57:27 +0000 | [diff] [blame] | 5738 | DAG.getConstant(~Mask, Amt.getValueType())); |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5739 | |
| 5740 | // 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] | 5741 | SDValue InL, InH; |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5742 | ExpandOp(Op, InL, InH); |
| 5743 | switch(Opc) { |
| 5744 | case ISD::SHL: |
| 5745 | Lo = DAG.getConstant(0, NVT); // Low part is zero. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5746 | Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part. |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5747 | return true; |
| 5748 | case ISD::SRL: |
| 5749 | Hi = DAG.getConstant(0, NVT); // Hi part is zero. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5750 | Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part. |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5751 | return true; |
| 5752 | case ISD::SRA: |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5753 | Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, // Sign extend high part. |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5754 | DAG.getConstant(NVTBits-1, Amt.getValueType())); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5755 | Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part. |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5756 | return true; |
| 5757 | } |
| 5758 | } |
| 5759 | |
Dan Gohman | 9e255b7 | 2008-02-22 01:12:31 +0000 | [diff] [blame] | 5760 | // If we know that the high bits of the shift amount are all zero, then we can |
| 5761 | // do this as a couple of simple shifts. |
| 5762 | if ((KnownZero & Mask) == Mask) { |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5763 | // Compute 32-amt. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5764 | SDValue Amt2 = DAG.getNode(ISD::SUB, dl, Amt.getValueType(), |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5765 | DAG.getConstant(NVTBits, Amt.getValueType()), |
| 5766 | Amt); |
| 5767 | |
| 5768 | // 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] | 5769 | SDValue InL, InH; |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5770 | ExpandOp(Op, InL, InH); |
| 5771 | switch(Opc) { |
| 5772 | case ISD::SHL: |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5773 | Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); |
| 5774 | Hi = DAG.getNode(ISD::OR, dl, NVT, |
| 5775 | DAG.getNode(ISD::SHL, dl, NVT, InH, Amt), |
| 5776 | DAG.getNode(ISD::SRL, dl, NVT, InL, Amt2)); |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5777 | return true; |
| 5778 | case ISD::SRL: |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5779 | Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); |
| 5780 | Lo = DAG.getNode(ISD::OR, dl, NVT, |
| 5781 | DAG.getNode(ISD::SRL, dl, NVT, InL, Amt), |
| 5782 | DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2)); |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5783 | return true; |
| 5784 | case ISD::SRA: |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 5785 | Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); |
| 5786 | Lo = DAG.getNode(ISD::OR, dl, NVT, |
| 5787 | DAG.getNode(ISD::SRL, dl, NVT, InL, Amt), |
| 5788 | DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2)); |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5789 | return true; |
| 5790 | } |
| 5791 | } |
| 5792 | |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5793 | return false; |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 5794 | } |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5795 | |
Chris Lattner | 9c32d3b | 2005-01-23 04:42:50 +0000 | [diff] [blame] | 5796 | |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5797 | // ExpandLibCall - Expand a node into a call to a libcall. If the result value |
| 5798 | // does not fit into a register, return the lo part and set the hi part to the |
| 5799 | // by-reg argument. If it does fit into a single register, return the result |
| 5800 | // and leave the Hi part unset. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5801 | SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, |
| 5802 | bool isSigned, SDValue &Hi) { |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 5803 | assert(!IsLegalizingCall && "Cannot overlap legalization of calls!"); |
| 5804 | // The input chain to this libcall is the entry node of the function. |
| 5805 | // Legalizing the call will automatically add the previous call to the |
| 5806 | // dependence. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5807 | SDValue InChain = DAG.getEntryNode(); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 5808 | |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5809 | TargetLowering::ArgListTy Args; |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 5810 | TargetLowering::ArgListEntry Entry; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5811 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5812 | MVT ArgVT = Node->getOperand(i).getValueType(); |
| 5813 | const Type *ArgTy = ArgVT.getTypeForMVT(); |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 5814 | Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy; |
Anton Korobeynikov | d0b82b3 | 2007-03-07 16:25:09 +0000 | [diff] [blame] | 5815 | Entry.isSExt = isSigned; |
Duncan Sands | 00fee65 | 2008-02-14 17:28:50 +0000 | [diff] [blame] | 5816 | Entry.isZExt = !isSigned; |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 5817 | Args.push_back(Entry); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5818 | } |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 5819 | SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC), |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 5820 | TLI.getPointerTy()); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5821 | |
Chris Lattner | 0d67f0c | 2005-05-11 19:02:11 +0000 | [diff] [blame] | 5822 | // Splice the libcall in wherever FindInputOutputChains tells us to. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5823 | const Type *RetTy = Node->getValueType(0).getTypeForMVT(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5824 | std::pair<SDValue,SDValue> CallInfo = |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5825 | TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5826 | CallingConv::C, false, Callee, Args, DAG, |
| 5827 | Node->getDebugLoc()); |
Chris Lattner | b9fa3bc | 2005-05-12 04:49:08 +0000 | [diff] [blame] | 5828 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 5829 | // Legalize the call sequence, starting with the chain. This will advance |
| 5830 | // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that |
| 5831 | // was added by LowerCallTo (guaranteeing proper serialization of calls). |
| 5832 | LegalizeOp(CallInfo.second); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5833 | SDValue Result; |
Chris Lattner | 0d67f0c | 2005-05-11 19:02:11 +0000 | [diff] [blame] | 5834 | switch (getTypeAction(CallInfo.first.getValueType())) { |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5835 | default: assert(0 && "Unknown thing"); |
| 5836 | case Legal: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 5837 | Result = CallInfo.first; |
Chris Lattner | 99c25b8 | 2005-09-02 20:26:58 +0000 | [diff] [blame] | 5838 | break; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5839 | case Expand: |
Chris Lattner | 99c25b8 | 2005-09-02 20:26:58 +0000 | [diff] [blame] | 5840 | ExpandOp(CallInfo.first, Result, Hi); |
Chris Lattner | 99c25b8 | 2005-09-02 20:26:58 +0000 | [diff] [blame] | 5841 | break; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5842 | } |
Chris Lattner | 99c25b8 | 2005-09-02 20:26:58 +0000 | [diff] [blame] | 5843 | return Result; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5844 | } |
| 5845 | |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5846 | /// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation. |
| 5847 | /// |
| 5848 | SDValue SelectionDAGLegalize:: |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5849 | LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op, |
| 5850 | DebugLoc dl) { |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5851 | bool isCustom = false; |
| 5852 | SDValue Tmp1; |
| 5853 | switch (getTypeAction(Op.getValueType())) { |
| 5854 | case Legal: |
| 5855 | switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, |
| 5856 | Op.getValueType())) { |
| 5857 | default: assert(0 && "Unknown operation action!"); |
| 5858 | case TargetLowering::Custom: |
| 5859 | isCustom = true; |
| 5860 | // FALLTHROUGH |
| 5861 | case TargetLowering::Legal: |
| 5862 | Tmp1 = LegalizeOp(Op); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5863 | if (Result.getNode()) |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5864 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 5865 | else |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5866 | Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl, |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5867 | DestTy, Tmp1); |
| 5868 | if (isCustom) { |
| 5869 | Tmp1 = TLI.LowerOperation(Result, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5870 | if (Tmp1.getNode()) Result = Tmp1; |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5871 | } |
| 5872 | break; |
| 5873 | case TargetLowering::Expand: |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5874 | Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl); |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5875 | break; |
| 5876 | case TargetLowering::Promote: |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5877 | Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl); |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5878 | break; |
| 5879 | } |
| 5880 | break; |
| 5881 | case Expand: |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5882 | Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ; |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5883 | break; |
| 5884 | case Promote: |
| 5885 | Tmp1 = PromoteOp(Op); |
| 5886 | if (isSigned) { |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5887 | Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(), |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5888 | Tmp1, DAG.getValueType(Op.getValueType())); |
| 5889 | } else { |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5890 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5891 | Op.getValueType()); |
| 5892 | } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5893 | if (Result.getNode()) |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5894 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 5895 | else |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5896 | Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl, |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5897 | DestTy, Tmp1); |
| 5898 | Result = LegalizeOp(Result); // The 'op' is not necessarily legal! |
| 5899 | break; |
| 5900 | } |
| 5901 | return Result; |
| 5902 | } |
Chris Lattner | 9c32d3b | 2005-01-23 04:42:50 +0000 | [diff] [blame] | 5903 | |
Evan Cheng | 4c6cfad | 2007-04-27 07:33:31 +0000 | [diff] [blame] | 5904 | /// ExpandIntToFP - Expand a [US]INT_TO_FP operation. |
| 5905 | /// |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5906 | SDValue SelectionDAGLegalize:: |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5907 | ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5908 | MVT SourceVT = Source.getValueType(); |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5909 | bool ExpandSource = getTypeAction(SourceVT) == Expand; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5910 | |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5911 | // Expand unsupported int-to-fp vector casts by unrolling them. |
| 5912 | if (DestTy.isVector()) { |
| 5913 | if (!ExpandSource) |
| 5914 | return LegalizeOp(UnrollVectorOp(Source)); |
| 5915 | MVT DestEltTy = DestTy.getVectorElementType(); |
| 5916 | if (DestTy.getVectorNumElements() == 1) { |
| 5917 | SDValue Scalar = ScalarizeVectorOp(Source); |
| 5918 | SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned, |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5919 | DestEltTy, Scalar, dl); |
| 5920 | return DAG.getNode(ISD::BUILD_VECTOR, dl, DestTy, Result); |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5921 | } |
| 5922 | SDValue Lo, Hi; |
| 5923 | SplitVectorOp(Source, Lo, Hi); |
| 5924 | MVT SplitDestTy = MVT::getVectorVT(DestEltTy, |
| 5925 | DestTy.getVectorNumElements() / 2); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5926 | SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, |
| 5927 | Lo, dl); |
| 5928 | SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, |
| 5929 | Hi, dl); |
| 5930 | return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult, |
Evan Cheng | efa5339 | 2008-10-13 18:46:18 +0000 | [diff] [blame] | 5931 | HiResult)); |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 5932 | } |
| 5933 | |
Evan Cheng | 9845eb5 | 2008-04-01 02:18:22 +0000 | [diff] [blame] | 5934 | // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc. |
| 5935 | if (!isSigned && SourceVT != MVT::i32) { |
Dan Gohman | 34bc178 | 2008-03-05 02:07:31 +0000 | [diff] [blame] | 5936 | // 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] | 5937 | // incoming integer is set. To handle this, we dynamically test to see if |
| 5938 | // it is set, and, if so, add a fudge factor. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5939 | SDValue Hi; |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5940 | if (ExpandSource) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5941 | SDValue Lo; |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5942 | ExpandOp(Source, Lo, Hi); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5943 | Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi); |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5944 | } else { |
| 5945 | // The comparison for the sign bit will use the entire operand. |
| 5946 | Hi = Source; |
| 5947 | } |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5948 | |
Dale Johannesen | 53997b0 | 2008-11-04 20:52:49 +0000 | [diff] [blame] | 5949 | // Check to see if the target has a custom way to lower this. If so, use |
| 5950 | // it. (Note we've already expanded the operand in this case.) |
Dale Johannesen | 1c15bf5 | 2008-10-21 20:50:01 +0000 | [diff] [blame] | 5951 | switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) { |
| 5952 | default: assert(0 && "This action not implemented for this operation!"); |
| 5953 | case TargetLowering::Legal: |
| 5954 | case TargetLowering::Expand: |
| 5955 | break; // This case is handled below. |
| 5956 | case TargetLowering::Custom: { |
| 5957 | SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, DestTy, |
| 5958 | Source), DAG); |
| 5959 | if (NV.getNode()) |
| 5960 | return LegalizeOp(NV); |
| 5961 | break; // The target decided this was legal after all |
| 5962 | } |
| 5963 | } |
| 5964 | |
Chris Lattner | 66de05b | 2005-05-13 04:45:13 +0000 | [diff] [blame] | 5965 | // If this is unsigned, and not supported, first perform the conversion to |
| 5966 | // signed, then adjust the result if the sign bit is set. |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5967 | SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl); |
Chris Lattner | 66de05b | 2005-05-13 04:45:13 +0000 | [diff] [blame] | 5968 | |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5969 | SDValue SignSet = DAG.getSetCC(dl, |
| 5970 | TLI.getSetCCResultType(Hi.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 5971 | Hi, DAG.getConstant(0, Hi.getValueType()), |
| 5972 | ISD::SETLT); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5973 | SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5974 | SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5975 | SignSet, Four, Zero); |
Chris Lattner | 383203b | 2005-05-12 18:52:34 +0000 | [diff] [blame] | 5976 | uint64_t FF = 0x5f800000ULL; |
| 5977 | if (TLI.isLittleEndian()) FF <<= 32; |
Dan Gohman | 34bc178 | 2008-03-05 02:07:31 +0000 | [diff] [blame] | 5978 | static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF); |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5979 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5980 | SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy()); |
Dan Gohman | 50284d8 | 2008-09-16 22:05:41 +0000 | [diff] [blame] | 5981 | unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment(); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5982 | CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset); |
Dan Gohman | 87a0f10 | 2008-09-22 22:40:08 +0000 | [diff] [blame] | 5983 | Alignment = std::min(Alignment, 4u); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5984 | SDValue FudgeInReg; |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5985 | if (DestTy == MVT::f32) |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5986 | FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx, |
Dan Gohman | 50284d8 | 2008-09-16 22:05:41 +0000 | [diff] [blame] | 5987 | PseudoSourceValue::getConstantPool(), 0, |
| 5988 | false, Alignment); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 5989 | else if (DestTy.bitsGT(MVT::f32)) |
Evan Cheng | 4c6cfad | 2007-04-27 07:33:31 +0000 | [diff] [blame] | 5990 | // FIXME: Avoid the extend by construction the right constantpool? |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 5991 | FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(), |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5992 | CPIdx, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 5993 | PseudoSourceValue::getConstantPool(), 0, |
Dan Gohman | 50284d8 | 2008-09-16 22:05:41 +0000 | [diff] [blame] | 5994 | MVT::f32, false, Alignment); |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 5995 | else |
| 5996 | assert(0 && "Unexpected conversion"); |
| 5997 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5998 | MVT SCVT = SignedConv.getValueType(); |
Evan Cheng | 4c6cfad | 2007-04-27 07:33:31 +0000 | [diff] [blame] | 5999 | if (SCVT != DestTy) { |
| 6000 | // Destination type needs to be expanded as well. The FADD now we are |
| 6001 | // constructing will be expanded into a libcall. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6002 | if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) { |
| 6003 | assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits()); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6004 | SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, |
Evan Cheng | 4c6cfad | 2007-04-27 07:33:31 +0000 | [diff] [blame] | 6005 | SignedConv, SignedConv.getValue(1)); |
| 6006 | } |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6007 | SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv); |
Evan Cheng | 4c6cfad | 2007-04-27 07:33:31 +0000 | [diff] [blame] | 6008 | } |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6009 | return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 6010 | } |
Chris Lattner | 0d67f0c | 2005-05-11 19:02:11 +0000 | [diff] [blame] | 6011 | |
Chris Lattner | a88a260 | 2005-05-14 05:33:54 +0000 | [diff] [blame] | 6012 | // 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] | 6013 | switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) { |
Chris Lattner | a88a260 | 2005-05-14 05:33:54 +0000 | [diff] [blame] | 6014 | default: assert(0 && "This action not implemented for this operation!"); |
| 6015 | case TargetLowering::Legal: |
| 6016 | case TargetLowering::Expand: |
| 6017 | break; // This case is handled below. |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 6018 | case TargetLowering::Custom: { |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6019 | SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 6020 | Source), DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6021 | if (NV.getNode()) |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 6022 | return LegalizeOp(NV); |
| 6023 | break; // The target decided this was legal after all |
| 6024 | } |
Chris Lattner | a88a260 | 2005-05-14 05:33:54 +0000 | [diff] [blame] | 6025 | } |
| 6026 | |
Chris Lattner | 13689e2 | 2005-05-12 07:00:44 +0000 | [diff] [blame] | 6027 | // Expand the source, then glue it back together for the call. We must expand |
| 6028 | // 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] | 6029 | if (ExpandSource) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6030 | SDValue SrcLo, SrcHi; |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 6031 | ExpandOp(Source, SrcLo, SrcHi); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6032 | Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi); |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 6033 | } |
Chris Lattner | 13689e2 | 2005-05-12 07:00:44 +0000 | [diff] [blame] | 6034 | |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 6035 | RTLIB::Libcall LC = isSigned ? |
| 6036 | RTLIB::getSINTTOFP(SourceVT, DestTy) : |
| 6037 | RTLIB::getUINTTOFP(SourceVT, DestTy); |
| 6038 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type"); |
| 6039 | |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6040 | Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6041 | SDValue HiPart; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6042 | SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart); |
| 6043 | if (Result.getValueType() != DestTy && HiPart.getNode()) |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6044 | Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart); |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 6045 | return Result; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 6046 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 6047 | |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6048 | /// ExpandLegalINT_TO_FP - This function is responsible for legalizing a |
| 6049 | /// INT_TO_FP operation of the specified operand when the target requests that |
| 6050 | /// we expand it. At this point, we know that the result and operand types are |
| 6051 | /// legal for the target. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6052 | SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned, |
| 6053 | SDValue Op0, |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6054 | MVT DestVT, |
| 6055 | DebugLoc dl) { |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6056 | if (Op0.getValueType() == MVT::i32) { |
| 6057 | // simple 32-bit [signed|unsigned] integer to float/double expansion |
| 6058 | |
Chris Lattner | 23594d4 | 2008-01-16 07:03:22 +0000 | [diff] [blame] | 6059 | // Get the stack frame index of a 8 byte buffer. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6060 | SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64); |
Chris Lattner | 23594d4 | 2008-01-16 07:03:22 +0000 | [diff] [blame] | 6061 | |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6062 | // word offset constant for Hi/Lo address computation |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6063 | SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy()); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6064 | // set up Hi and Lo (into buffer) address based on endian |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6065 | SDValue Hi = StackSlot; |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6066 | SDValue Lo = DAG.getNode(ISD::ADD, dl, |
| 6067 | TLI.getPointerTy(), StackSlot,WordOff); |
Chris Lattner | 408c428 | 2006-03-23 05:29:04 +0000 | [diff] [blame] | 6068 | if (TLI.isLittleEndian()) |
| 6069 | std::swap(Hi, Lo); |
| 6070 | |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6071 | // if signed map to unsigned space |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6072 | SDValue Op0Mapped; |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6073 | if (isSigned) { |
| 6074 | // constant used to invert sign bit (signed to unsigned mapping) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6075 | SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6076 | Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6077 | } else { |
| 6078 | Op0Mapped = Op0; |
| 6079 | } |
| 6080 | // store the lo of the constructed double - based on integer input |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6081 | SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 6082 | Op0Mapped, Lo, NULL, 0); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6083 | // initial hi portion of constructed double |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6084 | SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6085 | // store the hi of the constructed double - biased exponent |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6086 | SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6087 | // load the constructed double |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6088 | SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6089 | // FP constant to bias correct the final result |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6090 | SDValue Bias = DAG.getConstantFP(isSigned ? |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6091 | BitsToDouble(0x4330000080000000ULL) |
| 6092 | : BitsToDouble(0x4330000000000000ULL), |
| 6093 | MVT::f64); |
| 6094 | // subtract the bias |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6095 | SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6096 | // final result |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6097 | SDValue Result; |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6098 | // handle final rounding |
| 6099 | if (DestVT == MVT::f64) { |
| 6100 | // do nothing |
| 6101 | Result = Sub; |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 6102 | } else if (DestVT.bitsLT(MVT::f64)) { |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6103 | Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6104 | DAG.getIntPtrConstant(0)); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 6105 | } else if (DestVT.bitsGT(MVT::f64)) { |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6106 | Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6107 | } |
| 6108 | return Result; |
| 6109 | } |
| 6110 | assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet"); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6111 | SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6112 | |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6113 | SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 6114 | Op0, DAG.getConstant(0, Op0.getValueType()), |
| 6115 | ISD::SETLT); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6116 | SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6117 | SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6118 | SignSet, Four, Zero); |
| 6119 | |
| 6120 | // If the sign bit of the integer is set, the large number will be treated |
| 6121 | // as a negative number. To counteract this, the dynamic code adds an |
| 6122 | // offset depending on the data type. |
| 6123 | uint64_t FF; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6124 | switch (Op0.getValueType().getSimpleVT()) { |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6125 | default: assert(0 && "Unsupported integer type!"); |
| 6126 | case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float) |
| 6127 | case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float) |
| 6128 | case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float) |
| 6129 | case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float) |
| 6130 | } |
| 6131 | if (TLI.isLittleEndian()) FF <<= 32; |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 6132 | static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6133 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6134 | SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy()); |
Dan Gohman | 50284d8 | 2008-09-16 22:05:41 +0000 | [diff] [blame] | 6135 | unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment(); |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6136 | CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset); |
Dan Gohman | 87a0f10 | 2008-09-22 22:40:08 +0000 | [diff] [blame] | 6137 | Alignment = std::min(Alignment, 4u); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6138 | SDValue FudgeInReg; |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6139 | if (DestVT == MVT::f32) |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6140 | FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx, |
Dan Gohman | 50284d8 | 2008-09-16 22:05:41 +0000 | [diff] [blame] | 6141 | PseudoSourceValue::getConstantPool(), 0, |
| 6142 | false, Alignment); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6143 | else { |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 6144 | FudgeInReg = |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6145 | LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 6146 | DAG.getEntryNode(), CPIdx, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 6147 | PseudoSourceValue::getConstantPool(), 0, |
Dan Gohman | 50284d8 | 2008-09-16 22:05:41 +0000 | [diff] [blame] | 6148 | MVT::f32, false, Alignment)); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6149 | } |
| 6150 | |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6151 | return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6152 | } |
| 6153 | |
| 6154 | /// PromoteLegalINT_TO_FP - This function is responsible for legalizing a |
| 6155 | /// *INT_TO_FP operation of the specified operand when the target requests that |
| 6156 | /// we promote it. At this point, we know that the result and operand types are |
| 6157 | /// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP |
| 6158 | /// operation that takes a larger input. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6159 | SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp, |
| 6160 | MVT DestVT, |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6161 | bool isSigned, |
| 6162 | DebugLoc dl) { |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6163 | // First step, figure out the appropriate *INT_TO_FP operation to use. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6164 | MVT NewInTy = LegalOp.getValueType(); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6165 | |
| 6166 | unsigned OpToUse = 0; |
| 6167 | |
| 6168 | // Scan for the appropriate larger type to use. |
| 6169 | while (1) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6170 | NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1); |
| 6171 | assert(NewInTy.isInteger() && "Ran out of possibilities!"); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6172 | |
| 6173 | // If the target supports SINT_TO_FP of this type, use it. |
| 6174 | switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) { |
| 6175 | default: break; |
| 6176 | case TargetLowering::Legal: |
| 6177 | if (!TLI.isTypeLegal(NewInTy)) |
| 6178 | break; // Can't use this datatype. |
| 6179 | // FALL THROUGH. |
| 6180 | case TargetLowering::Custom: |
| 6181 | OpToUse = ISD::SINT_TO_FP; |
| 6182 | break; |
| 6183 | } |
| 6184 | if (OpToUse) break; |
| 6185 | if (isSigned) continue; |
| 6186 | |
| 6187 | // If the target supports UINT_TO_FP of this type, use it. |
| 6188 | switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) { |
| 6189 | default: break; |
| 6190 | case TargetLowering::Legal: |
| 6191 | if (!TLI.isTypeLegal(NewInTy)) |
| 6192 | break; // Can't use this datatype. |
| 6193 | // FALL THROUGH. |
| 6194 | case TargetLowering::Custom: |
| 6195 | OpToUse = ISD::UINT_TO_FP; |
| 6196 | break; |
| 6197 | } |
| 6198 | if (OpToUse) break; |
| 6199 | |
| 6200 | // Otherwise, try a larger type. |
| 6201 | } |
| 6202 | |
| 6203 | // Okay, we found the operation and type to use. Zero extend our input to the |
| 6204 | // desired type then run the operation on it. |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6205 | return DAG.getNode(OpToUse, dl, DestVT, |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6206 | DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND, |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6207 | dl, NewInTy, LegalOp)); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6208 | } |
| 6209 | |
| 6210 | /// PromoteLegalFP_TO_INT - This function is responsible for legalizing a |
| 6211 | /// FP_TO_*INT operation of the specified operand when the target requests that |
| 6212 | /// we promote it. At this point, we know that the result and operand types are |
| 6213 | /// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT |
| 6214 | /// operation that returns a larger result. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6215 | SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp, |
| 6216 | MVT DestVT, |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6217 | bool isSigned, |
| 6218 | DebugLoc dl) { |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6219 | // First step, figure out the appropriate FP_TO*INT operation to use. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6220 | MVT NewOutTy = DestVT; |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6221 | |
| 6222 | unsigned OpToUse = 0; |
| 6223 | |
| 6224 | // Scan for the appropriate larger type to use. |
| 6225 | while (1) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6226 | NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1); |
| 6227 | assert(NewOutTy.isInteger() && "Ran out of possibilities!"); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6228 | |
| 6229 | // If the target supports FP_TO_SINT returning this type, use it. |
| 6230 | switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) { |
| 6231 | default: break; |
| 6232 | case TargetLowering::Legal: |
| 6233 | if (!TLI.isTypeLegal(NewOutTy)) |
| 6234 | break; // Can't use this datatype. |
| 6235 | // FALL THROUGH. |
| 6236 | case TargetLowering::Custom: |
| 6237 | OpToUse = ISD::FP_TO_SINT; |
| 6238 | break; |
| 6239 | } |
| 6240 | if (OpToUse) break; |
| 6241 | |
| 6242 | // If the target supports FP_TO_UINT of this type, use it. |
| 6243 | switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) { |
| 6244 | default: break; |
| 6245 | case TargetLowering::Legal: |
| 6246 | if (!TLI.isTypeLegal(NewOutTy)) |
| 6247 | break; // Can't use this datatype. |
| 6248 | // FALL THROUGH. |
| 6249 | case TargetLowering::Custom: |
| 6250 | OpToUse = ISD::FP_TO_UINT; |
| 6251 | break; |
| 6252 | } |
| 6253 | if (OpToUse) break; |
| 6254 | |
| 6255 | // Otherwise, try a larger type. |
| 6256 | } |
| 6257 | |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6258 | |
| 6259 | // Okay, we found the operation and type to use. |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6260 | SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp); |
Duncan Sands | 126d907 | 2008-07-04 11:47:58 +0000 | [diff] [blame] | 6261 | |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6262 | // If the operation produces an invalid type, it must be custom lowered. Use |
| 6263 | // the target lowering hooks to expand it. Just keep the low part of the |
| 6264 | // expanded operation, we know that we're truncating anyway. |
| 6265 | if (getTypeAction(NewOutTy) == Expand) { |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 6266 | SmallVector<SDValue, 2> Results; |
| 6267 | TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG); |
| 6268 | assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!"); |
| 6269 | Operation = Results[0]; |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6270 | } |
Duncan Sands | 126d907 | 2008-07-04 11:47:58 +0000 | [diff] [blame] | 6271 | |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6272 | // Truncate the result of the extended FP_TO_*INT operation to the desired |
| 6273 | // size. |
Dale Johannesen | af43527 | 2009-02-02 19:03:57 +0000 | [diff] [blame] | 6274 | return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6275 | } |
| 6276 | |
| 6277 | /// ExpandBSWAP - Open code the operations for BSWAP of the specified operation. |
| 6278 | /// |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6279 | SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6280 | MVT VT = Op.getValueType(); |
| 6281 | MVT SHVT = TLI.getShiftAmountTy(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6282 | SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6283 | switch (VT.getSimpleVT()) { |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6284 | default: assert(0 && "Unhandled Expand type in BSWAP!"); abort(); |
| 6285 | case MVT::i16: |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6286 | Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT)); |
| 6287 | Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT)); |
| 6288 | return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6289 | case MVT::i32: |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6290 | Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT)); |
| 6291 | Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT)); |
| 6292 | Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT)); |
| 6293 | Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT)); |
| 6294 | Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT)); |
| 6295 | Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT)); |
| 6296 | Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3); |
| 6297 | Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1); |
| 6298 | return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6299 | case MVT::i64: |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6300 | Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT)); |
| 6301 | Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT)); |
| 6302 | Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT)); |
| 6303 | Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT)); |
| 6304 | Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT)); |
| 6305 | Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT)); |
| 6306 | Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT)); |
| 6307 | Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT)); |
| 6308 | Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT)); |
| 6309 | Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT)); |
| 6310 | Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT)); |
| 6311 | Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT)); |
| 6312 | Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT)); |
| 6313 | Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT)); |
| 6314 | Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7); |
| 6315 | Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5); |
| 6316 | Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3); |
| 6317 | Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1); |
| 6318 | Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6); |
| 6319 | Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2); |
| 6320 | return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6321 | } |
| 6322 | } |
| 6323 | |
| 6324 | /// ExpandBitCount - Expand the specified bitcount instruction into operations. |
| 6325 | /// |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6326 | SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op, |
| 6327 | DebugLoc dl) { |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6328 | switch (Opc) { |
| 6329 | default: assert(0 && "Cannot expand this yet!"); |
| 6330 | case ISD::CTPOP: { |
| 6331 | static const uint64_t mask[6] = { |
| 6332 | 0x5555555555555555ULL, 0x3333333333333333ULL, |
| 6333 | 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL, |
| 6334 | 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL |
| 6335 | }; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6336 | MVT VT = Op.getValueType(); |
| 6337 | MVT ShVT = TLI.getShiftAmountTy(); |
| 6338 | unsigned len = VT.getSizeInBits(); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6339 | for (unsigned i = 0; (1U << i) <= (len / 2); ++i) { |
| 6340 | //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8]) |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 6341 | unsigned EltSize = VT.isVector() ? |
| 6342 | VT.getVectorElementType().getSizeInBits() : len; |
| 6343 | SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6344 | SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6345 | Op = DAG.getNode(ISD::ADD, dl, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2), |
| 6346 | DAG.getNode(ISD::AND, dl, VT, |
| 6347 | DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3), |
| 6348 | Tmp2)); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6349 | } |
| 6350 | return Op; |
| 6351 | } |
| 6352 | case ISD::CTLZ: { |
| 6353 | // for now, we do this: |
| 6354 | // x = x | (x >> 1); |
| 6355 | // x = x | (x >> 2); |
| 6356 | // ... |
| 6357 | // x = x | (x >>16); |
| 6358 | // x = x | (x >>32); // for 64-bit input |
| 6359 | // return popcount(~x); |
| 6360 | // |
| 6361 | // but see also: http://www.hackersdelight.org/HDcode/nlz.cc |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6362 | MVT VT = Op.getValueType(); |
| 6363 | MVT ShVT = TLI.getShiftAmountTy(); |
| 6364 | unsigned len = VT.getSizeInBits(); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6365 | for (unsigned i = 0; (1U << i) <= (len / 2); ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6366 | SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6367 | Op = DAG.getNode(ISD::OR, dl, VT, Op, |
| 6368 | DAG.getNode(ISD::SRL, VT, Op, Tmp3)); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6369 | } |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6370 | Op = DAG.getNOT(dl, Op, VT); |
| 6371 | return DAG.getNode(ISD::CTPOP, dl, VT, Op); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6372 | } |
| 6373 | case ISD::CTTZ: { |
| 6374 | // for now, we use: { return popcount(~x & (x - 1)); } |
| 6375 | // unless the target has ctlz but not ctpop, in which case we use: |
| 6376 | // { return 32 - nlz(~x & (x-1)); } |
| 6377 | // see also http://www.hackersdelight.org/HDcode/ntz.cc |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6378 | MVT VT = Op.getValueType(); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6379 | SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT, |
| 6380 | DAG.getNOT(dl, Op, VT), |
| 6381 | DAG.getNode(ISD::SUB, dl, VT, Op, |
Bill Wendling | 7581bfa | 2009-01-30 23:03:19 +0000 | [diff] [blame] | 6382 | DAG.getConstant(1, VT))); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6383 | // If ISD::CTLZ is legal and CTPOP isn't, then do that instead. |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 6384 | if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) && |
| 6385 | TLI.isOperationLegalOrCustom(ISD::CTLZ, VT)) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6386 | return DAG.getNode(ISD::SUB, dl, VT, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6387 | DAG.getConstant(VT.getSizeInBits(), VT), |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6388 | DAG.getNode(ISD::CTLZ, dl, VT, Tmp3)); |
| 6389 | return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 6390 | } |
| 6391 | } |
| 6392 | } |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6393 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6394 | /// ExpandOp - Expand the specified SDValue into its two component pieces |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6395 | /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the |
Dan Gohman | 929d3eb | 2008-10-01 15:07:49 +0000 | [diff] [blame] | 6396 | /// LegalizedNodes map is filled in for any results that are not expanded, the |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6397 | /// ExpandedNodes map is filled in for any results that are expanded, and the |
| 6398 | /// Lo/Hi values are returned. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6399 | void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){ |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6400 | MVT VT = Op.getValueType(); |
| 6401 | MVT NVT = TLI.getTypeToTransformTo(VT); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6402 | SDNode *Node = Op.getNode(); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6403 | DebugLoc dl = Node->getDebugLoc(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6404 | assert(getTypeAction(VT) == Expand && "Not an expanded type!"); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 6405 | assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() || |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6406 | VT.isVector()) && "Cannot expand to FP value or to larger int value!"); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6407 | |
Chris Lattner | 6fdcb25 | 2005-09-02 20:32:45 +0000 | [diff] [blame] | 6408 | // See if we already expanded it. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6409 | DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I |
Chris Lattner | 6fdcb25 | 2005-09-02 20:32:45 +0000 | [diff] [blame] | 6410 | = ExpandedNodes.find(Op); |
| 6411 | if (I != ExpandedNodes.end()) { |
| 6412 | Lo = I->second.first; |
| 6413 | Hi = I->second.second; |
| 6414 | return; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6415 | } |
| 6416 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6417 | switch (Node->getOpcode()) { |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6418 | case ISD::CopyFromReg: |
| 6419 | assert(0 && "CopyFromReg must be legal!"); |
Dale Johannesen | 6eaeff2 | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 6420 | case ISD::FP_ROUND_INREG: |
| 6421 | if (VT == MVT::ppcf128 && |
| 6422 | TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) == |
| 6423 | TargetLowering::Custom) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6424 | SDValue SrcLo, SrcHi, Src; |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 6425 | ExpandOp(Op.getOperand(0), SrcLo, SrcHi); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6426 | Src = DAG.getNode(ISD::BUILD_PAIR, dl, VT, SrcLo, SrcHi); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6427 | SDValue Result = TLI.LowerOperation( |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6428 | DAG.getNode(ISD::FP_ROUND_INREG, dl, VT, Src, Op.getOperand(1)), DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6429 | assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR); |
| 6430 | Lo = Result.getNode()->getOperand(0); |
| 6431 | Hi = Result.getNode()->getOperand(1); |
Dale Johannesen | 6eaeff2 | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 6432 | break; |
| 6433 | } |
| 6434 | // fall through |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6435 | default: |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 6436 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 6437 | cerr << "NODE: "; Node->dump(&DAG); cerr << "\n"; |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 6438 | #endif |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6439 | assert(0 && "Do not know how to expand this operator!"); |
| 6440 | abort(); |
Dan Gohman | 1953ecb | 2008-02-27 01:52:30 +0000 | [diff] [blame] | 6441 | case ISD::EXTRACT_ELEMENT: |
| 6442 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 6443 | if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) |
Dan Gohman | 1953ecb | 2008-02-27 01:52:30 +0000 | [diff] [blame] | 6444 | return ExpandOp(Hi, Lo, Hi); |
Dan Gohman | 18714ae | 2008-02-27 19:44:57 +0000 | [diff] [blame] | 6445 | return ExpandOp(Lo, Lo, Hi); |
Dale Johannesen | 25f1d08 | 2007-10-31 00:32:36 +0000 | [diff] [blame] | 6446 | case ISD::EXTRACT_VECTOR_ELT: |
Dale Johannesen | 25f1d08 | 2007-10-31 00:32:36 +0000 | [diff] [blame] | 6447 | // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types. |
| 6448 | Lo = ExpandEXTRACT_VECTOR_ELT(Op); |
| 6449 | return ExpandOp(Lo, Lo, Hi); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 6450 | case ISD::UNDEF: |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6451 | Lo = DAG.getNode(ISD::UNDEF, dl, NVT); |
| 6452 | Hi = DAG.getNode(ISD::UNDEF, dl, NVT); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 6453 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6454 | case ISD::Constant: { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6455 | unsigned NVTBits = NVT.getSizeInBits(); |
Dan Gohman | 050f550 | 2008-03-03 22:20:46 +0000 | [diff] [blame] | 6456 | const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue(); |
| 6457 | Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT); |
| 6458 | Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6459 | break; |
| 6460 | } |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 6461 | case ISD::ConstantFP: { |
| 6462 | ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node); |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 6463 | if (CFP->getValueType(0) == MVT::ppcf128) { |
Dale Johannesen | 7111b02 | 2008-10-09 18:53:47 +0000 | [diff] [blame] | 6464 | APInt api = CFP->getValueAPF().bitcastToAPInt(); |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 6465 | Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])), |
| 6466 | MVT::f64); |
| 6467 | Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])), |
| 6468 | MVT::f64); |
| 6469 | break; |
| 6470 | } |
Evan Cheng | 279101e | 2006-12-12 22:19:28 +0000 | [diff] [blame] | 6471 | Lo = ExpandConstantFP(CFP, false, DAG, TLI); |
Evan Cheng | 9f87788 | 2006-12-13 20:57:08 +0000 | [diff] [blame] | 6472 | if (getTypeAction(Lo.getValueType()) == Expand) |
| 6473 | ExpandOp(Lo, Lo, Hi); |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 6474 | break; |
| 6475 | } |
Chris Lattner | d4e50bb | 2005-03-28 22:03:13 +0000 | [diff] [blame] | 6476 | case ISD::BUILD_PAIR: |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6477 | // Return the operands. |
| 6478 | Lo = Node->getOperand(0); |
| 6479 | Hi = Node->getOperand(1); |
Chris Lattner | d4e50bb | 2005-03-28 22:03:13 +0000 | [diff] [blame] | 6480 | break; |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6481 | |
| 6482 | case ISD::MERGE_VALUES: |
Chris Lattner | c58d558 | 2007-11-24 19:12:15 +0000 | [diff] [blame] | 6483 | if (Node->getNumValues() == 1) { |
| 6484 | ExpandOp(Op.getOperand(0), Lo, Hi); |
| 6485 | break; |
| 6486 | } |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6487 | // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y) |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 6488 | assert(Op.getResNo() == 0 && Node->getNumValues() == 2 && |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6489 | Op.getValue(1).getValueType() == MVT::Other && |
| 6490 | "unhandled MERGE_VALUES"); |
| 6491 | ExpandOp(Op.getOperand(0), Lo, Hi); |
| 6492 | // Remember that we legalized the chain. |
| 6493 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1))); |
| 6494 | break; |
Chris Lattner | 58f7963 | 2005-12-12 22:27:43 +0000 | [diff] [blame] | 6495 | |
| 6496 | case ISD::SIGN_EXTEND_INREG: |
| 6497 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Chris Lattner | 4bdd275 | 2006-10-06 17:34:12 +0000 | [diff] [blame] | 6498 | // sext_inreg the low part if needed. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6499 | Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Lo, Node->getOperand(1)); |
Chris Lattner | 4bdd275 | 2006-10-06 17:34:12 +0000 | [diff] [blame] | 6500 | |
| 6501 | // The high part gets the sign extension from the lo-part. This handles |
| 6502 | // things like sextinreg V:i64 from i8. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6503 | Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6504 | DAG.getConstant(NVT.getSizeInBits()-1, |
Chris Lattner | 58f7963 | 2005-12-12 22:27:43 +0000 | [diff] [blame] | 6505 | TLI.getShiftAmountTy())); |
Chris Lattner | 58f7963 | 2005-12-12 22:27:43 +0000 | [diff] [blame] | 6506 | break; |
Chris Lattner | d4e50bb | 2005-03-28 22:03:13 +0000 | [diff] [blame] | 6507 | |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 6508 | case ISD::BSWAP: { |
| 6509 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6510 | SDValue TempLo = DAG.getNode(ISD::BSWAP, dl, NVT, Hi); |
| 6511 | Hi = DAG.getNode(ISD::BSWAP, dl, NVT, Lo); |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 6512 | Lo = TempLo; |
| 6513 | break; |
| 6514 | } |
| 6515 | |
Chris Lattner | edb1add | 2005-05-11 04:51:16 +0000 | [diff] [blame] | 6516 | case ISD::CTPOP: |
| 6517 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6518 | Lo = DAG.getNode(ISD::ADD, dl, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L) |
| 6519 | DAG.getNode(ISD::CTPOP, dl, NVT, Lo), |
| 6520 | DAG.getNode(ISD::CTPOP, dl, NVT, Hi)); |
Chris Lattner | edb1add | 2005-05-11 04:51:16 +0000 | [diff] [blame] | 6521 | Hi = DAG.getConstant(0, NVT); |
| 6522 | break; |
| 6523 | |
Chris Lattner | 39a8f33 | 2005-05-12 19:05:01 +0000 | [diff] [blame] | 6524 | case ISD::CTLZ: { |
| 6525 | // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32) |
Chris Lattner | 3becf20 | 2005-05-12 19:27:51 +0000 | [diff] [blame] | 6526 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6527 | SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6528 | SDValue HLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi); |
| 6529 | SDValue TopNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), HLZ, |
| 6530 | BitsC, ISD::SETNE); |
| 6531 | SDValue LowPart = DAG.getNode(ISD::CTLZ, dl, NVT, Lo); |
| 6532 | LowPart = DAG.getNode(ISD::ADD, dl, NVT, LowPart, BitsC); |
Chris Lattner | 39a8f33 | 2005-05-12 19:05:01 +0000 | [diff] [blame] | 6533 | |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6534 | Lo = DAG.getNode(ISD::SELECT, dl, NVT, TopNotZero, HLZ, LowPart); |
Chris Lattner | 39a8f33 | 2005-05-12 19:05:01 +0000 | [diff] [blame] | 6535 | Hi = DAG.getConstant(0, NVT); |
| 6536 | break; |
| 6537 | } |
| 6538 | |
| 6539 | case ISD::CTTZ: { |
| 6540 | // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32) |
Chris Lattner | 3becf20 | 2005-05-12 19:27:51 +0000 | [diff] [blame] | 6541 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6542 | SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6543 | SDValue LTZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo); |
| 6544 | SDValue BotNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), LTZ, |
| 6545 | BitsC, ISD::SETNE); |
| 6546 | SDValue HiPart = DAG.getNode(ISD::CTTZ, dl, NVT, Hi); |
| 6547 | HiPart = DAG.getNode(ISD::ADD, dl, NVT, HiPart, BitsC); |
Chris Lattner | 39a8f33 | 2005-05-12 19:05:01 +0000 | [diff] [blame] | 6548 | |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6549 | Lo = DAG.getNode(ISD::SELECT, dl, NVT, BotNotZero, LTZ, HiPart); |
Chris Lattner | 39a8f33 | 2005-05-12 19:05:01 +0000 | [diff] [blame] | 6550 | Hi = DAG.getConstant(0, NVT); |
| 6551 | break; |
| 6552 | } |
Chris Lattner | edb1add | 2005-05-11 04:51:16 +0000 | [diff] [blame] | 6553 | |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 6554 | case ISD::VAARG: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6555 | SDValue Ch = Node->getOperand(0); // Legalize the chain. |
| 6556 | SDValue Ptr = Node->getOperand(1); // Legalize the pointer. |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 6557 | Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2)); |
| 6558 | Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2)); |
| 6559 | |
| 6560 | // Remember that we legalized the chain. |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6561 | Hi = LegalizeOp(Hi); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 6562 | AddLegalizedOperand(Op.getValue(1), Hi.getValue(1)); |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 6563 | if (TLI.isBigEndian()) |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 6564 | std::swap(Lo, Hi); |
| 6565 | break; |
| 6566 | } |
| 6567 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6568 | case ISD::LOAD: { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6569 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6570 | SDValue Ch = LD->getChain(); // Legalize the chain. |
| 6571 | SDValue Ptr = LD->getBasePtr(); // Legalize the pointer. |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6572 | ISD::LoadExtType ExtType = LD->getExtensionType(); |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 6573 | const Value *SV = LD->getSrcValue(); |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 6574 | int SVOffset = LD->getSrcValueOffset(); |
| 6575 | unsigned Alignment = LD->getAlignment(); |
| 6576 | bool isVolatile = LD->isVolatile(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6577 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6578 | if (ExtType == ISD::NON_EXTLOAD) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6579 | Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset, |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 6580 | isVolatile, Alignment); |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 6581 | if (VT == MVT::f32 || VT == MVT::f64) { |
| 6582 | // f32->i32 or f64->i64 one to one expansion. |
| 6583 | // Remember that we legalized the chain. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6584 | AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1))); |
Evan Cheng | 9f87788 | 2006-12-13 20:57:08 +0000 | [diff] [blame] | 6585 | // Recursively expand the new load. |
| 6586 | if (getTypeAction(NVT) == Expand) |
| 6587 | ExpandOp(Lo, Lo, Hi); |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 6588 | break; |
| 6589 | } |
Chris Lattner | ec39a45 | 2005-01-19 18:02:17 +0000 | [diff] [blame] | 6590 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6591 | // Increment the pointer to the other half. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6592 | unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8; |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6593 | Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6594 | DAG.getIntPtrConstant(IncrementSize)); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6595 | SVOffset += IncrementSize; |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 6596 | Alignment = MinAlign(Alignment, IncrementSize); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6597 | Hi = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset, |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 6598 | isVolatile, Alignment); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 6599 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6600 | // Build a factor node to remember that this load is independent of the |
| 6601 | // other one. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6602 | SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1), |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6603 | Hi.getValue(1)); |
| 6604 | |
| 6605 | // Remember that we legalized the chain. |
| 6606 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF)); |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 6607 | if (TLI.isBigEndian()) |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6608 | std::swap(Lo, Hi); |
| 6609 | } else { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6610 | MVT EVT = LD->getMemoryVT(); |
Evan Cheng | 548f611 | 2006-12-13 03:19:57 +0000 | [diff] [blame] | 6611 | |
Dale Johannesen | b6210fc | 2007-10-19 20:29:00 +0000 | [diff] [blame] | 6612 | if ((VT == MVT::f64 && EVT == MVT::f32) || |
| 6613 | (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) { |
Evan Cheng | 548f611 | 2006-12-13 03:19:57 +0000 | [diff] [blame] | 6614 | // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6615 | SDValue Load = DAG.getLoad(EVT, dl, Ch, Ptr, SV, |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 6616 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 548f611 | 2006-12-13 03:19:57 +0000 | [diff] [blame] | 6617 | // Remember that we legalized the chain. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6618 | AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1))); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6619 | ExpandOp(DAG.getNode(ISD::FP_EXTEND, dl, VT, Load), Lo, Hi); |
Evan Cheng | 548f611 | 2006-12-13 03:19:57 +0000 | [diff] [blame] | 6620 | break; |
| 6621 | } |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6622 | |
| 6623 | if (EVT == NVT) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6624 | Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 6625 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6626 | else |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6627 | Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, SV, |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 6628 | SVOffset, EVT, isVolatile, |
| 6629 | Alignment); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6630 | |
| 6631 | // Remember that we legalized the chain. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6632 | AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1))); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6633 | |
| 6634 | if (ExtType == ISD::SEXTLOAD) { |
| 6635 | // The high part is obtained by SRA'ing all but one of the bits of the |
| 6636 | // lo part. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6637 | unsigned LoSize = Lo.getValueType().getSizeInBits(); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6638 | Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo, |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6639 | DAG.getConstant(LoSize-1, TLI.getShiftAmountTy())); |
| 6640 | } else if (ExtType == ISD::ZEXTLOAD) { |
| 6641 | // The high part is just a zero. |
| 6642 | Hi = DAG.getConstant(0, NVT); |
| 6643 | } else /* if (ExtType == ISD::EXTLOAD) */ { |
| 6644 | // The high part is undefined. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6645 | Hi = DAG.getNode(ISD::UNDEF, dl, NVT); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 6646 | } |
| 6647 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6648 | break; |
| 6649 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6650 | case ISD::AND: |
| 6651 | case ISD::OR: |
| 6652 | case ISD::XOR: { // Simple logical operators -> two trivial pieces. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6653 | SDValue LL, LH, RL, RH; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6654 | ExpandOp(Node->getOperand(0), LL, LH); |
| 6655 | ExpandOp(Node->getOperand(1), RL, RH); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6656 | Lo = DAG.getNode(Node->getOpcode(), dl, NVT, LL, RL); |
| 6657 | Hi = DAG.getNode(Node->getOpcode(), dl, NVT, LH, RH); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6658 | break; |
| 6659 | } |
| 6660 | case ISD::SELECT: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6661 | SDValue LL, LH, RL, RH; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6662 | ExpandOp(Node->getOperand(1), LL, LH); |
| 6663 | ExpandOp(Node->getOperand(2), RL, RH); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 6664 | if (getTypeAction(NVT) == Expand) |
| 6665 | NVT = TLI.getTypeToExpandTo(NVT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6666 | Lo = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LL, RL); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 6667 | if (VT != MVT::f32) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6668 | Hi = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LH, RH); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6669 | break; |
| 6670 | } |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 6671 | case ISD::SELECT_CC: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6672 | SDValue TL, TH, FL, FH; |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 6673 | ExpandOp(Node->getOperand(2), TL, TH); |
| 6674 | ExpandOp(Node->getOperand(3), FL, FH); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 6675 | if (getTypeAction(NVT) == Expand) |
| 6676 | NVT = TLI.getTypeToExpandTo(NVT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6677 | Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0), |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 6678 | Node->getOperand(1), TL, FL, Node->getOperand(4)); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 6679 | if (VT != MVT::f32) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6680 | Hi = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0), |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 6681 | Node->getOperand(1), TH, FH, Node->getOperand(4)); |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 6682 | break; |
| 6683 | } |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6684 | case ISD::ANY_EXTEND: |
| 6685 | // The low part is any extension of the input (which degenerates to a copy). |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6686 | Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Node->getOperand(0)); |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6687 | // The high part is undefined. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6688 | Hi = DAG.getNode(ISD::UNDEF, dl, NVT); |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6689 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6690 | case ISD::SIGN_EXTEND: { |
| 6691 | // The low part is just a sign extension of the input (which degenerates to |
| 6692 | // a copy). |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6693 | Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Node->getOperand(0)); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 6694 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6695 | // The high part is obtained by SRA'ing all but one of the bits of the lo |
| 6696 | // part. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6697 | unsigned LoSize = Lo.getValueType().getSizeInBits(); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6698 | Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo, |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6699 | DAG.getConstant(LoSize-1, TLI.getShiftAmountTy())); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6700 | break; |
| 6701 | } |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6702 | case ISD::ZERO_EXTEND: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6703 | // The low part is just a zero extension of the input (which degenerates to |
| 6704 | // a copy). |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6705 | Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0)); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 6706 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6707 | // The high part is just a zero. |
| 6708 | Hi = DAG.getConstant(0, NVT); |
| 6709 | break; |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 6710 | |
Chris Lattner | 4c948eb | 2007-02-13 23:55:16 +0000 | [diff] [blame] | 6711 | case ISD::TRUNCATE: { |
| 6712 | // The input value must be larger than this value. Expand *it*. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6713 | SDValue NewLo; |
Chris Lattner | 4c948eb | 2007-02-13 23:55:16 +0000 | [diff] [blame] | 6714 | ExpandOp(Node->getOperand(0), NewLo, Hi); |
| 6715 | |
| 6716 | // The low part is now either the right size, or it is closer. If not the |
| 6717 | // right size, make an illegal truncate so we recursively expand it. |
| 6718 | if (NewLo.getValueType() != Node->getValueType(0)) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6719 | NewLo = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), NewLo); |
Chris Lattner | 4c948eb | 2007-02-13 23:55:16 +0000 | [diff] [blame] | 6720 | ExpandOp(NewLo, Lo, Hi); |
| 6721 | break; |
| 6722 | } |
| 6723 | |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 6724 | case ISD::BIT_CONVERT: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6725 | SDValue Tmp; |
Chris Lattner | f3f333d | 2006-09-09 00:20:27 +0000 | [diff] [blame] | 6726 | if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){ |
| 6727 | // If the target wants to, allow it to lower this itself. |
| 6728 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 6729 | case Expand: assert(0 && "cannot expand FP!"); |
| 6730 | case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break; |
| 6731 | case Promote: Tmp = PromoteOp (Node->getOperand(0)); break; |
| 6732 | } |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6733 | Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp), DAG); |
Chris Lattner | f3f333d | 2006-09-09 00:20:27 +0000 | [diff] [blame] | 6734 | } |
| 6735 | |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6736 | // f32 / f64 must be expanded to i32 / i64. |
Evan Cheng | 13acce3 | 2006-12-11 19:27:14 +0000 | [diff] [blame] | 6737 | if (VT == MVT::f32 || VT == MVT::f64) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6738 | Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0)); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 6739 | if (getTypeAction(NVT) == Expand) |
| 6740 | ExpandOp(Lo, Lo, Hi); |
Evan Cheng | 7b2b5c8 | 2006-12-12 19:53:13 +0000 | [diff] [blame] | 6741 | break; |
| 6742 | } |
| 6743 | |
| 6744 | // If source operand will be expanded to the same type as VT, i.e. |
| 6745 | // i64 <- f64, i32 <- f32, expand the source operand instead. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6746 | MVT VT0 = Node->getOperand(0).getValueType(); |
Evan Cheng | 7b2b5c8 | 2006-12-12 19:53:13 +0000 | [diff] [blame] | 6747 | if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) { |
| 6748 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6749 | break; |
| 6750 | } |
| 6751 | |
Chris Lattner | f3f333d | 2006-09-09 00:20:27 +0000 | [diff] [blame] | 6752 | // Turn this into a load/store pair by default. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6753 | if (Tmp.getNode() == 0) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6754 | Tmp = EmitStackConvert(Node->getOperand(0), VT, VT, dl); |
Chris Lattner | f3f333d | 2006-09-09 00:20:27 +0000 | [diff] [blame] | 6755 | |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 6756 | ExpandOp(Tmp, Lo, Hi); |
| 6757 | break; |
| 6758 | } |
Andrew Lenharth | f70e30b | 2005-11-20 21:32:07 +0000 | [diff] [blame] | 6759 | |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6760 | case ISD::READCYCLECOUNTER: { |
Chris Lattner | 308575b | 2005-11-20 22:56:56 +0000 | [diff] [blame] | 6761 | assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) == |
| 6762 | TargetLowering::Custom && |
| 6763 | "Must custom expand ReadCycleCounter"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6764 | SDValue Tmp = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6765 | assert(Tmp.getNode() && "Node must be custom expanded!"); |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6766 | ExpandOp(Tmp.getValue(0), Lo, Hi); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6767 | AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain. |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6768 | LegalizeOp(Tmp.getValue(1))); |
Andrew Lenharth | f70e30b | 2005-11-20 21:32:07 +0000 | [diff] [blame] | 6769 | break; |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6770 | } |
Andrew Lenharth | f70e30b | 2005-11-20 21:32:07 +0000 | [diff] [blame] | 6771 | |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 6772 | case ISD::ATOMIC_CMP_SWAP: { |
Dale Johannesen | 1b54c7f | 2008-10-03 19:41:08 +0000 | [diff] [blame] | 6773 | // This operation does not need a loop. |
| 6774 | SDValue Tmp = TLI.LowerOperation(Op, DAG); |
| 6775 | assert(Tmp.getNode() && "Node must be custom expanded!"); |
| 6776 | ExpandOp(Tmp.getValue(0), Lo, Hi); |
| 6777 | AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain. |
| 6778 | LegalizeOp(Tmp.getValue(1))); |
| 6779 | break; |
| 6780 | } |
| 6781 | |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 6782 | case ISD::ATOMIC_LOAD_ADD: |
| 6783 | case ISD::ATOMIC_LOAD_SUB: |
| 6784 | case ISD::ATOMIC_LOAD_AND: |
| 6785 | case ISD::ATOMIC_LOAD_OR: |
| 6786 | case ISD::ATOMIC_LOAD_XOR: |
| 6787 | case ISD::ATOMIC_LOAD_NAND: |
| 6788 | case ISD::ATOMIC_SWAP: { |
Dale Johannesen | 1b54c7f | 2008-10-03 19:41:08 +0000 | [diff] [blame] | 6789 | // These operations require a loop to be generated. We can't do that yet, |
| 6790 | // so substitute a target-dependent pseudo and expand that later. |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 6791 | SDValue In2Lo, In2Hi, In2; |
| 6792 | ExpandOp(Op.getOperand(2), In2Lo, In2Hi); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6793 | In2 = DAG.getNode(ISD::BUILD_PAIR, dl, VT, In2Lo, In2Hi); |
Dale Johannesen | 1b54c7f | 2008-10-03 19:41:08 +0000 | [diff] [blame] | 6794 | AtomicSDNode* Anode = cast<AtomicSDNode>(Node); |
| 6795 | SDValue Replace = |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6796 | DAG.getAtomic(Op.getOpcode(), dl, Anode->getMemoryVT(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 6797 | Op.getOperand(0), Op.getOperand(1), In2, |
Dale Johannesen | 1b54c7f | 2008-10-03 19:41:08 +0000 | [diff] [blame] | 6798 | Anode->getSrcValue(), Anode->getAlignment()); |
| 6799 | SDValue Result = TLI.LowerOperation(Replace, DAG); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 6800 | ExpandOp(Result.getValue(0), Lo, Hi); |
| 6801 | // Remember that we legalized the chain. |
| 6802 | AddLegalizedOperand(SDValue(Node,1), LegalizeOp(Result.getValue(1))); |
Andrew Lenharth | d19189e | 2008-03-05 01:15:49 +0000 | [diff] [blame] | 6803 | break; |
| 6804 | } |
| 6805 | |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 6806 | // These operators cannot be expanded directly, emit them as calls to |
| 6807 | // library functions. |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6808 | case ISD::FP_TO_SINT: { |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6809 | if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6810 | SDValue Op; |
Chris Lattner | f20d183 | 2005-07-30 01:40:57 +0000 | [diff] [blame] | 6811 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 6812 | case Expand: assert(0 && "cannot expand FP!"); |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6813 | case Legal: Op = LegalizeOp(Node->getOperand(0)); break; |
| 6814 | case Promote: Op = PromoteOp (Node->getOperand(0)); break; |
Chris Lattner | f20d183 | 2005-07-30 01:40:57 +0000 | [diff] [blame] | 6815 | } |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 6816 | |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6817 | Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op), DAG); |
Chris Lattner | f20d183 | 2005-07-30 01:40:57 +0000 | [diff] [blame] | 6818 | |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6819 | // Now that the custom expander is done, expand the result, which is still |
| 6820 | // VT. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6821 | if (Op.getNode()) { |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 6822 | ExpandOp(Op, Lo, Hi); |
| 6823 | break; |
| 6824 | } |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6825 | } |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 6826 | |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 6827 | RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(), |
| 6828 | VT); |
| 6829 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!"); |
| 6830 | Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi); |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 6831 | break; |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6832 | } |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 6833 | |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6834 | case ISD::FP_TO_UINT: { |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6835 | if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6836 | SDValue Op; |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6837 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 6838 | case Expand: assert(0 && "cannot expand FP!"); |
| 6839 | case Legal: Op = LegalizeOp(Node->getOperand(0)); break; |
| 6840 | case Promote: Op = PromoteOp (Node->getOperand(0)); break; |
| 6841 | } |
| 6842 | |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6843 | Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, dl, VT, Op), DAG); |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6844 | |
| 6845 | // Now that the custom expander is done, expand the result. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6846 | if (Op.getNode()) { |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 6847 | ExpandOp(Op, Lo, Hi); |
| 6848 | break; |
| 6849 | } |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6850 | } |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 6851 | |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 6852 | RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(), |
| 6853 | VT); |
| 6854 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!"); |
| 6855 | Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi); |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 6856 | break; |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6857 | } |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 6858 | |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6859 | case ISD::SHL: { |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6860 | // If the target wants custom lowering, do so. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6861 | SDValue ShiftAmt = LegalizeOp(Node->getOperand(1)); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6862 | if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6863 | SDValue Op = DAG.getNode(ISD::SHL, dl, VT, Node->getOperand(0), ShiftAmt); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6864 | Op = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6865 | if (Op.getNode()) { |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6866 | // Now that the custom expander is done, expand the result, which is |
| 6867 | // still VT. |
| 6868 | ExpandOp(Op, Lo, Hi); |
| 6869 | break; |
| 6870 | } |
| 6871 | } |
| 6872 | |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6873 | // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit |
| 6874 | // this X << 1 as X+X. |
| 6875 | if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) { |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 6876 | if (ShAmt->getAPIntValue() == 1 && |
| 6877 | TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) && |
| 6878 | TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6879 | SDValue LoOps[2], HiOps[3]; |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6880 | ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]); |
| 6881 | SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag); |
| 6882 | LoOps[1] = LoOps[0]; |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6883 | Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2); |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6884 | |
| 6885 | HiOps[1] = HiOps[0]; |
| 6886 | HiOps[2] = Lo.getValue(1); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6887 | Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3); |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6888 | break; |
| 6889 | } |
| 6890 | } |
| 6891 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6892 | // If we can emit an efficient shift operation, do so now. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6893 | if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl)) |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6894 | break; |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6895 | |
| 6896 | // If this target supports SHL_PARTS, use it. |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6897 | TargetLowering::LegalizeAction Action = |
| 6898 | TLI.getOperationAction(ISD::SHL_PARTS, NVT); |
| 6899 | if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) || |
| 6900 | Action == TargetLowering::Custom) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6901 | ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), |
| 6902 | ShiftAmt, Lo, Hi, dl); |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6903 | break; |
| 6904 | } |
| 6905 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6906 | // Otherwise, emit a libcall. |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6907 | Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi); |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6908 | break; |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6909 | } |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6910 | |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6911 | case ISD::SRA: { |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6912 | // If the target wants custom lowering, do so. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6913 | SDValue ShiftAmt = LegalizeOp(Node->getOperand(1)); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6914 | if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6915 | SDValue Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6916 | Op = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6917 | if (Op.getNode()) { |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6918 | // Now that the custom expander is done, expand the result, which is |
| 6919 | // still VT. |
| 6920 | ExpandOp(Op, Lo, Hi); |
| 6921 | break; |
| 6922 | } |
| 6923 | } |
| 6924 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6925 | // If we can emit an efficient shift operation, do so now. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6926 | if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi, dl)) |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6927 | break; |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6928 | |
| 6929 | // If this target supports SRA_PARTS, use it. |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6930 | TargetLowering::LegalizeAction Action = |
| 6931 | TLI.getOperationAction(ISD::SRA_PARTS, NVT); |
| 6932 | if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) || |
| 6933 | Action == TargetLowering::Custom) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6934 | ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), |
| 6935 | ShiftAmt, Lo, Hi, dl); |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6936 | break; |
| 6937 | } |
| 6938 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6939 | // Otherwise, emit a libcall. |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6940 | Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi); |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6941 | break; |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6942 | } |
| 6943 | |
| 6944 | case ISD::SRL: { |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6945 | // If the target wants custom lowering, do so. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6946 | SDValue ShiftAmt = LegalizeOp(Node->getOperand(1)); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6947 | if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6948 | SDValue Op = DAG.getNode(ISD::SRL, dl, VT, Node->getOperand(0), ShiftAmt); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6949 | Op = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6950 | if (Op.getNode()) { |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6951 | // Now that the custom expander is done, expand the result, which is |
| 6952 | // still VT. |
| 6953 | ExpandOp(Op, Lo, Hi); |
| 6954 | break; |
| 6955 | } |
| 6956 | } |
| 6957 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6958 | // If we can emit an efficient shift operation, do so now. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6959 | if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl)) |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6960 | break; |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6961 | |
| 6962 | // If this target supports SRL_PARTS, use it. |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6963 | TargetLowering::LegalizeAction Action = |
| 6964 | TLI.getOperationAction(ISD::SRL_PARTS, NVT); |
| 6965 | if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) || |
| 6966 | Action == TargetLowering::Custom) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 6967 | ExpandShiftParts(ISD::SRL_PARTS, |
| 6968 | Node->getOperand(0), ShiftAmt, Lo, Hi, dl); |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6969 | break; |
| 6970 | } |
| 6971 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6972 | // Otherwise, emit a libcall. |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6973 | Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi); |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6974 | break; |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6975 | } |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6976 | |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 6977 | case ISD::ADD: |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6978 | case ISD::SUB: { |
| 6979 | // If the target wants to custom expand this, let them. |
| 6980 | if (TLI.getOperationAction(Node->getOpcode(), VT) == |
| 6981 | TargetLowering::Custom) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6982 | SDValue Result = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 6983 | if (Result.getNode()) { |
Duncan Sands | 69bfb15 | 2008-06-22 09:42:16 +0000 | [diff] [blame] | 6984 | ExpandOp(Result, Lo, Hi); |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6985 | break; |
| 6986 | } |
| 6987 | } |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6988 | // Expand the subcomponents. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6989 | SDValue LHSL, LHSH, RHSL, RHSH; |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6990 | ExpandOp(Node->getOperand(0), LHSL, LHSH); |
| 6991 | ExpandOp(Node->getOperand(1), RHSL, RHSH); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6992 | SDValue LoOps[2], HiOps[3]; |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 6993 | LoOps[0] = LHSL; |
| 6994 | LoOps[1] = RHSL; |
| 6995 | HiOps[0] = LHSH; |
| 6996 | HiOps[1] = RHSH; |
Andrew Lenharth | 2163ca1 | 2008-10-07 18:27:23 +0000 | [diff] [blame] | 6997 | |
Andrew Lenharth | 5c9cc13 | 2008-10-07 17:03:15 +0000 | [diff] [blame] | 6998 | //cascaded check to see if any smaller size has a a carry flag. |
| 6999 | unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC; |
| 7000 | bool hasCarry = false; |
Andrew Lenharth | 2163ca1 | 2008-10-07 18:27:23 +0000 | [diff] [blame] | 7001 | for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) { |
| 7002 | MVT AVT = MVT::getIntegerVT(BitSize); |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 7003 | if (TLI.isOperationLegalOrCustom(OpV, AVT)) { |
Andrew Lenharth | 2163ca1 | 2008-10-07 18:27:23 +0000 | [diff] [blame] | 7004 | hasCarry = true; |
| 7005 | break; |
| 7006 | } |
| 7007 | } |
| 7008 | |
Andrew Lenharth | 5c9cc13 | 2008-10-07 17:03:15 +0000 | [diff] [blame] | 7009 | if(hasCarry) { |
Evan Cheng | 637ed03 | 2008-12-12 18:49:09 +0000 | [diff] [blame] | 7010 | SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag); |
Andrew Lenharth | 40d5139 | 2008-10-07 14:15:42 +0000 | [diff] [blame] | 7011 | if (Node->getOpcode() == ISD::ADD) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7012 | Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2); |
Andrew Lenharth | 40d5139 | 2008-10-07 14:15:42 +0000 | [diff] [blame] | 7013 | HiOps[2] = Lo.getValue(1); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7014 | Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3); |
Andrew Lenharth | 40d5139 | 2008-10-07 14:15:42 +0000 | [diff] [blame] | 7015 | } else { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7016 | Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2); |
Andrew Lenharth | 40d5139 | 2008-10-07 14:15:42 +0000 | [diff] [blame] | 7017 | HiOps[2] = Lo.getValue(1); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7018 | Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3); |
Andrew Lenharth | 40d5139 | 2008-10-07 14:15:42 +0000 | [diff] [blame] | 7019 | } |
| 7020 | break; |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 7021 | } else { |
Andrew Lenharth | 40d5139 | 2008-10-07 14:15:42 +0000 | [diff] [blame] | 7022 | if (Node->getOpcode() == ISD::ADD) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7023 | Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps, 2); |
| 7024 | Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2); |
| 7025 | SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), |
Andrew Lenharth | 5c9cc13 | 2008-10-07 17:03:15 +0000 | [diff] [blame] | 7026 | Lo, LoOps[0], ISD::SETULT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7027 | SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1, |
Andrew Lenharth | 40d5139 | 2008-10-07 14:15:42 +0000 | [diff] [blame] | 7028 | DAG.getConstant(1, NVT), |
| 7029 | DAG.getConstant(0, NVT)); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7030 | SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), |
Andrew Lenharth | 5c9cc13 | 2008-10-07 17:03:15 +0000 | [diff] [blame] | 7031 | Lo, LoOps[1], ISD::SETULT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7032 | SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2, |
Andrew Lenharth | 40d5139 | 2008-10-07 14:15:42 +0000 | [diff] [blame] | 7033 | DAG.getConstant(1, NVT), |
| 7034 | Carry1); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7035 | Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2); |
Andrew Lenharth | 40d5139 | 2008-10-07 14:15:42 +0000 | [diff] [blame] | 7036 | } else { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7037 | Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2); |
| 7038 | Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2); |
| 7039 | SDValue Cmp = DAG.getSetCC(dl, NVT, LoOps[0], LoOps[1], ISD::SETULT); |
| 7040 | SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp, |
Andrew Lenharth | 40d5139 | 2008-10-07 14:15:42 +0000 | [diff] [blame] | 7041 | DAG.getConstant(1, NVT), |
| 7042 | DAG.getConstant(0, NVT)); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7043 | Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow); |
Andrew Lenharth | 40d5139 | 2008-10-07 14:15:42 +0000 | [diff] [blame] | 7044 | } |
| 7045 | break; |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 7046 | } |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 7047 | } |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 7048 | |
| 7049 | case ISD::ADDC: |
| 7050 | case ISD::SUBC: { |
| 7051 | // Expand the subcomponents. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7052 | SDValue LHSL, LHSH, RHSL, RHSH; |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 7053 | ExpandOp(Node->getOperand(0), LHSL, LHSH); |
| 7054 | ExpandOp(Node->getOperand(1), RHSL, RHSH); |
| 7055 | SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7056 | SDValue LoOps[2] = { LHSL, RHSL }; |
| 7057 | SDValue HiOps[3] = { LHSH, RHSH }; |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 7058 | |
| 7059 | if (Node->getOpcode() == ISD::ADDC) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7060 | Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2); |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 7061 | HiOps[2] = Lo.getValue(1); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7062 | Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3); |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 7063 | } else { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7064 | Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2); |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 7065 | HiOps[2] = Lo.getValue(1); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7066 | Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3); |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 7067 | } |
| 7068 | // Remember that we legalized the flag. |
| 7069 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1))); |
| 7070 | break; |
| 7071 | } |
| 7072 | case ISD::ADDE: |
| 7073 | case ISD::SUBE: { |
| 7074 | // Expand the subcomponents. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7075 | SDValue LHSL, LHSH, RHSL, RHSH; |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 7076 | ExpandOp(Node->getOperand(0), LHSL, LHSH); |
| 7077 | ExpandOp(Node->getOperand(1), RHSL, RHSH); |
| 7078 | SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7079 | SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) }; |
| 7080 | SDValue HiOps[3] = { LHSH, RHSH }; |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 7081 | |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7082 | Lo = DAG.getNode(Node->getOpcode(), dl, VTList, LoOps, 3); |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 7083 | HiOps[2] = Lo.getValue(1); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7084 | Hi = DAG.getNode(Node->getOpcode(), dl, VTList, HiOps, 3); |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 7085 | |
| 7086 | // Remember that we legalized the flag. |
| 7087 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1))); |
| 7088 | break; |
| 7089 | } |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 7090 | case ISD::MUL: { |
Chris Lattner | 7d7bffe | 2006-09-16 00:09:24 +0000 | [diff] [blame] | 7091 | // If the target wants to custom expand this, let them. |
| 7092 | if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7093 | SDValue New = TLI.LowerOperation(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 7094 | if (New.getNode()) { |
Chris Lattner | 8829dc8 | 2006-09-16 05:08:34 +0000 | [diff] [blame] | 7095 | ExpandOp(New, Lo, Hi); |
Chris Lattner | 7d7bffe | 2006-09-16 00:09:24 +0000 | [diff] [blame] | 7096 | break; |
| 7097 | } |
| 7098 | } |
| 7099 | |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 7100 | bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT); |
| 7101 | bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT); |
| 7102 | bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT); |
| 7103 | bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 7104 | if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7105 | SDValue LL, LH, RL, RH; |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 7106 | ExpandOp(Node->getOperand(0), LL, LH); |
| 7107 | ExpandOp(Node->getOperand(1), RL, RH); |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 7108 | unsigned OuterBitSize = Op.getValueSizeInBits(); |
| 7109 | unsigned InnerBitSize = RH.getValueSizeInBits(); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 7110 | unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0)); |
| 7111 | unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1)); |
Dan Gohman | 76c605b | 2008-03-10 20:42:19 +0000 | [diff] [blame] | 7112 | APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize); |
| 7113 | if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) && |
| 7114 | DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) { |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 7115 | // The inputs are both zero-extended. |
| 7116 | if (HasUMUL_LOHI) { |
| 7117 | // We can emit a umul_lohi. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7118 | Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 7119 | Hi = SDValue(Lo.getNode(), 1); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 7120 | break; |
| 7121 | } |
| 7122 | if (HasMULHU) { |
| 7123 | // We can emit a mulhu+mul. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7124 | Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL); |
| 7125 | Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 7126 | break; |
| 7127 | } |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 7128 | } |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 7129 | if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) { |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 7130 | // The input values are both sign-extended. |
| 7131 | if (HasSMUL_LOHI) { |
| 7132 | // We can emit a smul_lohi. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7133 | Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 7134 | Hi = SDValue(Lo.getNode(), 1); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 7135 | break; |
| 7136 | } |
| 7137 | if (HasMULHS) { |
| 7138 | // We can emit a mulhs+mul. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7139 | Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL); |
| 7140 | Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 7141 | break; |
| 7142 | } |
| 7143 | } |
| 7144 | if (HasUMUL_LOHI) { |
| 7145 | // Lo,Hi = umul LHS, RHS. |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7146 | SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl, |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 7147 | DAG.getVTList(NVT, NVT), LL, RL); |
| 7148 | Lo = UMulLOHI; |
| 7149 | Hi = UMulLOHI.getValue(1); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7150 | RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH); |
| 7151 | LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL); |
| 7152 | Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH); |
| 7153 | Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH); |
Chris Lattner | a89654b | 2006-09-16 00:21:44 +0000 | [diff] [blame] | 7154 | break; |
Nate Begeman | 56eb868 | 2005-08-30 02:44:00 +0000 | [diff] [blame] | 7155 | } |
Dale Johannesen | 8eadd5a | 2007-10-24 22:26:08 +0000 | [diff] [blame] | 7156 | if (HasMULHU) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7157 | Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL); |
| 7158 | Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL); |
| 7159 | RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH); |
| 7160 | LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL); |
| 7161 | Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH); |
| 7162 | Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH); |
Dale Johannesen | 8eadd5a | 2007-10-24 22:26:08 +0000 | [diff] [blame] | 7163 | break; |
| 7164 | } |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 7165 | } |
Evan Cheng | 3f4fd0f | 2006-09-01 18:17:58 +0000 | [diff] [blame] | 7166 | |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 7167 | // If nothing else, we can make a libcall. |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 7168 | Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi); |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 7169 | break; |
| 7170 | } |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 7171 | case ISD::SDIV: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 7172 | Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 7173 | break; |
| 7174 | case ISD::UDIV: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 7175 | Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 7176 | break; |
| 7177 | case ISD::SREM: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 7178 | Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 7179 | break; |
| 7180 | case ISD::UREM: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 7181 | Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 7182 | break; |
Evan Cheng | 5c9ce18 | 2006-12-12 21:51:17 +0000 | [diff] [blame] | 7183 | |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 7184 | case ISD::FADD: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 7185 | Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32, |
| 7186 | RTLIB::ADD_F64, |
| 7187 | RTLIB::ADD_F80, |
| 7188 | RTLIB::ADD_PPCF128), |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 7189 | Node, false, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 7190 | break; |
| 7191 | case ISD::FSUB: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 7192 | Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32, |
| 7193 | RTLIB::SUB_F64, |
| 7194 | RTLIB::SUB_F80, |
| 7195 | RTLIB::SUB_PPCF128), |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 7196 | Node, false, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 7197 | break; |
| 7198 | case ISD::FMUL: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 7199 | Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32, |
| 7200 | RTLIB::MUL_F64, |
| 7201 | RTLIB::MUL_F80, |
| 7202 | RTLIB::MUL_PPCF128), |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 7203 | Node, false, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 7204 | break; |
| 7205 | case ISD::FDIV: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 7206 | Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32, |
| 7207 | RTLIB::DIV_F64, |
| 7208 | RTLIB::DIV_F80, |
| 7209 | RTLIB::DIV_PPCF128), |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 7210 | Node, false, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 7211 | break; |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 7212 | case ISD::FP_EXTEND: { |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 7213 | if (VT == MVT::ppcf128) { |
| 7214 | assert(Node->getOperand(0).getValueType()==MVT::f32 || |
| 7215 | Node->getOperand(0).getValueType()==MVT::f64); |
| 7216 | const uint64_t zero = 0; |
| 7217 | if (Node->getOperand(0).getValueType()==MVT::f32) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7218 | Hi = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Node->getOperand(0)); |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 7219 | else |
| 7220 | Hi = Node->getOperand(0); |
| 7221 | Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64); |
| 7222 | break; |
| 7223 | } |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 7224 | RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT); |
| 7225 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!"); |
| 7226 | Lo = ExpandLibCall(LC, Node, true, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 7227 | break; |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 7228 | } |
| 7229 | case ISD::FP_ROUND: { |
| 7230 | RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(), |
| 7231 | VT); |
| 7232 | assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!"); |
| 7233 | Lo = ExpandLibCall(LC, Node, true, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 7234 | break; |
Duncan Sands | b2ff885 | 2008-07-17 02:36:29 +0000 | [diff] [blame] | 7235 | } |
Evan Cheng | 4b88702 | 2008-09-09 23:02:14 +0000 | [diff] [blame] | 7236 | case ISD::FSQRT: |
| 7237 | case ISD::FSIN: |
| 7238 | case ISD::FCOS: |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 7239 | case ISD::FLOG: |
| 7240 | case ISD::FLOG2: |
| 7241 | case ISD::FLOG10: |
| 7242 | case ISD::FEXP: |
| 7243 | case ISD::FEXP2: |
Dan Gohman | 2bb1e3e | 2008-08-21 18:38:14 +0000 | [diff] [blame] | 7244 | case ISD::FTRUNC: |
| 7245 | case ISD::FFLOOR: |
| 7246 | case ISD::FCEIL: |
| 7247 | case ISD::FRINT: |
| 7248 | case ISD::FNEARBYINT: |
Evan Cheng | 9d24ac5 | 2008-09-09 23:35:53 +0000 | [diff] [blame] | 7249 | case ISD::FPOW: |
| 7250 | case ISD::FPOWI: { |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 7251 | RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; |
Evan Cheng | 98ff3b9 | 2006-12-13 02:38:13 +0000 | [diff] [blame] | 7252 | switch(Node->getOpcode()) { |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 7253 | case ISD::FSQRT: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 7254 | LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64, |
| 7255 | RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 7256 | break; |
| 7257 | case ISD::FSIN: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 7258 | LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64, |
| 7259 | RTLIB::SIN_F80, RTLIB::SIN_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 7260 | break; |
| 7261 | case ISD::FCOS: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 7262 | LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64, |
| 7263 | RTLIB::COS_F80, RTLIB::COS_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 7264 | break; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 7265 | case ISD::FLOG: |
| 7266 | LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64, |
| 7267 | RTLIB::LOG_F80, RTLIB::LOG_PPCF128); |
| 7268 | break; |
| 7269 | case ISD::FLOG2: |
| 7270 | LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64, |
| 7271 | RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128); |
| 7272 | break; |
| 7273 | case ISD::FLOG10: |
| 7274 | LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64, |
| 7275 | RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128); |
| 7276 | break; |
| 7277 | case ISD::FEXP: |
| 7278 | LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64, |
| 7279 | RTLIB::EXP_F80, RTLIB::EXP_PPCF128); |
| 7280 | break; |
| 7281 | case ISD::FEXP2: |
| 7282 | LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64, |
| 7283 | RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128); |
| 7284 | break; |
Dan Gohman | 2bb1e3e | 2008-08-21 18:38:14 +0000 | [diff] [blame] | 7285 | case ISD::FTRUNC: |
| 7286 | LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64, |
| 7287 | RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128); |
| 7288 | break; |
| 7289 | case ISD::FFLOOR: |
| 7290 | LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64, |
| 7291 | RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128); |
| 7292 | break; |
| 7293 | case ISD::FCEIL: |
| 7294 | LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64, |
| 7295 | RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128); |
| 7296 | break; |
| 7297 | case ISD::FRINT: |
| 7298 | LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64, |
| 7299 | RTLIB::RINT_F80, RTLIB::RINT_PPCF128); |
| 7300 | break; |
| 7301 | case ISD::FNEARBYINT: |
| 7302 | LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64, |
| 7303 | RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128); |
| 7304 | break; |
Evan Cheng | 4b88702 | 2008-09-09 23:02:14 +0000 | [diff] [blame] | 7305 | case ISD::FPOW: |
| 7306 | LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80, |
| 7307 | RTLIB::POW_PPCF128); |
| 7308 | break; |
| 7309 | case ISD::FPOWI: |
| 7310 | LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80, |
| 7311 | RTLIB::POWI_PPCF128); |
| 7312 | break; |
Evan Cheng | 98ff3b9 | 2006-12-13 02:38:13 +0000 | [diff] [blame] | 7313 | default: assert(0 && "Unreachable!"); |
| 7314 | } |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 7315 | Lo = ExpandLibCall(LC, Node, false, Hi); |
Evan Cheng | 98ff3b9 | 2006-12-13 02:38:13 +0000 | [diff] [blame] | 7316 | break; |
| 7317 | } |
Evan Cheng | 966bf24 | 2006-12-16 00:52:40 +0000 | [diff] [blame] | 7318 | case ISD::FABS: { |
Dale Johannesen | f646774 | 2007-10-12 19:02:17 +0000 | [diff] [blame] | 7319 | if (VT == MVT::ppcf128) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7320 | SDValue Tmp; |
Dale Johannesen | f646774 | 2007-10-12 19:02:17 +0000 | [diff] [blame] | 7321 | ExpandOp(Node->getOperand(0), Lo, Tmp); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7322 | Hi = DAG.getNode(ISD::FABS, dl, NVT, Tmp); |
Dale Johannesen | f646774 | 2007-10-12 19:02:17 +0000 | [diff] [blame] | 7323 | // lo = hi==fabs(hi) ? lo : -lo; |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7324 | Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Hi, Tmp, |
| 7325 | Lo, DAG.getNode(ISD::FNEG, dl, NVT, Lo), |
Dale Johannesen | f646774 | 2007-10-12 19:02:17 +0000 | [diff] [blame] | 7326 | DAG.getCondCode(ISD::SETEQ)); |
| 7327 | break; |
| 7328 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7329 | SDValue Mask = (VT == MVT::f64) |
Evan Cheng | 966bf24 | 2006-12-16 00:52:40 +0000 | [diff] [blame] | 7330 | ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT) |
| 7331 | : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7332 | Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask); |
| 7333 | Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0)); |
| 7334 | Lo = DAG.getNode(ISD::AND, dl, NVT, Lo, Mask); |
Evan Cheng | 966bf24 | 2006-12-16 00:52:40 +0000 | [diff] [blame] | 7335 | if (getTypeAction(NVT) == Expand) |
| 7336 | ExpandOp(Lo, Lo, Hi); |
| 7337 | break; |
| 7338 | } |
| 7339 | case ISD::FNEG: { |
Dale Johannesen | f646774 | 2007-10-12 19:02:17 +0000 | [diff] [blame] | 7340 | if (VT == MVT::ppcf128) { |
| 7341 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7342 | Lo = DAG.getNode(ISD::FNEG, dl, MVT::f64, Lo); |
| 7343 | Hi = DAG.getNode(ISD::FNEG, dl, MVT::f64, Hi); |
Dale Johannesen | f646774 | 2007-10-12 19:02:17 +0000 | [diff] [blame] | 7344 | break; |
| 7345 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7346 | SDValue Mask = (VT == MVT::f64) |
Evan Cheng | 966bf24 | 2006-12-16 00:52:40 +0000 | [diff] [blame] | 7347 | ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT) |
| 7348 | : DAG.getConstantFP(BitsToFloat(1U << 31), VT); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7349 | Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask); |
| 7350 | Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0)); |
| 7351 | Lo = DAG.getNode(ISD::XOR, dl, NVT, Lo, Mask); |
Evan Cheng | 966bf24 | 2006-12-16 00:52:40 +0000 | [diff] [blame] | 7352 | if (getTypeAction(NVT) == Expand) |
| 7353 | ExpandOp(Lo, Lo, Hi); |
| 7354 | break; |
| 7355 | } |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 7356 | case ISD::FCOPYSIGN: { |
| 7357 | Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI); |
| 7358 | if (getTypeAction(NVT) == Expand) |
| 7359 | ExpandOp(Lo, Lo, Hi); |
| 7360 | break; |
| 7361 | } |
Evan Cheng | 7df28dc | 2006-12-19 01:44:04 +0000 | [diff] [blame] | 7362 | case ISD::SINT_TO_FP: |
| 7363 | case ISD::UINT_TO_FP: { |
| 7364 | bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 7365 | MVT SrcVT = Node->getOperand(0).getValueType(); |
Dale Johannesen | cf49819 | 2008-03-18 17:28:38 +0000 | [diff] [blame] | 7366 | |
| 7367 | // Promote the operand if needed. Do this before checking for |
| 7368 | // ppcf128 so conversions of i16 and i8 work. |
| 7369 | if (getTypeAction(SrcVT) == Promote) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7370 | SDValue Tmp = PromoteOp(Node->getOperand(0)); |
Dale Johannesen | cf49819 | 2008-03-18 17:28:38 +0000 | [diff] [blame] | 7371 | Tmp = isSigned |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7372 | ? DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp.getValueType(), Tmp, |
Dale Johannesen | cf49819 | 2008-03-18 17:28:38 +0000 | [diff] [blame] | 7373 | DAG.getValueType(SrcVT)) |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7374 | : DAG.getZeroExtendInReg(Tmp, dl, SrcVT); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 7375 | Node = DAG.UpdateNodeOperands(Op, Tmp).getNode(); |
Dale Johannesen | cf49819 | 2008-03-18 17:28:38 +0000 | [diff] [blame] | 7376 | SrcVT = Node->getOperand(0).getValueType(); |
| 7377 | } |
| 7378 | |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 7379 | if (VT == MVT::ppcf128 && SrcVT == MVT::i32) { |
Dan Gohman | f6283fd | 2008-02-25 21:39:34 +0000 | [diff] [blame] | 7380 | static const uint64_t zero = 0; |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 7381 | if (isSigned) { |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7382 | Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64, |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 7383 | Node->getOperand(0))); |
| 7384 | Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64); |
| 7385 | } else { |
Dan Gohman | f6283fd | 2008-02-25 21:39:34 +0000 | [diff] [blame] | 7386 | static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 }; |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7387 | Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64, |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 7388 | Node->getOperand(0))); |
| 7389 | Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64); |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7390 | Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi); |
Dale Johannesen | 6e63e09 | 2007-10-12 17:52:03 +0000 | [diff] [blame] | 7391 | // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32 |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7392 | ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, |
| 7393 | MVT::ppcf128, Node->getOperand(0), |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 7394 | DAG.getConstant(0, MVT::i32), |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7395 | DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi, |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 7396 | DAG.getConstantFP( |
| 7397 | APFloat(APInt(128, 2, TwoE32)), |
| 7398 | MVT::ppcf128)), |
| 7399 | Hi, |
| 7400 | DAG.getCondCode(ISD::SETLT)), |
| 7401 | Lo, Hi); |
| 7402 | } |
| 7403 | break; |
| 7404 | } |
Dale Johannesen | 6e63e09 | 2007-10-12 17:52:03 +0000 | [diff] [blame] | 7405 | if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) { |
| 7406 | // si64->ppcf128 done by libcall, below |
Dan Gohman | f6283fd | 2008-02-25 21:39:34 +0000 | [diff] [blame] | 7407 | static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 }; |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7408 | ExpandOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::ppcf128, |
| 7409 | Node->getOperand(0)), Lo, Hi); |
| 7410 | Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi); |
Dale Johannesen | 6e63e09 | 2007-10-12 17:52:03 +0000 | [diff] [blame] | 7411 | // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64 |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7412 | ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, MVT::ppcf128, |
| 7413 | Node->getOperand(0), |
Dale Johannesen | 6e63e09 | 2007-10-12 17:52:03 +0000 | [diff] [blame] | 7414 | DAG.getConstant(0, MVT::i64), |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7415 | DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi, |
Dale Johannesen | 6e63e09 | 2007-10-12 17:52:03 +0000 | [diff] [blame] | 7416 | DAG.getConstantFP( |
| 7417 | APFloat(APInt(128, 2, TwoE64)), |
| 7418 | MVT::ppcf128)), |
| 7419 | Hi, |
| 7420 | DAG.getCondCode(ISD::SETLT)), |
| 7421 | Lo, Hi); |
| 7422 | break; |
| 7423 | } |
Evan Cheng | 7df28dc | 2006-12-19 01:44:04 +0000 | [diff] [blame] | 7424 | |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 7425 | Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT, |
Dale Johannesen | 8a782a2 | 2009-02-02 22:12:50 +0000 | [diff] [blame^] | 7426 | Node->getOperand(0), dl); |
Evan Cheng | 110cf48 | 2008-04-01 01:50:16 +0000 | [diff] [blame] | 7427 | if (getTypeAction(Lo.getValueType()) == Expand) |
Evan Cheng | 6ad2f93 | 2008-04-01 01:51:26 +0000 | [diff] [blame] | 7428 | // float to i32 etc. can be 'expanded' to a single node. |
Evan Cheng | 110cf48 | 2008-04-01 01:50:16 +0000 | [diff] [blame] | 7429 | ExpandOp(Lo, Lo, Hi); |
Evan Cheng | 7df28dc | 2006-12-19 01:44:04 +0000 | [diff] [blame] | 7430 | break; |
| 7431 | } |
Evan Cheng | 98ff3b9 | 2006-12-13 02:38:13 +0000 | [diff] [blame] | 7432 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 7433 | |
Chris Lattner | 8339736 | 2005-12-21 18:02:52 +0000 | [diff] [blame] | 7434 | // Make sure the resultant values have been legalized themselves, unless this |
| 7435 | // is a type that requires multi-step expansion. |
| 7436 | if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) { |
| 7437 | Lo = LegalizeOp(Lo); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 7438 | if (Hi.getNode()) |
Evan Cheng | 13acce3 | 2006-12-11 19:27:14 +0000 | [diff] [blame] | 7439 | // Don't legalize the high part if it is expanded to a single node. |
| 7440 | Hi = LegalizeOp(Hi); |
Chris Lattner | 8339736 | 2005-12-21 18:02:52 +0000 | [diff] [blame] | 7441 | } |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 7442 | |
| 7443 | // Remember in a map if the values will be reused later. |
Dan Gohman | 6b345ee | 2008-07-07 17:46:23 +0000 | [diff] [blame] | 7444 | bool isNew = |
| 7445 | ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second; |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 7446 | assert(isNew && "Value already expanded?!?"); |
Evan Cheng | 24ac408 | 2008-11-24 07:09:49 +0000 | [diff] [blame] | 7447 | isNew = isNew; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 7448 | } |
| 7449 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7450 | /// SplitVectorOp - Given an operand of vector type, break it down into |
| 7451 | /// two smaller values, still of vector type. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7452 | void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo, |
| 7453 | SDValue &Hi) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 7454 | assert(Op.getValueType().isVector() && "Cannot split non-vector type!"); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 7455 | SDNode *Node = Op.getNode(); |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 7456 | DebugLoc dl = Node->getDebugLoc(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 7457 | unsigned NumElements = Op.getValueType().getVectorNumElements(); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7458 | assert(NumElements > 1 && "Cannot split a single element vector!"); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 7459 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 7460 | MVT NewEltVT = Op.getValueType().getVectorElementType(); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 7461 | |
| 7462 | unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1); |
| 7463 | unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo; |
| 7464 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 7465 | MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo); |
| 7466 | MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 7467 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7468 | // See if we already split it. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7469 | std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7470 | = SplitNodes.find(Op); |
| 7471 | if (I != SplitNodes.end()) { |
| 7472 | Lo = I->second.first; |
| 7473 | Hi = I->second.second; |
| 7474 | return; |
| 7475 | } |
| 7476 | |
| 7477 | switch (Node->getOpcode()) { |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 7478 | default: |
| 7479 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 7480 | Node->dump(&DAG); |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 7481 | #endif |
| 7482 | assert(0 && "Unhandled operation in SplitVectorOp!"); |
Chris Lattner | daf9bc8 | 2007-11-19 20:21:32 +0000 | [diff] [blame] | 7483 | case ISD::UNDEF: |
| 7484 | Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo); |
| 7485 | Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi); |
| 7486 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7487 | case ISD::BUILD_PAIR: |
| 7488 | Lo = Node->getOperand(0); |
| 7489 | Hi = Node->getOperand(1); |
| 7490 | break; |
Dan Gohman | 9fe4662 | 2007-09-28 23:53:40 +0000 | [diff] [blame] | 7491 | case ISD::INSERT_VECTOR_ELT: { |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 7492 | if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) { |
| 7493 | SplitVectorOp(Node->getOperand(0), Lo, Hi); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 7494 | unsigned Index = Idx->getZExtValue(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7495 | SDValue ScalarOp = Node->getOperand(1); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 7496 | if (Index < NewNumElts_Lo) |
| 7497 | Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp, |
| 7498 | DAG.getIntPtrConstant(Index)); |
| 7499 | else |
| 7500 | Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp, |
| 7501 | DAG.getIntPtrConstant(Index - NewNumElts_Lo)); |
| 7502 | break; |
| 7503 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7504 | SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0), |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 7505 | Node->getOperand(1), |
Dale Johannesen | bb5da91 | 2009-02-02 20:41:04 +0000 | [diff] [blame] | 7506 | Node->getOperand(2), dl); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 7507 | SplitVectorOp(Tmp, Lo, Hi); |
Dan Gohman | 9fe4662 | 2007-09-28 23:53:40 +0000 | [diff] [blame] | 7508 | break; |
| 7509 | } |
Chris Lattner | 6c9c680 | 2007-11-19 21:16:54 +0000 | [diff] [blame] | 7510 | case ISD::VECTOR_SHUFFLE: { |
| 7511 | // Build the low part. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7512 | SDValue Mask = Node->getOperand(2); |
| 7513 | SmallVector<SDValue, 8> Ops; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 7514 | MVT PtrVT = TLI.getPointerTy(); |
Chris Lattner | 6c9c680 | 2007-11-19 21:16:54 +0000 | [diff] [blame] | 7515 | |
| 7516 | // Insert all of the elements from the input that are needed. We use |
| 7517 | // buildvector of extractelement here because the input vectors will have |
| 7518 | // to be legalized, so this makes the code simpler. |
| 7519 | for (unsigned i = 0; i != NewNumElts_Lo; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7520 | SDValue IdxNode = Mask.getOperand(i); |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 7521 | if (IdxNode.getOpcode() == ISD::UNDEF) { |
| 7522 | Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT)); |
| 7523 | continue; |
| 7524 | } |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 7525 | unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7526 | SDValue InVec = Node->getOperand(0); |
Chris Lattner | 6c9c680 | 2007-11-19 21:16:54 +0000 | [diff] [blame] | 7527 | if (Idx >= NumElements) { |
| 7528 | InVec = Node->getOperand(1); |
| 7529 | Idx -= NumElements; |
| 7530 | } |
| 7531 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec, |
| 7532 | DAG.getConstant(Idx, PtrVT))); |
| 7533 | } |
| 7534 | Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size()); |
| 7535 | Ops.clear(); |
| 7536 | |
| 7537 | for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7538 | SDValue IdxNode = Mask.getOperand(i); |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 7539 | if (IdxNode.getOpcode() == ISD::UNDEF) { |
| 7540 | Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT)); |
| 7541 | continue; |
| 7542 | } |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 7543 | unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7544 | SDValue InVec = Node->getOperand(0); |
Chris Lattner | 6c9c680 | 2007-11-19 21:16:54 +0000 | [diff] [blame] | 7545 | if (Idx >= NumElements) { |
| 7546 | InVec = Node->getOperand(1); |
| 7547 | Idx -= NumElements; |
| 7548 | } |
| 7549 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec, |
| 7550 | DAG.getConstant(Idx, PtrVT))); |
| 7551 | } |
Mon P Wang | 92879f3 | 2008-07-25 01:30:26 +0000 | [diff] [blame] | 7552 | Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &Ops[0], Ops.size()); |
Chris Lattner | 6c9c680 | 2007-11-19 21:16:54 +0000 | [diff] [blame] | 7553 | break; |
| 7554 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7555 | case ISD::BUILD_VECTOR: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7556 | SmallVector<SDValue, 8> LoOps(Node->op_begin(), |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 7557 | Node->op_begin()+NewNumElts_Lo); |
| 7558 | Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size()); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7559 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7560 | SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo, |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7561 | Node->op_end()); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 7562 | Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size()); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7563 | break; |
| 7564 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7565 | case ISD::CONCAT_VECTORS: { |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 7566 | // FIXME: Handle non-power-of-two vectors? |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7567 | unsigned NewNumSubvectors = Node->getNumOperands() / 2; |
| 7568 | if (NewNumSubvectors == 1) { |
| 7569 | Lo = Node->getOperand(0); |
| 7570 | Hi = Node->getOperand(1); |
| 7571 | } else { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 7572 | SmallVector<SDValue, 8> LoOps(Node->op_begin(), |
| 7573 | Node->op_begin()+NewNumSubvectors); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 7574 | Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size()); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 7575 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 7576 | SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors, |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7577 | Node->op_end()); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 7578 | Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size()); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7579 | } |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 7580 | break; |
| 7581 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 7582 | case ISD::EXTRACT_SUBVECTOR: { |
| 7583 | SDValue Vec = Op.getOperand(0); |
| 7584 | SDValue Idx = Op.getOperand(1); |
| 7585 | MVT IdxVT = Idx.getValueType(); |
| 7586 | |
| 7587 | Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, NewVT_Lo, Vec, Idx); |
| 7588 | ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx); |
| 7589 | if (CIdx) { |
| 7590 | Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, NewVT_Hi, Vec, |
| 7591 | DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo, |
| 7592 | IdxVT)); |
| 7593 | } else { |
| 7594 | Idx = DAG.getNode(ISD::ADD, IdxVT, Idx, |
| 7595 | DAG.getConstant(NewNumElts_Lo, IdxVT)); |
| 7596 | Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, NewVT_Hi, Vec, Idx); |
| 7597 | } |
| 7598 | break; |
| 7599 | } |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 7600 | case ISD::SELECT: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7601 | SDValue Cond = Node->getOperand(0); |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 7602 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7603 | SDValue LL, LH, RL, RH; |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 7604 | SplitVectorOp(Node->getOperand(1), LL, LH); |
| 7605 | SplitVectorOp(Node->getOperand(2), RL, RH); |
| 7606 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 7607 | if (Cond.getValueType().isVector()) { |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 7608 | // Handle a vector merge. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7609 | SDValue CL, CH; |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 7610 | SplitVectorOp(Cond, CL, CH); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 7611 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL); |
| 7612 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH); |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 7613 | } else { |
| 7614 | // Handle a simple select with vector operands. |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 7615 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL); |
| 7616 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH); |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 7617 | } |
| 7618 | break; |
| 7619 | } |
Chris Lattner | 80c1a56 | 2008-06-30 02:43:01 +0000 | [diff] [blame] | 7620 | case ISD::SELECT_CC: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7621 | SDValue CondLHS = Node->getOperand(0); |
| 7622 | SDValue CondRHS = Node->getOperand(1); |
| 7623 | SDValue CondCode = Node->getOperand(4); |
Chris Lattner | 80c1a56 | 2008-06-30 02:43:01 +0000 | [diff] [blame] | 7624 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7625 | SDValue LL, LH, RL, RH; |
Chris Lattner | 80c1a56 | 2008-06-30 02:43:01 +0000 | [diff] [blame] | 7626 | SplitVectorOp(Node->getOperand(2), LL, LH); |
| 7627 | SplitVectorOp(Node->getOperand(3), RL, RH); |
| 7628 | |
| 7629 | // Handle a simple select with vector operands. |
| 7630 | Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS, |
| 7631 | LL, RL, CondCode); |
| 7632 | Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS, |
| 7633 | LH, RH, CondCode); |
| 7634 | break; |
| 7635 | } |
Nate Begeman | b43e9c1 | 2008-05-12 19:40:03 +0000 | [diff] [blame] | 7636 | case ISD::VSETCC: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7637 | SDValue LL, LH, RL, RH; |
Nate Begeman | b43e9c1 | 2008-05-12 19:40:03 +0000 | [diff] [blame] | 7638 | SplitVectorOp(Node->getOperand(0), LL, LH); |
| 7639 | SplitVectorOp(Node->getOperand(1), RL, RH); |
| 7640 | Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2)); |
| 7641 | Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2)); |
| 7642 | break; |
| 7643 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7644 | case ISD::ADD: |
| 7645 | case ISD::SUB: |
| 7646 | case ISD::MUL: |
| 7647 | case ISD::FADD: |
| 7648 | case ISD::FSUB: |
| 7649 | case ISD::FMUL: |
| 7650 | case ISD::SDIV: |
| 7651 | case ISD::UDIV: |
| 7652 | case ISD::FDIV: |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 7653 | case ISD::FPOW: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7654 | case ISD::AND: |
| 7655 | case ISD::OR: |
Dan Gohman | 089617d | 2007-11-19 15:15:03 +0000 | [diff] [blame] | 7656 | case ISD::XOR: |
| 7657 | case ISD::UREM: |
| 7658 | case ISD::SREM: |
Mon P Wang | 87c8a8f | 2008-12-18 20:03:17 +0000 | [diff] [blame] | 7659 | case ISD::FREM: |
| 7660 | case ISD::SHL: |
| 7661 | case ISD::SRA: |
| 7662 | case ISD::SRL: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7663 | SDValue LL, LH, RL, RH; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7664 | SplitVectorOp(Node->getOperand(0), LL, LH); |
| 7665 | SplitVectorOp(Node->getOperand(1), RL, RH); |
| 7666 | |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 7667 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL); |
| 7668 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7669 | break; |
| 7670 | } |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 7671 | case ISD::FP_ROUND: |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 7672 | case ISD::FPOWI: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7673 | SDValue L, H; |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 7674 | SplitVectorOp(Node->getOperand(0), L, H); |
| 7675 | |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 7676 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1)); |
| 7677 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1)); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 7678 | break; |
| 7679 | } |
| 7680 | case ISD::CTTZ: |
| 7681 | case ISD::CTLZ: |
| 7682 | case ISD::CTPOP: |
| 7683 | case ISD::FNEG: |
| 7684 | case ISD::FABS: |
| 7685 | case ISD::FSQRT: |
| 7686 | case ISD::FSIN: |
Nate Begeman | b348d18 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 7687 | case ISD::FCOS: |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 7688 | case ISD::FLOG: |
| 7689 | case ISD::FLOG2: |
| 7690 | case ISD::FLOG10: |
| 7691 | case ISD::FEXP: |
| 7692 | case ISD::FEXP2: |
Nate Begeman | b348d18 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 7693 | case ISD::FP_TO_SINT: |
| 7694 | case ISD::FP_TO_UINT: |
| 7695 | case ISD::SINT_TO_FP: |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 7696 | case ISD::UINT_TO_FP: |
| 7697 | case ISD::TRUNCATE: |
| 7698 | case ISD::ANY_EXTEND: |
| 7699 | case ISD::SIGN_EXTEND: |
| 7700 | case ISD::ZERO_EXTEND: |
| 7701 | case ISD::FP_EXTEND: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7702 | SDValue L, H; |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 7703 | SplitVectorOp(Node->getOperand(0), L, H); |
| 7704 | |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 7705 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L); |
| 7706 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 7707 | break; |
| 7708 | } |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 7709 | case ISD::CONVERT_RNDSAT: { |
| 7710 | ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode(); |
| 7711 | SDValue L, H; |
| 7712 | SplitVectorOp(Node->getOperand(0), L, H); |
| 7713 | SDValue DTyOpL = DAG.getValueType(NewVT_Lo); |
| 7714 | SDValue DTyOpH = DAG.getValueType(NewVT_Hi); |
| 7715 | SDValue STyOpL = DAG.getValueType(L.getValueType()); |
| 7716 | SDValue STyOpH = DAG.getValueType(H.getValueType()); |
| 7717 | |
| 7718 | SDValue RndOp = Node->getOperand(3); |
| 7719 | SDValue SatOp = Node->getOperand(4); |
| 7720 | |
| 7721 | Lo = DAG.getConvertRndSat(NewVT_Lo, L, DTyOpL, STyOpL, |
| 7722 | RndOp, SatOp, CvtCode); |
| 7723 | Hi = DAG.getConvertRndSat(NewVT_Hi, H, DTyOpH, STyOpH, |
| 7724 | RndOp, SatOp, CvtCode); |
| 7725 | break; |
| 7726 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7727 | case ISD::LOAD: { |
| 7728 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7729 | SDValue Ch = LD->getChain(); |
| 7730 | SDValue Ptr = LD->getBasePtr(); |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 7731 | ISD::LoadExtType ExtType = LD->getExtensionType(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7732 | const Value *SV = LD->getSrcValue(); |
| 7733 | int SVOffset = LD->getSrcValueOffset(); |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 7734 | MVT MemoryVT = LD->getMemoryVT(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7735 | unsigned Alignment = LD->getAlignment(); |
| 7736 | bool isVolatile = LD->isVolatile(); |
| 7737 | |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 7738 | assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!"); |
| 7739 | SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType()); |
| 7740 | |
| 7741 | MVT MemNewEltVT = MemoryVT.getVectorElementType(); |
| 7742 | MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo); |
| 7743 | MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi); |
| 7744 | |
| 7745 | Lo = DAG.getLoad(ISD::UNINDEXED, ExtType, |
| 7746 | NewVT_Lo, Ch, Ptr, Offset, |
| 7747 | SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment); |
| 7748 | unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7749 | Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 7750 | DAG.getIntPtrConstant(IncrementSize)); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7751 | SVOffset += IncrementSize; |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 7752 | Alignment = MinAlign(Alignment, IncrementSize); |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 7753 | Hi = DAG.getLoad(ISD::UNINDEXED, ExtType, |
| 7754 | NewVT_Hi, Ch, Ptr, Offset, |
| 7755 | SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7756 | |
| 7757 | // Build a factor node to remember that this load is independent of the |
| 7758 | // other one. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7759 | SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1), |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7760 | Hi.getValue(1)); |
| 7761 | |
| 7762 | // Remember that we legalized the chain. |
| 7763 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF)); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7764 | break; |
| 7765 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7766 | case ISD::BIT_CONVERT: { |
Chris Lattner | 7692eb4 | 2006-03-23 21:16:34 +0000 | [diff] [blame] | 7767 | // We know the result is a vector. The input may be either a vector or a |
| 7768 | // scalar value. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7769 | SDValue InOp = Node->getOperand(0); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 7770 | if (!InOp.getValueType().isVector() || |
| 7771 | InOp.getValueType().getVectorNumElements() == 1) { |
Dan Gohman | 10a7aa6 | 2007-06-29 00:09:08 +0000 | [diff] [blame] | 7772 | // The input is a scalar or single-element vector. |
| 7773 | // Lower to a store/load so that it can be split. |
| 7774 | // FIXME: this could be improved probably. |
Mon P Wang | 2920d2b | 2008-07-15 05:28:34 +0000 | [diff] [blame] | 7775 | unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment( |
| 7776 | Op.getValueType().getTypeForMVT()); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7777 | SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 7778 | int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex(); |
Chris Lattner | 7692eb4 | 2006-03-23 21:16:34 +0000 | [diff] [blame] | 7779 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7780 | SDValue St = DAG.getStore(DAG.getEntryNode(), |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 7781 | InOp, Ptr, |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 7782 | PseudoSourceValue::getFixedStack(FI), 0); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 7783 | InOp = DAG.getLoad(Op.getValueType(), St, Ptr, |
Dan Gohman | a54cf17 | 2008-07-11 22:44:52 +0000 | [diff] [blame] | 7784 | PseudoSourceValue::getFixedStack(FI), 0); |
Chris Lattner | 7692eb4 | 2006-03-23 21:16:34 +0000 | [diff] [blame] | 7785 | } |
Dan Gohman | 10a7aa6 | 2007-06-29 00:09:08 +0000 | [diff] [blame] | 7786 | // Split the vector and convert each of the pieces now. |
| 7787 | SplitVectorOp(InOp, Lo, Hi); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 7788 | Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo); |
| 7789 | Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi); |
Dan Gohman | 10a7aa6 | 2007-06-29 00:09:08 +0000 | [diff] [blame] | 7790 | break; |
Chris Lattner | 7692eb4 | 2006-03-23 21:16:34 +0000 | [diff] [blame] | 7791 | } |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7792 | } |
| 7793 | |
| 7794 | // Remember in a map if the values will be reused later. |
Chris Lattner | 40030bf | 2007-02-04 01:17:38 +0000 | [diff] [blame] | 7795 | bool isNew = |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7796 | SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second; |
Dan Gohman | 10a7aa6 | 2007-06-29 00:09:08 +0000 | [diff] [blame] | 7797 | assert(isNew && "Value already split?!?"); |
Evan Cheng | 24ac408 | 2008-11-24 07:09:49 +0000 | [diff] [blame] | 7798 | isNew = isNew; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7799 | } |
| 7800 | |
| 7801 | |
Dan Gohman | 89b20c0 | 2007-06-27 14:06:22 +0000 | [diff] [blame] | 7802 | /// ScalarizeVectorOp - Given an operand of single-element vector type |
| 7803 | /// (e.g. v1f32), convert it into the equivalent operation that returns a |
| 7804 | /// scalar (e.g. f32) value. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7805 | SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 7806 | assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!"); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 7807 | SDNode *Node = Op.getNode(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 7808 | MVT NewVT = Op.getValueType().getVectorElementType(); |
| 7809 | assert(Op.getValueType().getVectorNumElements() == 1); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7810 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7811 | // See if we already scalarized it. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7812 | std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7813 | if (I != ScalarizedNodes.end()) return I->second; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7814 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7815 | SDValue Result; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7816 | switch (Node->getOpcode()) { |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 7817 | default: |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 7818 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 7819 | Node->dump(&DAG); cerr << "\n"; |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 7820 | #endif |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7821 | assert(0 && "Unknown vector operation in ScalarizeVectorOp!"); |
| 7822 | case ISD::ADD: |
| 7823 | case ISD::FADD: |
| 7824 | case ISD::SUB: |
| 7825 | case ISD::FSUB: |
| 7826 | case ISD::MUL: |
| 7827 | case ISD::FMUL: |
| 7828 | case ISD::SDIV: |
| 7829 | case ISD::UDIV: |
| 7830 | case ISD::FDIV: |
| 7831 | case ISD::SREM: |
| 7832 | case ISD::UREM: |
| 7833 | case ISD::FREM: |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 7834 | case ISD::FPOW: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7835 | case ISD::AND: |
| 7836 | case ISD::OR: |
| 7837 | case ISD::XOR: |
| 7838 | Result = DAG.getNode(Node->getOpcode(), |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7839 | NewVT, |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7840 | ScalarizeVectorOp(Node->getOperand(0)), |
| 7841 | ScalarizeVectorOp(Node->getOperand(1))); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7842 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7843 | case ISD::FNEG: |
| 7844 | case ISD::FABS: |
| 7845 | case ISD::FSQRT: |
| 7846 | case ISD::FSIN: |
| 7847 | case ISD::FCOS: |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 7848 | case ISD::FLOG: |
| 7849 | case ISD::FLOG2: |
| 7850 | case ISD::FLOG10: |
| 7851 | case ISD::FEXP: |
| 7852 | case ISD::FEXP2: |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 7853 | case ISD::FP_TO_SINT: |
| 7854 | case ISD::FP_TO_UINT: |
| 7855 | case ISD::SINT_TO_FP: |
| 7856 | case ISD::UINT_TO_FP: |
| 7857 | case ISD::SIGN_EXTEND: |
| 7858 | case ISD::ZERO_EXTEND: |
| 7859 | case ISD::ANY_EXTEND: |
| 7860 | case ISD::TRUNCATE: |
| 7861 | case ISD::FP_EXTEND: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7862 | Result = DAG.getNode(Node->getOpcode(), |
| 7863 | NewVT, |
| 7864 | ScalarizeVectorOp(Node->getOperand(0))); |
| 7865 | break; |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 7866 | case ISD::CONVERT_RNDSAT: { |
| 7867 | SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0)); |
| 7868 | Result = DAG.getConvertRndSat(NewVT, Op0, |
| 7869 | DAG.getValueType(NewVT), |
| 7870 | DAG.getValueType(Op0.getValueType()), |
| 7871 | Node->getOperand(3), |
| 7872 | Node->getOperand(4), |
| 7873 | cast<CvtRndSatSDNode>(Node)->getCvtCode()); |
| 7874 | break; |
| 7875 | } |
Dan Gohman | 9e04c82 | 2007-10-12 14:13:46 +0000 | [diff] [blame] | 7876 | case ISD::FPOWI: |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 7877 | case ISD::FP_ROUND: |
Dan Gohman | 9e04c82 | 2007-10-12 14:13:46 +0000 | [diff] [blame] | 7878 | Result = DAG.getNode(Node->getOpcode(), |
| 7879 | NewVT, |
| 7880 | ScalarizeVectorOp(Node->getOperand(0)), |
| 7881 | Node->getOperand(1)); |
| 7882 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7883 | case ISD::LOAD: { |
| 7884 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7885 | SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain. |
| 7886 | SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer. |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 7887 | ISD::LoadExtType ExtType = LD->getExtensionType(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7888 | const Value *SV = LD->getSrcValue(); |
| 7889 | int SVOffset = LD->getSrcValueOffset(); |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 7890 | MVT MemoryVT = LD->getMemoryVT(); |
| 7891 | unsigned Alignment = LD->getAlignment(); |
| 7892 | bool isVolatile = LD->isVolatile(); |
| 7893 | |
| 7894 | assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!"); |
| 7895 | SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType()); |
| 7896 | |
| 7897 | Result = DAG.getLoad(ISD::UNINDEXED, ExtType, |
| 7898 | NewVT, Ch, Ptr, Offset, SV, SVOffset, |
| 7899 | MemoryVT.getVectorElementType(), |
| 7900 | isVolatile, Alignment); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7901 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7902 | // Remember that we legalized the chain. |
| 7903 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
| 7904 | break; |
| 7905 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7906 | case ISD::BUILD_VECTOR: |
| 7907 | Result = Node->getOperand(0); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7908 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7909 | case ISD::INSERT_VECTOR_ELT: |
| 7910 | // Returning the inserted scalar element. |
| 7911 | Result = Node->getOperand(1); |
| 7912 | break; |
| 7913 | case ISD::CONCAT_VECTORS: |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 7914 | assert(Node->getOperand(0).getValueType() == NewVT && |
| 7915 | "Concat of non-legal vectors not yet supported!"); |
| 7916 | Result = Node->getOperand(0); |
| 7917 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7918 | case ISD::VECTOR_SHUFFLE: { |
| 7919 | // 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] | 7920 | SDValue EltNum = Node->getOperand(2).getOperand(0); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 7921 | if (cast<ConstantSDNode>(EltNum)->getZExtValue()) |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7922 | Result = ScalarizeVectorOp(Node->getOperand(1)); |
| 7923 | else |
| 7924 | Result = ScalarizeVectorOp(Node->getOperand(0)); |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 7925 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7926 | } |
| 7927 | case ISD::EXTRACT_SUBVECTOR: |
Mon P Wang | e0b436a | 2008-11-06 22:52:21 +0000 | [diff] [blame] | 7928 | Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewVT, Node->getOperand(0), |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 7929 | Node->getOperand(1)); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 7930 | break; |
Evan Cheng | 446efdd | 2008-05-16 17:19:05 +0000 | [diff] [blame] | 7931 | case ISD::BIT_CONVERT: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7932 | SDValue Op0 = Op.getOperand(0); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 7933 | if (Op0.getValueType().getVectorNumElements() == 1) |
Evan Cheng | 446efdd | 2008-05-16 17:19:05 +0000 | [diff] [blame] | 7934 | Op0 = ScalarizeVectorOp(Op0); |
| 7935 | Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0); |
Chris Lattner | 5b2316e | 2006-03-28 20:24:43 +0000 | [diff] [blame] | 7936 | break; |
Evan Cheng | 446efdd | 2008-05-16 17:19:05 +0000 | [diff] [blame] | 7937 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7938 | case ISD::SELECT: |
Chris Lattner | b22e35a | 2006-04-08 22:22:57 +0000 | [diff] [blame] | 7939 | Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0), |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7940 | ScalarizeVectorOp(Op.getOperand(1)), |
| 7941 | ScalarizeVectorOp(Op.getOperand(2))); |
Chris Lattner | b22e35a | 2006-04-08 22:22:57 +0000 | [diff] [blame] | 7942 | break; |
Chris Lattner | 80c1a56 | 2008-06-30 02:43:01 +0000 | [diff] [blame] | 7943 | case ISD::SELECT_CC: |
| 7944 | Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0), |
| 7945 | Node->getOperand(1), |
| 7946 | ScalarizeVectorOp(Op.getOperand(2)), |
| 7947 | ScalarizeVectorOp(Op.getOperand(3)), |
| 7948 | Node->getOperand(4)); |
| 7949 | break; |
Nate Begeman | 0d1704b | 2008-05-12 23:09:43 +0000 | [diff] [blame] | 7950 | case ISD::VSETCC: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7951 | SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0)); |
| 7952 | SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1)); |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 7953 | Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0.getValueType()), |
| 7954 | Op0, Op1, Op.getOperand(2)); |
Nate Begeman | 0d1704b | 2008-05-12 23:09:43 +0000 | [diff] [blame] | 7955 | Result = DAG.getNode(ISD::SELECT, NewVT, Result, |
| 7956 | DAG.getConstant(-1ULL, NewVT), |
| 7957 | DAG.getConstant(0ULL, NewVT)); |
| 7958 | break; |
| 7959 | } |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7960 | } |
| 7961 | |
| 7962 | if (TLI.isTypeLegal(NewVT)) |
| 7963 | Result = LegalizeOp(Result); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7964 | bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second; |
| 7965 | assert(isNew && "Value already scalarized?"); |
Evan Cheng | 24ac408 | 2008-11-24 07:09:49 +0000 | [diff] [blame] | 7966 | isNew = isNew; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7967 | return Result; |
| 7968 | } |
| 7969 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 7970 | |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 7971 | SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) { |
| 7972 | std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op); |
| 7973 | if (I != WidenNodes.end()) return I->second; |
| 7974 | |
| 7975 | MVT VT = Op.getValueType(); |
| 7976 | assert(VT.isVector() && "Cannot widen non-vector type!"); |
| 7977 | |
| 7978 | SDValue Result; |
| 7979 | SDNode *Node = Op.getNode(); |
| 7980 | MVT EVT = VT.getVectorElementType(); |
| 7981 | |
| 7982 | unsigned NumElts = VT.getVectorNumElements(); |
| 7983 | unsigned NewNumElts = WidenVT.getVectorNumElements(); |
| 7984 | assert(NewNumElts > NumElts && "Cannot widen to smaller type!"); |
| 7985 | assert(NewNumElts < 17); |
| 7986 | |
| 7987 | // When widen is called, it is assumed that it is more efficient to use a |
| 7988 | // wide type. The default action is to widen to operation to a wider legal |
| 7989 | // vector type and then do the operation if it is legal by calling LegalizeOp |
| 7990 | // again. If there is no vector equivalent, we will unroll the operation, do |
| 7991 | // it, and rebuild the vector. If most of the operations are vectorizible to |
| 7992 | // the legal type, the resulting code will be more efficient. If this is not |
| 7993 | // the case, the resulting code will preform badly as we end up generating |
| 7994 | // code to pack/unpack the results. It is the function that calls widen |
Mon P Wang | f007a8b | 2008-11-06 05:31:54 +0000 | [diff] [blame] | 7995 | // that is responsible for seeing this doesn't happen. |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 7996 | switch (Node->getOpcode()) { |
| 7997 | default: |
| 7998 | #ifndef NDEBUG |
| 7999 | Node->dump(&DAG); |
| 8000 | #endif |
| 8001 | assert(0 && "Unexpected operation in WidenVectorOp!"); |
| 8002 | break; |
| 8003 | case ISD::CopyFromReg: |
Mon P Wang | 49292f1 | 2008-11-15 06:05:52 +0000 | [diff] [blame] | 8004 | assert(0 && "CopyFromReg doesn't need widening!"); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8005 | case ISD::Constant: |
| 8006 | case ISD::ConstantFP: |
| 8007 | // To build a vector of these elements, clients should call BuildVector |
| 8008 | // and with each element instead of creating a node with a vector type |
| 8009 | assert(0 && "Unexpected operation in WidenVectorOp!"); |
| 8010 | case ISD::VAARG: |
| 8011 | // Variable Arguments with vector types doesn't make any sense to me |
| 8012 | assert(0 && "Unexpected operation in WidenVectorOp!"); |
| 8013 | break; |
Mon P Wang | 49292f1 | 2008-11-15 06:05:52 +0000 | [diff] [blame] | 8014 | case ISD::UNDEF: |
| 8015 | Result = DAG.getNode(ISD::UNDEF, WidenVT); |
| 8016 | break; |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8017 | case ISD::BUILD_VECTOR: { |
| 8018 | // Build a vector with undefined for the new nodes |
| 8019 | SDValueVector NewOps(Node->op_begin(), Node->op_end()); |
| 8020 | for (unsigned i = NumElts; i < NewNumElts; ++i) { |
| 8021 | NewOps.push_back(DAG.getNode(ISD::UNDEF,EVT)); |
| 8022 | } |
| 8023 | Result = DAG.getNode(ISD::BUILD_VECTOR, WidenVT, &NewOps[0], NewOps.size()); |
| 8024 | break; |
| 8025 | } |
| 8026 | case ISD::INSERT_VECTOR_ELT: { |
| 8027 | SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT); |
| 8028 | Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, WidenVT, Tmp1, |
| 8029 | Node->getOperand(1), Node->getOperand(2)); |
| 8030 | break; |
| 8031 | } |
| 8032 | case ISD::VECTOR_SHUFFLE: { |
| 8033 | SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT); |
| 8034 | SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT); |
| 8035 | // VECTOR_SHUFFLE 3rd operand must be a constant build vector that is |
| 8036 | // used as permutation array. We build the vector here instead of widening |
| 8037 | // because we don't want to legalize and have it turned to something else. |
| 8038 | SDValue PermOp = Node->getOperand(2); |
| 8039 | SDValueVector NewOps; |
| 8040 | MVT PVT = PermOp.getValueType().getVectorElementType(); |
| 8041 | for (unsigned i = 0; i < NumElts; ++i) { |
| 8042 | if (PermOp.getOperand(i).getOpcode() == ISD::UNDEF) { |
| 8043 | NewOps.push_back(PermOp.getOperand(i)); |
| 8044 | } else { |
| 8045 | unsigned Idx = |
Mon P Wang | e1a0b2e | 2008-12-13 08:15:14 +0000 | [diff] [blame] | 8046 | cast<ConstantSDNode>(PermOp.getOperand(i))->getZExtValue(); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8047 | if (Idx < NumElts) { |
| 8048 | NewOps.push_back(PermOp.getOperand(i)); |
| 8049 | } |
| 8050 | else { |
| 8051 | NewOps.push_back(DAG.getConstant(Idx + NewNumElts - NumElts, |
| 8052 | PermOp.getOperand(i).getValueType())); |
| 8053 | } |
| 8054 | } |
| 8055 | } |
| 8056 | for (unsigned i = NumElts; i < NewNumElts; ++i) { |
| 8057 | NewOps.push_back(DAG.getNode(ISD::UNDEF,PVT)); |
| 8058 | } |
| 8059 | |
| 8060 | SDValue Tmp3 = DAG.getNode(ISD::BUILD_VECTOR, |
| 8061 | MVT::getVectorVT(PVT, NewOps.size()), |
| 8062 | &NewOps[0], NewOps.size()); |
| 8063 | |
| 8064 | Result = DAG.getNode(ISD::VECTOR_SHUFFLE, WidenVT, Tmp1, Tmp2, Tmp3); |
| 8065 | break; |
| 8066 | } |
| 8067 | case ISD::LOAD: { |
| 8068 | // If the load widen returns true, we can use a single load for the |
| 8069 | // vector. Otherwise, it is returning a token factor for multiple |
| 8070 | // loads. |
| 8071 | SDValue TFOp; |
| 8072 | if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT)) |
| 8073 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1))); |
| 8074 | else |
| 8075 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0))); |
| 8076 | break; |
| 8077 | } |
| 8078 | |
| 8079 | case ISD::BIT_CONVERT: { |
| 8080 | SDValue Tmp1 = Node->getOperand(0); |
| 8081 | // Converts between two different types so we need to determine |
| 8082 | // the correct widen type for the input operand. |
Mon P Wang | 87c8a8f | 2008-12-18 20:03:17 +0000 | [diff] [blame] | 8083 | MVT InVT = Tmp1.getValueType(); |
| 8084 | unsigned WidenSize = WidenVT.getSizeInBits(); |
| 8085 | if (InVT.isVector()) { |
| 8086 | MVT InEltVT = InVT.getVectorElementType(); |
| 8087 | unsigned InEltSize = InEltVT.getSizeInBits(); |
| 8088 | assert(WidenSize % InEltSize == 0 && |
| 8089 | "can not widen bit convert that are not multiple of element type"); |
| 8090 | MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize); |
| 8091 | Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT); |
| 8092 | assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits()); |
| 8093 | Result = DAG.getNode(ISD::BIT_CONVERT, WidenVT, Tmp1); |
| 8094 | } else { |
| 8095 | // If the result size is a multiple of the input size, widen the input |
| 8096 | // and then convert. |
| 8097 | unsigned InSize = InVT.getSizeInBits(); |
| 8098 | assert(WidenSize % InSize == 0 && |
| 8099 | "can not widen bit convert that are not multiple of element type"); |
| 8100 | unsigned NewNumElts = WidenSize / InSize; |
| 8101 | SmallVector<SDValue, 16> Ops(NewNumElts); |
| 8102 | SDValue UndefVal = DAG.getNode(ISD::UNDEF, InVT); |
| 8103 | Ops[0] = Tmp1; |
| 8104 | for (unsigned i = 1; i < NewNumElts; ++i) |
| 8105 | Ops[i] = UndefVal; |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8106 | |
Mon P Wang | 87c8a8f | 2008-12-18 20:03:17 +0000 | [diff] [blame] | 8107 | MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts); |
| 8108 | Result = DAG.getNode(ISD::BUILD_VECTOR, NewInVT, &Ops[0], NewNumElts); |
| 8109 | Result = DAG.getNode(ISD::BIT_CONVERT, WidenVT, Result); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8110 | } |
| 8111 | break; |
| 8112 | } |
| 8113 | |
| 8114 | case ISD::SINT_TO_FP: |
| 8115 | case ISD::UINT_TO_FP: |
| 8116 | case ISD::FP_TO_SINT: |
Mon P Wang | 87c8a8f | 2008-12-18 20:03:17 +0000 | [diff] [blame] | 8117 | case ISD::FP_TO_UINT: |
| 8118 | case ISD::FP_ROUND: { |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8119 | SDValue Tmp1 = Node->getOperand(0); |
| 8120 | // Converts between two different types so we need to determine |
| 8121 | // the correct widen type for the input operand. |
| 8122 | MVT TVT = Tmp1.getValueType(); |
| 8123 | assert(TVT.isVector() && "can not widen non vector type"); |
| 8124 | MVT TEVT = TVT.getVectorElementType(); |
| 8125 | MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts); |
| 8126 | Tmp1 = WidenVectorOp(Tmp1, TWidenVT); |
| 8127 | assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts); |
| 8128 | Result = DAG.getNode(Node->getOpcode(), WidenVT, Tmp1); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8129 | break; |
| 8130 | } |
| 8131 | |
| 8132 | case ISD::FP_EXTEND: |
| 8133 | assert(0 && "Case not implemented. Dynamically dead with 2 FP types!"); |
| 8134 | case ISD::TRUNCATE: |
| 8135 | case ISD::SIGN_EXTEND: |
| 8136 | case ISD::ZERO_EXTEND: |
| 8137 | case ISD::ANY_EXTEND: |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8138 | case ISD::SIGN_EXTEND_INREG: |
| 8139 | case ISD::FABS: |
| 8140 | case ISD::FNEG: |
| 8141 | case ISD::FSQRT: |
| 8142 | case ISD::FSIN: |
Mon P Wang | 49292f1 | 2008-11-15 06:05:52 +0000 | [diff] [blame] | 8143 | case ISD::FCOS: |
| 8144 | case ISD::CTPOP: |
| 8145 | case ISD::CTTZ: |
| 8146 | case ISD::CTLZ: { |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8147 | // Unary op widening |
Mon P Wang | 87c8a8f | 2008-12-18 20:03:17 +0000 | [diff] [blame] | 8148 | SDValue Tmp1; |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8149 | Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT); |
| 8150 | assert(Tmp1.getValueType() == WidenVT); |
| 8151 | Result = DAG.getNode(Node->getOpcode(), WidenVT, Tmp1); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8152 | break; |
| 8153 | } |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 8154 | case ISD::CONVERT_RNDSAT: { |
| 8155 | SDValue RndOp = Node->getOperand(3); |
| 8156 | SDValue SatOp = Node->getOperand(4); |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 8157 | SDValue SrcOp = Node->getOperand(0); |
| 8158 | |
| 8159 | // Converts between two different types so we need to determine |
| 8160 | // the correct widen type for the input operand. |
| 8161 | MVT SVT = SrcOp.getValueType(); |
| 8162 | assert(SVT.isVector() && "can not widen non vector type"); |
| 8163 | MVT SEVT = SVT.getVectorElementType(); |
| 8164 | MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts); |
| 8165 | |
| 8166 | SrcOp = WidenVectorOp(SrcOp, SWidenVT); |
| 8167 | assert(SrcOp.getValueType() == WidenVT); |
| 8168 | SDValue DTyOp = DAG.getValueType(WidenVT); |
| 8169 | SDValue STyOp = DAG.getValueType(SrcOp.getValueType()); |
| 8170 | ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode(); |
| 8171 | |
| 8172 | Result = DAG.getConvertRndSat(WidenVT, SrcOp, DTyOp, STyOp, |
| 8173 | RndOp, SatOp, CvtCode); |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 8174 | break; |
| 8175 | } |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8176 | case ISD::FPOW: |
| 8177 | case ISD::FPOWI: |
| 8178 | case ISD::ADD: |
| 8179 | case ISD::SUB: |
| 8180 | case ISD::MUL: |
| 8181 | case ISD::MULHS: |
| 8182 | case ISD::MULHU: |
| 8183 | case ISD::AND: |
| 8184 | case ISD::OR: |
| 8185 | case ISD::XOR: |
| 8186 | case ISD::FADD: |
| 8187 | case ISD::FSUB: |
| 8188 | case ISD::FMUL: |
| 8189 | case ISD::SDIV: |
| 8190 | case ISD::SREM: |
| 8191 | case ISD::FDIV: |
| 8192 | case ISD::FREM: |
| 8193 | case ISD::FCOPYSIGN: |
| 8194 | case ISD::UDIV: |
| 8195 | case ISD::UREM: |
| 8196 | case ISD::BSWAP: { |
| 8197 | // Binary op widening |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8198 | SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT); |
| 8199 | SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT); |
| 8200 | assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT); |
| 8201 | Result = DAG.getNode(Node->getOpcode(), WidenVT, Tmp1, Tmp2); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8202 | break; |
| 8203 | } |
| 8204 | |
| 8205 | case ISD::SHL: |
| 8206 | case ISD::SRA: |
| 8207 | case ISD::SRL: { |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8208 | SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT); |
| 8209 | assert(Tmp1.getValueType() == WidenVT); |
Mon P Wang | fb13f00 | 2008-12-02 07:35:08 +0000 | [diff] [blame] | 8210 | SDValue ShOp = Node->getOperand(1); |
| 8211 | MVT ShVT = ShOp.getValueType(); |
| 8212 | MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(), |
| 8213 | WidenVT.getVectorNumElements()); |
| 8214 | ShOp = WidenVectorOp(ShOp, NewShVT); |
| 8215 | assert(ShOp.getValueType() == NewShVT); |
| 8216 | Result = DAG.getNode(Node->getOpcode(), WidenVT, Tmp1, ShOp); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8217 | break; |
| 8218 | } |
Mon P Wang | fb13f00 | 2008-12-02 07:35:08 +0000 | [diff] [blame] | 8219 | |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8220 | case ISD::EXTRACT_VECTOR_ELT: { |
| 8221 | SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT); |
| 8222 | assert(Tmp1.getValueType() == WidenVT); |
| 8223 | Result = DAG.getNode(Node->getOpcode(), EVT, Tmp1, Node->getOperand(1)); |
| 8224 | break; |
| 8225 | } |
| 8226 | case ISD::CONCAT_VECTORS: { |
| 8227 | // We concurrently support only widen on a multiple of the incoming vector. |
| 8228 | // We could widen on a multiple of the incoming operand if necessary. |
| 8229 | unsigned NumConcat = NewNumElts / NumElts; |
| 8230 | assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector"); |
Mon P Wang | fb13f00 | 2008-12-02 07:35:08 +0000 | [diff] [blame] | 8231 | SDValue UndefVal = DAG.getNode(ISD::UNDEF, VT); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8232 | SmallVector<SDValue, 8> MOps; |
| 8233 | MOps.push_back(Op); |
| 8234 | for (unsigned i = 1; i != NumConcat; ++i) { |
| 8235 | MOps.push_back(UndefVal); |
| 8236 | } |
| 8237 | Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, WidenVT, |
| 8238 | &MOps[0], MOps.size())); |
| 8239 | break; |
| 8240 | } |
| 8241 | case ISD::EXTRACT_SUBVECTOR: { |
Mon P Wang | 49292f1 | 2008-11-15 06:05:52 +0000 | [diff] [blame] | 8242 | SDValue Tmp1 = Node->getOperand(0); |
| 8243 | SDValue Idx = Node->getOperand(1); |
| 8244 | ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx); |
| 8245 | if (CIdx && CIdx->getZExtValue() == 0) { |
| 8246 | // Since we are access the start of the vector, the incoming |
| 8247 | // vector type might be the proper. |
| 8248 | MVT Tmp1VT = Tmp1.getValueType(); |
| 8249 | if (Tmp1VT == WidenVT) |
| 8250 | return Tmp1; |
| 8251 | else { |
| 8252 | unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements(); |
| 8253 | if (Tmp1VTNumElts < NewNumElts) |
| 8254 | Result = WidenVectorOp(Tmp1, WidenVT); |
| 8255 | else |
| 8256 | Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, WidenVT, Tmp1, Idx); |
| 8257 | } |
| 8258 | } else if (NewNumElts % NumElts == 0) { |
| 8259 | // Widen the extracted subvector. |
| 8260 | unsigned NumConcat = NewNumElts / NumElts; |
| 8261 | SDValue UndefVal = DAG.getNode(ISD::UNDEF, VT); |
| 8262 | SmallVector<SDValue, 8> MOps; |
| 8263 | MOps.push_back(Op); |
| 8264 | for (unsigned i = 1; i != NumConcat; ++i) { |
| 8265 | MOps.push_back(UndefVal); |
| 8266 | } |
| 8267 | Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, WidenVT, |
| 8268 | &MOps[0], MOps.size())); |
| 8269 | } else { |
| 8270 | assert(0 && "can not widen extract subvector"); |
| 8271 | // This could be implemented using insert and build vector but I would |
| 8272 | // like to see when this happens. |
| 8273 | } |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8274 | break; |
| 8275 | } |
| 8276 | |
| 8277 | case ISD::SELECT: { |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8278 | // Determine new condition widen type and widen |
| 8279 | SDValue Cond1 = Node->getOperand(0); |
| 8280 | MVT CondVT = Cond1.getValueType(); |
| 8281 | assert(CondVT.isVector() && "can not widen non vector type"); |
| 8282 | MVT CondEVT = CondVT.getVectorElementType(); |
| 8283 | MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts); |
| 8284 | Cond1 = WidenVectorOp(Cond1, CondWidenVT); |
| 8285 | assert(Cond1.getValueType() == CondWidenVT && "Condition not widen"); |
| 8286 | |
| 8287 | SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT); |
| 8288 | SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT); |
| 8289 | assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT); |
| 8290 | Result = DAG.getNode(Node->getOpcode(), WidenVT, Cond1, Tmp1, Tmp2); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8291 | break; |
| 8292 | } |
| 8293 | |
| 8294 | case ISD::SELECT_CC: { |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8295 | // Determine new condition widen type and widen |
| 8296 | SDValue Cond1 = Node->getOperand(0); |
| 8297 | SDValue Cond2 = Node->getOperand(1); |
| 8298 | MVT CondVT = Cond1.getValueType(); |
| 8299 | assert(CondVT.isVector() && "can not widen non vector type"); |
| 8300 | assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs"); |
| 8301 | MVT CondEVT = CondVT.getVectorElementType(); |
| 8302 | MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts); |
| 8303 | Cond1 = WidenVectorOp(Cond1, CondWidenVT); |
| 8304 | Cond2 = WidenVectorOp(Cond2, CondWidenVT); |
| 8305 | assert(Cond1.getValueType() == CondWidenVT && |
| 8306 | Cond2.getValueType() == CondWidenVT && "condition not widen"); |
| 8307 | |
| 8308 | SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT); |
| 8309 | SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT); |
| 8310 | assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT && |
| 8311 | "operands not widen"); |
| 8312 | Result = DAG.getNode(Node->getOpcode(), WidenVT, Cond1, Cond2, Tmp1, |
| 8313 | Tmp2, Node->getOperand(4)); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8314 | break; |
Mon P Wang | 2eb13c3 | 2008-10-30 18:21:52 +0000 | [diff] [blame] | 8315 | } |
| 8316 | case ISD::VSETCC: { |
| 8317 | // Determine widen for the operand |
| 8318 | SDValue Tmp1 = Node->getOperand(0); |
| 8319 | MVT TmpVT = Tmp1.getValueType(); |
| 8320 | assert(TmpVT.isVector() && "can not widen non vector type"); |
| 8321 | MVT TmpEVT = TmpVT.getVectorElementType(); |
| 8322 | MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts); |
| 8323 | Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT); |
| 8324 | SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT); |
Mon P Wang | 87c8a8f | 2008-12-18 20:03:17 +0000 | [diff] [blame] | 8325 | Result = DAG.getNode(Node->getOpcode(), WidenVT, Tmp1, Tmp2, |
Mon P Wang | 2eb13c3 | 2008-10-30 18:21:52 +0000 | [diff] [blame] | 8326 | Node->getOperand(2)); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8327 | break; |
| 8328 | } |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8329 | case ISD::ATOMIC_CMP_SWAP: |
| 8330 | case ISD::ATOMIC_LOAD_ADD: |
| 8331 | case ISD::ATOMIC_LOAD_SUB: |
| 8332 | case ISD::ATOMIC_LOAD_AND: |
| 8333 | case ISD::ATOMIC_LOAD_OR: |
| 8334 | case ISD::ATOMIC_LOAD_XOR: |
| 8335 | case ISD::ATOMIC_LOAD_NAND: |
| 8336 | case ISD::ATOMIC_LOAD_MIN: |
| 8337 | case ISD::ATOMIC_LOAD_MAX: |
| 8338 | case ISD::ATOMIC_LOAD_UMIN: |
| 8339 | case ISD::ATOMIC_LOAD_UMAX: |
| 8340 | case ISD::ATOMIC_SWAP: { |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8341 | // For now, we assume that using vectors for these operations don't make |
| 8342 | // much sense so we just split it. We return an empty result |
| 8343 | SDValue X, Y; |
| 8344 | SplitVectorOp(Op, X, Y); |
| 8345 | return Result; |
| 8346 | break; |
| 8347 | } |
| 8348 | |
| 8349 | } // end switch (Node->getOpcode()) |
| 8350 | |
| 8351 | assert(Result.getNode() && "Didn't set a result!"); |
| 8352 | if (Result != Op) |
| 8353 | Result = LegalizeOp(Result); |
| 8354 | |
Mon P Wang | f007a8b | 2008-11-06 05:31:54 +0000 | [diff] [blame] | 8355 | AddWidenedOperand(Op, Result); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8356 | return Result; |
| 8357 | } |
| 8358 | |
| 8359 | // Utility function to find a legal vector type and its associated element |
| 8360 | // type from a preferred width and whose vector type must be the same size |
| 8361 | // as the VVT. |
| 8362 | // TLI: Target lowering used to determine legal types |
| 8363 | // Width: Preferred width of element type |
| 8364 | // VVT: Vector value type whose size we must match. |
| 8365 | // Returns VecEVT and EVT - the vector type and its associated element type |
Dan Gohman | 0d137d7 | 2009-01-15 16:43:02 +0000 | [diff] [blame] | 8366 | static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT, |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8367 | MVT& EVT, MVT& VecEVT) { |
| 8368 | // We start with the preferred width, make it a power of 2 and see if |
| 8369 | // we can find a vector type of that width. If not, we reduce it by |
| 8370 | // another power of 2. If we have widen the type, a vector of bytes should |
| 8371 | // always be legal. |
| 8372 | assert(TLI.isTypeLegal(VVT)); |
| 8373 | unsigned EWidth = Width + 1; |
| 8374 | do { |
| 8375 | assert(EWidth > 0); |
| 8376 | EWidth = (1 << Log2_32(EWidth-1)); |
| 8377 | EVT = MVT::getIntegerVT(EWidth); |
| 8378 | unsigned NumEVT = VVT.getSizeInBits()/EWidth; |
| 8379 | VecEVT = MVT::getVectorVT(EVT, NumEVT); |
| 8380 | } while (!TLI.isTypeLegal(VecEVT) || |
| 8381 | VVT.getSizeInBits() != VecEVT.getSizeInBits()); |
| 8382 | } |
| 8383 | |
| 8384 | SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain, |
| 8385 | SDValue Chain, |
| 8386 | SDValue BasePtr, |
| 8387 | const Value *SV, |
| 8388 | int SVOffset, |
| 8389 | unsigned Alignment, |
| 8390 | bool isVolatile, |
| 8391 | unsigned LdWidth, |
| 8392 | MVT ResType) { |
| 8393 | // We assume that we have good rules to handle loading power of two loads so |
| 8394 | // we break down the operations to power of 2 loads. The strategy is to |
| 8395 | // load the largest power of 2 that we can easily transform to a legal vector |
| 8396 | // and then insert into that vector, and the cast the result into the legal |
| 8397 | // vector that we want. This avoids unnecessary stack converts. |
| 8398 | // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and |
| 8399 | // the load is nonvolatile, we an use a wider load for the value. |
| 8400 | // Find a vector length we can load a large chunk |
| 8401 | MVT EVT, VecEVT; |
| 8402 | unsigned EVTWidth; |
| 8403 | FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT); |
| 8404 | EVTWidth = EVT.getSizeInBits(); |
| 8405 | |
| 8406 | SDValue LdOp = DAG.getLoad(EVT, Chain, BasePtr, SV, SVOffset, |
| 8407 | isVolatile, Alignment); |
| 8408 | SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, VecEVT, LdOp); |
| 8409 | LdChain.push_back(LdOp.getValue(1)); |
| 8410 | |
| 8411 | // Check if we can load the element with one instruction |
| 8412 | if (LdWidth == EVTWidth) { |
| 8413 | return DAG.getNode(ISD::BIT_CONVERT, ResType, VecOp); |
| 8414 | } |
| 8415 | |
| 8416 | // The vector element order is endianness dependent. |
| 8417 | unsigned Idx = 1; |
| 8418 | LdWidth -= EVTWidth; |
| 8419 | unsigned Offset = 0; |
| 8420 | |
| 8421 | while (LdWidth > 0) { |
| 8422 | unsigned Increment = EVTWidth / 8; |
| 8423 | Offset += Increment; |
| 8424 | BasePtr = DAG.getNode(ISD::ADD, BasePtr.getValueType(), BasePtr, |
| 8425 | DAG.getIntPtrConstant(Increment)); |
| 8426 | |
| 8427 | if (LdWidth < EVTWidth) { |
| 8428 | // Our current type we are using is too large, use a smaller size by |
| 8429 | // using a smaller power of 2 |
| 8430 | unsigned oEVTWidth = EVTWidth; |
| 8431 | FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT); |
| 8432 | EVTWidth = EVT.getSizeInBits(); |
| 8433 | // Readjust position and vector position based on new load type |
Mon P Wang | 49292f1 | 2008-11-15 06:05:52 +0000 | [diff] [blame] | 8434 | Idx = Idx * (oEVTWidth/EVTWidth); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8435 | VecOp = DAG.getNode(ISD::BIT_CONVERT, VecEVT, VecOp); |
| 8436 | } |
| 8437 | |
| 8438 | SDValue LdOp = DAG.getLoad(EVT, Chain, BasePtr, SV, |
| 8439 | SVOffset+Offset, isVolatile, |
| 8440 | MinAlign(Alignment, Offset)); |
| 8441 | LdChain.push_back(LdOp.getValue(1)); |
| 8442 | VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, VecEVT, VecOp, LdOp, |
| 8443 | DAG.getIntPtrConstant(Idx++)); |
| 8444 | |
| 8445 | LdWidth -= EVTWidth; |
| 8446 | } |
| 8447 | |
| 8448 | return DAG.getNode(ISD::BIT_CONVERT, ResType, VecOp); |
| 8449 | } |
| 8450 | |
| 8451 | bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result, |
| 8452 | SDValue& TFOp, |
| 8453 | SDValue Op, |
| 8454 | MVT NVT) { |
| 8455 | // TODO: Add support for ConcatVec and the ability to load many vector |
| 8456 | // types (e.g., v4i8). This will not work when a vector register |
| 8457 | // to memory mapping is strange (e.g., vector elements are not |
| 8458 | // stored in some sequential order). |
| 8459 | |
| 8460 | // It must be true that the widen vector type is bigger than where |
| 8461 | // we need to load from. |
| 8462 | LoadSDNode *LD = cast<LoadSDNode>(Op.getNode()); |
| 8463 | MVT LdVT = LD->getMemoryVT(); |
| 8464 | assert(LdVT.isVector() && NVT.isVector()); |
| 8465 | assert(LdVT.getVectorElementType() == NVT.getVectorElementType()); |
| 8466 | |
| 8467 | // Load information |
| 8468 | SDValue Chain = LD->getChain(); |
| 8469 | SDValue BasePtr = LD->getBasePtr(); |
| 8470 | int SVOffset = LD->getSrcValueOffset(); |
| 8471 | unsigned Alignment = LD->getAlignment(); |
| 8472 | bool isVolatile = LD->isVolatile(); |
| 8473 | const Value *SV = LD->getSrcValue(); |
| 8474 | unsigned int LdWidth = LdVT.getSizeInBits(); |
| 8475 | |
| 8476 | // Load value as a large register |
| 8477 | SDValueVector LdChain; |
| 8478 | Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset, |
| 8479 | Alignment, isVolatile, LdWidth, NVT); |
| 8480 | |
| 8481 | if (LdChain.size() == 1) { |
| 8482 | TFOp = LdChain[0]; |
| 8483 | return true; |
| 8484 | } |
| 8485 | else { |
| 8486 | TFOp=DAG.getNode(ISD::TokenFactor, MVT::Other, &LdChain[0], LdChain.size()); |
| 8487 | return false; |
| 8488 | } |
| 8489 | } |
| 8490 | |
| 8491 | |
| 8492 | void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain, |
| 8493 | SDValue Chain, |
| 8494 | SDValue BasePtr, |
| 8495 | const Value *SV, |
| 8496 | int SVOffset, |
| 8497 | unsigned Alignment, |
| 8498 | bool isVolatile, |
Mon P Wang | 49292f1 | 2008-11-15 06:05:52 +0000 | [diff] [blame] | 8499 | SDValue ValOp, |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8500 | unsigned StWidth) { |
| 8501 | // Breaks the stores into a series of power of 2 width stores. For any |
| 8502 | // width, we convert the vector to the vector of element size that we |
| 8503 | // want to store. This avoids requiring a stack convert. |
| 8504 | |
| 8505 | // Find a width of the element type we can store with |
| 8506 | MVT VVT = ValOp.getValueType(); |
| 8507 | MVT EVT, VecEVT; |
| 8508 | unsigned EVTWidth; |
| 8509 | FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT); |
| 8510 | EVTWidth = EVT.getSizeInBits(); |
| 8511 | |
| 8512 | SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, VecEVT, ValOp); |
| 8513 | SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EVT, VecOp, |
Mon P Wang | e0b436a | 2008-11-06 22:52:21 +0000 | [diff] [blame] | 8514 | DAG.getIntPtrConstant(0)); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8515 | SDValue StOp = DAG.getStore(Chain, EOp, BasePtr, SV, SVOffset, |
| 8516 | isVolatile, Alignment); |
| 8517 | StChain.push_back(StOp); |
| 8518 | |
| 8519 | // Check if we are done |
| 8520 | if (StWidth == EVTWidth) { |
| 8521 | return; |
| 8522 | } |
| 8523 | |
| 8524 | unsigned Idx = 1; |
| 8525 | StWidth -= EVTWidth; |
| 8526 | unsigned Offset = 0; |
| 8527 | |
| 8528 | while (StWidth > 0) { |
| 8529 | unsigned Increment = EVTWidth / 8; |
| 8530 | Offset += Increment; |
| 8531 | BasePtr = DAG.getNode(ISD::ADD, BasePtr.getValueType(), BasePtr, |
| 8532 | DAG.getIntPtrConstant(Increment)); |
| 8533 | |
| 8534 | if (StWidth < EVTWidth) { |
| 8535 | // Our current type we are using is too large, use a smaller size by |
| 8536 | // using a smaller power of 2 |
| 8537 | unsigned oEVTWidth = EVTWidth; |
| 8538 | FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT); |
| 8539 | EVTWidth = EVT.getSizeInBits(); |
| 8540 | // Readjust position and vector position based on new load type |
Mon P Wang | 49292f1 | 2008-11-15 06:05:52 +0000 | [diff] [blame] | 8541 | Idx = Idx * (oEVTWidth/EVTWidth); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8542 | VecOp = DAG.getNode(ISD::BIT_CONVERT, VecEVT, VecOp); |
| 8543 | } |
| 8544 | |
| 8545 | EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EVT, VecOp, |
Mon P Wang | 49292f1 | 2008-11-15 06:05:52 +0000 | [diff] [blame] | 8546 | DAG.getIntPtrConstant(Idx++)); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8547 | StChain.push_back(DAG.getStore(Chain, EOp, BasePtr, SV, |
| 8548 | SVOffset + Offset, isVolatile, |
| 8549 | MinAlign(Alignment, Offset))); |
| 8550 | StWidth -= EVTWidth; |
| 8551 | } |
| 8552 | } |
| 8553 | |
| 8554 | |
| 8555 | SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST, |
| 8556 | SDValue Chain, |
| 8557 | SDValue BasePtr) { |
| 8558 | // TODO: It might be cleaner if we can use SplitVector and have more legal |
| 8559 | // vector types that can be stored into memory (e.g., v4xi8 can |
| 8560 | // be stored as a word). This will not work when a vector register |
| 8561 | // to memory mapping is strange (e.g., vector elements are not |
| 8562 | // stored in some sequential order). |
| 8563 | |
| 8564 | MVT StVT = ST->getMemoryVT(); |
| 8565 | SDValue ValOp = ST->getValue(); |
| 8566 | |
| 8567 | // Check if we have widen this node with another value |
| 8568 | std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp); |
| 8569 | if (I != WidenNodes.end()) |
| 8570 | ValOp = I->second; |
| 8571 | |
| 8572 | MVT VVT = ValOp.getValueType(); |
| 8573 | |
| 8574 | // It must be true that we the widen vector type is bigger than where |
| 8575 | // we need to store. |
| 8576 | assert(StVT.isVector() && VVT.isVector()); |
Dan Gohman | f83c81a | 2009-01-28 03:10:52 +0000 | [diff] [blame] | 8577 | assert(StVT.bitsLT(VVT)); |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 8578 | assert(StVT.getVectorElementType() == VVT.getVectorElementType()); |
| 8579 | |
| 8580 | // Store value |
| 8581 | SDValueVector StChain; |
| 8582 | genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(), |
| 8583 | ST->getSrcValueOffset(), ST->getAlignment(), |
| 8584 | ST->isVolatile(), ValOp, StVT.getSizeInBits()); |
| 8585 | if (StChain.size() == 1) |
| 8586 | return StChain[0]; |
| 8587 | else |
| 8588 | return DAG.getNode(ISD::TokenFactor, MVT::Other,&StChain[0],StChain.size()); |
| 8589 | } |
| 8590 | |
| 8591 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 8592 | // SelectionDAG::Legalize - This is the entry point for the file. |
| 8593 | // |
Duncan Sands | b6862bb | 2008-12-14 09:43:15 +0000 | [diff] [blame] | 8594 | void SelectionDAG::Legalize(bool TypesNeedLegalizing) { |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 8595 | /// run - This is the main entry point to this class. |
| 8596 | /// |
Duncan Sands | b6862bb | 2008-12-14 09:43:15 +0000 | [diff] [blame] | 8597 | SelectionDAGLegalize(*this, TypesNeedLegalizing).LegalizeDAG(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 8598 | } |
| 8599 | |