Lines Matching refs:IntValue
1741 uint64_t IntValue = 0; in parsePrimaryExpr() local
1743 IntValue = (IntValue << 8) | CharVal; in parsePrimaryExpr()
1744 Res = MCConstantExpr::create(IntValue, getContext()); in parsePrimaryExpr()
3661 int64_t IntValue = MCE->getValue(); in emitIntValue() local
3662 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in emitIntValue()
3664 getStreamer().emitIntValue(IntValue, Size); in emitIntValue()
3816 APInt IntValue = Asm.getTok().getAPIntVal(); in parseHexOcta() local
3818 if (!IntValue.isIntN(128)) in parseHexOcta()
3820 if (!IntValue.isIntN(64)) { in parseHexOcta()
3821 hi = IntValue.getHiBits(IntValue.getBitWidth() - 64).getZExtValue(); in parseHexOcta()
3822 lo = IntValue.getLoBits(64).getZExtValue(); in parseHexOcta()
3825 lo = IntValue.getZExtValue(); in parseHexOcta()
7160 uint64_t IntValue = MCE->getValue(); in parseDirectiveMSEmit() local
7161 if (!isUInt<8>(IntValue) && !isInt<8>(IntValue)) in parseDirectiveMSEmit()
7176 uint64_t IntValue = MCE->getValue(); in parseDirectiveMSAlign() local
7177 if (!isPowerOf2_64(IntValue)) in parseDirectiveMSAlign()
7180 Info.AsmRewrites->emplace_back(AOK_Align, IDLoc, 5, Log2_64(IntValue)); in parseDirectiveMSAlign()