Home | History | Annotate | Download | only in MCJIT

Lines Matching defs:BitWidth

183       unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
184 if (BitWidth == 1)
185 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
186 else if (BitWidth <= 8)
187 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
188 else if (BitWidth <= 16)
189 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
190 else if (BitWidth <= 32)
191 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
192 else if (BitWidth <= 64)
193 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());