Lines Matching defs:VAList
2706 SDValue VAList = VAListLoad;
2709 VAList = getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
2710 getConstant(MA->value() - 1, dl, VAList.getValueType()));
2712 VAList = getNode(
2713 ISD::AND, dl, VAList.getValueType(), VAList,
2714 getSignedConstant(-(int64_t)MA->value(), dl, VAList.getValueType()));
2717 // Increment the pointer, VAList, to the next vaarg
2718 Tmp1 = getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
2721 dl, VAList.getValueType()));
2722 // Store the incremented VAList to the legalized pointer
2725 // Load the actual argument out of the pointer VAList
2726 return getLoad(VT, dl, Tmp1, VAList, MachinePointerInfo());