In a couple of places, hand-coded assembly for cryptographic algorithms is expanded by means of #define macros. This makes no sense, as it does not improve startup time and it bloats the generator. The #define can fairly easily be turned into a function call.
See: generate_md5_implCompress, generate_sha512_implCompress.
See: generate_md5_implCompress, generate_sha512_implCompress.