public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jonny Grant <jg@jguk.org>
To: gcc-help <gcc-help@gcc.gnu.org>
Subject: Could __builtin_printf parameters be optimized when being compiled
Date: Wed, 15 Feb 2023 14:18:37 +0000	[thread overview]
Message-ID: <03717f06-9818-0c2a-6625-429887c55a17@jguk.org> (raw)

Hi
Has GCC considered an improvement to "compile out" from the builtin printf the strings? That being to change it to just be something like puts("file /app/example.cpp:4")
I had a look, but couldn't find it being asked before.

This is just a short example to demonstrate.
It would be useful to see the exact string in the debugger "file /app/example.cpp:4", also it saves a few lines of asm.

https://godbolt.org/z/aKz3o6aPd


int main()
{
    __builtin_printf("file %s:%d", __FILE__, __LINE__);
}


.LC0:
        .string "/app/example.cpp"
.LC1:
        .string "file %s:%d"
main:
        subq    $8, %rsp
        movl    $4, %edx
        movl    $.LC0, %esi
        xorl    %eax, %eax
        movl    $.LC1, %edi
        call    printf
        xorl    %eax, %eax
        addq    $8, %rsp
        ret

             reply	other threads:[~2023-02-15 14:18 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-15 14:18 Jonny Grant [this message]
2023-02-15 14:30 ` Richard Earnshaw
2023-02-15 15:10   ` Jonny Grant
2023-02-15 15:27     ` Richard Earnshaw
2023-02-16 13:47       ` Jonny Grant
2023-02-15 15:49     ` Segher Boessenkool
2023-02-15 16:42       ` Richard Earnshaw
2023-02-16 13:48       ` Jonny Grant

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=03717f06-9818-0c2a-6625-429887c55a17@jguk.org \
    --to=jg@jguk.org \
    --cc=gcc-help@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).