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

/external/llvm/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(),
/external/llvm/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(),

Completed in 82 milliseconds