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 / s-comexc.adb < prev    next >
Text File  |  1996-09-28  |  4KB  |  107 lines

  1. -----------------------------------------------------------------------------
  2. --                                                                          --
  3. --                 GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS               --
  4. --                                                                          --
  5. --            S Y S T E M . C O M P I L E R _ E X C E P T I O N S           --
  6. --                                                                          --
  7. --                                  B o d y                                 --
  8. --                                                                          --
  9. --                             $Revision: 1.12 $                             --
  10. --                                                                          --
  11. --       Copyright (c) 1991,1992,1993,1994, FSU, All Rights Reserved        --
  12. --                                                                          --
  13. -- GNARL is free software; you can redistribute it  and/or modify it  under --
  14. -- terms  of  the  GNU  Library General Public License  as published by the --
  15. -- Free Software  Foundation;  either version 2, or (at  your  option)  any --
  16. -- later  version.  GNARL is distributed  in the hope that  it will be use- --
  17. -- ful, but but WITHOUT ANY WARRANTY;  without even the implied warranty of --
  18. -- MERCHANTABILITY  or  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Gen- --
  19. -- eral Library Public License  for more details.  You should have received --
  20. -- a  copy of the GNU Library General Public License along with GNARL;  see --
  21. -- file COPYING.LIB.  If not,  write to the  Free Software Foundation,  675 --
  22. -- Mass Ave, Cambridge, MA 02139, USA.                                      --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. with System.Error_Reporting;
  27. --  Used for,  Error_Reporting.Unimplemented_Operation
  28. --             Error_Reporting.Assert
  29.  
  30. with System.Task_Primitives;
  31. --  Used for,  Task_Primitives.Machine_Exceptions;
  32. --             Task_Primitives.Error_Information;
  33.  
  34. with System.Compiler_Exceptions.Machine_Specifics;
  35.  
  36. package body System.Compiler_Exceptions is
  37.  
  38.    procedure Unimplemented renames
  39.       System.Error_Reporting.Unimplemented_Operation;
  40.  
  41.    ---------------------
  42.    -- Raise_Exception --
  43.    ---------------------
  44.  
  45.    --  This is a stopgap implementation which can only raise predefined
  46.    --  exceptions.
  47.  
  48.    procedure Raise_Exception (E : Exception_ID) is
  49.    begin
  50.       case E is
  51.       when Null_Exception =>
  52.          null;
  53.       when Constraint_Error_ID =>
  54.          raise Constraint_Error;
  55.       when Numeric_Error_ID =>
  56.          raise Numeric_Error;
  57.       when Program_Error_ID =>
  58.          raise Program_Error;
  59.       when Storage_Error_ID =>
  60.          raise Storage_Error;
  61.       when Tasking_Error_ID =>
  62.          raise Tasking_Error;
  63.       when others =>
  64.          Unimplemented;
  65.       end case;
  66.    end Raise_Exception;
  67.  
  68.    ----------------------
  69.    -- Notify_Exception --
  70.    ----------------------
  71.  
  72.    procedure Notify_Exception
  73.      (Which              : Task_Primitives.Machine_Exceptions;
  74.       Info               : Task_Primitives.Error_Information;
  75.       Modified_Registers : Pre_Call_State)
  76.    is
  77.    begin
  78.       Raise_Exception (
  79.         Compiler_Exceptions.Machine_Specifics.Identify_Exception (
  80.           Which, Info, Modified_Registers));
  81.    end Notify_Exception;
  82.  
  83.    -----------------------
  84.    -- Current_Exception --
  85.    -----------------------
  86.  
  87.    function Current_Exception return Exception_ID is
  88.    begin
  89.       Unimplemented;
  90.       return Null_Exception;
  91.    end Current_Exception;
  92.  
  93.    -----------
  94.    -- Image --
  95.    -----------
  96.  
  97.    function Image
  98.      (E    : Exception_ID)
  99.       return Exception_ID_String
  100.    is
  101.    begin
  102.       Unimplemented;
  103.       return "Not Implemented*";
  104.    end Image;
  105.  
  106. end System.Compiler_Exceptions;
  107.