Well, I really need to get the fastest possible implementation here.  I figure the answer probably involves creating some tables with pre-calculated mask values like so:

    MaxTable:
        0       0000 0000 0000 0001    0x0001
        1       0000 0000 0000 0011    0x0003
        2       0000 0000 0000 0111    0x0007
        3       0000 0000 0000 1111    0x000F
        4       0000 0000 0001 1111    0x001F
        5       0000 0000 0011 1111    0x003F
        6       0000 0000 0111 1111    0x007F
        7       0000 0000 1111 1111    0x00FF
        8       0000 0001 1111 1111    0x01FF
        9       0000 0011 1111 1111    0x03FF
        10      0000 0111 1111 1111    0x07FF
        11      0000 1111 1111 1111    0x0FFF
        12      0001 1111 1111 1111    0x1FFF 
        13      0011 1111 1111 1111    0x3FFF
        14      0111 1111 1111 1111    0x7FFF
        15      1111 1111 1111 1111    0xFFFF
        
    MinTable:
        0       0000 0000 0000 0000    0x0000
        1       0000 0000 0000 0001    0x0001
        2       0000 0000 0000 0011    0x0003
        3       0000 0000 0000 0111    0x0007
        4       0000 0000 0000 1111    0x000F
        5       0000 0000 0001 1111    0x001F
        6       0000 0000 0011 1111    0x003F
        7       0000 0000 0111 1111    0x007F
        8       0000 0000 1111 1111    0x00FF
        9       0000 0001 1111 1111    0x01FF
        10      0000 0011 1111 1111    0x03FF
        11      0000 0111 1111 1111    0x07FF
        12      0000 1111 1111 1111    0x0FFF
        13      0001 1111 1111 1111    0x1FFF
        14      0011 1111 1111 1111    0x3FFF
        15      0111 1111 1111 1111    0x7FFF

I still need to figure this out, but as a simple implementation for handling values no larger than 31 I can do:

MaxTable[x2] ^= MinTable[x1]

It would be trivial to use just one table instead, but I figure I save a decrement's worth of execution time without it.  I'll try to figure out how to use an array for this next.