-
Notifications
You must be signed in to change notification settings - Fork 47
HOL-Light: add rej_uniform_eta proofs for AArch64 #1040
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
mkannwischer marked this conversation as resolved.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| # Copyright (c) The mldsa-native project authors | ||
| # SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT | ||
|
|
||
| include ../Makefile_params.common | ||
|
|
||
| HARNESS_ENTRY = harness | ||
| HARNESS_FILE = rej_uniform_eta_native_aarch64_harness | ||
|
|
||
| # This should be a unique identifier for this proof, and will appear on the | ||
| # Litani dashboard. It can be human-readable and contain spaces if you wish. | ||
| PROOF_UID = rej_uniform_eta_native_aarch64 | ||
|
|
||
| # We need to set MLD_CHECK_APIS as otherwise mldsa/src/native/api.h won't be | ||
| # included, which contains the CBMC specifications. | ||
| DEFINES += -DMLD_CONFIG_USE_NATIVE_BACKEND_ARITH -DMLD_CONFIG_ARITH_BACKEND_FILE="\"$(SRCDIR)/mldsa/src/native/aarch64/meta.h\"" -DMLD_CHECK_APIS | ||
| INCLUDES += | ||
|
|
||
| REMOVE_FUNCTION_BODY += | ||
| UNWINDSET += | ||
|
|
||
| PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c | ||
| PROJECT_SOURCES += $(SRCDIR)/mldsa/src/poly_kl.c | ||
|
|
||
| # ML-DSA-44 and ML-DSA-87 use eta=2; ML-DSA-65 uses eta=4. | ||
| ifeq ($(MLD_CONFIG_PARAMETER_SET),44) | ||
| CHECK_FUNCTION_CONTRACTS=mld_rej_uniform_eta2_native | ||
| USE_FUNCTION_CONTRACTS=mld_rej_uniform_eta2_aarch64_asm | ||
| else ifeq ($(MLD_CONFIG_PARAMETER_SET),65) | ||
| CHECK_FUNCTION_CONTRACTS=mld_rej_uniform_eta4_native | ||
| USE_FUNCTION_CONTRACTS=mld_rej_uniform_eta4_aarch64_asm | ||
| else ifeq ($(MLD_CONFIG_PARAMETER_SET),87) | ||
| CHECK_FUNCTION_CONTRACTS=mld_rej_uniform_eta2_native | ||
| USE_FUNCTION_CONTRACTS=mld_rej_uniform_eta2_aarch64_asm | ||
| endif | ||
| USE_FUNCTION_CONTRACTS += mld_sys_check_capability | ||
| APPLY_LOOP_CONTRACTS=on | ||
| USE_DYNAMIC_FRAMES=1 | ||
|
|
||
| # Disable any setting of EXTERNAL_SAT_SOLVER, and choose SMT backend instead | ||
| EXTERNAL_SAT_SOLVER= | ||
| CBMCFLAGS=--bitwuzla | ||
|
|
||
| FUNCTION_NAME = rej_uniform_eta_native_aarch64 | ||
|
|
||
| # If this proof is found to consume huge amounts of RAM, you can set the | ||
| # EXPENSIVE variable. With new enough versions of the proof tools, this will | ||
| # restrict the number of EXPENSIVE CBMC jobs running at once. See the | ||
| # documentation in Makefile.common under the "Job Pools" heading for details. | ||
| # EXPENSIVE = true | ||
|
|
||
| # This function is large enough to need... | ||
| CBMC_OBJECT_BITS = 8 | ||
|
|
||
| include ../Makefile.common |
29 changes: 29 additions & 0 deletions
29
proofs/cbmc/rej_uniform_eta_native_aarch64/rej_uniform_eta_native_aarch64_harness.c
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| // Copyright (c) The mldsa-native project authors | ||
| // SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT | ||
|
|
||
| #include <stdint.h> | ||
| #include "cbmc.h" | ||
| #include "params.h" | ||
|
|
||
| #if MLDSA_ETA == 2 | ||
| int mld_rej_uniform_eta2_native(int32_t *r, unsigned len, const uint8_t *buf, | ||
| unsigned buflen); | ||
| #elif MLDSA_ETA == 4 | ||
| int mld_rej_uniform_eta4_native(int32_t *r, unsigned len, const uint8_t *buf, | ||
| unsigned buflen); | ||
| #endif | ||
|
|
||
| void harness(void) | ||
| { | ||
| int32_t *r; | ||
| unsigned len; | ||
| const uint8_t *buf; | ||
| unsigned buflen; | ||
| int t; | ||
|
|
||
| #if MLDSA_ETA == 2 | ||
| t = mld_rej_uniform_eta2_native(r, len, buf, buflen); | ||
| #elif MLDSA_ETA == 4 | ||
| t = mld_rej_uniform_eta4_native(r, len, buf, buflen); | ||
| #endif | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
131 changes: 131 additions & 0 deletions
131
proofs/hol_light/aarch64/mldsa/rej_uniform_eta2_aarch64_asm.S
|
mkannwischer marked this conversation as resolved.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,131 @@ | ||
| /* | ||
| * Copyright (c) The mldsa-native project authors | ||
| * Copyright (c) The mlkem-native project authors | ||
| * SPDX-License-Identifier: Apache-2.0 OR ISC OR MIT | ||
| */ | ||
|
|
||
|
|
||
| /* | ||
| * WARNING: This file is auto-derived from the mldsa-native source file | ||
| * dev/aarch64_opt/src/rej_uniform_eta2_aarch64_asm.S using scripts/simpasm. Do not modify it directly. | ||
| */ | ||
|
|
||
| .text | ||
| .balign 4 | ||
| #ifdef __APPLE__ | ||
| .global _PQCP_MLDSA_NATIVE_MLDSA44_rej_uniform_eta2_aarch64_asm | ||
| _PQCP_MLDSA_NATIVE_MLDSA44_rej_uniform_eta2_aarch64_asm: | ||
| #else | ||
| .global PQCP_MLDSA_NATIVE_MLDSA44_rej_uniform_eta2_aarch64_asm | ||
| PQCP_MLDSA_NATIVE_MLDSA44_rej_uniform_eta2_aarch64_asm: | ||
| #endif | ||
|
|
||
| .cfi_startproc | ||
| sub sp, sp, #0x240 | ||
| .cfi_adjust_cfa_offset 0x240 | ||
| mov x7, #0x1 // =1 | ||
| movk x7, #0x2, lsl #16 | ||
| movk x7, #0x4, lsl #32 | ||
| movk x7, #0x8, lsl #48 | ||
| mov v31.d[0], x7 | ||
| mov x7, #0x10 // =16 | ||
| movk x7, #0x20, lsl #16 | ||
| movk x7, #0x40, lsl #32 | ||
| movk x7, #0x80, lsl #48 | ||
| mov v31.d[1], x7 | ||
| movi v30.8h, #0xf | ||
| mov x8, sp | ||
| mov x7, x8 | ||
| mov x11, #0x0 // =0 | ||
| eor v16.16b, v16.16b, v16.16b | ||
|
|
||
| Lrej_uniform_eta2_initial_zero: | ||
| str q16, [x7], #0x40 | ||
| stur q16, [x7, #-0x30] | ||
| stur q16, [x7, #-0x20] | ||
| stur q16, [x7, #-0x10] | ||
| add x11, x11, #0x20 | ||
| cmp x11, #0x100 | ||
| b.lt Lrej_uniform_eta2_initial_zero | ||
| mov x7, x8 | ||
| mov x9, #0x0 // =0 | ||
| mov x4, #0x100 // =256 | ||
|
|
||
| Lrej_uniform_eta2_loop8: | ||
| cmp x9, x4 | ||
| b.hs Lrej_uniform_eta2_memory_copy | ||
| sub x2, x2, #0x8 | ||
| ld1 { v0.8b }, [x1], #8 | ||
| movi v26.8b, #0xf | ||
| and v27.8b, v0.8b, v26.8b | ||
| ushr v28.8b, v0.8b, #0x4 | ||
| zip1 v26.8b, v27.8b, v28.8b | ||
| zip2 v29.8b, v27.8b, v28.8b | ||
| ushll v16.8h, v26.8b, #0x0 | ||
| ushll v17.8h, v29.8b, #0x0 | ||
| cmhi v4.8h, v30.8h, v16.8h | ||
| cmhi v5.8h, v30.8h, v17.8h | ||
| and v4.16b, v4.16b, v31.16b | ||
| and v5.16b, v5.16b, v31.16b | ||
| uaddlv s20, v4.8h | ||
| uaddlv s21, v5.8h | ||
| fmov w12, s20 | ||
| fmov w13, s21 | ||
| ldr q24, [x3, x12, lsl #4] | ||
| ldr q25, [x3, x13, lsl #4] | ||
| cnt v4.16b, v4.16b | ||
| cnt v5.16b, v5.16b | ||
| uaddlv s20, v4.8h | ||
| uaddlv s21, v5.8h | ||
| fmov w12, s20 | ||
| fmov w13, s21 | ||
| tbl v16.16b, { v16.16b }, v24.16b | ||
| tbl v17.16b, { v17.16b }, v25.16b | ||
| st1 { v16.8h }, [x7] | ||
| add x7, x7, x12, lsl #1 | ||
| st1 { v17.8h }, [x7] | ||
| add x7, x7, x13, lsl #1 | ||
| add x12, x12, x13 | ||
| add x9, x9, x12 | ||
| cmp x2, #0x8 | ||
| b.hs Lrej_uniform_eta2_loop8 | ||
|
|
||
| Lrej_uniform_eta2_memory_copy: | ||
| cmp x9, x4 | ||
| csel x9, x9, x4, lo | ||
| mov w7, #0x199a // =6554 | ||
| dup v26.8h, w7 | ||
| movi v27.8h, #0x5 | ||
| movi v7.8h, #0x2 | ||
| mov x11, #0x0 // =0 | ||
| mov x7, x8 | ||
|
|
||
| Lrej_uniform_eta2_final_copy: | ||
| ldr q16, [x7], #0x20 | ||
| ldur q18, [x7, #-0x10] | ||
| sqdmulh v28.8h, v16.8h, v26.8h | ||
| mls v16.8h, v28.8h, v27.8h | ||
| sqdmulh v28.8h, v18.8h, v26.8h | ||
| mls v18.8h, v28.8h, v27.8h | ||
| sub v16.8h, v7.8h, v16.8h | ||
| sub v18.8h, v7.8h, v18.8h | ||
| sshll2 v17.4s, v16.8h, #0x0 | ||
| sshll v16.4s, v16.4h, #0x0 | ||
| sshll2 v19.4s, v18.8h, #0x0 | ||
| sshll v18.4s, v18.4h, #0x0 | ||
| str q16, [x0], #0x40 | ||
| stur q17, [x0, #-0x30] | ||
| stur q18, [x0, #-0x20] | ||
| stur q19, [x0, #-0x10] | ||
| add x11, x11, #0x10 | ||
| cmp x11, #0x100 | ||
| b.lt Lrej_uniform_eta2_final_copy | ||
| mov x0, x9 | ||
| add sp, sp, #0x240 | ||
| .cfi_adjust_cfa_offset -0x240 | ||
| ret | ||
| .cfi_endproc | ||
|
|
||
| #if defined(__ELF__) | ||
| .section .note.GNU-stack,"",%progbits | ||
| #endif |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.