Lines Matching defs:VAList
2425 SDValue VAList = VAListLoad;
2428 VAList = getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
2429 getConstant(MA->value() - 1, dl, VAList.getValueType()));
2431 VAList =
2432 getNode(ISD::AND, dl, VAList.getValueType(), VAList,
2433 getConstant(-(int64_t)MA->value(), dl, VAList.getValueType()));
2436 // Increment the pointer, VAList, to the next vaarg
2437 Tmp1 = getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
2440 dl, VAList.getValueType()));
2441 // Store the incremented VAList to the legalized pointer
2444 // Load the actual argument out of the pointer VAList
2445 return getLoad(VT, dl, Tmp1, VAList, MachinePointerInfo());