Home | History | Annotate | Download | only in MCJIT

Lines Matching full:bitwidth

557       unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
558 if (BitWidth == 1)
559 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
560 else if (BitWidth <= 8)
561 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
562 else if (BitWidth <= 16)
563 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
564 else if (BitWidth <= 32)
565 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
566 else if (BitWidth <= 64)
567 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());