Home | History | Annotate | Download | only in MCParser

Lines Matching defs:IntValue

2669         uint64_t IntValue = MCE->getValue();
2670 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
2672 getStreamer().EmitIntValue(IntValue, Size);
2704 APInt IntValue = getTok().getAPIntVal();
2708 if (IntValue.isIntN(64)) {
2710 lo = IntValue.getZExtValue();
2711 } else if (IntValue.isIntN(128)) {
2713 hi = IntValue.getHiBits(IntValue.getBitWidth() - 64).getZExtValue();
2714 lo = IntValue.getLoBits(64).getZExtValue();
5008 uint64_t IntValue = MCE->getValue();
5009 if (!isUInt<8>(IntValue) && !isInt<8>(IntValue))
5024 uint64_t IntValue = MCE->getValue();
5025 if (!isPowerOf2_64(IntValue))
5028 Info.AsmRewrites->emplace_back(AOK_Align, IDLoc, 5, Log2_64(IntValue));