|
4 |
edited tags
|
||
|
3 | formatted asm code | ||
|
I am in need of the fastest hash function possible in Delphi 2009 that will create hashed values from a Unicode string that will distribute fairly randomly into buckets. I originally started with Gabr's HashOf function from GpStringHash:
But I found that this did not produce good numbers from Unicode strings. I noted that Gabr's routines have not been updated to Delphi 2009. Then I discovered HashNameMBCS in SysUtils of Delphi 2009 and translated it to this simple function (where "string" is a Delphi 2009 Unicode string):
I thought this was pretty good until I looked at the CPU window and saw the assembler code it generated:
This seems to contain quite a bit more assembler code than Gabr's code. Speed is of the essence. Is there anything I can do to improve either the pascal code I wrote or the assembler that my code generated? |
||||
|
2 | Delphi HashOf function had wrong loop | ||
|
I am in need of the fastest hash function possible in Delphi 2009 that will create hashed values from a Unicode string that will distribute fairly randomly into buckets. I originally started with Gabr's HashOf function from GpStringHash:
But I found that this did not produce good numbers from Unicode strings. I noted that Gabr's routines have not been updated to Delphi 2009. Then I discovered HashNameMBCS in SysUtils of Delphi 2009 and translated it to this simple function (where "string" is a Delphi 2009 Unicode string):
I thought this was pretty good until I looked at the CPU window and saw the assembler code it generated:
This seems to contain quite a bit more assembler code than Gabr's code. Speed is of the essence. Is there anything I can do to improve either the pascal code I wrote or the assembler that my code generated? |
||||
|
1 |
|
||
