projects
/
python3.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7a2b0c
)
Use aligned access for _sha3 module on ARM.
author
Dave Jones
<dave.jones@canonical.com>
Mon, 19 Oct 2020 09:51:18 +0000
(10:51 +0100)
committer
Matthias Klose
<doko@debian.org>
Mon, 19 Oct 2020 09:51:18 +0000
(10:51 +0100)
Gbp-Pq: Name arm-alignment.diff
Modules/_sha3/sha3module.c
patch
|
blob
|
history
diff --git
a/Modules/_sha3/sha3module.c
b/Modules/_sha3/sha3module.c
index c826b42df13f92f7f026cc3b00230786d78147a5..392ae537a540a5ba3eb2b316e99349acd96224c7 100644
(file)
--- a/
Modules/_sha3/sha3module.c
+++ b/
Modules/_sha3/sha3module.c
@@
-64,6
+64,12
@@
#define PLATFORM_BYTE_ORDER IS_BIG_ENDIAN
#endif
+/* Bus error on 32-bit ARM due to un-aligned memory accesses; 64-bit ARM
+ * doesn't complain but un-aligned memory accesses are sub-optimal */
+#if defined(__arm__) || defined(__aarch64__)
+#define NO_MISALIGNED_ACCESSES 1
+#endif
+
/* mangle names */
#define KeccakF1600_FastLoop_Absorb _PySHA3_KeccakF1600_FastLoop_Absorb
#define Keccak_HashFinal _PySHA3_Keccak_HashFinal