Home | History | Annotate | Download | only in MCJIT

Lines Matching refs:BitWidth

248       unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
249 if (BitWidth == 1)
250 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
251 else if (BitWidth <= 8)
252 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
253 else if (BitWidth <= 16)
254 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
255 else if (BitWidth <= 32)
256 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
257 else if (BitWidth <= 64)
258 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());