Home | History | Annotate | Download | only in JIT

Lines Matching refs:BitWidth

458       unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
459 if (BitWidth == 1)
460 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
461 else if (BitWidth <= 8)
462 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
463 else if (BitWidth <= 16)
464 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
465 else if (BitWidth <= 32)
466 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
467 else if (BitWidth <= 64)
468 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());