Lines Matching refs:IntValue
3200 uint64_t IntValue = MCE->getValue(); in parseDirectiveValue() local
3201 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in parseDirectiveValue()
3203 getStreamer().emitIntValue(IntValue, Size); in parseDirectiveValue()
3217 APInt IntValue = Asm.getTok().getAPIntVal(); in parseHexOcta() local
3219 if (!IntValue.isIntN(128)) in parseHexOcta()
3221 if (!IntValue.isIntN(64)) { in parseHexOcta()
3222 hi = IntValue.getHiBits(IntValue.getBitWidth() - 64).getZExtValue(); in parseHexOcta()
3223 lo = IntValue.getLoBits(64).getZExtValue(); in parseHexOcta()
3226 lo = IntValue.getZExtValue(); in parseHexOcta()
4895 uint64_t IntValue = MCE->getValue(); in parseDirectiveDCB() local
4896 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in parseDirectiveDCB()
4899 getStreamer().emitIntValue(IntValue, Size); in parseDirectiveDCB()
5801 uint64_t IntValue = MCE->getValue(); in parseDirectiveMSEmit() local
5802 if (!isUInt<8>(IntValue) && !isInt<8>(IntValue)) in parseDirectiveMSEmit()
5817 uint64_t IntValue = MCE->getValue(); in parseDirectiveMSAlign() local
5818 if (!isPowerOf2_64(IntValue)) in parseDirectiveMSAlign()
5821 Info.AsmRewrites->emplace_back(AOK_Align, IDLoc, 5, Log2_64(IntValue)); in parseDirectiveMSAlign()