Lines Matching defs:VAList
2786 SDValue VAList = VAListLoad;
2789 VAList = DAG.getNode(
2790 ISD::ADD, DL, VAList.getValueType(), VAList,
2791 DAG.getConstant(MA->value() - 1, DL, VAList.getValueType()));
2793 VAList = DAG.getNode(ISD::AND, DL, VAList.getValueType(), VAList,
2795 VAList.getValueType()));
2798 // Increment the pointer, VAList, to the next vaarg
2799 Tmp1 = DAG.getNode(ISD::ADD, DL, VAList.getValueType(), VAList,
2801 DL, VAList.getValueType()));
2803 // Store the incremented VAList to the legalized pointer
2810 // Load the actual argument out of the pointer VAList
2811 return DAG.getLoad(VT, DL, Tmp1, VAList, MachinePointerInfo(SrcV));