Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 842fa1dff1040d2ff9927f5396714502bbc3fe63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
-----------------------------------------------------------------------------------
-- Copyright (c) 2009 IBM Corporation and others.
-- All rights reserved. This program and the accompanying materials
-- are made available under the terms of the Eclipse Public License v1.0
-- which accompanies this distribution, and is available at
-- http://www.eclipse.org/legal/epl-v10.html
--
-- Contributors:
--     IBM Corporation - initial API and implementation
-----------------------------------------------------------------------------------

%options la=2
%options package=org.eclipse.cdt.internal.core.dom.lrparser.gpp
%options template=FixedBtParserTemplateD.g


$Terminals

   -- GCC allows these keywords to be used in C++
   
   _Complex  
   _Imaginary
   restrict
   
$End


-- For this to work the environment variable LPG_INCLUDE must be set up
-- to point at the directory where the CPPParser.g file is located.
$Import
	../cpp/CPPGrammar.g
	
$DropRules

-- will be replaced by extended asm syntax
asm_definition
    ::= 'asm' '(' 'stringlit' ')' ';'

$End


$Import
    ../gnu/GNUExtensions.g
$End

$Globals
/.
	import org.eclipse.cdt.core.dom.lrparser.action.gnu.GPPBuildASTParserAction;
	import org.eclipse.cdt.core.dom.lrparser.action.gnu.GPPSecondaryParserFactory;
	import org.eclipse.cdt.core.dom.ast.gnu.cpp.*;
./
$End

$Define

	$build_action_class /. GPPBuildASTParserAction ./
	$parser_factory_create_expression /. GPPSecondaryParserFactory.getDefault() ./

$End

$Rules


asm_definition
    ::= extended_asm_declaration


no_type_declaration_specifier
   ::= attribute_or_decl_specifier

complete_declarator
   ::= attribute_or_decl_specifier_seq declarator
     | declarator attribute_or_decl_specifier_seq
     | attribute_or_decl_specifier_seq declarator attribute_or_decl_specifier_seq
      
member_declarator_complete
   ::= attribute_or_decl_specifier_seq member_declarator_complete
     | member_declarator_complete attribute_or_decl_specifier_seq
     | attribute_or_decl_specifier_seq member_declarator_complete attribute_or_decl_specifier_seq
      
enum_specifier_hook
    ::= attribute_or_decl_specifier_seq

composite_specifier_hook
    ::= attribute_or_decl_specifier_seq
    
class_name_suffix_hook
    ::= attribute_or_decl_specifier_seq

pointer_hook
    ::= attribute_or_decl_specifier_seq 
    
declarator
    ::= <openscope-ast> ptr_operator_seq attribute_or_decl_specifier_seq direct_declarator
          /. $Build  consumeDeclaratorWithPointer(true);  $EndBuild ./

elaborated_specifier_hook
    ::= attribute_or_decl_specifier_seq
    
namespace_definition_hook
    ::= attribute_or_decl_specifier_seq
    
    
simple_type_specifier
    ::= '_Complex'
          /. $Build  consumeToken(); $EndBuild ./
      | '_Imaginary'
          /. $Build  consumeToken(); $EndBuild ./

cv_qualifier
    ::= 'restrict'
          /. $Build  consumeToken(); $EndBuild ./
          
          
explicit_instantiation
    ::= 'extern' 'template' declaration
            /. $Build  consumeTemplateExplicitInstantiationGCC(IGPPASTExplicitTemplateInstantiation.ti_extern);  $EndBuild ./
      | 'static' 'template' declaration
            /. $Build  consumeTemplateExplicitInstantiationGCC(IGPPASTExplicitTemplateInstantiation.ti_static);  $EndBuild ./
      | 'inline' 'template' declaration    
            /. $Build  consumeTemplateExplicitInstantiationGCC(IGPPASTExplicitTemplateInstantiation.ti_inline);  $EndBuild ./
          
          
$End

Back to the top