Skip to content
Snippets Groups Projects
Commit 64fbd2f0 authored by Niels Möller's avatar Niels Möller
Browse files

New asm directory arm/v6. Moved aes functions using the uxtb instruction there.

parent 2ec13188
No related branches found
No related tags found
No related merge requests found
2013-05-15 Niels Möller <nisse@lysator.liu.se>
* configure.ac (asm_path): Handle armv6 and armv7 differently from
older ARMs. Add the arm/v6 directory to asm_path when appropriate.
* arm/v6/aes-encrypt-internal.asm: Moved into v6 directory. Uses
the uxtb instruction which is not available for older ARMs.
* arm/v6/aes-decrypt-internal.asm: Likewise.
2013-05-03 Niels Möller <nisse@lysator.liu.se> 2013-05-03 Niels Möller <nisse@lysator.liu.se>
* cast128.c: Adapt to new struct cast128_ctx. * cast128.c: Adapt to new struct cast128_ctx.
......
File moved
File moved
...@@ -237,14 +237,18 @@ if test "x$enable_assembler" = xyes ; then ...@@ -237,14 +237,18 @@ if test "x$enable_assembler" = xyes ; then
asm_path=sparc32 asm_path=sparc32
fi fi
;; ;;
arm*) armv6* | armv7*)
NETTLE_CHECK_ARM_NEON NETTLE_CHECK_ARM_NEON
asm_path=arm asm_path="arm/v6 arm"
if test "x$enable_arm_neon" = xyes ; then if test "x$enable_arm_neon" = xyes ; then
asm_path="arm/neon $asm_path" asm_path="arm/neon $asm_path"
fi fi
;; ;;
arm*)
asm_path=arm
;;
*) *)
enable_assembler=no enable_assembler=no
;; ;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment