* gcc.dg/guality/guality.exp: Skip on AIX.
[official-gcc.git] / gcc / ada / exp_spark.ads
blob726b69ac0141c89c430cab7eeb55ec92d6ff5eb3
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- E X P _ S P A R K --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2011-2013, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
20 -- --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
23 -- --
24 ------------------------------------------------------------------------------
26 -- This package implements a light expansion which is used in formal
27 -- verification mode (SPARK_Mode = True). Instead of a complete expansion
28 -- of nodes for code generation, this SPARK expansion targets generation
29 -- of intermediate code for formal verification.
31 -- Expand_SPARK is called directly by Expander.Expand.
33 -- SPARK expansion has three main objectives:
35 -- 1. Perform limited expansion to explicit some Ada rules and constructs
36 -- (translate 'Old and 'Result, replace renamings by renamed, insert
37 -- conversions, expand actuals in calls to introduce temporaries, expand
38 -- generics instantiations)
40 -- 2. Facilitate treatment for the formal verification back-end (fully
41 -- qualify names, expand set membership, compute data dependences)
43 -- 3. Avoid the introduction of low-level code that is difficult to analyze
44 -- formally, as typically done in the full expansion for high-level
45 -- constructs (tasking, dispatching)
47 -- To fulfill objective 1, Expand_SPARK selectively expands some constructs.
49 -- To fulfill objective 2, the tree after SPARK expansion should be fully
50 -- analyzed semantically. In particular, all expression must have their proper
51 -- type, and semantic links should be set between tree nodes (partial to full
52 -- view, etc.) Some kinds of nodes should be either absent, or can be ignored
53 -- by the formal verification backend:
55 -- N_Object_Renaming_Declaration: can be ignored safely
56 -- N_Expression_Function: absent (rewitten)
57 -- N_Expression_With_Actions: absent (not generated)
59 -- SPARK cross-references are generated from the regular cross-references
60 -- (used for browsing and code understanding) and additional references
61 -- collected during semantic analysis, in particular on all
62 -- dereferences. These SPARK cross-references are output in a separate section
63 -- of ALI files, as described in spark_xrefs.adb. They are the basis for the
64 -- computation of data dependences in the formal verification backend. This
65 -- implies that all cross-references should be generated in this mode, even
66 -- those that would not make sense from a user point-of-view, and that
67 -- cross-references that do not lead to data dependences for subprograms can
68 -- be safely ignored.
70 -- To support the formal verification of units parameterized by data, the
71 -- value of deferred constants should not be considered as a compile-time
72 -- constant at program locations where the full view is not visible.
74 -- To fulfill objective 3, Expand_SPARK does not expand features that are not
75 -- formally analyzed (tasking), or for which formal analysis relies on the
76 -- source level representation (dispatching, aspects, pragmas). However, these
77 -- should be semantically analyzed, which sometimes requires the insertion of
78 -- semantic pre-analysis, for example for subprogram contracts and pragma
79 -- check/assert.
81 with Types; use Types;
83 package Exp_SPARK is
85 procedure Expand_SPARK (N : Node_Id);
87 end Exp_SPARK;