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 / par-ch2.adb < prev    next >
Text File  |  1996-09-28  |  12KB  |  368 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                              P A R . C H 2                               --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.28 $                             --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 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. separate (Par)
  26. package body Ch2 is
  27.  
  28.    --  Local functions, used only in this chapter
  29.  
  30.    function P_Pragma_Argument_Association return Node_Id;
  31.  
  32.    ---------------------
  33.    -- 2.3  Identifier --
  34.    ---------------------
  35.  
  36.    --  IDENTIFIER ::= LETTER {[UNDERLINE] LETTER_OR_DIGIT}
  37.  
  38.    --  LETTER_OR_DIGIT ::= IDENTIFIER_LETTER | DIGIT
  39.  
  40.    --  An IDENTIFIER shall not be a reserved word
  41.  
  42.    --  Error recovery: can raise Error_Resync (cannot return Error)
  43.  
  44.    function P_Identifier return Node_Id is
  45.       Ident_Node : Node_Id;
  46.  
  47.    begin
  48.       --  All set if we do indeed have an identifier
  49.  
  50.       if Token = Tok_Identifier then
  51.          Ident_Node := Token_Node;
  52.          Scan; -- past Identifier
  53.          return Ident_Node;
  54.  
  55.       --  If we have a reserved identifier, manufacture an identifier with
  56.       --  a corresponding name after posting an appropriate error message
  57.  
  58.       elsif Is_Reserved_Identifier then
  59.          Scan_Reserved_Identifier (Force_Msg => False);
  60.          Ident_Node := Token_Node;
  61.          Scan; -- past the node
  62.          return Ident_Node;
  63.  
  64.       --  Otherwise we have junk that cannot be interpreted as an identifier
  65.  
  66.       else
  67.          T_Identifier; -- to give message
  68.          raise Error_Resync;
  69.       end if;
  70.    end P_Identifier;
  71.  
  72.    --------------------------
  73.    -- 2.3  Letter Or Digit --
  74.    --------------------------
  75.  
  76.    --  Parsed by P_Identifier (2.3)
  77.  
  78.    --------------------------
  79.    -- 2.4  Numeric Literal --
  80.    --------------------------
  81.  
  82.    --  NUMERIC_LITERAL ::= DECIMAL_LITERAL | BASED_LITERAL
  83.  
  84.    --  Numeric literal is returned by the scanner as either
  85.    --  Tok_Integer_Literal or Tok_Real_Literal
  86.  
  87.    ----------------------------
  88.    -- 2.4.1  Decimal Literal --
  89.    ----------------------------
  90.  
  91.    --  DECIMAL_LITERAL ::= NUMERAL [.NUMERAL] [EXPONENT]
  92.  
  93.    --  Handled by scanner as part of numeric lIteral handing (see 2.4)
  94.  
  95.    --------------------
  96.    -- 2.4.1  Numeral --
  97.    --------------------
  98.  
  99.    --  NUMERAL ::= DIGIT {[UNDERLINE] DIGIT}
  100.  
  101.    --  Handled by scanner as part of numeric literal handling (see 2.4)
  102.  
  103.    ---------------------
  104.    -- 2.4.1  Exponent --
  105.    ---------------------
  106.  
  107.    --  EXPONENT ::= E [+] NUMERAL | E - NUMERAL
  108.  
  109.    --  Handled by scanner as part of numeric literal handling (see 2.4)
  110.  
  111.    --------------------------
  112.    -- 2.4.2  Based Literal --
  113.    --------------------------
  114.  
  115.    --  BASED_LITERAL ::=
  116.    --   BASE # BASED_NUMERAL [.BASED_NUMERAL] # [EXPONENT]
  117.  
  118.    --  Handled by scanner as part of numeric literal handling (see 2.4)
  119.  
  120.    -----------------
  121.    -- 2.4.2  Base --
  122.    -----------------
  123.  
  124.    --  BASE ::= NUMERAL
  125.  
  126.    --  Handled by scanner as part of numeric literal handling (see 2.4)
  127.  
  128.    --------------------------
  129.    -- 2.4.2  Based Numeral --
  130.    --------------------------
  131.  
  132.    --  BASED_NUMERAL ::=
  133.    --    EXTENDED_DIGIT {[UNDERLINE] EXTENDED_DIGIT}
  134.  
  135.    --  Handled by scanner as part of numeric literal handling (see 2.4)
  136.  
  137.    ---------------------------
  138.    -- 2.4.2  Extended Digit --
  139.    ---------------------------
  140.  
  141.    --  EXTENDED_DIGIT ::= DIGIT | A | B | C | D | E | F
  142.  
  143.    --  Handled by scanner as part of numeric literal handling (see 2.4)
  144.  
  145.    ----------------------------
  146.    -- 2.5  Character Literal --
  147.    ----------------------------
  148.  
  149.    --  CHARACTER_LITERAL ::= ' GRAPHIC_CHARACTER '
  150.  
  151.    --  Handled by the scanner and returned as Tok_Character_Literal
  152.  
  153.    -------------------------
  154.    -- 2.6  String Literal --
  155.    -------------------------
  156.  
  157.    --  STRING LITERAL ::= "{STRING_ELEMENT}"
  158.  
  159.    --  Handled by the scanner and returned as Tok_Character_Literal
  160.    --  or if the string looks like an operator as Tok_Operator_Symbol.
  161.  
  162.    -------------------------
  163.    -- 2.6  String Element --
  164.    -------------------------
  165.  
  166.    --  STRING_ELEMENT ::= "" | non-quotation_mark_GRAPHIC_CHARACTER
  167.  
  168.    --  A STRING_ELEMENT is either a pair of quotation marks ("),
  169.    --  or a single GRAPHIC_CHARACTER other than a quotation mark.
  170.  
  171.    --  Handled by scanner as part of string literal handling (see 2.4)
  172.  
  173.    ------------------
  174.    -- 2.7  Comment --
  175.    ------------------
  176.  
  177.    --  A COMMENT starts with two adjacent hyphens and extends up to the
  178.    --  end of the line. A COMMENT may appear on any line of a program.
  179.  
  180.    --  Handled by the scanner which simply skips past encountered comments
  181.  
  182.    -----------------
  183.    -- 2.8  Pragma --
  184.    -----------------
  185.  
  186.    --  PRAGMA ::= pragma IDENTIFIER
  187.    --    [(PRAGMA_ARGUMENT_ASSOCIATION {, PRAGMA_ARGUMENT_ASSOCIATION})];
  188.  
  189.    --  The caller has checked that the initial token is PRAGMA
  190.  
  191.    --  Error recovery: cannot raise Error_Resync
  192.  
  193.    --  One special piece of processing is needed in this routine. As described
  194.    --  in the section on "Handling semicolon used in place of IS" in module
  195.    --  Parse, the parser detects the case of missing subprogram bodies to
  196.    --  allow recovery from this syntactic error. Pragma INTERFACE (and, for
  197.    --  Ada 95, pragma IMPORT) can appear in place of the body. The parser must
  198.    --  recognize the use of these two pragmas in this context, otherwise it
  199.    --  will think there are missing bodies, and try to change ; to IS, when
  200.    --  in fact the bodies ARE present, supplied by these pragmas.
  201.  
  202.    function P_Pragma return Node_Id is
  203.  
  204.       Interface_Check_Required : Boolean := False;
  205.       --  Set True if check of pragma INTERFACE is required
  206.  
  207.       Import_Check_Required : Boolean := False;
  208.       --  Set True if check of pragma IMPORT is required
  209.  
  210.       Arg_Count : Int := 0;
  211.       --  Number of argument associations processed
  212.  
  213.       Pragma_Node   : Node_Id;
  214.       Pragma_Name   : Name_Id;
  215.       Semicolon_Loc : Source_Ptr;
  216.       Ident_Node    : Node_Id;
  217.  
  218.    begin
  219.       Pragma_Node := New_Node (N_Pragma, Token_Ptr);
  220.       Scan; -- past PRAGMA
  221.       Pragma_Name := Token_Name;
  222.  
  223.       if Style_Check then
  224.          Style.Check_Pragma_Name;
  225.       end if;
  226.  
  227.       Ident_Node := P_Identifier;
  228.       Set_Chars (Pragma_Node, Pragma_Name);
  229.       Delete_Node (Ident_Node);
  230.  
  231.       --  See if special INTERFACE/IMPORT check is required
  232.  
  233.       if SIS_Entry_Active then
  234.          Interface_Check_Required := (Pragma_Name = Name_Interface);
  235.          Import_Check_Required    := (Pragma_Name = Name_Import);
  236.       else
  237.          Interface_Check_Required := False;
  238.          Import_Check_Required    := False;
  239.       end if;
  240.  
  241.       --  Scan arguments. We assume that arguments are present if there is
  242.       --  a left paren, or if a semicolon is missing and there is another
  243.       --  token on the same line as the pragma name.
  244.  
  245.       if Token = Tok_Left_Paren
  246.         or else (Token /= Tok_Semicolon
  247.                    and then not Token_Is_At_Start_Of_Line)
  248.       then
  249.          Set_Pragma_Argument_Associations (Pragma_Node, New_List);
  250.          T_Left_Paren;
  251.  
  252.          loop
  253.             Arg_Count := Arg_Count + 1;
  254.  
  255.             if Arg_Count = 2
  256.               and then (Interface_Check_Required or else Import_Check_Required)
  257.             then
  258.  
  259.                --  Here is where we cancel the SIS active status if this pragma
  260.                --  supplies a body for the currently active subprogram spec.
  261.  
  262.                if Token in Token_Class_Desig then
  263.                   if Token_Name = Chars (SIS_Labl) then
  264.                      SIS_Entry_Active := False;
  265.                   end if;
  266.                end if;
  267.             end if;
  268.  
  269.             Append (P_Pragma_Argument_Association,
  270.               Pragma_Argument_Associations (Pragma_Node));
  271.             exit when Token /= Tok_Comma;
  272.             Scan; -- past comma
  273.          end loop;
  274.  
  275.          T_Right_Paren;
  276.       end if;
  277.  
  278.       Semicolon_Loc := Token_Ptr;
  279.  
  280.       if Token /= Tok_Semicolon then
  281.          T_Semicolon;
  282.          Resync_Past_Semicolon;
  283.       else
  284.          Scan; -- past semicolon
  285.       end if;
  286.  
  287.       if Is_Pragma_Name (Chars (Pragma_Node)) then
  288.          return Par.Prag (Pragma_Node, Semicolon_Loc);
  289.       else
  290.          Error_Msg_Node_1 := Pragma_Node;
  291.          Error_Msg ("unrecognized pragma&?!", Sloc (Pragma_Node));
  292.          return Error;
  293.       end if;
  294.  
  295.    exception
  296.       when Error_Resync =>
  297.          Resync_Past_Semicolon;
  298.          return Error;
  299.  
  300.    end P_Pragma;
  301.  
  302.    --  This routine is called if a pragma is encountered in an inappropriate
  303.    --  position, the pragma is scanned out and control returns to continue.
  304.  
  305.    --  The caller has checked that the initial token is pragma
  306.  
  307.    --  Error recovery: cannot raise Error_Resync
  308.  
  309.    procedure P_Pragmas_Misplaced is
  310.    begin
  311.       while Token = Tok_Pragma loop
  312.          Error_Msg_SC ("pragma not allowed here");
  313.          Discard_Junk_Node (P_Pragma);
  314.       end loop;
  315.    end P_Pragmas_Misplaced;
  316.  
  317.    --  This procedure is called to scan out an optional sequence of pragmas.
  318.    --  Any pragmas found are appended to the list provided as an argument.
  319.  
  320.    --  Error recovery: Cannot raise Error_Resync
  321.  
  322.    procedure P_Pragmas_Opt (List : List_Id) is
  323.    begin
  324.       while Token = Tok_Pragma loop
  325.          Append (P_Pragma, List);
  326.       end loop;
  327.    end P_Pragmas_Opt;
  328.  
  329.    --------------------------------------
  330.    -- 2.8  Pragma_Argument Association --
  331.    --------------------------------------
  332.  
  333.    --  PRAGMA_ARGUMENT_ASSOCIATION ::=
  334.    --    [pragma_argument_IDENTIFIER =>] NAME
  335.    --  | [pragma_argument_IDENTIFIER =>] EXPRESSION
  336.  
  337.    --  Error recovery: cannot raise Error_Resync
  338.  
  339.    function P_Pragma_Argument_Association return Node_Id is
  340.       Scan_State      : Saved_Scan_State;
  341.       Pragma_Arg_Node : Node_Id;
  342.       Identifier_Node : Node_Id;
  343.  
  344.    begin
  345.       Pragma_Arg_Node := New_Node (N_Pragma_Argument_Association, Token_Ptr);
  346.       Set_Chars (Pragma_Arg_Node, No_Name);
  347.  
  348.       if Token = Tok_Identifier then
  349.          Identifier_Node := Token_Node;
  350.          Save_Scan_State (Scan_State); -- at Identifier
  351.          Scan; -- past Identifier
  352.  
  353.          if Token = Tok_Arrow then
  354.             Scan; -- past arrow
  355.             Set_Chars (Pragma_Arg_Node, Chars (Identifier_Node));
  356.             Delete_Node (Identifier_Node);
  357.          else
  358.             Restore_Scan_State (Scan_State); -- to Identifier
  359.          end if;
  360.       end if;
  361.  
  362.       Set_Expression (Pragma_Arg_Node, P_Expression);
  363.       return Pragma_Arg_Node;
  364.  
  365.    end P_Pragma_Argument_Association;
  366.  
  367. end Ch2;
  368.