[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v2 13/16] x86/msr: Use MSR_IMM when available


  • To: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
  • From: Jan Beulich <jbeulich@xxxxxxxx>
  • Date: Fri, 22 Aug 2025 08:19:52 +0200
  • Autocrypt: addr=jbeulich@xxxxxxxx; keydata= xsDiBFk3nEQRBADAEaSw6zC/EJkiwGPXbWtPxl2xCdSoeepS07jW8UgcHNurfHvUzogEq5xk hu507c3BarVjyWCJOylMNR98Yd8VqD9UfmX0Hb8/BrA+Hl6/DB/eqGptrf4BSRwcZQM32aZK 7Pj2XbGWIUrZrd70x1eAP9QE3P79Y2oLrsCgbZJfEwCgvz9JjGmQqQkRiTVzlZVCJYcyGGsD /0tbFCzD2h20ahe8rC1gbb3K3qk+LpBtvjBu1RY9drYk0NymiGbJWZgab6t1jM7sk2vuf0Py O9Hf9XBmK0uE9IgMaiCpc32XV9oASz6UJebwkX+zF2jG5I1BfnO9g7KlotcA/v5ClMjgo6Gl MDY4HxoSRu3i1cqqSDtVlt+AOVBJBACrZcnHAUSuCXBPy0jOlBhxPqRWv6ND4c9PH1xjQ3NP nxJuMBS8rnNg22uyfAgmBKNLpLgAGVRMZGaGoJObGf72s6TeIqKJo/LtggAS9qAUiuKVnygo 3wjfkS9A3DRO+SpU7JqWdsveeIQyeyEJ/8PTowmSQLakF+3fote9ybzd880fSmFuIEJldWxp Y2ggPGpiZXVsaWNoQHN1c2UuY29tPsJgBBMRAgAgBQJZN5xEAhsDBgsJCAcDAgQVAggDBBYC AwECHgECF4AACgkQoDSui/t3IH4J+wCfQ5jHdEjCRHj23O/5ttg9r9OIruwAn3103WUITZee e7Sbg12UgcQ5lv7SzsFNBFk3nEQQCACCuTjCjFOUdi5Nm244F+78kLghRcin/awv+IrTcIWF hUpSs1Y91iQQ7KItirz5uwCPlwejSJDQJLIS+QtJHaXDXeV6NI0Uef1hP20+y8qydDiVkv6l IreXjTb7DvksRgJNvCkWtYnlS3mYvQ9NzS9PhyALWbXnH6sIJd2O9lKS1Mrfq+y0IXCP10eS FFGg+Av3IQeFatkJAyju0PPthyTqxSI4lZYuJVPknzgaeuJv/2NccrPvmeDg6Coe7ZIeQ8Yj t0ARxu2xytAkkLCel1Lz1WLmwLstV30g80nkgZf/wr+/BXJW/oIvRlonUkxv+IbBM3dX2OV8 AmRv1ySWPTP7AAMFB/9PQK/VtlNUJvg8GXj9ootzrteGfVZVVT4XBJkfwBcpC/XcPzldjv+3 HYudvpdNK3lLujXeA5fLOH+Z/G9WBc5pFVSMocI71I8bT8lIAzreg0WvkWg5V2WZsUMlnDL9 mpwIGFhlbM3gfDMs7MPMu8YQRFVdUvtSpaAs8OFfGQ0ia3LGZcjA6Ik2+xcqscEJzNH+qh8V m5jjp28yZgaqTaRbg3M/+MTbMpicpZuqF4rnB0AQD12/3BNWDR6bmh+EkYSMcEIpQmBM51qM EKYTQGybRCjpnKHGOxG0rfFY1085mBDZCH5Kx0cl0HVJuQKC+dV2ZY5AqjcKwAxpE75MLFkr wkkEGBECAAkFAlk3nEQCGwwACgkQoDSui/t3IH7nnwCfcJWUDUFKdCsBH/E5d+0ZnMQi+G0A nAuWpQkjM1ASeQwSHEeAWPgskBQL
  • Cc: Roger Pau Monné <roger.pau@xxxxxxxxxx>, Xen-devel <xen-devel@xxxxxxxxxxxxxxxxxxxx>
  • Delivery-date: Fri, 22 Aug 2025 06:20:02 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>

