Home | History | Annotate | Download | only in MCJIT

Lines Matching full:bitwidth

289       unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
290 if (BitWidth == 1)
291 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
292 else if (BitWidth <= 8)
293 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
294 else if (BitWidth <= 16)
295 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
296 else if (BitWidth <= 32)
297 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
298 else if (BitWidth <= 64)
299 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());