[Ada] Suppress GNAT FE up-level reference transformation for GNAT-LLVM
authorGary Dismukes <dismukes@adacore.com>
Thu, 19 Sep 2019 08:13:34 +0000 (08:13 +0000)
committerPierre-Marie de Rodat <pmderodat@gcc.gnu.org>
Thu, 19 Sep 2019 08:13:34 +0000 (08:13 +0000)
In the case of GNAT-LLVM, the GNAT FE no longer does expansion of
up-level references identified by the subprogram unnesting machinery
into activation record references. This is now only done by the FE when
generating C code. This expansion is already taken care of by the
gnat-llvm middle phase, so there's no benefit to also doing it in the
front end.

2019-09-19  Gary Dismukes  <dismukes@adacore.com>

gcc/ada/

* exp_unst.adb (Unnest_Subprogram): Bypass the transformation of
up-level references unless Opt.Generate_C_Code is enabled.

From-SVN: r275942

gcc/ada/ChangeLog
gcc/ada/exp_unst.adb

index 37576aaee5c08861796e65e098b2e3df4c4f42cd..86e9f07353fe8afbc0d2fedf182628f30b95f1ad 100644 (file)
@@ -1,3 +1,8 @@
+2019-09-19  Gary Dismukes  <dismukes@adacore.com>
+
+       * exp_unst.adb (Unnest_Subprogram): Bypass the transformation of
+       up-level references unless Opt.Generate_C_Code is enabled.
+
 2019-09-19  Eric Botcazou  <ebotcazou@adacore.com>
 
        * exp_ch4.adb (Expand_Array_Equality): If optimization is
index 8c492bc9f2263c230c0404d2b97e9346297c93d5..b25b4492ec56027248c5c2be23a97ee19e8a9f8e 100644 (file)
@@ -2177,11 +2177,14 @@ package body Exp_Unst is
             --  not need rewriting (e.g. the appearence in a conversion).
             --  Also ignore if no reference was specified or if the rewriting
             --  has already been done (this can happen if the N_Identifier
-            --  occurs more than one time in the tree).
+            --  occurs more than one time in the tree). Also ignore references
+            --  when not generating C code (in particular for the case of LLVM,
+            --  since GNAT-LLVM will handle the processing for up-level refs).
 
             if No (UPJ.Ref)
               or else not Is_Entity_Name (UPJ.Ref)
               or else not Present (Entity (UPJ.Ref))
+              or else not Opt.Generate_C_Code
             then
                goto Continue;
             end if;