On 21.08.2025 20:59, Andrew Cooper wrote:
> On 19/08/2025 1:55 pm, Jan Beulich wrote:
>> On 15.08.2025 22:41, Andrew Cooper wrote:
>>> --- a/xen/arch/x86/include/asm/msr.h
>>> +++ b/xen/arch/x86/include/asm/msr.h
>>> @@ -29,10 +29,52 @@
>>>   *  wrmsrl(MSR_FOO, val);
>>>   */
>>>  
>>> -static inline uint64_t rdmsr(unsigned int msr)
>>> +/*
>>> + * RDMSR with a compile-time constant index, when available.  Falls back to
>>> + * plain RDMSR.
>>> + */
>>> +static always_inline uint64_t __rdmsr_imm(uint32_t msr)
>>> +{
>>> +    uint64_t val;
>>> +
>>> +    /*
>>> +     * For best performance, RDMSR $msr, %r64 is recommended.  For
>>> +     * compatibility, we need to fall back to plain RDMSR.
>>> +     *
>>> +     * The combined ABI is awkward, because RDMSR $imm produces an r64,
>>> +     * whereas WRMSR{,NS} produces a split edx:eax pair.
>>> +     *
>>> +     * Always use RDMSR $imm, %rax, because it has the most in common with 
>>> the
>>> +     * legacy form.  When MSR_IMM isn't available, emit logic to fold %edx
>>> +     * back into %rax.
>>> +     *
>>> +     * Let the compiler do %ecx setup.  This does mean there's a useless 
>>> `mov
>>> +     * $imm, %ecx` in the instruction stream in the MSR_IMM case, but it 
>>> means
>>> +     * the compiler can de-duplicate the setup in the common case of 
>>> reading
>>> +     * and writing the same MSR.
>>> +     */
>>> +    alternative_io(
>>> +        "rdmsr\n\t"
>>> +        "shl $32, %%rdx\n\t"
>>> +        "or %%rdx, %%rax\n\t",
>>> +
>>> +        /* RDMSR $msr, %rax */
>>> +        ".byte 0xc4,0xe7,0x7b,0xf6,0xc0; .long %c[msr]", 
>>> X86_FEATURE_MSR_IMM,
>>> +
>>> +        "=a" (val),
>> Strictly speaking "=&a". Not that it matters much here; just to not
>> set a bad precedent.
> 
> Why?  A is not written to until after all inputs are consumed.
> 
> I don't see how it can qualify for being early-clobber.

Because the very first insn already writes to the register.

>>> @@ -55,11 +97,51 @@ static inline void wrmsr(unsigned int msr, uint64_t val)
>>>  }
>>>  #define wrmsrl(msr, val) wrmsr(msr, val)
>>>  
>>> +/*
>>> + * Non-serialising WRMSR with a compile-time constant index, when 
>>> available.
>>> + * Falls back to plain WRMSRNS, or to a serialising WRMSR.
>>> + */
>>> +static always_inline void __wrmsrns_imm(uint32_t msr, uint64_t val)
>>> +{
>>> +    /*
>>> +     * For best performance, WRMSRNS %r64, $msr is recommended.  For
>>> +     * compatibility, we need to fall back to plain WRMSRNS, or to WRMSR.
>>> +     *
>>> +     * The combined ABI is awkward, because WRMSRNS $imm takes a single 
>>> r64,
>>> +     * whereas WRMSR{,NS} takes a split edx:eax pair.
>>> +     *
>>> +     * Always use WRMSRNS %rax, $imm, because it has the most in common 
>>> with
>>> +     * the legacy forms.  When MSR_IMM isn't available, emit setup logic 
>>> for
>>> +     * %edx.
>>> +     *
>>> +     * Let the compiler do %ecx setup.  This does mean there's a useless 
>>> `mov
>>> +     * $imm, %ecx` in the instruction stream in the MSR_IMM case, but it 
>>> means
>>> +     * the compiler can de-duplicate the setup in the common case of 
>>> reading
>>> +     * and writing the same MSR.
>>> +     */
>>> +    alternative_input_2(
>>> +        "mov %%rax, %%rdx\n\t"
>>> +        "shr $32, %%rdx\n\t"
>>> +        ".byte 0x2e; wrmsr",
>>> +
>>> +        /* CS WRMSRNS %rax, $msr */
>>> +        ".byte 0x2e,0xc4,0xe7,0x7a,0xf6,0xc0; .long %c[msr]", 
>>> X86_FEATURE_MSR_IMM,
>>> +
>>> +        "mov %%rax, %%rdx\n\t"
>>> +        "shr $32, %%rdx\n\t"
>>> +        ".byte 0x0f,0x01,0xc6", X86_FEATURE_WRMSRNS,
>> Isn't this the wrong way round for hardware which has both features? The
>> last active alternative wins, iirc.
> 
> Bah - fooled once again by the nop optimisation.  I'll reorder.
> 
> But, we really should swap the order.  Especially now that you've
> inserted serialisation, it's an expensive waste of time patching the
> same site multiple times.

I'm not convinced swapping the order would be a good thing. Nor do I
see how it would (easily) help here: When both features are present,
we always patch twice. To avoid that, while patching one location we
would need to peek ahead into the next table entry to see whether
that's going to patch the same location, same (or bigger) size.

Jan



 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.