blob: 4019a1f02ef204046d943a1e371406f7e10a9b60 [file] [log] [blame]
Tom Stellardf98f2ce2012-12-11 21:25:42 +00001//===-- AMDGPUISelLowering.cpp - AMDGPU Common DAG lowering functions -----===//
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/// \file
11/// \brief This is the parent TargetLowering class for hardware code gen
12/// targets.
13//
14//===----------------------------------------------------------------------===//
15
16#include "AMDGPUISelLowering.h"
Tom Stellarde7397ee2013-06-03 17:40:11 +000017#include "AMDGPU.h"
Christian Konig90c64cb2013-03-07 09:03:52 +000018#include "AMDGPURegisterInfo.h"
Christian Konig90c64cb2013-03-07 09:03:52 +000019#include "AMDGPUSubtarget.h"
Benjamin Kramer5c352902013-05-23 17:10:37 +000020#include "AMDILIntrinsicInfo.h"
Tom Stellarde7397ee2013-06-03 17:40:11 +000021#include "SIMachineFunctionInfo.h"
Christian Konig90c64cb2013-03-07 09:03:52 +000022#include "llvm/CodeGen/CallingConvLower.h"
Tom Stellardf98f2ce2012-12-11 21:25:42 +000023#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/MachineRegisterInfo.h"
25#include "llvm/CodeGen/SelectionDAG.h"
26#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Tom Stellarde3d4cbc2013-06-28 15:47:08 +000027#include "llvm/IR/DataLayout.h"
Tom Stellardf98f2ce2012-12-11 21:25:42 +000028
29using namespace llvm;
30
Christian Konig90c64cb2013-03-07 09:03:52 +000031#include "AMDGPUGenCallingConv.inc"
32
Tom Stellardf98f2ce2012-12-11 21:25:42 +000033AMDGPUTargetLowering::AMDGPUTargetLowering(TargetMachine &TM) :
34 TargetLowering(TM, new TargetLoweringObjectFileELF()) {
35
36 // Initialize target lowering borrowed from AMDIL
37 InitAMDILLowering();
38
39 // We need to custom lower some of the intrinsics
40 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
41
42 // Library functions. These default to Expand, but we have instructions
43 // for them.
44 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
45 setOperationAction(ISD::FEXP2, MVT::f32, Legal);
46 setOperationAction(ISD::FPOW, MVT::f32, Legal);
47 setOperationAction(ISD::FLOG2, MVT::f32, Legal);
48 setOperationAction(ISD::FABS, MVT::f32, Legal);
49 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
50 setOperationAction(ISD::FRINT, MVT::f32, Legal);
51
Tom Stellardba534c22013-05-20 15:02:19 +000052 // The hardware supports ROTR, but not ROTL
53 setOperationAction(ISD::ROTL, MVT::i32, Expand);
54
Tom Stellardf98f2ce2012-12-11 21:25:42 +000055 // Lower floating point store/load to integer store/load to reduce the number
56 // of patterns in tablegen.
57 setOperationAction(ISD::STORE, MVT::f32, Promote);
58 AddPromotedToType(ISD::STORE, MVT::f32, MVT::i32);
59
60 setOperationAction(ISD::STORE, MVT::v4f32, Promote);
61 AddPromotedToType(ISD::STORE, MVT::v4f32, MVT::v4i32);
62
63 setOperationAction(ISD::LOAD, MVT::f32, Promote);
64 AddPromotedToType(ISD::LOAD, MVT::f32, MVT::i32);
65
66 setOperationAction(ISD::LOAD, MVT::v4f32, Promote);
67 AddPromotedToType(ISD::LOAD, MVT::v4f32, MVT::v4i32);
68
Christian Konig45b14e32013-03-27 09:12:51 +000069 setOperationAction(ISD::MUL, MVT::i64, Expand);
70
Tom Stellardf98f2ce2012-12-11 21:25:42 +000071 setOperationAction(ISD::UDIV, MVT::i32, Expand);
72 setOperationAction(ISD::UDIVREM, MVT::i32, Custom);
73 setOperationAction(ISD::UREM, MVT::i32, Expand);
Aaron Watryf97c7fe2013-06-25 13:55:57 +000074
Tom Stellarde3d4cbc2013-06-28 15:47:08 +000075 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
76
Aaron Watryf97c7fe2013-06-25 13:55:57 +000077 int types[] = {
78 (int)MVT::v2i32,
79 (int)MVT::v4i32
80 };
81 size_t NumTypes = sizeof(types) / sizeof(*types);
82
83 for (unsigned int x = 0; x < NumTypes; ++x) {
84 MVT::SimpleValueType VT = (MVT::SimpleValueType)types[x];
85 //Expand the following operations for the current type by default
86 setOperationAction(ISD::ADD, VT, Expand);
87 setOperationAction(ISD::AND, VT, Expand);
88 setOperationAction(ISD::MUL, VT, Expand);
89 setOperationAction(ISD::OR, VT, Expand);
90 setOperationAction(ISD::SHL, VT, Expand);
91 setOperationAction(ISD::SRL, VT, Expand);
92 setOperationAction(ISD::SRA, VT, Expand);
93 setOperationAction(ISD::SUB, VT, Expand);
94 setOperationAction(ISD::UDIV, VT, Expand);
95 setOperationAction(ISD::UREM, VT, Expand);
96 setOperationAction(ISD::XOR, VT, Expand);
97 }
Tom Stellardf98f2ce2012-12-11 21:25:42 +000098}
99
100//===---------------------------------------------------------------------===//
101// TargetLowering Callbacks
102//===---------------------------------------------------------------------===//
103
Christian Konig90c64cb2013-03-07 09:03:52 +0000104void AMDGPUTargetLowering::AnalyzeFormalArguments(CCState &State,
105 const SmallVectorImpl<ISD::InputArg> &Ins) const {
106
107 State.AnalyzeFormalArguments(Ins, CC_AMDGPU);
Tom Stellardf98f2ce2012-12-11 21:25:42 +0000108}
109
110SDValue AMDGPUTargetLowering::LowerReturn(
111 SDValue Chain,
112 CallingConv::ID CallConv,
113 bool isVarArg,
114 const SmallVectorImpl<ISD::OutputArg> &Outs,
115 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000116 SDLoc DL, SelectionDAG &DAG) const {
Tom Stellardf98f2ce2012-12-11 21:25:42 +0000117 return DAG.getNode(AMDGPUISD::RET_FLAG, DL, MVT::Other, Chain);
118}
119
120//===---------------------------------------------------------------------===//
121// Target specific lowering
122//===---------------------------------------------------------------------===//
123
124SDValue AMDGPUTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG)
125 const {
126 switch (Op.getOpcode()) {
127 default:
128 Op.getNode()->dump();
129 assert(0 && "Custom lowering code for this"
130 "instruction is not implemented yet!");
131 break;
132 // AMDIL DAG lowering
133 case ISD::SDIV: return LowerSDIV(Op, DAG);
134 case ISD::SREM: return LowerSREM(Op, DAG);
135 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op, DAG);
136 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
137 // AMDGPU DAG lowering
138 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
139 case ISD::UDIVREM: return LowerUDIVREM(Op, DAG);
140 }
141 return Op;
142}
143
Tom Stellarde3d4cbc2013-06-28 15:47:08 +0000144SDValue AMDGPUTargetLowering::LowerGlobalAddress(AMDGPUMachineFunction* MFI,
145 SDValue Op,
146 SelectionDAG &DAG) const {
147
148 const DataLayout *TD = getTargetMachine().getDataLayout();
149 GlobalAddressSDNode *G = cast<GlobalAddressSDNode>(Op);
150 // XXX: What does the value of G->getOffset() mean?
151 assert(G->getOffset() == 0 &&
152 "Do not know what to do with an non-zero offset");
153
154 unsigned Offset = MFI->LDSSize;
155 const GlobalValue *GV = G->getGlobal();
156 uint64_t Size = TD->getTypeAllocSize(GV->getType()->getElementType());
157
158 // XXX: Account for alignment?
159 MFI->LDSSize += Size;
160
161 return DAG.getConstant(Offset, MVT::i32);
162}
163
Tom Stellardf98f2ce2012-12-11 21:25:42 +0000164SDValue AMDGPUTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
165 SelectionDAG &DAG) const {
166 unsigned IntrinsicID = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000167 SDLoc DL(Op);
Tom Stellardf98f2ce2012-12-11 21:25:42 +0000168 EVT VT = Op.getValueType();
169
170 switch (IntrinsicID) {
171 default: return Op;
172 case AMDGPUIntrinsic::AMDIL_abs:
173 return LowerIntrinsicIABS(Op, DAG);
174 case AMDGPUIntrinsic::AMDIL_exp:
175 return DAG.getNode(ISD::FEXP2, DL, VT, Op.getOperand(1));
176 case AMDGPUIntrinsic::AMDGPU_lrp:
177 return LowerIntrinsicLRP(Op, DAG);
178 case AMDGPUIntrinsic::AMDIL_fraction:
179 return DAG.getNode(AMDGPUISD::FRACT, DL, VT, Op.getOperand(1));
Tom Stellardf98f2ce2012-12-11 21:25:42 +0000180 case AMDGPUIntrinsic::AMDIL_max:
181 return DAG.getNode(AMDGPUISD::FMAX, DL, VT, Op.getOperand(1),
182 Op.getOperand(2));
183 case AMDGPUIntrinsic::AMDGPU_imax:
184 return DAG.getNode(AMDGPUISD::SMAX, DL, VT, Op.getOperand(1),
185 Op.getOperand(2));
186 case AMDGPUIntrinsic::AMDGPU_umax:
187 return DAG.getNode(AMDGPUISD::UMAX, DL, VT, Op.getOperand(1),
188 Op.getOperand(2));
189 case AMDGPUIntrinsic::AMDIL_min:
190 return DAG.getNode(AMDGPUISD::FMIN, DL, VT, Op.getOperand(1),
191 Op.getOperand(2));
192 case AMDGPUIntrinsic::AMDGPU_imin:
193 return DAG.getNode(AMDGPUISD::SMIN, DL, VT, Op.getOperand(1),
194 Op.getOperand(2));
195 case AMDGPUIntrinsic::AMDGPU_umin:
196 return DAG.getNode(AMDGPUISD::UMIN, DL, VT, Op.getOperand(1),
197 Op.getOperand(2));
198 case AMDGPUIntrinsic::AMDIL_round_nearest:
199 return DAG.getNode(ISD::FRINT, DL, VT, Op.getOperand(1));
200 }
201}
202
203///IABS(a) = SMAX(sub(0, a), a)
204SDValue AMDGPUTargetLowering::LowerIntrinsicIABS(SDValue Op,
205 SelectionDAG &DAG) const {
206
Andrew Trickac6d9be2013-05-25 02:42:55 +0000207 SDLoc DL(Op);
Tom Stellardf98f2ce2012-12-11 21:25:42 +0000208 EVT VT = Op.getValueType();
209 SDValue Neg = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT),
210 Op.getOperand(1));
211
212 return DAG.getNode(AMDGPUISD::SMAX, DL, VT, Neg, Op.getOperand(1));
213}
214
215/// Linear Interpolation
216/// LRP(a, b, c) = muladd(a, b, (1 - a) * c)
217SDValue AMDGPUTargetLowering::LowerIntrinsicLRP(SDValue Op,
218 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +0000219 SDLoc DL(Op);
Tom Stellardf98f2ce2012-12-11 21:25:42 +0000220 EVT VT = Op.getValueType();
221 SDValue OneSubA = DAG.getNode(ISD::FSUB, DL, VT,
222 DAG.getConstantFP(1.0f, MVT::f32),
223 Op.getOperand(1));
224 SDValue OneSubAC = DAG.getNode(ISD::FMUL, DL, VT, OneSubA,
225 Op.getOperand(3));
Vincent Lejeunee3111962013-02-18 14:11:28 +0000226 return DAG.getNode(ISD::FADD, DL, VT,
227 DAG.getNode(ISD::FMUL, DL, VT, Op.getOperand(1), Op.getOperand(2)),
228 OneSubAC);
Tom Stellardf98f2ce2012-12-11 21:25:42 +0000229}
230
231/// \brief Generate Min/Max node
232SDValue AMDGPUTargetLowering::LowerMinMax(SDValue Op,
233 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +0000234 SDLoc DL(Op);
Tom Stellardf98f2ce2012-12-11 21:25:42 +0000235 EVT VT = Op.getValueType();
236
237 SDValue LHS = Op.getOperand(0);
238 SDValue RHS = Op.getOperand(1);
239 SDValue True = Op.getOperand(2);
240 SDValue False = Op.getOperand(3);
241 SDValue CC = Op.getOperand(4);
242
243 if (VT != MVT::f32 ||
244 !((LHS == True && RHS == False) || (LHS == False && RHS == True))) {
245 return SDValue();
246 }
247
248 ISD::CondCode CCOpcode = cast<CondCodeSDNode>(CC)->get();
249 switch (CCOpcode) {
250 case ISD::SETOEQ:
251 case ISD::SETONE:
252 case ISD::SETUNE:
253 case ISD::SETNE:
254 case ISD::SETUEQ:
255 case ISD::SETEQ:
256 case ISD::SETFALSE:
257 case ISD::SETFALSE2:
258 case ISD::SETTRUE:
259 case ISD::SETTRUE2:
260 case ISD::SETUO:
261 case ISD::SETO:
262 assert(0 && "Operation should already be optimised !");
263 case ISD::SETULE:
264 case ISD::SETULT:
265 case ISD::SETOLE:
266 case ISD::SETOLT:
267 case ISD::SETLE:
268 case ISD::SETLT: {
269 if (LHS == True)
270 return DAG.getNode(AMDGPUISD::FMIN, DL, VT, LHS, RHS);
271 else
272 return DAG.getNode(AMDGPUISD::FMAX, DL, VT, LHS, RHS);
273 }
274 case ISD::SETGT:
275 case ISD::SETGE:
276 case ISD::SETUGE:
277 case ISD::SETOGE:
278 case ISD::SETUGT:
279 case ISD::SETOGT: {
280 if (LHS == True)
281 return DAG.getNode(AMDGPUISD::FMAX, DL, VT, LHS, RHS);
282 else
283 return DAG.getNode(AMDGPUISD::FMIN, DL, VT, LHS, RHS);
284 }
285 case ISD::SETCC_INVALID:
286 assert(0 && "Invalid setcc condcode !");
287 }
288 return Op;
289}
290
291
292
293SDValue AMDGPUTargetLowering::LowerUDIVREM(SDValue Op,
294 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +0000295 SDLoc DL(Op);
Tom Stellardf98f2ce2012-12-11 21:25:42 +0000296 EVT VT = Op.getValueType();
297
298 SDValue Num = Op.getOperand(0);
299 SDValue Den = Op.getOperand(1);
300
301 SmallVector<SDValue, 8> Results;
302
303 // RCP = URECIP(Den) = 2^32 / Den + e
304 // e is rounding error.
305 SDValue RCP = DAG.getNode(AMDGPUISD::URECIP, DL, VT, Den);
306
307 // RCP_LO = umulo(RCP, Den) */
308 SDValue RCP_LO = DAG.getNode(ISD::UMULO, DL, VT, RCP, Den);
309
310 // RCP_HI = mulhu (RCP, Den) */
311 SDValue RCP_HI = DAG.getNode(ISD::MULHU, DL, VT, RCP, Den);
312
313 // NEG_RCP_LO = -RCP_LO
314 SDValue NEG_RCP_LO = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT),
315 RCP_LO);
316
317 // ABS_RCP_LO = (RCP_HI == 0 ? NEG_RCP_LO : RCP_LO)
318 SDValue ABS_RCP_LO = DAG.getSelectCC(DL, RCP_HI, DAG.getConstant(0, VT),
319 NEG_RCP_LO, RCP_LO,
320 ISD::SETEQ);
321 // Calculate the rounding error from the URECIP instruction
322 // E = mulhu(ABS_RCP_LO, RCP)
323 SDValue E = DAG.getNode(ISD::MULHU, DL, VT, ABS_RCP_LO, RCP);
324
325 // RCP_A_E = RCP + E
326 SDValue RCP_A_E = DAG.getNode(ISD::ADD, DL, VT, RCP, E);
327
328 // RCP_S_E = RCP - E
329 SDValue RCP_S_E = DAG.getNode(ISD::SUB, DL, VT, RCP, E);
330
331 // Tmp0 = (RCP_HI == 0 ? RCP_A_E : RCP_SUB_E)
332 SDValue Tmp0 = DAG.getSelectCC(DL, RCP_HI, DAG.getConstant(0, VT),
333 RCP_A_E, RCP_S_E,
334 ISD::SETEQ);
335 // Quotient = mulhu(Tmp0, Num)
336 SDValue Quotient = DAG.getNode(ISD::MULHU, DL, VT, Tmp0, Num);
337
338 // Num_S_Remainder = Quotient * Den
339 SDValue Num_S_Remainder = DAG.getNode(ISD::UMULO, DL, VT, Quotient, Den);
340
341 // Remainder = Num - Num_S_Remainder
342 SDValue Remainder = DAG.getNode(ISD::SUB, DL, VT, Num, Num_S_Remainder);
343
344 // Remainder_GE_Den = (Remainder >= Den ? -1 : 0)
345 SDValue Remainder_GE_Den = DAG.getSelectCC(DL, Remainder, Den,
346 DAG.getConstant(-1, VT),
347 DAG.getConstant(0, VT),
348 ISD::SETGE);
349 // Remainder_GE_Zero = (Remainder >= 0 ? -1 : 0)
350 SDValue Remainder_GE_Zero = DAG.getSelectCC(DL, Remainder,
351 DAG.getConstant(0, VT),
352 DAG.getConstant(-1, VT),
353 DAG.getConstant(0, VT),
354 ISD::SETGE);
355 // Tmp1 = Remainder_GE_Den & Remainder_GE_Zero
356 SDValue Tmp1 = DAG.getNode(ISD::AND, DL, VT, Remainder_GE_Den,
357 Remainder_GE_Zero);
358
359 // Calculate Division result:
360
361 // Quotient_A_One = Quotient + 1
362 SDValue Quotient_A_One = DAG.getNode(ISD::ADD, DL, VT, Quotient,
363 DAG.getConstant(1, VT));
364
365 // Quotient_S_One = Quotient - 1
366 SDValue Quotient_S_One = DAG.getNode(ISD::SUB, DL, VT, Quotient,
367 DAG.getConstant(1, VT));
368
369 // Div = (Tmp1 == 0 ? Quotient : Quotient_A_One)
370 SDValue Div = DAG.getSelectCC(DL, Tmp1, DAG.getConstant(0, VT),
371 Quotient, Quotient_A_One, ISD::SETEQ);
372
373 // Div = (Remainder_GE_Zero == 0 ? Quotient_S_One : Div)
374 Div = DAG.getSelectCC(DL, Remainder_GE_Zero, DAG.getConstant(0, VT),
375 Quotient_S_One, Div, ISD::SETEQ);
376
377 // Calculate Rem result:
378
379 // Remainder_S_Den = Remainder - Den
380 SDValue Remainder_S_Den = DAG.getNode(ISD::SUB, DL, VT, Remainder, Den);
381
382 // Remainder_A_Den = Remainder + Den
383 SDValue Remainder_A_Den = DAG.getNode(ISD::ADD, DL, VT, Remainder, Den);
384
385 // Rem = (Tmp1 == 0 ? Remainder : Remainder_S_Den)
386 SDValue Rem = DAG.getSelectCC(DL, Tmp1, DAG.getConstant(0, VT),
387 Remainder, Remainder_S_Den, ISD::SETEQ);
388
389 // Rem = (Remainder_GE_Zero == 0 ? Remainder_A_Den : Rem)
390 Rem = DAG.getSelectCC(DL, Remainder_GE_Zero, DAG.getConstant(0, VT),
391 Remainder_A_Den, Rem, ISD::SETEQ);
392 SDValue Ops[2];
393 Ops[0] = Div;
394 Ops[1] = Rem;
395 return DAG.getMergeValues(Ops, 2, DL);
396}
397
398//===----------------------------------------------------------------------===//
399// Helper functions
400//===----------------------------------------------------------------------===//
401
402bool AMDGPUTargetLowering::isHWTrueValue(SDValue Op) const {
403 if (ConstantFPSDNode * CFP = dyn_cast<ConstantFPSDNode>(Op)) {
404 return CFP->isExactlyValue(1.0);
405 }
406 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
407 return C->isAllOnesValue();
408 }
409 return false;
410}
411
412bool AMDGPUTargetLowering::isHWFalseValue(SDValue Op) const {
413 if (ConstantFPSDNode * CFP = dyn_cast<ConstantFPSDNode>(Op)) {
414 return CFP->getValueAPF().isZero();
415 }
416 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
417 return C->isNullValue();
418 }
419 return false;
420}
421
422SDValue AMDGPUTargetLowering::CreateLiveInRegister(SelectionDAG &DAG,
423 const TargetRegisterClass *RC,
424 unsigned Reg, EVT VT) const {
425 MachineFunction &MF = DAG.getMachineFunction();
426 MachineRegisterInfo &MRI = MF.getRegInfo();
427 unsigned VirtualRegister;
428 if (!MRI.isLiveIn(Reg)) {
429 VirtualRegister = MRI.createVirtualRegister(RC);
430 MRI.addLiveIn(Reg, VirtualRegister);
431 } else {
432 VirtualRegister = MRI.getLiveInVirtReg(Reg);
433 }
434 return DAG.getRegister(VirtualRegister, VT);
435}
436
437#define NODE_NAME_CASE(node) case AMDGPUISD::node: return #node;
438
439const char* AMDGPUTargetLowering::getTargetNodeName(unsigned Opcode) const {
440 switch (Opcode) {
441 default: return 0;
442 // AMDIL DAG nodes
Tom Stellardf98f2ce2012-12-11 21:25:42 +0000443 NODE_NAME_CASE(CALL);
444 NODE_NAME_CASE(UMUL);
445 NODE_NAME_CASE(DIV_INF);
446 NODE_NAME_CASE(RET_FLAG);
447 NODE_NAME_CASE(BRANCH_COND);
448
449 // AMDGPU DAG nodes
450 NODE_NAME_CASE(DWORDADDR)
451 NODE_NAME_CASE(FRACT)
452 NODE_NAME_CASE(FMAX)
453 NODE_NAME_CASE(SMAX)
454 NODE_NAME_CASE(UMAX)
455 NODE_NAME_CASE(FMIN)
456 NODE_NAME_CASE(SMIN)
457 NODE_NAME_CASE(UMIN)
458 NODE_NAME_CASE(URECIP)
Tom Stellardf98f2ce2012-12-11 21:25:42 +0000459 NODE_NAME_CASE(EXPORT)
Tom Stellardc7e18882013-01-23 02:09:03 +0000460 NODE_NAME_CASE(CONST_ADDRESS)
Tom Stellardc0b0c672013-02-06 17:32:29 +0000461 NODE_NAME_CASE(REGISTER_LOAD)
462 NODE_NAME_CASE(REGISTER_STORE)
Tom Stellardf98f2ce2012-12-11 21:25:42 +0000463 }
464}