home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / checks.ads < prev    next >
Text File  |  1996-09-28  |  6KB  |  119 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                               C H E C K S                                --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.2 $                              --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved        --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. --  Package containing routines used to deal with runtime checks. These
  26. --  routines are used both by the semantics and by the expander. In some
  27. --  cases, checks are enabled simply by setting flags for gigi, and in
  28. --  other cases the code for the check is expanded.
  29.  
  30. with Types; use Types;
  31.  
  32. package Checks is
  33.  
  34.    function Access_Checks_Suppressed        (E : Entity_Id) return Boolean;
  35.    function Accessibility_Checks_Suppressed (E : Entity_Id) return Boolean;
  36.    function Discriminant_Checks_Suppressed  (E : Entity_Id) return Boolean;
  37.    function Division_Checks_Suppressed      (E : Entity_Id) return Boolean;
  38.    function Elaboration_Checks_Suppressed   (E : Entity_Id) return Boolean;
  39.    function Index_Checks_Suppressed         (E : Entity_Id) return Boolean;
  40.    function Length_Checks_Suppressed        (E : Entity_Id) return Boolean;
  41.    function Overflow_Checks_Suppressed      (E : Entity_Id) return Boolean;
  42.    function Range_Checks_Suppressed         (E : Entity_Id) return Boolean;
  43.    function Storage_Checks_Suppressed       (E : Entity_Id) return Boolean;
  44.    function Tag_Checks_Suppressed           (E : Entity_Id) return Boolean;
  45.    --  These functions check to see if the named check is suppressed,
  46.    --  either by an active scope suppress setting, or because the check
  47.    --  has been specifically suppressed for the given entity. If no entity
  48.    --  is relevant for the current check, then Empty is used as an argument.
  49.    --  Note: the reason we insist on specifying Empty is to force the
  50.    --  caller to think about whether there is any relevant entity that
  51.    --  should be checked.
  52.  
  53.    procedure Apply_Access_Check (N : Node_Id; Typ : Entity_Id);
  54.    --  Determines whether an expression node should be flagged as needing
  55.    --  a runtime access check. If the node requires such a check, the
  56.    --  Do_Access_Check flag is turned on.
  57.  
  58.    procedure Apply_Arithmetic_Overflow_Check (N : Node_Id);
  59.    --  Given a binary arithmetic operator (+ - * /) expand a software integer
  60.    --  overflow check using range checks on a larger checking type or a call
  61.    --  to an appropriate runtime routine.
  62.  
  63.    procedure Apply_Discriminant_Check (N : Node_Id; Typ : Entity_Id);
  64.    --  Determines whether an expression node should be flagged as needing
  65.    --  a runtime discriminant check. If the node requires such a check,
  66.    --  the Do_Discriminant_Check flag is turned on.
  67.  
  68.    procedure Apply_Length_Check (Expr : Node_Id; Typ : Entity_Id);
  69.    --  Expr is an expression of array type, and Typ is a constrained array
  70.    --  type. This procedure builds a sequence of declarations and statements
  71.    --  which can be executed to perform a length check on the expression.
  72.    --  The resulting actions are inserted at Expr tree using Insert_Actions.
  73.  
  74.    procedure Apply_Range_Check
  75.      (N           : Node_Id;
  76.       Source_Type : Entity_Id;
  77.       Target_Type : Entity_Id);
  78.    --  Determines whether an expression node should be flagged as needing
  79.    --  a runtime range check. If the node requires such a check, the
  80.    --  Do_Range_Check flag is turned on.
  81.  
  82.    procedure Apply_Slice_Range_Check
  83.      (N           : Node_Id;
  84.       Source_Type : Entity_Id;
  85.       Target_Type : Entity_Id);
  86.    --  Determines whether an range node should be flagged as needing
  87.    --  a runtime range check. If the node requires such a check, the
  88.    --  Do_Range_Check flag is turned on.  This requires special handling
  89.    --  because of null slices.
  90.  
  91.    procedure Apply_Static_Length_Check
  92.      (N           : Node_Id;
  93.       Source_Type : Entity_Id;
  94.       Target_Type : Entity_Id);
  95.    --  Tries to determine statically whether array types Source_Type and
  96.    --  Target_Type have the same length. If it can be determined at compile
  97.    --  time that they do not, then an N_Raise_Constraint_Error node replaces
  98.    --  N and a warning message is emitted.
  99.  
  100.    procedure Apply_Subscript_Conversion_Checks (N : Node_Id);
  101.    --  Add necessary type conversions to the subscripts of formal parameters
  102.    --  that are unconstrained arrays or access to them and also for subscripts
  103.    --  of packed arrays to enforce index checks.
  104.  
  105. private
  106.    pragma Inline (Access_Checks_Suppressed);
  107.    pragma Inline (Accessibility_Checks_Suppressed);
  108.    pragma Inline (Discriminant_Checks_Suppressed);
  109.    pragma Inline (Division_Checks_Suppressed);
  110.    pragma Inline (Elaboration_Checks_Suppressed);
  111.    pragma Inline (Index_Checks_Suppressed);
  112.    pragma Inline (Length_Checks_Suppressed);
  113.    pragma Inline (Overflow_Checks_Suppressed);
  114.    pragma Inline (Range_Checks_Suppressed);
  115.    pragma Inline (Storage_Checks_Suppressed);
  116.    pragma Inline (Tag_Checks_Suppressed);
  117.  
  118. end Checks;
  119.