Home | History | Annotate | Download | only in SelectionDAG

Lines Matching defs:AllocSize

3241   SDValue AllocSize = getValue(I.getArraySize());
3244 if (AllocSize.getValueType() != IntPtr)
3245 AllocSize = DAG.getZExtOrTrunc(AllocSize, getCurSDLoc(), IntPtr);
3247 AllocSize = DAG.getNode(ISD::MUL, getCurSDLoc(), IntPtr,
3248 AllocSize,
3260 AllocSize = DAG.getNode(ISD::ADD, getCurSDLoc(),
3261 AllocSize.getValueType(), AllocSize,
3265 AllocSize = DAG.getNode(ISD::AND, getCurSDLoc(),
3266 AllocSize.getValueType(), AllocSize,
3269 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) };
3270 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other);