public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-4658] ARC: Split asl dst, 1, src into bset dst, 0, src to implement 1<<x.
@ 2023-10-16 12:04 Roger Sayle
  0 siblings, 0 replies; only message in thread
From: Roger Sayle @ 2023-10-16 12:04 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:817a701681924706a8ef035e107b9d45d21a2360

commit r14-4658-g817a701681924706a8ef035e107b9d45d21a2360
Author: Roger Sayle <roger@nextmovesoftware.com>
Date:   Mon Oct 16 13:03:09 2023 +0100

    ARC: Split asl dst,1,src into bset dst,0,src to implement 1<<x.
    
    This patch adds a pre-reload splitter to arc.md, to use the bset (set
    specific bit instruction) to implement 1<<x (i.e. left shifts of one)
    on ARC processors that don't have a barrel shifter.
    
    Currently,
    
    int foo(int x) {
      return 1 << x;
    }
    
    when compiled with -O2 -mcpu=em is compiled as a loop:
    
    foo:    mov_s   r2,1    ;3
            and.f lp_count,r0, 0x1f
            lpnz    2f
            add r2,r2,r2
            nop
    2:      # end single insn loop
            j_s.d   [blink]
            mov_s   r0,r2   ;4
    
    with this patch we instead generate a single instruction:
    
    foo:    bset    r0,0,r0
            j_s     [blink]
    
    2023-10-16  Roger Sayle  <roger@nextmovesoftware.com>
    
    gcc/ChangeLog
            * config/arc/arc.md (*ashlsi3_1): New pre-reload splitter to
            use bset dst,0,src to implement 1<<x on !TARGET_BARREL_SHIFTER.

Diff:
---
 gcc/config/arc/arc.md | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/gcc/config/arc/arc.md b/gcc/config/arc/arc.md
index a936a8be53d9..22af0bf47ddb 100644
--- a/gcc/config/arc/arc.md
+++ b/gcc/config/arc/arc.md
@@ -3421,6 +3421,22 @@ archs4x, archs4xd"
    (set_attr "predicable" "no,no,yes,no,no")
    (set_attr "cond" "nocond,canuse,canuse,nocond,nocond")])
 
+;; Split asl dst,1,src into bset dst,0,src.
+(define_insn_and_split "*ashlsi3_1"
+  [(set (match_operand:SI 0 "dest_reg_operand")
+	(ashift:SI (const_int 1)
+		   (match_operand:SI 1 "nonmemory_operand")))]
+  "!TARGET_BARREL_SHIFTER
+   && arc_pre_reload_split ()"
+  "#"
+  "&& 1"
+  [(set (match_dup 0)
+	(ior:SI (ashift:SI (const_int 1) (match_dup 1))
+		(const_int 0)))]
+  ""
+  [(set_attr "type" "shift")
+   (set_attr "length" "8")])
+
 (define_insn_and_split "*ashlsi3_nobs"
   [(set (match_operand:SI 0 "dest_reg_operand")
 	(ashift:SI (match_operand:SI 1 "register_operand")

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-10-16 12:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-16 12:04 [gcc r14-4658] ARC: Split asl dst, 1, src into bset dst, 0, src to implement 1<<x Roger Sayle

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).