Skip to content

Commit

Permalink
remove redundant .equ's
Browse files Browse the repository at this point in the history
  • Loading branch information
mkannwischer committed Nov 6, 2024
1 parent 3ecb619 commit 535fac2
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion examples/naive/intt_dilithium_12_34_56_78.s
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,6 @@ layer34_loop:
// the scope of our work to optimize this: We only want to demonstrate the
// ability of Helight to optimize the core loops.
barrett_const .req r1
.equ const_barrett, 63
movw barrett_const, #:lower16:const_barrett
movt barrett_const, #:upper16:const_barrett
mov lr, #64
Expand Down
1 change: 0 additions & 1 deletion examples/naive/intt_n256_l6_s32_bar.s
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ layer34_loop:

// TEMPORARY: Barrett reduction
barrett_const .req r1
.equ const_barrett, 63
movw barrett_const, #:lower16:const_barrett
movt barrett_const, #:upper16:const_barrett
mov lr, #64
Expand Down
1 change: 0 additions & 1 deletion examples/naive/intt_n256_l6_s32_mont.s
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,6 @@ layer34_loop:
modulus_neg .req r10
neg modulus_neg, modulus
barrett_const .req r1
.equ const_barrett, 63
movw barrett_const, #:lower16:const_barrett
movt barrett_const, #:upper16:const_barrett
mov lr, #64
Expand Down
1 change: 0 additions & 1 deletion examples/naive/intt_n256_l8_s32_bar.s
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ layer34_loop:

// TEMPORARY: Barrett reduction
barrett_const .req r1
.equ const_barrett, 63
movw barrett_const, #:lower16:const_barrett
movt barrett_const, #:upper16:const_barrett
mov lr, #64
Expand Down
1 change: 0 additions & 1 deletion examples/naive/intt_n256_l8_s32_mont.s
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,6 @@ layer34_loop:
modulus_neg .req r10
neg modulus_neg, modulus
barrett_const .req r1
.equ const_barrett, 63
movw barrett_const, #:lower16:const_barrett
movt barrett_const, #:upper16:const_barrett
mov lr, #64
Expand Down
1 change: 0 additions & 1 deletion examples/opt/intt_n256_l6_s32_bar.s
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,6 @@ layer34_loop_end:

// TEMPORARY: Barrett reduction
barrett_const .req r1
.equ const_barrett, 63
movw barrett_const, #:lower16:const_barrett
movt barrett_const, #:upper16:const_barrett
mov lr, #64
Expand Down
1 change: 0 additions & 1 deletion examples/opt/intt_n256_l6_s32_mont.s
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,6 @@ layer34_loop_end:
modulus_neg .req r10
neg modulus_neg, modulus
barrett_const .req r1
.equ const_barrett, 63
movw barrett_const, #:lower16:const_barrett
movt barrett_const, #:upper16:const_barrett
mov lr, #64
Expand Down
1 change: 0 additions & 1 deletion examples/opt/intt_n256_l8_s32_bar.s
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,6 @@ layer34_loop_end:

// TEMPORARY: Barrett reduction
barrett_const .req r1
.equ const_barrett, 63
movw barrett_const, #:lower16:const_barrett
movt barrett_const, #:upper16:const_barrett
mov lr, #64
Expand Down
1 change: 0 additions & 1 deletion examples/opt/intt_n256_l8_s32_mont.s
Original file line number Diff line number Diff line change
Expand Up @@ -1190,7 +1190,6 @@ layer34_loop_end:
modulus_neg .req r10
neg modulus_neg, modulus
barrett_const .req r1
.equ const_barrett, 63
movw barrett_const, #:lower16:const_barrett
movt barrett_const, #:upper16:const_barrett
mov lr, #64
Expand Down

0 comments on commit 535fac2

Please sign in to comment.