Home | History | Annotate | Download | only in JIT

Lines Matching defs:BitWidth

453       unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
454 if (BitWidth == 1)
455 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
456 else if (BitWidth <= 8)
457 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
458 else if (BitWidth <= 16)
459 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
460 else if (BitWidth <= 32)
461 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
462 else if (BitWidth <= 64)
463 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());