aboutsummaryrefslogtreecommitdiffstats
path: root/modules/alg_amd64/modinfo.txt
Commit message (Collapse)AuthorAgeFilesLines
* Rename alg_amd64 to asm_amd64lloyd2008-09-071-37/+0
| | | | | | Namespace exposed SHA-1 function with botan_ prefix. Add start of mp_monty for x86-64 assembly
* Disable all-asm mp_mulop for nowlloyd2008-09-051-2/+2
|
* Change the syntax from load_on: to load_on (since that way configure.pl canlloyd2007-10-221-1/+1
| | | | | | | | | | | use the generic variable reading routines). Instead of hardcoding the module sets (historically, 'unix', 'beos', and 'win32') into the script, have each module specify which group(s) (if any) it should be considered a member of in its modinfo.txt file. Add a new module set compression which contains (currently) the zlib and bzip2 modules.
* Check in an initial assembler implementation of SHA-1 for x86-64 systems.lloyd2007-03-121-1/+4
| | | | | It is not amazingly optimized, about 5% faster than what GCC 4.1.1 does on my Core2 with the normal C++ code, but it's a start.
* Provide a more flexible mechanism for specifying which modules are loaded.lloyd2007-03-121-0/+4
| | | | | | | | | | | | | Now three classes are defined: 'request', 'auto', and 'asm_ok'. The 'auto' class is loaded automatically if the platform support matches up with what we are building for (this is the former default). The 'request' mode means it is only loaded if specifically requested by name. The 'asm_ok' module is marked for all modules that use any assembler (including inline assembler). This normally functions like 'auto', unless --debug is passed to configure, in which case it is treated as 'request'. Modules which do not specify a load behavior are given a default of 'request'.
* Add Solaris to the allowed platforms for alg_amd64 and alg_ia32. Untested,lloyd2007-03-041-0/+1
| | | | but should work as Solaris is ELF-based.
* Rename the mp_muladd source files to mp_muloplloyd2006-12-151-7/+2
|
* Enable the alg_amd64 module under Intel C++ as well (looks like ICC knowslloyd2006-11-241-0/+1
| | | | how to deal with .S asm files)
* Remove solaris from the list of OK platforms for assembly; Solaris aslloyd2006-11-061-1/+0
| | | | | doesn't seem to like the files for some reason that I don't feel like getting into right now.
* Initial x86-64 assembly code for the inner multiply-add loop.lloyd2006-09-241-0/+34