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

/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp777 SDValue VAList = DAG.getLoad(PtrVT, dl, InChain, local
780 // Increment the pointer, VAList, to the next vararg
781 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAList,
784 // Store the incremented VAList to the legalized pointer
785 InChain = DAG.getStore(VAList.getValue(1), dl, nextPtr, VAListPtr,
787 // Load the actual argument out of the pointer VAList
788 return DAG.getLoad(VT, dl, InChain, VAList, MachinePointerInfo(),
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp2491 SDValue VAList = DAG.getLoad(PtrVT, DL, InChain, VAListPtr, local
2493 // Increment the pointer, VAList, to the next vaarg.
2494 SDValue NextPtr = DAG.getNode(ISD::ADD, DL, PtrVT, VAList,
2497 // Store the incremented VAList to the legalized pointer.
2498 InChain = DAG.getStore(VAList.getValue(1), DL, NextPtr,
2500 // Load the actual argument out of the pointer VAList.
2502 return DAG.getLoad(VT, DL, InChain, VAList, MachinePointerInfo(),
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp1867 SDValue VAList = VAListLoad; local
1879 VAList = DAG.getNode(ISD::ADD, DL, VAList.getValueType(), VAList,
1880 DAG.getConstant(Align - 1, DL, VAList.getValueType()));
1882 VAList = DAG.getNode(ISD::AND, DL, VAList.getValueType(), VAList,
1884 VAList.getValueType()));
1887 // Increment the pointer, VAList, t
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1850 SDValue VAList = VAListLoad; local
1855 VAList = getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
1856 getConstant(Align - 1, dl, VAList.getValueType()));
1858 VAList = getNode(ISD::AND, dl, VAList.getValueType(), VAList,
1859 getConstant(-(int64_t)Align, dl, VAList.getValueType()));
1862 // Increment the pointer, VAList, t
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp4197 SDValue VAList = Op.getOperand(1); local
4203 MemOps.push_back(DAG.getStore(Chain, DL, Stack, VAList,
4212 DAG.getNode(ISD::ADD, DL, PtrVT, VAList, DAG.getConstant(8, DL, PtrVT));
4226 VRTopAddr = DAG.getNode(ISD::ADD, DL, PtrVT, VAList,
4239 DAG.getNode(ISD::ADD, DL, PtrVT, VAList, DAG.getConstant(24, DL, PtrVT));
4247 DAG.getNode(ISD::ADD, DL, PtrVT, VAList, DAG.getConstant(28, DL, PtrVT));
4290 SDValue VAList = DAG.getLoad(PtrVT, DL, Chain, Addr, MachinePointerInfo(V), local
4292 Chain = VAList.getValue(1);
4296 VAList = DAG.getNode(ISD::ADD, DL, PtrVT, VAList,
[all...]

Completed in 102 milliseconds