Lines Matching refs:IntValue
1750 uint64_t IntValue = 0; in parsePrimaryExpr() local
1752 IntValue = (IntValue << 8) | CharVal; in parsePrimaryExpr()
1753 Res = MCConstantExpr::create(IntValue, getContext()); in parsePrimaryExpr()
3645 int64_t IntValue = MCE->getValue(); in emitIntValue() local
3646 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in emitIntValue()
3648 getStreamer().emitIntValue(IntValue, Size); in emitIntValue()
3800 APInt IntValue = Asm.getTok().getAPIntVal(); in parseHexOcta() local
3802 if (!IntValue.isIntN(128)) in parseHexOcta()
3804 if (!IntValue.isIntN(64)) { in parseHexOcta()
3805 hi = IntValue.getHiBits(IntValue.getBitWidth() - 64).getZExtValue(); in parseHexOcta()
3806 lo = IntValue.getLoBits(64).getZExtValue(); in parseHexOcta()
3809 lo = IntValue.getZExtValue(); in parseHexOcta()
7148 uint64_t IntValue = MCE->getValue(); in parseDirectiveMSEmit() local
7149 if (!isUInt<8>(IntValue) && !isInt<8>(IntValue)) in parseDirectiveMSEmit()
7164 uint64_t IntValue = MCE->getValue(); in parseDirectiveMSAlign() local
7165 if (!isPowerOf2_64(IntValue)) in parseDirectiveMSAlign()
7168 Info.AsmRewrites->emplace_back(AOK_Align, IDLoc, 5, Log2_64(IntValue)); in parseDirectiveMSAlign()