Home | History | Annotate | Download | only in X86

Lines Matching refs:ArgSize

9060   uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
9068 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
9070 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
9089 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
11361 // 6 ) ArgSize : Size (in bytes) of vararg type
11375 unsigned ArgSize = MI->getOperand(6).getImm();
11407 /* Align ArgSize to a multiple of 8 */
11408 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;