Lines Matching defs:IntValue
3217 uint64_t IntValue = MCE->getValue();
3218 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
3220 getStreamer().emitIntValue(IntValue, Size);
3234 APInt IntValue = Asm.getTok().getAPIntVal();
3236 if (!IntValue.isIntN(128))
3238 if (!IntValue.isIntN(64)) {
3239 hi = IntValue.getHiBits(IntValue.getBitWidth() - 64).getZExtValue();
3240 lo = IntValue.getLoBits(64).getZExtValue();
3243 lo = IntValue.getZExtValue();
4964 uint64_t IntValue = MCE->getValue();
4965 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
4968 getStreamer().emitIntValue(IntValue, Size);
5868 uint64_t IntValue = MCE->getValue();
5869 if (!isUInt<8>(IntValue) && !isInt<8>(IntValue))
5884 uint64_t IntValue = MCE->getValue();
5885 if (!isPowerOf2_64(IntValue))
5888 Info.AsmRewrites->emplace_back(AOK_Align, IDLoc, 5, Log2_64(IntValue));