vote up 2 vote down star

I have a list of (64-bit) addresses that represent a stack frame, and I want to hash these to a single 64-bit number to help identify those that have been seen before. There are at most 128 addresses.

My current algorithm calculates the hash by iterating through the list, xor'ing each address into the hash and rotating the hash by 11 bits per cycle.

Any better suggestions?

flag

72% accept rate
Why hash them at all and not just cast them to intptr_t (assuming C)? – Christoph Dec 22 '08 at 17:20
I think he's trying to check program paths. He's trying to save a path of 64-bit addresses. The CRC64 answer seems good to me. – Harvey Dec 22 '08 at 17:57
He wants to hash the whole list - I didn't get that, thanks for the clarification... – Christoph Dec 22 '08 at 18:11

3 Answers

vote up 4 vote down check

You might consider some sort of CRC.

Perhaps a CRC64.

link|flag
CRC should not be used as a hash, it has very bad collision behaviour. – martinus Dec 25 '08 at 14:20
vote up 3 vote down

There are a couple of nice integer hash functions here, for both 32 and 64 bit: http://www.concentric.net/~Ttwang/tech/inthash.htm

Also there's some written on it here: http://burtleburtle.net/bob/hash/evahash.html

link|flag
vote up 0 vote down

If performance isn't a problem you could try a cryptographic hash - truncate to how many bytes you want.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.