Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:VAList

1899   SDValue VAList = VAListLoad;
1904 VAList = getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
1905 getConstant(Align - 1, dl, VAList.getValueType()));
1907 VAList = getNode(ISD::AND, dl, VAList.getValueType(), VAList,
1908 getConstant(-(int64_t)Align, dl, VAList.getValueType()));
1911 // Increment the pointer, VAList, to the next vaarg
1912 Tmp1 = getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
1915 dl, VAList.getValueType()));
1916 // Store the incremented VAList to the legalized pointer
1919 // Load the actual argument out of the pointer VAList
1920 return getLoad(VT, dl, Tmp1, VAList, MachinePointerInfo());