Searched refs:VAList (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/llvmCore-3425.0.34/lib/Target/Sparc/
H A DSparcISelLowering.cpp1031 SDValue VAList = DAG.getLoad(MVT::i32, dl, InChain, VAListPtr, local
1033 // Increment the pointer, VAList, to the next vaarg
1034 SDValue NextPtr = DAG.getNode(ISD::ADD, dl, MVT::i32, VAList,
1037 // Store the incremented VAList to the legalized pointer
1038 InChain = DAG.getStore(VAList.getValue(1), dl, NextPtr,
1040 // Load the actual argument out of the pointer VAList, unless this is an
1043 return DAG.getLoad(VT, dl, InChain, VAList, MachinePointerInfo(),
1047 SDValue V = DAG.getLoad(MVT::i64, dl, InChain, VAList, MachinePointerInfo(),
/macosx-10.10/llvmCore-3425.0.34/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1166 GenericValue VAList = getOperandValue(I.getOperand(0), SF);
1168 GenericValue Src = ECStack[VAList.UIntPairVal.first]
1169 .VarArgs[VAList.UIntPairVal.second];
1185 ++VAList.UIntPairVal.second;
/macosx-10.10/llvmCore-3425.0.34/lib/Target/XCore/
H A DXCoreISelLowering.cpp763 SDValue VAList = DAG.getLoad(getPointerTy(), dl, Node->getOperand(0), local
766 // Increment the pointer, VAList, to the next vararg
767 SDValue Tmp3 = DAG.getNode(ISD::ADD, dl, getPointerTy(), VAList,
770 // Store the incremented VAList to the legalized pointer
771 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Node->getOperand(1),
773 // Load the actual argument out of the pointer VAList
774 return DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp2831 SDValue VAList = VAListLoad;
2836 VAList = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
2840 VAList = DAG.getNode(ISD::AND, dl, TLI.getPointerTy(), VAList,
2845 // Increment the pointer, VAList, to the next vaarg
2846 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
2850 // Store the incremented VAList to the legalized pointer
2853 // Load the actual argument out of the pointer VAList
2854 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInf
[all...]

Completed in 91 milliseconds