public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "sh1.gccbug at tikouka dot nz" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/113362] New: RISCV64 divide and remainder with the same operands generates two divide operations
Date: Fri, 12 Jan 2024 19:40:56 +0000	[thread overview]
Message-ID: <bug-113362-4@http.gcc.gnu.org/bugzilla/> (raw)

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113362

            Bug ID: 113362
           Summary: RISCV64 divide and remainder with the same operands
                    generates two divide operations
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: rtl-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sh1.gccbug at tikouka dot nz
  Target Milestone: ---

Input:

void fn(uint64_t out[2], uint64_t x, uint64_t y) {
    out[0] = x / y;
    out[1] = x % y;
}

Output:

fn(unsigned long*, unsigned long, unsigned long):
        divu    a5,a1,a2
        remu    a1,a1,a2
        sd      a5,0(a0)
        sd      a1,8(a0)
        ret

https://godbolt.org/z/15Tn9PqGe

The `remu` operation may be better off replaced with a multiply and subtract
like how LLVM does it.  Otherwise it may result in a redundant, slow division
operation.

             reply	other threads:[~2024-01-12 19:40 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-12 19:40 sh1.gccbug at tikouka dot nz [this message]
2024-01-12 20:03 ` [Bug target/113362] " pinskia at gcc dot gnu.org
2024-01-12 20:08 ` pinskia at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-113362-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).