public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "goldstein.w.n at gmail dot com" <sourceware-bugzilla@sourceware.org>
To: glibc-bugs@sourceware.org
Subject: [Bug string/28354] New: For x86_64 string/memory functions use of EVEX registers sets HI16_ZMM_state adding context switch overhead
Date: Mon, 20 Sep 2021 02:23:27 +0000	[thread overview]
Message-ID: <bug-28354-131@http.sourceware.org/bugzilla/> (raw)

https://sourceware.org/bugzilla/show_bug.cgi?id=28354

            Bug ID: 28354
           Summary: For x86_64 string/memory functions use of EVEX
                    registers sets HI16_ZMM_state adding context switch
                    overhead
           Product: glibc
           Version: 2.34
            Status: UNCONFIRMED
          Severity: minor
          Priority: P2
         Component: string
          Assignee: unassigned at sourceware dot org
          Reporter: goldstein.w.n at gmail dot com
  Target Milestone: ---

Use of ymm16-ymm31 in the exex string/memory functions in
sysdeps/x86_64/multtiarch sets HI16_ZMM_state to true.
See:
https://www.intel.com/content/dam/www/public/us/en/documents/manuals/64-ia-32-architectures-software-developer-vol-1-manual.pdf#page=321

This defeats the init optimization of various xsave* context switching
instructions. Overall it adds at the very least 1024 bytes to context switches.

Simple reproduction:

```
        .global _start
        .text
_start:
    vpxorq  %ymm16, %ymm16, %ymm16
    vzeroupper

loop:
    jmp loop


        movl    $60, %eax
        xorl    %edi, %edi
        syscall
```

Then check:

cat /proc/${pid}/arch_status


Which will show the state being continuously updated.

State is updated during context switch here:
https://elixir.bootlin.com/linux/v5.15-rc1/source/arch/x86/kernel/fpu/core.c#L108)

-- 
You are receiving this mail because:
You are on the CC list for the bug.

             reply	other threads:[~2021-09-20  2:23 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-20  2:23 goldstein.w.n at gmail dot com [this message]
2021-09-20  2:28 ` [Bug string/28354] " goldstein.w.n at gmail dot com
2021-09-20 14:09 ` hjl.tools at gmail dot com
2021-09-22 21:10 ` goldstein.w.n at gmail dot com

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-28354-131@http.sourceware.org/bugzilla/ \
    --to=sourceware-bugzilla@sourceware.org \
    --cc=glibc-bugs@sourceware.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).