From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi1-x22b.google.com (mail-oi1-x22b.google.com [IPv6:2607:f8b0:4864:20::22b]) by sourceware.org (Postfix) with ESMTPS id B1194386F47A for ; Tue, 9 Mar 2021 14:27:48 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org B1194386F47A Received: by mail-oi1-x22b.google.com with SMTP id u6so7763068oic.2 for ; Tue, 09 Mar 2021 06:27:48 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=JqzjC+dL5icuxlFMvNb31XwsBSllZaovti/zy7m3tlY=; b=GHX0cRBbIabVmsvjrYCEnHpq9k1xGcrArJfSapYGNrN9Xv43iKCBzet9PeMch8lz8U it6dunVirGEtP7rVepSlmviZMtKvXVAZkV4lXrCeOP+ia5bmay6R5pl3KWK0kB/up57S ex/IVKRUc0y4MAgpfK/nvBwj1zMOjvvN6nV33pQfPrCy97+Azr5Hg/m7EikwnNuHPD8D HlsaPaadst3NR+wh9HKE1+cVQ3XvVFnjAMC3i7EQkbKZI/a7vNvMDO3X+bY4+GUygtRY 74viA0KK8wjmyDtbaTnR+fE+w6Z9J0Fkkf3XrygPwctilrGCl0OWvKcav1SCnfd6gUCp TFBw== X-Gm-Message-State: AOAM530/zjqMd2fF3uzsihqTUp8CZidDhvV5QbVFX/fwPyS60T1Q2niI i5BxIZcRNGIGYo33UdTeeLpkF0cAigsYHcpOoOY= X-Google-Smtp-Source: ABdhPJz3hXuMFmiHw9L09WB6ZuKSXH4HtmmTm6a96y/lWXAA6LoyjfgoD2y1GnDBd/ZBBWSuGWaInLpTngS/RYRxFNE= X-Received: by 2002:aca:5985:: with SMTP id n127mr3116621oib.25.1615300068171; Tue, 09 Mar 2021 06:27:48 -0800 (PST) MIME-Version: 1.0 References: <59d65321-4135-a723-be53-2450c3759c35@suse.com> In-Reply-To: <59d65321-4135-a723-be53-2450c3759c35@suse.com> From: "H.J. Lu" Date: Tue, 9 Mar 2021 06:27:12 -0800 Message-ID: Subject: Re: [PATCH 0/9] x86: disassembler fixes and table shrinking To: Jan Beulich Cc: Binutils Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-3029.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.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: binutils@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Binutils mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Mar 2021 14:27:54 -0000 On Tue, Mar 9, 2021 at 5:05 AM Jan Beulich wrote: > > The first and last patches are bug fixes. Most of the others > rearrange the order of decoding of relevant parts of the insn, > with the goal of shrinking overall table sizes. This goes > along the lines of earlier changes towards the same goal. > > If I had recognized earlier the issue the last patch fixes, I > would have put it near the beginning of this series. Re- > basing ahead, however, turned out rather undesirable. > > 1: correct decoding of nop/reserved space (0f18 ... 0x1f) > 2: re-arrange order of decode for various legacy opcodes > 3: re-arrange order of decode for various VEX opcodes > 4: re-arrange order of decode for various mask reg opcodes > 5: re-arrange order of decode for various EVEX opcodes > 6: reuse VEX entries for EVEX vperm{q,pd} > 7: reuse further VEX entries for EVEX > 8: rearrange enumerator and table entry order > 9: Intel: correct AVX512 S/G disassembly > OK for all. Thanks. -- H.J.