reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
708 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1; 709 int64_t Exp = (Imm.lshr(52).getSExtValue() & 0x7ff) - 1023; // -1022 to 1023 710 uint64_t Mantissa = Imm.getZExtValue() & 0xfffffffffffffULL;