Lines Matching defs:VAList
2302 SDValue VAList = VAListLoad;
2312 VAList = DAG.getNode(
2313 ISD::ADD, DL, VAList.getValueType(), VAList,
2314 DAG.getConstant(Align.value() - 1, DL, VAList.getValueType()));
2316 VAList = DAG.getNode(
2317 ISD::AND, DL, VAList.getValueType(), VAList,
2318 DAG.getConstant(-(int64_t)Align.value(), DL, VAList.getValueType()));
2321 // Increment the pointer, VAList, to the next vaarg.
2326 DAG.getNode(ISD::ADD, DL, VAList.getValueType(), VAList,
2328 DL, VAList.getValueType()));
2329 // Store the incremented VAList to the legalized pointer
2340 VAList = DAG.getNode(ISD::ADD, DL, VAListPtr.getValueType(), VAList,
2343 // Load the actual argument out of the pointer VAList
2344 return DAG.getLoad(VT, DL, Chain, VAList, MachinePointerInfo());