From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from nikam.ms.mff.cuni.cz (nikam.ms.mff.cuni.cz [195.113.20.16]) by sourceware.org (Postfix) with ESMTPS id C5E563858D20 for ; Tue, 11 Jul 2023 13:21:54 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org C5E563858D20 Authentication-Results: sourceware.org; dmarc=fail (p=none dis=none) header.from=ucw.cz Authentication-Results: sourceware.org; spf=none smtp.mailfrom=kam.mff.cuni.cz Received: by nikam.ms.mff.cuni.cz (Postfix, from userid 16202) id 762D6281D37; Tue, 11 Jul 2023 15:21:53 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ucw.cz; s=gen1; t=1689081713; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=XWSZiaA7OAj6PSr9VdmcS4yVh5pZO2mwO9AuZwrzimU=; b=ntR7s5b97aYWaPTUEIHMfYd/hXvAmVDEj2hKSKMR1M/tfuU3M2KOIVHR8AJoaTV1aqFgET FqV17MXUYSRzzCzLa3MG0O6shfwyBss63ne3KXmPU6RYh1qmM6iGxsVBZr6CGGef8XXlcM 7uvpXR4XmZM0AG+MPhufkqsLu3sNxRs= Date: Tue, 11 Jul 2023 15:21:53 +0200 From: Jan Hubicka To: Richard Biener Cc: Alexander Monakov , Michael Matz , gcc-patches@gcc.gnu.org Subject: Re: [x86-64] RFC: Add nosse abi attribute Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Spam-Status: No, score=-5.2 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,TXREP,T_SCC_BODY_TEXT_LINE 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: > > > When a function doesn't contain calls to > > > unknown functions we can be a bit more lenient: we can make it so that > > > GCC simply doesn't touch xmm8-15 at all, then no save/restore is > > > necessary. One may also take into account that first 8 registers are cheaper to encode than the later 8, so perhaps we may want to choose range that contains both. Honza