From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi1-x231.google.com (mail-oi1-x231.google.com [IPv6:2607:f8b0:4864:20::231]) by sourceware.org (Postfix) with ESMTPS id 773A33858404 for ; Mon, 13 Feb 2023 17:41:07 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 773A33858404 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-oi1-x231.google.com with SMTP id bi19so10881425oib.2 for ; Mon, 13 Feb 2023 09:41:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=WYJAXSd+E3OXqUrEVI6MdcNW27r22deMv/FvD3A5t20=; b=LfAA+q5w7sd/6hg0Jl/nk2zY3GjjNf3Ms555mhj9+WpdJYL9ANbCThb8dzSuIId8S8 J1c/UtJphHs08kE9smG8AM4YS4zFbI+PJeTSR3FDxjwQbVeNKqnVGaswM0MbTohI5n0M L5M7M/wy+o3hrkCs5VpEC6soosY5g34rlA7OjLQq5ZTmfqWj+mO545R/TDEbM5bxDEAE n56eEjI5KdAX7/bzr/+LweIKPYT8YwHj3Ycg4qM/9T57kHGPYFM1DlYw8VBQmsnzIRkC qRxfn8d5puyG5RghQiNQ5ieBwn7+6pRJ0R5GMr7AnAfIWj3IFVxOrLe1aRq83RCZ1X8A ooFw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=WYJAXSd+E3OXqUrEVI6MdcNW27r22deMv/FvD3A5t20=; b=YI2IvTERERlLU/EPH04FN6lEjJw2C2n+oxN+yc7EJNRqD8UeOZtw/riII9Jlyj7DGD XW0GjVNajGBGqiL/QjsnaKPUxgF2yz85Y9Tx5lwTn3Ok/6DaBi66oQ22IT4ARSyOJ2HO x76tbLCV67nACaMdjipNPmTLqJo1I/i+1makDxRwQ2oBljCMwKu/navrp2t4dU/MX2so 8YM39ply1lPp+RCM53e9rSZ9mdaxXZULvBavGCuEYkJw1e1Xhr5zR/DRCxese/PpOU+i VM1I+QTwAdRslbhuBeSwnxZq+VdwCsvNeFgvj4mVkmRj+4Uz6TSqxg5VmHFvEexMFJV9 Ta6g== X-Gm-Message-State: AO0yUKVw/PRRVEU3lIl55wtE2azQfvJzVcQZkcbU2Cm+rAX2uwPg4TQI WsrJ2rCBpfSh45QC0kKF43wb2gA68Ub1Ne6NalTgF1GE X-Google-Smtp-Source: AK7set92BOZGKZqBbqfqzECY6pZWUfRdVZ2zoHiVD4eEHpw7auwbtmRl6n/F72iSpQs1TgYAga93tl9HFjSQIboYkRA= X-Received: by 2002:a05:6808:3a8c:b0:37d:a1bf:367e with SMTP id fb12-20020a0568083a8c00b0037da1bf367emr311561oib.298.1676310066836; Mon, 13 Feb 2023 09:41:06 -0800 (PST) MIME-Version: 1.0 References: <306b5fa2-9007-a4a1-bff5-f013e2c2c26a@suse.com> <67715baf-b718-0d00-959a-fc4e70c0dff9@suse.com> In-Reply-To: From: "H.J. Lu" Date: Mon, 13 Feb 2023 09:40:30 -0800 Message-ID: Subject: Re: [PATCH 4/4] x86: MONITOR/MWAIT are not SSE3 insns To: Jan Beulich Cc: Binutils Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-3017.3 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On Mon, Feb 13, 2023 at 12:08 AM Jan Beulich wrote: > > On 10.02.2023 18:02, H.J. Lu wrote: > > Since they used to be in SSE3, should they be also allowed with SSE3? > > In order to answer the question, can you please clarify what you mean > by "used to be in SSE3"? I'm not aware of a spec ever marking them as > SSE3 insns. And not allowing their use in e.g. generic32+sse3 is one > of the purposes of this change, because that was simply wrong. > I checked 2005 Intel SDM which has a separate CPUID bit for MONITOR/MWAIT. No need for SSE3 then. Thanks. -- H.J.