I have a list of (64-bit) addresses representing the stack frame, and I want to hash them with a single 64-bit number to help identify those that were seen before. There are no more than 128 addresses.
My current algorithm computes the hash by iterating over the list, xor'ing each address into a hash and rotating the hash 11 bits per clock cycle.
Any best deals?
algorithm hash
Rob walker
source share