blob: 9a04e352ab62230fe3b476da6926da978b005c6b [file] [log] [blame]
Dan Gohman53c5e422010-04-16 23:04:22 +00001//===-- X86SelectionDAGInfo.cpp - X86 SelectionDAG Info -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the X86SelectionDAGInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "x86-selectiondag-info"
Dan Gohmanff7a5622010-05-11 17:31:57 +000015#include "X86TargetMachine.h"
16#include "llvm/DerivedTypes.h"
17#include "llvm/CodeGen/SelectionDAG.h"
Dan Gohman53c5e422010-04-16 23:04:22 +000018using namespace llvm;
19
Dan Gohmanff7a5622010-05-11 17:31:57 +000020X86SelectionDAGInfo::X86SelectionDAGInfo(const X86TargetMachine &TM) :
21 TargetSelectionDAGInfo(TM),
22 Subtarget(&TM.getSubtarget<X86Subtarget>()),
23 TLI(*TM.getTargetLowering()) {
Dan Gohman53c5e422010-04-16 23:04:22 +000024}
25
26X86SelectionDAGInfo::~X86SelectionDAGInfo() {
27}
Dan Gohmanff7a5622010-05-11 17:31:57 +000028
29SDValue
30X86SelectionDAGInfo::EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl,
31 SDValue Chain,
32 SDValue Dst, SDValue Src,
33 SDValue Size, unsigned Align,
34 bool isVolatile,
Chris Lattnere72f2022010-09-21 05:40:29 +000035 MachinePointerInfo DstPtrInfo) const {
Dan Gohmanff7a5622010-05-11 17:31:57 +000036 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
37
Chris Lattnere54b4822010-09-21 05:43:34 +000038 // If to a segment-relative address space, use the default lowering.
39 if (DstPtrInfo.getAddrSpace() >= 256)
40 return SDValue();
41
Dan Gohmanff7a5622010-05-11 17:31:57 +000042 // If not DWORD aligned or size is more than the threshold, call the library.
43 // The libc version is likely to be faster for these cases. It can use the
44 // address value and run time information about the CPU.
45 if ((Align & 3) != 0 ||
46 !ConstantSize ||
47 ConstantSize->getZExtValue() >
48 Subtarget->getMaxInlineSizeThreshold()) {
49 SDValue InFlag(0, 0);
50
51 // Check to see if there is a specialized entry-point for memory zeroing.
52 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
53
54 if (const char *bzeroEntry = V &&
55 V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
56 EVT IntPtr = TLI.getPointerTy();
Chris Lattnerdb125cf2011-07-18 04:54:35 +000057 Type *IntPtrTy = getTargetData()->getIntPtrType(*DAG.getContext());
Dan Gohmanff7a5622010-05-11 17:31:57 +000058 TargetLowering::ArgListTy Args;
59 TargetLowering::ArgListEntry Entry;
60 Entry.Node = Dst;
61 Entry.Ty = IntPtrTy;
62 Args.push_back(Entry);
63 Entry.Node = Size;
64 Args.push_back(Entry);
65 std::pair<SDValue,SDValue> CallResult =
66 TLI.LowerCallTo(Chain, Type::getVoidTy(*DAG.getContext()),
67 false, false, false, false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +000068 0, CallingConv::C, /*isTailCall=*/false,
69 /*doesNotRet=*/false, /*isReturnValueUsed=*/false,
Dan Gohmanff7a5622010-05-11 17:31:57 +000070 DAG.getExternalSymbol(bzeroEntry, IntPtr), Args,
71 DAG, dl);
72 return CallResult.second;
73 }
74
75 // Otherwise have the target-independent code call memset.
76 return SDValue();
77 }
78
79 uint64_t SizeVal = ConstantSize->getZExtValue();
80 SDValue InFlag(0, 0);
81 EVT AVT;
82 SDValue Count;
83 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
84 unsigned BytesLeft = 0;
85 bool TwoRepStos = false;
86 if (ValC) {
87 unsigned ValReg;
88 uint64_t Val = ValC->getZExtValue() & 255;
89
90 // If the value is a constant, then we can potentially use larger sets.
91 switch (Align & 3) {
92 case 2: // WORD aligned
93 AVT = MVT::i16;
94 ValReg = X86::AX;
95 Val = (Val << 8) | Val;
96 break;
97 case 0: // DWORD aligned
98 AVT = MVT::i32;
99 ValReg = X86::EAX;
100 Val = (Val << 8) | Val;
101 Val = (Val << 16) | Val;
102 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
103 AVT = MVT::i64;
104 ValReg = X86::RAX;
105 Val = (Val << 32) | Val;
106 }
107 break;
108 default: // Byte aligned
109 AVT = MVT::i8;
110 ValReg = X86::AL;
111 Count = DAG.getIntPtrConstant(SizeVal);
112 break;
113 }
114
115 if (AVT.bitsGT(MVT::i8)) {
116 unsigned UBytes = AVT.getSizeInBits() / 8;
117 Count = DAG.getIntPtrConstant(SizeVal / UBytes);
118 BytesLeft = SizeVal % UBytes;
119 }
120
121 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, AVT),
122 InFlag);
123 InFlag = Chain.getValue(1);
124 } else {
125 AVT = MVT::i8;
126 Count = DAG.getIntPtrConstant(SizeVal);
127 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag);
128 InFlag = Chain.getValue(1);
129 }
130
131 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
132 X86::ECX,
133 Count, InFlag);
134 InFlag = Chain.getValue(1);
135 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
136 X86::EDI,
137 Dst, InFlag);
138 InFlag = Chain.getValue(1);
139
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000140 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohmanff7a5622010-05-11 17:31:57 +0000141 SDValue Ops[] = { Chain, DAG.getValueType(AVT), InFlag };
142 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, Ops, array_lengthof(Ops));
143
144 if (TwoRepStos) {
145 InFlag = Chain.getValue(1);
146 Count = Size;
147 EVT CVT = Count.getValueType();
148 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count,
149 DAG.getConstant((AVT == MVT::i64) ? 7 : 3, CVT));
150 Chain = DAG.getCopyToReg(Chain, dl, (CVT == MVT::i64) ? X86::RCX :
151 X86::ECX,
152 Left, InFlag);
153 InFlag = Chain.getValue(1);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000154 Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohmanff7a5622010-05-11 17:31:57 +0000155 SDValue Ops[] = { Chain, DAG.getValueType(MVT::i8), InFlag };
156 Chain = DAG.getNode(X86ISD::REP_STOS, dl, Tys, Ops, array_lengthof(Ops));
157 } else if (BytesLeft) {
158 // Handle the last 1 - 7 bytes.
159 unsigned Offset = SizeVal - BytesLeft;
160 EVT AddrVT = Dst.getValueType();
161 EVT SizeVT = Size.getValueType();
162
163 Chain = DAG.getMemset(Chain, dl,
164 DAG.getNode(ISD::ADD, dl, AddrVT, Dst,
165 DAG.getConstant(Offset, AddrVT)),
166 Src,
167 DAG.getConstant(BytesLeft, SizeVT),
Chris Lattnere72f2022010-09-21 05:40:29 +0000168 Align, isVolatile, DstPtrInfo.getWithOffset(Offset));
Dan Gohmanff7a5622010-05-11 17:31:57 +0000169 }
170
171 // TODO: Use a Tokenfactor, as in memcpy, instead of a single chain.
172 return Chain;
173}
174
175SDValue
176X86SelectionDAGInfo::EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
177 SDValue Chain, SDValue Dst, SDValue Src,
178 SDValue Size, unsigned Align,
179 bool isVolatile, bool AlwaysInline,
Chris Lattnere72f2022010-09-21 05:40:29 +0000180 MachinePointerInfo DstPtrInfo,
181 MachinePointerInfo SrcPtrInfo) const {
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000182 // This requires the copy size to be a constant, preferably
Dan Gohmanff7a5622010-05-11 17:31:57 +0000183 // within a subtarget-specific limit.
184 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
185 if (!ConstantSize)
186 return SDValue();
187 uint64_t SizeVal = ConstantSize->getZExtValue();
188 if (!AlwaysInline && SizeVal > Subtarget->getMaxInlineSizeThreshold())
189 return SDValue();
190
Duncan Sands1e92ec62010-11-04 21:16:46 +0000191 /// If not DWORD aligned, it is more efficient to call the library. However
192 /// if calling the library is not allowed (AlwaysInline), then soldier on as
193 /// the code generated here is better than the long load-store sequence we
194 /// would otherwise get.
195 if (!AlwaysInline && (Align & 3) != 0)
Dan Gohmanff7a5622010-05-11 17:31:57 +0000196 return SDValue();
197
Chris Lattnere54b4822010-09-21 05:43:34 +0000198 // If to a segment-relative address space, use the default lowering.
199 if (DstPtrInfo.getAddrSpace() >= 256 ||
200 SrcPtrInfo.getAddrSpace() >= 256)
201 return SDValue();
Duncan Sands1e92ec62010-11-04 21:16:46 +0000202
203 MVT AVT;
204 if (Align & 1)
205 AVT = MVT::i8;
206 else if (Align & 2)
207 AVT = MVT::i16;
208 else if (Align & 4)
209 // DWORD aligned
210 AVT = MVT::i32;
211 else
212 // QWORD aligned
213 AVT = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Dan Gohmanff7a5622010-05-11 17:31:57 +0000214
215 unsigned UBytes = AVT.getSizeInBits() / 8;
216 unsigned CountVal = SizeVal / UBytes;
217 SDValue Count = DAG.getIntPtrConstant(CountVal);
218 unsigned BytesLeft = SizeVal % UBytes;
219
220 SDValue InFlag(0, 0);
221 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
222 X86::ECX,
223 Count, InFlag);
224 InFlag = Chain.getValue(1);
225 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
226 X86::EDI,
227 Dst, InFlag);
228 InFlag = Chain.getValue(1);
229 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RSI :
230 X86::ESI,
231 Src, InFlag);
232 InFlag = Chain.getValue(1);
233
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000234 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohmanff7a5622010-05-11 17:31:57 +0000235 SDValue Ops[] = { Chain, DAG.getValueType(AVT), InFlag };
236 SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, dl, Tys, Ops,
237 array_lengthof(Ops));
238
239 SmallVector<SDValue, 4> Results;
240 Results.push_back(RepMovs);
241 if (BytesLeft) {
242 // Handle the last 1 - 7 bytes.
243 unsigned Offset = SizeVal - BytesLeft;
244 EVT DstVT = Dst.getValueType();
245 EVT SrcVT = Src.getValueType();
246 EVT SizeVT = Size.getValueType();
247 Results.push_back(DAG.getMemcpy(Chain, dl,
248 DAG.getNode(ISD::ADD, dl, DstVT, Dst,
249 DAG.getConstant(Offset, DstVT)),
250 DAG.getNode(ISD::ADD, dl, SrcVT, Src,
251 DAG.getConstant(Offset, SrcVT)),
252 DAG.getConstant(BytesLeft, SizeVT),
253 Align, isVolatile, AlwaysInline,
Chris Lattnere72f2022010-09-21 05:40:29 +0000254 DstPtrInfo.getWithOffset(Offset),
255 SrcPtrInfo.getWithOffset(Offset)));
Dan Gohmanff7a5622010-05-11 17:31:57 +0000256 }
257
258 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
259 &Results[0], Results.size());
260}