Lines Matching defs:VAList
2356 SDValue VAList = VAListLoad;
2366 VAList = DAG.getNode(
2367 ISD::ADD, DL, VAList.getValueType(), VAList,
2368 DAG.getConstant(Align.value() - 1, DL, VAList.getValueType()));
2370 VAList = DAG.getNode(ISD::AND, DL, VAList.getValueType(), VAList,
2372 VAList.getValueType()));
2375 // Increment the pointer, VAList, to the next vaarg.
2380 DAG.getNode(ISD::ADD, DL, VAList.getValueType(), VAList,
2382 DL, VAList.getValueType()));
2383 // Store the incremented VAList to the legalized pointer
2394 VAList = DAG.getNode(ISD::ADD, DL, VAListPtr.getValueType(), VAList,
2397 // Load the actual argument out of the pointer VAList
2398 return DAG.getLoad(VT, DL, Chain, VAList, MachinePointerInfo());