From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x42f.google.com (mail-wr1-x42f.google.com [IPv6:2a00:1450:4864:20::42f]) by sourceware.org (Postfix) with ESMTPS id CD7143858422 for ; Mon, 28 Nov 2022 12:05:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org CD7143858422 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=adacore.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=adacore.com Received: by mail-wr1-x42f.google.com with SMTP id q7so15543994wrr.8 for ; Mon, 28 Nov 2022 04:05:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=adacore.com; s=google; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=Tp7Nt9yt/k6LgK68omlV7dJRBrq/4VnJXJOiktxDOa4=; b=EtC/f5gKKQW2skq64yh9DHeeXjvD9sQzqsJRzl+p06LZddQVxrjapAN1NuH4K4tobU wCVGPsoHsAYekiR9yckz+IBQF2fhpO0+O/zHJ9DTG/PL85YSfjA1U8tBWmrH/1vc8WbY nznvi8OIW1xparAk2X47MMFulswl0hxDR0HbfMI+0RAtGumZ2ASMTt10yMMLPOV2qpmY QpBelWuK2N8R8+QLYnNNlFwMJZ0mnhT8Jhnje91QWoU+m3+NY0xUegFi6YgVZx7CcJeB PIE3hcl2VQAdRWt6b4FENAbj4UKGvayB7x4/QoX/0aQkguoINPqlkbZVcsPb4521a869 kQZg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=Tp7Nt9yt/k6LgK68omlV7dJRBrq/4VnJXJOiktxDOa4=; b=I4ujlWxko0lmOu3a/9+iw0gVFrn+A0njYWvJwDxPbm/TtPRMM3qcyyBJGEJEDxl1IW MY0ClQG87PDSxgLv0RMmIcW7DaM9EwRr95ShWQkKcEerv3sM8+MUVPuZF4xhfkjvaQ5Q s+4bXm/b19QHWTiqQ7wdQG6e7Gc9sfgTYoMudlfPs0KDdcwiL0kSKwDlNbtH+mzaWs6+ NOANijlhJKSkfUhdEwlcg1u0iqGnAt78PIXKUPiXPfKPGssPTNXW4WJ3mtR6i50pJ/tm hvXW4eEx2f0eXHPYhRxKWSMAWe77ZX/YHVUb63g32VYtZYplq0pGJuQGBbE4DbX/rp9l yEDg== X-Gm-Message-State: ANoB5pm3rjQ+aNjKg2eNGuIOvpcGNYts+5E1cffytJpejAcJU02lJUhp w8aSnK5h6afnC0ehHg4SXHpW4yrwjTIycA== X-Google-Smtp-Source: AA0mqf6Jov39zDN0WDYHjuzDSlPRzCBhWX44mIZk0iHQ0ADLalZgeI9YuhAJfnc8LWl1aRvkdtNO0g== X-Received: by 2002:a5d:5602:0:b0:22e:4c41:9e45 with SMTP id l2-20020a5d5602000000b0022e4c419e45mr25132477wrv.468.1669637101548; Mon, 28 Nov 2022 04:05:01 -0800 (PST) Received: from localhost.localdomain (static-176-191-105-132.ftth.abo.bbox.fr. [176.191.105.132]) by smtp.gmail.com with ESMTPSA id i7-20020a05600c354700b003d04e4ed873sm9561467wmq.22.2022.11.28.04.05.00 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 28 Nov 2022 04:05:01 -0800 (PST) From: =?UTF-8?q?Marc=20Poulhi=C3=A8s?= To: gcc-patches@gcc.gnu.org Cc: Eric Botcazou Subject: [COMMITTED] ada: Fix internal error on conversion as in/out actual with -gnatVa Date: Mon, 28 Nov 2022 13:04:58 +0100 Message-Id: <20221128120458.171543-1-poulhies@adacore.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-13.5 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,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: From: Eric Botcazou The problem is that the regular expansion of the conversion around the call to the subprogram is disabled by the expansion of the validity check around the same call, as documented in Expand_Actuals: -- This case is given higher priority because the subsequent check -- for type conversion may add an extra copy of the variable and -- prevent proper value propagation back in the original object. Now the two mechanisms need to cooperate in order for the code to compile. gcc/ada/ * exp_ch6.adb (Expand_Actuals.Add_Call_By_Copy_Code): Deal with a reference to a validation variable in the actual. (Expand_Actuals.Add_Validation_Call_By_Copy_Code): Minor tweak. (Expand_Actuals): Call Add_Validation_Call_By_Copy_Code directly only if Add_Call_By_Copy_Code is not to be invoked. Tested on x86_64-pc-linux-gnu, committed on master. --- gcc/ada/exp_ch6.adb | 61 ++++++++++++++++++++++++++++++++------------- 1 file changed, 43 insertions(+), 18 deletions(-) diff --git a/gcc/ada/exp_ch6.adb b/gcc/ada/exp_ch6.adb index 237a19d1327..0fe980c499a 100644 --- a/gcc/ada/exp_ch6.adb +++ b/gcc/ada/exp_ch6.adb @@ -1639,6 +1639,27 @@ package body Exp_Ch6 is Crep := False; end if; + -- If the actual denotes a variable which captures the value of an + -- object for validation purposes, we propagate the link with this + -- object to the new variable made from the actual just above. + + if Ekind (Formal) /= E_In_Parameter + and then Is_Validation_Variable_Reference (Actual) + then + declare + Ref : constant Node_Id := Unqual_Conv (Actual); + + begin + if Is_Entity_Name (Ref) then + Set_Validated_Object (Var, Validated_Object (Entity (Ref))); + + else + pragma Assert (False); + null; + end if; + end; + end if; + -- Setup initialization for case of in out parameter, or an out -- parameter where the formal is an unconstrained array (in the -- latter case, we have to pass in an object with bounds). @@ -1906,6 +1927,13 @@ package body Exp_Ch6 is Name => Lhs, Expression => Expr)); end if; + + -- Add a copy-back to reflect any potential changes in value + -- back into the original object, if any. + + if Is_Validation_Variable_Reference (Lhs) then + Add_Validation_Call_By_Copy_Code (Lhs); + end if; end; end if; end Add_Call_By_Copy_Code; @@ -2052,10 +2080,11 @@ package body Exp_Ch6 is -------------------------------------- procedure Add_Validation_Call_By_Copy_Code (Act : Node_Id) is + Var : constant Node_Id := Unqual_Conv (Act); + Expr : Node_Id; Obj : Node_Id; Obj_Typ : Entity_Id; - Var : constant Node_Id := Unqual_Conv (Act); Var_Id : Entity_Id; begin @@ -2405,26 +2434,10 @@ package body Exp_Ch6 is end if; end if; - -- The actual denotes a variable which captures the value of an - -- object for validation purposes. Add a copy-back to reflect any - -- potential changes in value back into the original object. - - -- Var : ... := Object; - -- if not Var'Valid then -- validity check - -- Call (Var); -- modify var - -- Object := Var; -- update Object - - -- This case is given higher priority because the subsequent check - -- for type conversion may add an extra copy of the variable and - -- prevent proper value propagation back in the original object. - - if Is_Validation_Variable_Reference (Actual) then - Add_Validation_Call_By_Copy_Code (Actual); - -- If argument is a type conversion for a type that is passed by -- copy, then we must pass the parameter by copy. - elsif Nkind (Actual) = N_Type_Conversion + if Nkind (Actual) = N_Type_Conversion and then (Is_Elementary_Type (E_Formal) or else Is_Bit_Packed_Array (Etype (Formal)) @@ -2508,6 +2521,18 @@ package body Exp_Ch6 is and then not In_Subrange_Of (E_Actual, E_Formal))) then Add_Call_By_Copy_Code; + + -- The actual denotes a variable which captures the value of an + -- object for validation purposes. Add a copy-back to reflect any + -- potential changes in value back into the original object. + + -- Var : ... := Object; + -- if not Var'Valid then -- validity check + -- Call (Var); -- modify var + -- Object := Var; -- update Object + + elsif Is_Validation_Variable_Reference (Actual) then + Add_Validation_Call_By_Copy_Code (Actual); end if; -- RM 3.2.4 (23/3): A predicate is checked on in-out and out -- 2.34.1