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 / debug.ads < prev    next >
Text File  |  1996-09-28  |  5KB  |  100 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                                D E B U G                                 --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.25 $                             --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved        --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. with Types; use Types;
  27.  
  28. package Debug is
  29.  
  30. --  This package contains global flags used to control the inclusion
  31. --  of debugging code in various phases of the compiler.
  32.  
  33.    -------------------------
  34.    -- Dynamic Debug Flags --
  35.    -------------------------
  36.  
  37.    --  Thirty six flags that can be used to active various specialized
  38.    --  debugging output information. The flags are preset to False, which
  39.    --  corresponds to the given output being suppressed. The individual
  40.    --  flags can be turned on using the undocumented switch /dxxx where
  41.    --  xxx is a string of letters for flags to be turned on. Documentation
  42.    --  on the current usage of these flags is contained in the body of Debug
  43.    --  rather than the spec, so that we don't have to recompile the world
  44.    --  when a new debug flag is added
  45.  
  46.    Debug_Flag_A : Boolean := False;
  47.    Debug_Flag_B : Boolean := False;
  48.    Debug_Flag_C : Boolean := False;
  49.    Debug_Flag_D : Boolean := False;
  50.    Debug_Flag_E : Boolean := False;
  51.    Debug_Flag_F : Boolean := False;
  52.    Debug_Flag_G : Boolean := False;
  53.    Debug_Flag_H : Boolean := False;
  54.    Debug_Flag_I : Boolean := False;
  55.    Debug_Flag_J : Boolean := False;
  56.    Debug_Flag_K : Boolean := False;
  57.    Debug_Flag_L : Boolean := False;
  58.    Debug_Flag_M : Boolean := False;
  59.    Debug_Flag_N : Boolean := False;
  60.    Debug_Flag_O : Boolean := False;
  61.    Debug_Flag_P : Boolean := False;
  62.    Debug_Flag_Q : Boolean := False;
  63.    Debug_Flag_R : Boolean := False;
  64.    Debug_Flag_S : Boolean := False;
  65.    Debug_Flag_T : Boolean := False;
  66.    Debug_Flag_U : Boolean := False;
  67.    Debug_Flag_V : Boolean := False;
  68.    Debug_Flag_W : Boolean := False;
  69.    Debug_Flag_X : Boolean := False;
  70.    Debug_Flag_Y : Boolean := False;
  71.    Debug_Flag_Z : Boolean := False;
  72.  
  73.    Debug_Flag_1 : Boolean := False;
  74.    Debug_Flag_2 : Boolean := False;
  75.    Debug_Flag_3 : Boolean := False;
  76.    Debug_Flag_4 : Boolean := False;
  77.    Debug_Flag_5 : Boolean := False;
  78.    Debug_Flag_6 : Boolean := False;
  79.    Debug_Flag_7 : Boolean := False;
  80.    Debug_Flag_8 : Boolean := False;
  81.    Debug_Flag_9 : Boolean := False;
  82.  
  83.    Fatal_Error_Node  : Node_Id;
  84.    --  Set to the node giving the location at which the compiler abort
  85.    --  is to be signalled. This is not necessarily perfectly accurate,
  86.    --  it is just a convenient best guess. This is used to output the
  87.    --  source location in the abort message by Comperr, and also to
  88.    --  implement the d3 debugging flag.
  89.  
  90.    function Get_Debug_Flag_K return Boolean;
  91.    --  This function is called from C code to get the setting of the K flag
  92.    --  (it does not work to try to access a constant object directly).
  93.  
  94.    procedure Set_Debug_Flag (C : Character; Val : Boolean := True);
  95.    --  Where C is 0-9 or a-z, sets the corresponding debug flag to the
  96.    --  given value. In the checks off version of debug, the call to
  97.    --  Set_Debug_Flag is always a null operation.
  98.  
  99. end Debug;
  100.