[AArch64] Remove use of wider vector modes
[official-gcc.git] / gcc / ada / scos.ads
blob412a45b258329795b43617302e2f7e9f3f360860
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S C O S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2009-2016, 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 defines tables used to store Source Coverage Obligations. It
27 -- is used by Par_SCO to build the SCO information before writing it out to
28 -- the ALI file, and by Get_SCO/Put_SCO to read and write the text form that
29 -- is used in the ALI file.
31 with Namet; use Namet;
32 with Types; use Types;
34 with GNAT.Table;
36 package SCOs is
38 -- SCO information can exist in one of two forms. In the ALI file, it is
39 -- represented using a text format that is described in this specification.
40 -- Internally it is stored using two tables SCO_Table and SCO_Unit_Table,
41 -- which are also defined in this unit.
43 -- Par_SCO is part of the compiler. It scans the parsed source tree and
44 -- populates the internal tables.
46 -- Get_SCO reads the text lines in ALI format and populates the internal
47 -- tables with corresponding information.
49 -- Put_SCO reads the internal tables and generates text lines in the ALI
50 -- format.
52 -- WARNING: There are C bindings for this package. Any changes to this
53 -- source file must be properly reflected in the C header file scos.h
55 --------------------
56 -- SCO ALI Format --
57 --------------------
59 -- Source coverage obligations are generated on a unit-by-unit basis in the
60 -- ALI file, using lines that start with the identifying character C. These
61 -- lines are generated if the -gnateS switch is set.
63 -- Sloc Ranges
65 -- In several places in the SCO lines, Sloc ranges appear. These are used
66 -- to indicate the first and last Sloc of some construct in the tree and
67 -- they have the form:
69 -- line:col-line:col
71 -- Note that SCO's are generated only for generic templates, not for
72 -- generic instances (since only the first are part of the source). So
73 -- we don't need generic instantiation stuff in these line:col items.
75 -- SCO File headers
77 -- The SCO information follows the cross-reference information, so it
78 -- need not be read by tools like gnatbind, gnatmake etc. The SCO output
79 -- is divided into sections, one section for each unit for which SCO's
80 -- are generated. A SCO section has a header of the form:
82 -- C dependency-number filename
84 -- This header precedes SCO information for the unit identified by
85 -- dependency number and file name. The dependency number is the
86 -- index into the generated D lines and is ones origin (i.e. 2 =
87 -- reference to second generated D line).
89 -- Note that the filename here will reflect the original name if
90 -- a Source_Reference pragma was encountered (since all line number
91 -- references will be with respect to the original file).
93 -- Note: the filename is redundant in that it could be deduced from
94 -- the corresponding D line, but it is convenient at least for human
95 -- reading of the SCO information, and means that the SCO information
96 -- can stand on its own without needing other parts of the ALI file.
98 -- Statements
100 -- For the purpose of SCO generation, the notion of statement includes
101 -- simple statements and also the following declaration types:
103 -- type_declaration
104 -- subtype_declaration
105 -- object_declaration
106 -- renaming_declaration
107 -- generic_instantiation
109 -- and the following regions of the syntax tree:
111 -- the part of a case_statement from CASE up to the expression
112 -- the part of a FOR loop iteration scheme from FOR up to the
113 -- loop_parameter_specification
114 -- the part of a WHILE loop up to the condition
115 -- the part of an extended_return_statement from RETURN up to the
116 -- expression (if present) or to the return_subtype_indication (if
117 -- no expression)
119 -- and any pragma that occurs at a place where a statement or declaration
120 -- is allowed.
122 -- Statement lines
124 -- These lines correspond to one or more successive statements (in the
125 -- sense of the above list) which are always executed in sequence (in the
126 -- absence of exceptions or other external interruptions).
128 -- Entry points to such sequences are:
130 -- the first declaration of any declarative_part
131 -- the first statement of any sequence_of_statements that is not in a
132 -- body or block statement that has a non-empty declarative part
133 -- the first statement after a compound statement
134 -- the first statement after an EXIT, RAISE or GOTO statement
135 -- any statement with a label (the label itself is not part of the
136 -- entry point that is recorded).
138 -- Each entry point must appear as the first statement entry on a CS
139 -- line. Thus, if any simple statement on a CS line is known to have
140 -- been executed, then all statements that appear before it on the same
141 -- CS line are certain to also have been executed.
143 -- The form of a statement line in the ALI file is:
145 -- CS [dominance] *sloc-range [*sloc-range...]
147 -- where each sloc-range corresponds to a single statement, and * is
148 -- one of:
150 -- t type declaration
151 -- s subtype declaration
152 -- o object declaration
153 -- r renaming declaration
154 -- i generic instantiation
155 -- d any other kind of declaration
156 -- A ACCEPT statement (from ACCEPT to end of parameter profile)
157 -- C CASE statement (from CASE to end of expression)
158 -- E EXIT statement
159 -- F FOR loop (from FOR to end of iteration scheme)
160 -- I IF statement (from IF to end of condition)
161 -- P[name:] PRAGMA with the indicated name
162 -- p[name:] disabled PRAGMA with the indicated name
163 -- R extended RETURN statement
164 -- S SELECT statement
165 -- W WHILE loop statement (from WHILE to end of condition)
167 -- Note: for I and W, condition above is in the RM syntax sense (this
168 -- condition is a decision in SCO terminology).
170 -- and is omitted for all other cases
172 -- The optional dominance marker is of the form gives additional
173 -- information as to how the sequence of statements denoted by the CS
174 -- line can be entered:
176 -- >F<sloc>
177 -- sequence is entered only if the decision at <sloc> is False
178 -- >T<sloc>
179 -- sequence is entered only if the decision at <sloc> is True
181 -- >S<sloc>
182 -- sequence is entered only if the statement at <sloc> has been
183 -- executed
185 -- >E<sloc-range>
186 -- sequence is the sequence of statements for a exception_handler
187 -- with the given sloc range
189 -- Note: up to 6 entries can appear on a single CS line. If more than 6
190 -- entries appear in one logical statement sequence, continuation lines
191 -- are marked by Cs and appear immediately after the CS line.
193 -- Implementation permission: a SCO generator is permitted to emit a
194 -- narrower SLOC range for a statement if the corresponding code
195 -- generation circuitry ensures that all debug information for the code
196 -- implementing the statement will be labeled with SLOCs that fall within
197 -- that narrower range.
199 -- Decisions
201 -- Note: in the following description, logical operator includes only the
202 -- short-circuited forms and NOT (so can be only NOT, AND THEN, OR ELSE).
203 -- The reason that we can exclude AND/OR/XOR is that we expect SCO's to
204 -- be generated using the restriction No_Direct_Boolean_Operators if we
205 -- are interested in decision coverage, which does not permit the use of
206 -- AND/OR/XOR on boolean operands. These are permitted on modular integer
207 -- types, but such operations do not count as decisions in any case. If
208 -- we are generating SCO's only for simple coverage, then we are not
209 -- interested in decisions in any case.
211 -- Note: the reason we include NOT is for informational purposes. The
212 -- presence of NOT does not generate additional coverage obligations,
213 -- but if we know where the NOT's are, the coverage tool can generate
214 -- more accurate diagnostics on uncovered tests.
216 -- A top level boolean expression is a boolean expression that is not an
217 -- operand of a logical operator.
219 -- Decisions are either simple or complex. A simple decision is a top
220 -- level boolean expression that has only one condition and that occurs
221 -- in the context of a control structure in the source program, including
222 -- WHILE, IF, EXIT WHEN, or immediately within an Assert, Check,
223 -- Pre_Condition or Post_Condition pragma, or as the first argument of a
224 -- dyadic pragma Debug. Note that a top level boolean expression with
225 -- only one condition that occurs in any other context, for example as
226 -- right hand side of an assignment, is not considered to be a (simple)
227 -- decision.
229 -- A complex decision is a top level boolean expression that has more
230 -- than one condition. A complex decision may occur in any boolean
231 -- expression context.
233 -- So for example, if we have
235 -- A, B, C, D : Boolean;
236 -- function F (Arg : Boolean) return Boolean);
237 -- ...
238 -- A and then (B or else F (C and then D))
240 -- There are two (complex) decisions here:
242 -- 1. X and then (Y or else Z)
244 -- where X = A, Y = B, and Z = F (C and then D)
246 -- 2. C and then D
248 -- For each decision, a decision line is generated with the form:
250 -- C* sloc expression
252 -- Here * is one of the following:
254 -- E decision in EXIT WHEN statement
255 -- G decision in entry guard
256 -- I decision in IF statement or if expression
257 -- P decision in pragma Assert / Check / Pre/Post_Condition
258 -- A[name] decision in aspect Pre/Post (aspect name optional)
259 -- W decision in WHILE iteration scheme
260 -- X decision in some other expression context
262 -- For E, G, I, P, W, sloc is the source location of the EXIT, ENTRY, IF,
263 -- PRAGMA or WHILE token, respectively
265 -- For A sloc is the source location of the aspect identifier
267 -- For X, sloc is omitted
269 -- The expression is a prefix polish form indicating the structure of
270 -- the decision, including logical operators and short-circuit forms.
271 -- The following is a grammar showing the structure of expression:
273 -- expression ::= term (if expr is not logical operator)
274 -- expression ::= &sloc term term (if expr is AND or AND THEN)
275 -- expression ::= |sloc term term (if expr is OR or OR ELSE)
276 -- expression ::= !sloc term (if expr is NOT)
278 -- In the last three cases, sloc is the source location of the AND, OR,
279 -- or NOT token, respectively.
281 -- term ::= element
282 -- term ::= expression
284 -- element ::= *sloc-range
286 -- where * is one of the following letters:
288 -- c condition
289 -- t true condition
290 -- f false condition
292 -- t/f are used to mark a condition that has been recognized by the
293 -- compiler as always being true or false. c is the normal case of
294 -- conditions whose value is not known at compile time.
296 -- & indicates AND THEN connecting two conditions
298 -- | indicates OR ELSE connecting two conditions
300 -- ! indicates NOT applied to the expression
302 -- Note that complex decisions do NOT include non-short-circuited logical
303 -- operators (AND/XOR/OR). In the context of existing coverage tools the
304 -- No_Direct_Boolean_Operators restriction is assumed, so these operators
305 -- cannot appear in the source in any case.
307 -- The SCO line for a decision always occurs after the CS line for the
308 -- enclosing statement. The SCO line for a nested decision always occurs
309 -- after the line for the enclosing decision.
311 -- Note that membership tests are considered to be a single simple
312 -- condition, and that is true even if the Ada 2005 set membership
313 -- form is used, e.g. A in (2,7,11.15).
315 -- Implementation permission: a SCO generator is permitted to emit a
316 -- narrower SLOC range for a condition if the corresponding code
317 -- generation circuitry ensures that all debug information for the code
318 -- evaluating the condition will be labeled with SLOCs that fall within
319 -- that narrower range.
321 -- Case Expressions
323 -- For case statements, we rely on statement coverage to make sure that
324 -- all branches of a case statement are covered, but that does not work
325 -- for case expressions, since the entire expression is contained in a
326 -- single statement. However, for complete coverage we really should be
327 -- able to check that every branch of the case statement is covered, so
328 -- we generate a SCO of the form:
330 -- CC sloc-range sloc-range ...
332 -- where sloc-range covers the range of the case expression
334 -- Note: up to 6 entries can appear on a single CC line. If more than 6
335 -- entries appear in one logical statement sequence, continuation lines
336 -- are marked by Cc and appear immediately after the CC line.
338 -- Generic instances
340 -- A table of all generic instantiations in the compilation is generated
341 -- whose entries have the form:
343 -- C i index dependency-number|sloc [enclosing]
345 -- Where index is the 1-based index of the entry in the table,
346 -- dependency-number and sloc indicate the source location of the
347 -- instantiation, and enclosing is the index of the enclosing
348 -- instantiation in the table (for a nested instantiation), or is
349 -- omitted for an outer instantiation.
351 -- Disabled pragmas
353 -- No SCO is generated for disabled pragmas
355 ---------------------------------------------------------------------
356 -- Internal table used to store Source Coverage Obligations (SCOs) --
357 ---------------------------------------------------------------------
359 type Source_Location is record
360 Line : Logical_Line_Number;
361 Col : Column_Number;
362 end record;
364 No_Source_Location : constant Source_Location :=
365 (No_Line_Number, No_Column_Number);
367 type SCO_Table_Entry is record
368 From : Source_Location := No_Source_Location;
369 To : Source_Location := No_Source_Location;
370 C1 : Character := ' ';
371 C2 : Character := ' ';
372 Last : Boolean := False;
374 Pragma_Sloc : Source_Ptr := No_Location;
375 -- For the decision SCO of a pragma, or for the decision SCO of any
376 -- expression nested in a pragma Debug/Assert/PPC, location of PRAGMA
377 -- token (used for control of SCO output, value not recorded in ALI
378 -- file). Similarly, for the decision SCO of an aspect, or for the
379 -- decision SCO of any expression nested in an aspect, location of
380 -- aspect identifier token.
382 Pragma_Aspect_Name : Name_Id := No_Name;
383 -- For the SCO for a pragma/aspect, gives the pragma/apsect name
384 end record;
386 package SCO_Table is new GNAT.Table (
387 Table_Component_Type => SCO_Table_Entry,
388 Table_Index_Type => Nat,
389 Table_Low_Bound => 1,
390 Table_Initial => 500,
391 Table_Increment => 300);
393 Is_Decision : constant array (Character) of Boolean :=
394 ('E' | 'G' | 'I' | 'P' | 'a' | 'A' | 'W' | 'X' => True,
395 others => False);
396 -- Indicates which C1 values correspond to decisions
398 -- The SCO_Table_Entry values appear as follows:
400 -- Statements
401 -- C1 = 'S'
402 -- C2 = statement type code to appear on CS line (or ' ' if none)
403 -- From = starting source location
404 -- To = ending source location
405 -- Last = False for all but the last entry, True for last entry
407 -- Note: successive statements (possibly interspersed with entries of
408 -- other kinds, that are ignored for this purpose), starting with one
409 -- labeled with C1 = 'S', up to and including the first one labeled with
410 -- Last = True, indicate the sequence to be output for a sequence of
411 -- statements on a single CS line (possibly followed by Cs continuation
412 -- lines).
414 -- Note: for a pragma that may be disabled (Debug, Assert, PPC, Check),
415 -- the entry is initially created with C2 = 'p', to mark it as disabled.
416 -- Later on during semantic analysis, if the pragma is enabled,
417 -- Set_SCO_Pragma_Enabled changes C2 to 'P' to cause the entry to be
418 -- emitted in Put_SCOs.
420 -- Dominance marker
421 -- C1 = '>'
422 -- C2 = 'F'/'T'/'S'/'E'
423 -- From = Decision/statement sloc ('F'/'T'/'S'),
424 -- handler first sloc ('E')
425 -- To = No_Source_Location ('F'/'T'/'S'), handler last sloc ('E')
427 -- Note: A dominance marker is always followed by a statement entry
429 -- Decision (EXIT/entry guard/IF/WHILE)
430 -- C1 = 'E'/'G'/'I'/'W' (for EXIT/entry Guard/IF/WHILE)
431 -- C2 = ' '
432 -- From = EXIT/ENTRY/IF/WHILE token
433 -- To = No_Source_Location
434 -- Last = unused
436 -- Decision (PRAGMA)
437 -- C1 = 'P'
438 -- C2 = ' '
439 -- From = PRAGMA token
440 -- To = No_Source_Location
441 -- Last = unused
443 -- Note: when the parse tree is first scanned, we unconditionally build a
444 -- pragma decision entry for any decision in a pragma (here as always in
445 -- SCO contexts, the only pragmas with decisions are Assert, Check,
446 -- dyadic Debug, Precondition and Postcondition). These entries will
447 -- be omitted in output if the pragma is disabled (see comments for
448 -- statement entries): this filtering is achieved during the second pass
449 -- of SCO generation (Par_SCO.SCO_Record_Filtered).
451 -- Decision (ASPECT)
452 -- C1 = 'A'
453 -- C2 = ' '
454 -- From = aspect identifier
455 -- To = No_Source_Location
456 -- Last = unused
458 -- Note: when the parse tree is first scanned, we unconditionally build a
459 -- pragma decision entry for any decision in an aspect (Pre/Post/
460 -- [Type_]Invariant/[Static_|Dynamic_]Predicate). Entries for disabled
461 -- Pre/Post aspects will be omitted from output.
463 -- Decision (Expression)
464 -- C1 = 'X'
465 -- C2 = ' '
466 -- From = No_Source_Location
467 -- To = No_Source_Location
468 -- Last = unused
470 -- Operator
471 -- C1 = '!', '&', '|'
472 -- C2 = ' '/'?'/ (Logical operator/Putative one)
473 -- From = location of NOT/AND/OR token
474 -- To = No_Source_Location
475 -- Last = False
477 -- Element (condition)
478 -- C1 = ' '
479 -- C2 = 'c', 't', or 'f' (condition/true/false)
480 -- From = starting source location
481 -- To = ending source location
482 -- Last = False for all but the last entry, True for last entry
484 -- Note: the sequence starting with a decision, and continuing with
485 -- operators and elements up to and including the first one labeled with
486 -- Last = True, indicate the sequence to be output on one decision line.
488 ----------------
489 -- Unit Table --
490 ----------------
492 -- This table keeps track of the units and the corresponding starting and
493 -- ending indexes (From, To) in the SCO table. Note that entry zero is
494 -- present but unused, it is for convenience in calling the sort routine.
495 -- Thus the lower bound for real entries is 1.
497 type SCO_Unit_Index is new Int;
498 -- Used to index values in this table. Values start at 1 and are assigned
499 -- sequentially as entries are constructed.
501 Missing_Dep_Num : constant Nat := 0;
502 -- Represents a dependency number for a dependency that is ignored. SCO
503 -- information consumers use this to strip units that must be kept out of
504 -- the coverage analysis.
506 type SCO_Unit_Table_Entry is record
507 File_Name : String_Ptr;
508 -- Pointer to file name in ALI file
510 File_Index : Source_File_Index;
511 -- Index for the source file
513 Dep_Num : Nat;
514 -- Dependency number in ALI file. This is a positive number when the
515 -- dependency is actually available in the context, it is
516 -- Missing_Dep_Num otherwise.
518 From : Nat;
519 -- Starting index in SCO_Table of SCO information for this unit
521 To : Nat;
522 -- Ending index in SCO_Table of SCO information for this unit
524 -- Warning: SCOs generation (in Par_SCO) is done in two passes, which
525 -- communicate through an intermediate table (Par_SCO.SCO_Raw_Table).
526 -- Before the second pass executes, From and To actually reference index
527 -- in the internal table: SCO_Table is empty. Then, at the end of the
528 -- second pass, these indexes are updated in order to reference indexes
529 -- in SCO_Table.
531 end record;
533 package SCO_Unit_Table is new GNAT.Table (
534 Table_Component_Type => SCO_Unit_Table_Entry,
535 Table_Index_Type => SCO_Unit_Index,
536 Table_Low_Bound => 0, -- see note above on sorting
537 Table_Initial => 20,
538 Table_Increment => 200);
540 -----------------------
541 -- Generic instances --
542 -----------------------
544 type SCO_Instance_Index is new Nat;
546 type SCO_Instance_Table_Entry is record
547 Inst_Dep_Num : Nat;
548 Inst_Loc : Source_Location;
549 -- File and source location of instantiation
551 Enclosing_Instance : SCO_Instance_Index;
552 end record;
554 package SCO_Instance_Table is new GNAT.Table (
555 Table_Component_Type => SCO_Instance_Table_Entry,
556 Table_Index_Type => SCO_Instance_Index,
557 Table_Low_Bound => 1,
558 Table_Initial => 20,
559 Table_Increment => 200);
561 -----------------
562 -- Subprograms --
563 -----------------
565 procedure Initialize;
566 -- Reset tables for a new compilation
568 end SCOs;