Skip to content

Commit

Permalink
crypto/md5: improve ARM64 MD5 performance by optimizing ROUND3 function
Browse files Browse the repository at this point in the history
This commit enhances the performance of the MD5 functionality on ARM64 architecture by optimizing the ROUND3 function in the `md5block_arm64.s` assembly file.

1.Refactored the `ROUND3` macro to improve the computation order, introducing a new `ROUND3FIRST` macro to handle the initial calculation more efficiently.
2.Optimized the XOR operations in the `ROUND3` macro to reduce unnecessary instructions and improve parallelism within the ARM64 architecture.

Performance testing was conducted on an ARM64 Linux machine using Go's benchmark tool. The benchmarks were run 10 times each to ensure statistical significance. The following results were observed:

| Benchmark             | Old Time (sec/op) | New Time (sec/op) | Change |
|-----------------------|-------------------|-------------------|--------|
| Hash8Bytes-8          | 175.0ns  2%      | 175.0ns  1%      | ~      |
| Hash1K-8              | 2.065µs  0%      | 2.060µs  0%      | -0.22% |
| Hash8K-8              | 15.31µs  0%      | 15.29µs  0%      | -0.11% |
| Hash8BytesUnaligned-8 | 174.0ns  1%      | 174.0ns  1%      | ~      |
| Hash1KUnaligned-8     | 2.067µs  0%      | 2.059µs  0%      | -0.41% |
| Hash8KUnaligned-8     | 15.44µs  0%      | 15.45µs  0%      | ~      |

    In terms of throughput:

| Benchmark             | Old Throughput (B/s) | New Throughput (B/s) | Change |
|-----------------------|----------------------|----------------------|--------|
| Hash8Bytes-8          | 43.58MiB/s  2%      | 43.69MiB/s  0%      | +0.24% |
| Hash1K-8              | 473.1MiB/s  0%      | 474.0MiB/s  0%      | +0.20% |
| Hash8K-8              | 510.4MiB/s  0%      | 511.0MiB/s  0%      | +0.11% |
| Hash8BytesUnaligned-8 | 43.80MiB/s  0%      | 43.82MiB/s  0%      | ~      |
| Hash1KUnaligned-8     | 472.5MiB/s  0%      | 474.3MiB/s  0%      | +0.38% |
| Hash8KUnaligned-8     | 506.1MiB/s  0%      | 505.8MiB/s  0%      | ~      |

When testing with large files (e.g., a 3GB file), the runtime was reduced from 8.65 seconds to 7.39 seconds, resulting in an approximate 9% reduction in execution time. This demonstrates a more significant performance gain when handling larger datasets.

Overall, these optimizations provide modest improvements for small input sizes and more noticeable performance benefits when processing larger files, especially in memory-intensive workloads like file hashing.
  • Loading branch information
Jade Zhao authored and wangqiang committed Sep 6, 2024
1 parent 6f5d774 commit 3149567
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions src/crypto/md5/md5block_arm64.s
Original file line number Diff line number Diff line change
Expand Up @@ -93,18 +93,28 @@ loop:
MOVW (5*4)(R1), R8
MOVW R6, R9

#define ROUND3FIRST(a, b, c, d, index, const, shift) \
MOVW d, R9; \
EORW c, R9; \
EORW b, R9; \
ADDW $const, a; \
ADDW R8, a; \
MOVW (index*4)(R1),R8; \
ADDW R9, a; \
RORW $(32-shift), a; \
ADDW b, a

#define ROUND3(a, b, c, d, index, const, shift) \
EORW a, R9; \
EORW b, R9; \
ADDW $const, a; \
ADDW R8, a; \
MOVW (index*4)(R1), R8; \
EORW d, R9; \
EORW b, R9; \
ADDW R9, a; \
RORW $(32-shift), a; \
MOVW b, R9; \
ADDW b, a

ROUND3(R4,R5,R6,R7, 8,0xfffa3942, 4);
ROUND3FIRST(R4,R5,R6,R7, 8,0xfffa3942, 4);
ROUND3(R7,R4,R5,R6,11,0x8771f681,11);
ROUND3(R6,R7,R4,R5,14,0x6d9d6122,16);
ROUND3(R5,R6,R7,R4, 1,0xfde5380c,23);
Expand Down

0 comments on commit 3149567

Please sign in to comment.