reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
36 assert(startBit + numBits <= 64 && "Cannot support >64-bit extractions!"); 37 assert(startBit + numBits <= (sizeof(InsnType) * 8) && 40 if (numBits == sizeof(InsnType) * 8) 43 fieldMask = (((InsnType)1 << numBits) - 1) << startBit;