]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
AVR: Speed up __umulhisi3 for small devices with MUL.
authorGeorg-Johann Lay <avr@gjlay.de>
Fri, 4 Apr 2025 20:01:43 +0000 (22:01 +0200)
committerGeorg-Johann Lay <avr@gjlay.de>
Sat, 5 Apr 2025 10:15:09 +0000 (12:15 +0200)
__umulhisi3 had an "rcall 1f" to save 6 bytes, which is an unreasonable
size gain vs. cycle cost.  Just use the same code on all devices with MUL,
irrespective of program memory size.

libgcc/
* config/avr/lib1funcs.S (__umulhisi3) [Have MUL]: Reduce call
depth by 1.

libgcc/config/avr/lib1funcs.S

index 96f20ca8e64687b68f9d85ff7ca70148e5fbefb1..01208927c6b0a0336cc2a23c0676d11327375910 100644 (file)
@@ -581,19 +581,12 @@ DEFUN __umulhisi3
     mul     A1, B1
     movw    C2, r0
     mul     A0, B1
-#ifdef __AVR_HAVE_JMP_CALL__
-    ;; This function is used by many other routines, often multiple times.
-    ;; Therefore, if the flash size is not too limited, avoid the RCALL
-    ;; and inverst 6 Bytes to speed things up.
     add     C1, r0
     adc     C2, r1
     clr     __zero_reg__
     adc     C3, __zero_reg__
-#else
-    rcall   1f
-#endif
     mul     A1, B0
-1:  add     C1, r0
+    add     C1, r0
     adc     C2, r1
     clr     __zero_reg__
     adc     C3, __zero_reg__