From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-x235.google.com (mail-lj1-x235.google.com [IPv6:2a00:1450:4864:20::235]) by sourceware.org (Postfix) with ESMTPS id A4895385188A for ; Mon, 14 Nov 2022 07:59:59 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A4895385188A Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=vrull.eu Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=vrull.eu Received: by mail-lj1-x235.google.com with SMTP id b9so12108067ljr.5 for ; Sun, 13 Nov 2022 23:59:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=vrull.eu; s=google; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=9IWNUzbqxX6fPAMZeJaK5FUo/BmEidtywHLmTalrviA=; b=W0JnEaSRqSYtKMaHfqfp5+NZeckI/x6Xv2ctw1+EwN4n9/YBHRfV6XsMuszbM57oj+ 4iuU5cCxcSStRMz6lbF6/J+QclWfYUAvPU/iz3EoadR9wkgGnYkIxysTrexCy/Du2KZ1 6XmKgkEffOwG9+Xndz7xwrpdHDWbzb3RdSnNbCBeAlSLXFmskn5Z/KFDYOQoF8N7S0M4 xwf/Ii6RKHeHBqBz+r6RLGbEfwcfdDNYHdZ7Ktbv5sGFTYI30P9EPOLg/Iwd06AwlyIq ffpjwUWbKv0auZP1aVPdUhiYHVFu7M11Z19EJzC5ZPrV9fEKSGEChaQh3YU2Qsblop1B sUSg== 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=9IWNUzbqxX6fPAMZeJaK5FUo/BmEidtywHLmTalrviA=; b=NF8+pw/WyUuZ0jfJNHuWmkfcIVsVv/ArxyUS8VsVuZUDzLmUNR5Q/OZ1lGGNyDThk0 QzqaOQLS6/tQqkb21jrNfIQT/q7Pfu3ElqFM9rGWMQ2tzbSBxfjP74KvFVbvoX6mpfrI TaGD02d/erFl0PaAyNRCmjMlZHClf7FzQJzQ7K4PJMrig2tLk4z3fFPg0h0a9/TUDLiF RKKzrpEytqC54yoo6h+/K25iurWrJqO08WrJjrfR5RFfHvObFzTroaRceZJ3nDCJSGXX BIF29vIe2T3ASaajMxG2VxIsZQqktermaTq39KQZRX3Z6IBxlhS2nN7mVpl9DtVTMTjy g0wA== X-Gm-Message-State: ANoB5plQZGEtV2+DgOM/1AgUYcaKVDA2KUo5EHeLiqHvgjrW7iue7R8O 8Q4RwUXjE0pChmUhxDWq3y6mNOHZI8565uJ1n+1luA== X-Google-Smtp-Source: AA0mqf4WEZOgY7j/rgHvnfTHQHlm+iTtT30kvPqj1GzyRqUS2RwZt4XinGz7ufeSA/Tk64FB9dlH9NrWv+Z1aLalvj8= X-Received: by 2002:a2e:8081:0:b0:277:1273:f3b8 with SMTP id i1-20020a2e8081000000b002771273f3b8mr3500289ljg.178.1668412797550; Sun, 13 Nov 2022 23:59:57 -0800 (PST) MIME-Version: 1.0 References: <20221113230521.712693-1-christoph.muellner@vrull.eu> <20221113230521.712693-4-christoph.muellner@vrull.eu> <72925543-48c1-12df-f65f-618c38179835@rivosinc.com> In-Reply-To: <72925543-48c1-12df-f65f-618c38179835@rivosinc.com> From: Philipp Tomsich Date: Mon, 14 Nov 2022 08:59:46 +0100 Message-ID: Subject: Re: [PATCH 3/7] riscv: Enable overlap-by-pieces via tune param To: Vineet Gupta Cc: Christoph Muellner , gcc-patches@gcc.gnu.org, Kito Cheng , Jim Wilson , Palmer Dabbelt , Andrew Waterman , Jeff Law Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-3.4 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,JMQ_SPF_NEUTRAL,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=no 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, 14 Nov 2022 at 03:48, Vineet Gupta wrote: > > > > On 11/13/22 15:05, Christoph Muellner wrote: > > > > +static bool > > +riscv_overlap_op_by_pieces (void) > > +{ > > + return tune_param->overlap_op_by_pieces; > > Does this not need to be gated on unaligned access enabled as well. I assume you mean "&& !STRICT_ALIGNMENT"? Philipp.