1 ; SPDX-License-Identifier: GPL-2.0
3 ; mulsi3 for H8/300H - based on Renesas SH implementation
9 ; 16b * 16b = 372 states (worst case)
10 ; 32b * 32b = 724 states (worst case)
14 ; 16b * 16b = 48 states
15 ; 16b * 32b = 72 states
16 ; 32b * 32b = 92 states
21 mov.w r1,r2 ; ( 2 states) b * d
22 mulxu r0,er2 ; (22 states)
24 mov.w e0,r3 ; ( 2 states) a * d
25 beq L_skip1 ; ( 4 states)
26 mulxu r1,er3 ; (22 states)
27 add.w r3,e2 ; ( 2 states)
30 mov.w e1,r3 ; ( 2 states) c * b
31 beq L_skip2 ; ( 4 states)
32 mulxu r0,er3 ; (22 states)
33 add.w r3,e2 ; ( 2 states)
36 mov.l er2,er0 ; ( 2 states)