Searched defs:VAList (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp1028 SDValue VAList = DAG.getLoad(MVT::i32, dl, InChain, VAListPtr, local
1030 // Increment the pointer, VAList, to the next vaarg
1031 SDValue NextPtr = DAG.getNode(ISD::ADD, dl, MVT::i32, VAList,
1034 // Store the incremented VAList to the legalized pointer
1035 InChain = DAG.getStore(VAList.getValue(1), dl, NextPtr,
1037 // Load the actual argument out of the pointer VAList, unless this is an
1040 return DAG.getLoad(VT, dl, InChain, VAList, MachinePointerInfo(),
1044 SDValue V = DAG.getLoad(MVT::i64, dl, InChain, VAList, MachinePointerInfo(),
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp753 SDValue VAList = DAG.getLoad(getPointerTy(), dl, Node->getOperand(0), local
756 // Increment the pointer, VAList, to the next vararg
757 SDValue Tmp3 = DAG.getNode(ISD::ADD, dl, getPointerTy(), VAList,
760 // Store the incremented VAList to the legalized pointer
761 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Node->getOperand(1),
763 // Load the actual argument out of the pointer VAList
764 return DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),

Completed in 50 milliseconds