Lines Matching defs:VAList
2839 SDValue VAList = VAListLoad;
2842 VAList = DAG.getNode(
2843 ISD::ADD, DL, VAList.getValueType(), VAList,
2844 DAG.getConstant(MA->value() - 1, DL, VAList.getValueType()));
2846 VAList = DAG.getNode(
2847 ISD::AND, DL, VAList.getValueType(), VAList,
2848 DAG.getConstant(-(int64_t)MA->value(), DL, VAList.getValueType()));
2851 // Increment the pointer, VAList, to the next vaarg
2852 Tmp1 = DAG.getNode(ISD::ADD, DL, VAList.getValueType(), VAList,
2854 DL, VAList.getValueType()));
2856 // Store the incremented VAList to the legalized pointer
2863 // Load the actual argument out of the pointer VAList
2864 return DAG.getLoad(VT, DL, Tmp1, VAList, MachinePointerInfo(SrcV));