Difference between revisions of "User:Ssvb"

From D Wiki
Jump to: navigation, search
(associative arrays gotchas)
(Associative arrays and hash collisions: ahash)
Line 41: Line 41:
 
* https://github.com/google/highwayhash ("Defending against hash flooding" section)
 
* https://github.com/google/highwayhash ("Defending against hash flooding" section)
 
* https://github.com/google/highwayhash/issues/28
 
* https://github.com/google/highwayhash/issues/28
 +
* https://github.com/tkaitchuck/aHash/blob/master/compare/readme.md

Revision as of 03:54, 18 February 2022

GDC tips and tricks

GDC 11+ requires "-flto" or "-fno-weak-templates" option to avoid a major performance regression: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102765

Shared library linking workaround to run phobos unit tests: https://bugzilla.gdcproject.org/show_bug.cgi?id=199

Demangle symbols: https://dlang.org/phobos/std_demangle.html

Mingw build and test instructions: TODO

Arithmetic overflows

TODO: create a new DIP? https://forum.dlang.org/post/rclilxjpnjvexggncfhd@forum.dlang.org

TODO: Atomic operations and arithmetic overflows?

TODO: Unsigned overflows?

GDC supports "-ftrapv" easter egg option for trapping signed overflows.

Relevant links:

GCC history of -fno-strict-aliasing and -fwrapv:

Associative arrays and hash collisions

https://forum.dlang.org/post/navsnrjweslsqeaawsev@forum.dlang.org

Relevant links: