OSDN Git Service

* common/config/i386/i386-common.c (ix86_option_optimization_table):
[pf3gnuchains/gcc-fork.git] / gcc / go / gofrontend / parse.h
1 // parse.h -- Go frontend parser.     -*- C++ -*-
2
3 // Copyright 2009 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
6
7 #ifndef GO_PARSE_H
8 #define GO_PARSE_H
9
10 class Set_iota_traverse;
11 class Lex;
12 class Gogo;
13 class Named_object;
14 class Type;
15 class Typed_identifier;
16 class Typed_identifier_list;
17 class Function_type;
18 class Block;
19 class Expression;
20 class Expression_list;
21 class Struct_field_list;
22 class Case_clauses;
23 class Type_case_clauses;
24 class Select_clauses;
25 class Statement;
26 class Label;
27
28 // Parse the program.
29
30 class Parse
31 {
32  public:
33   Parse(Lex*, Gogo*);
34
35   // Parse a program.
36   void
37   program();
38
39  private:
40   // Precedence values.
41   enum Precedence
42   {
43     PRECEDENCE_INVALID = -1,
44     PRECEDENCE_NORMAL = 0,
45     PRECEDENCE_OROR,
46     PRECEDENCE_ANDAND,
47     PRECEDENCE_RELOP,
48     PRECEDENCE_ADDOP,
49     PRECEDENCE_MULOP
50   };
51
52   // We use this when parsing the range clause of a for statement.
53   struct Range_clause
54   {
55     // Set to true if we found a range clause.
56     bool found;
57     // The index expression.
58     Expression* index;
59     // The value expression.
60     Expression* value;
61     // The range expression.
62     Expression* range;
63
64     Range_clause()
65       : found(false), index(NULL), value(NULL), range(NULL)
66     { }
67   };
68
69   // We use this when parsing the statement at the start of a switch,
70   // in order to recognize type switches.
71   struct Type_switch
72   {
73     // Set to true if we find a type switch.
74     bool found;
75     // The variable name.
76     std::string name;
77     // The location of the variable.
78     Location location;
79     // The expression.
80     Expression* expr;
81
82     Type_switch()
83       : found(false), name(), location(UNKNOWN_LOCATION), expr(NULL)
84     { }
85   };
86
87   // A variable defined in an enclosing function referenced by the
88   // current function.
89   class Enclosing_var
90   {
91    public:
92     Enclosing_var(Named_object* var, Named_object* in_function,
93                   unsigned int index)
94       : var_(var), in_function_(in_function), index_(index)
95     { }
96
97     // We put these in a vector, so we need a default constructor.
98     Enclosing_var()
99       : var_(NULL), in_function_(NULL), index_(-1U)
100     { }
101
102     Named_object*
103     var() const
104     { return this->var_; }
105
106     Named_object*
107     in_function() const
108     { return this->in_function_; }
109
110     unsigned int
111     index() const
112     { return this->index_; }
113
114    private:
115     // The variable which is being referred to.
116     Named_object* var_;
117     // The function where the variable is defined.
118     Named_object* in_function_;
119     // The index of the field in this function's closure struct for
120     // this variable.
121     unsigned int index_;
122   };
123
124   // We store Enclosing_var entries in a set, so we need a comparator.
125   struct Enclosing_var_comparison
126   {
127     bool
128     operator()(const Enclosing_var&, const Enclosing_var&);
129   };
130
131   // A set of Enclosing_var entries.
132   typedef std::set<Enclosing_var, Enclosing_var_comparison> Enclosing_vars;
133
134   // Used to detect duplicate parameter/result names.
135   typedef std::map<std::string, const Typed_identifier*> Names;
136
137   // Peek at the current token from the lexer.
138   const Token*
139   peek_token();
140
141   // Consume the current token, return the next one.
142   const Token*
143   advance_token();
144
145   // Push a token back on the input stream.
146   void
147   unget_token(const Token&);
148
149   // The location of the current token.
150   Location
151   location();
152
153   // For break and continue we keep a stack of statements with
154   // associated labels (if any).  The top of the stack is used for a
155   // break or continue statement with no label.
156   typedef std::vector<std::pair<Statement*, Label*> > Bc_stack;
157
158   // Parser nonterminals.
159   void identifier_list(Typed_identifier_list*);
160   Expression_list* expression_list(Expression*, bool may_be_sink);
161   bool qualified_ident(std::string*, Named_object**);
162   Type* type();
163   bool type_may_start_here();
164   Type* type_name(bool issue_error);
165   Type* array_type(bool may_use_ellipsis);
166   Type* map_type();
167   Type* struct_type();
168   void field_decl(Struct_field_list*);
169   Type* pointer_type();
170   Type* channel_type();
171   void check_signature_names(const Typed_identifier_list*, Names*);
172   Function_type* signature(Typed_identifier*, Location);
173   bool parameters(Typed_identifier_list**, bool* is_varargs);
174   Typed_identifier_list* parameter_list(bool* is_varargs);
175   void parameter_decl(bool, Typed_identifier_list*, bool*, bool*);
176   bool result(Typed_identifier_list**);
177   Location block();
178   Type* interface_type();
179   void method_spec(Typed_identifier_list*);
180   void declaration();
181   bool declaration_may_start_here();
182   void decl(void (Parse::*)(void*), void*);
183   void list(void (Parse::*)(void*), void*, bool);
184   void const_decl();
185   void const_spec(Type**, Expression_list**);
186   void type_decl();
187   void type_spec(void*);
188   void var_decl();
189   void var_spec(void*);
190   void init_vars(const Typed_identifier_list*, Type*, Expression_list*,
191                  bool is_coloneq, Location);
192   bool init_vars_from_call(const Typed_identifier_list*, Type*, Expression*,
193                            bool is_coloneq, Location);
194   bool init_vars_from_map(const Typed_identifier_list*, Type*, Expression*,
195                           bool is_coloneq, Location);
196   bool init_vars_from_receive(const Typed_identifier_list*, Type*,
197                               Expression*, bool is_coloneq, Location);
198   bool init_vars_from_type_guard(const Typed_identifier_list*, Type*,
199                                  Expression*, bool is_coloneq,
200                                  Location);
201   Named_object* init_var(const Typed_identifier&, Type*, Expression*,
202                          bool is_coloneq, bool type_from_init, bool* is_new);
203   Named_object* create_dummy_global(Type*, Expression*, Location);
204   void simple_var_decl_or_assignment(const std::string&, Location,
205                                      Range_clause*, Type_switch*);
206   void function_decl();
207   Typed_identifier* receiver();
208   Expression* operand(bool may_be_sink);
209   Expression* enclosing_var_reference(Named_object*, Named_object*,
210                                       Location);
211   Expression* composite_lit(Type*, int depth, Location);
212   Expression* function_lit();
213   Expression* create_closure(Named_object* function, Enclosing_vars*,
214                              Location);
215   Expression* primary_expr(bool may_be_sink, bool may_be_composite_lit,
216                            bool* is_type_switch);
217   Expression* selector(Expression*, bool* is_type_switch);
218   Expression* index(Expression*);
219   Expression* call(Expression*);
220   Expression* expression(Precedence, bool may_be_sink,
221                          bool may_be_composite_lit, bool* is_type_switch);
222   bool expression_may_start_here();
223   Expression* unary_expr(bool may_be_sink, bool may_be_composite_lit,
224                          bool* is_type_switch);
225   Expression* qualified_expr(Expression*, Location);
226   Expression* id_to_expression(const std::string&, Location);
227   void statement(Label*);
228   bool statement_may_start_here();
229   void labeled_stmt(const std::string&, Location);
230   Expression* simple_stat(bool, bool*, Range_clause*, Type_switch*);
231   bool simple_stat_may_start_here();
232   void statement_list();
233   bool statement_list_may_start_here();
234   void expression_stat(Expression*);
235   void send_stmt(Expression*);
236   void inc_dec_stat(Expression*);
237   void assignment(Expression*, Range_clause*);
238   void tuple_assignment(Expression_list*, Range_clause*);
239   void send();
240   void go_or_defer_stat();
241   void return_stat();
242   void if_stat();
243   void switch_stat(Label*);
244   Statement* expr_switch_body(Label*, Expression*, Location);
245   void expr_case_clause(Case_clauses*, bool* saw_default);
246   Expression_list* expr_switch_case(bool*);
247   Statement* type_switch_body(Label*, const Type_switch&, Location);
248   void type_case_clause(Named_object*, Type_case_clauses*, bool* saw_default);
249   void type_switch_case(std::vector<Type*>*, bool*);
250   void select_stat(Label*);
251   void comm_clause(Select_clauses*, bool* saw_default);
252   bool comm_case(bool*, Expression**, Expression**, Expression**,
253                  std::string*, std::string*, bool*);
254   bool send_or_recv_stmt(bool*, Expression**, Expression**, Expression**,
255                          std::string*, std::string*);
256   void for_stat(Label*);
257   void for_clause(Expression**, Block**);
258   void range_clause_decl(const Typed_identifier_list*, Range_clause*);
259   void range_clause_expr(const Expression_list*, Range_clause*);
260   void push_break_statement(Statement*, Label*);
261   void push_continue_statement(Statement*, Label*);
262   void pop_break_statement();
263   void pop_continue_statement();
264   Statement* find_bc_statement(const Bc_stack*, const std::string&);
265   void break_stat();
266   void continue_stat();
267   void goto_stat();
268   void package_clause();
269   void import_decl();
270   void import_spec(void*);
271
272   void reset_iota();
273   int iota_value();
274   void increment_iota();
275
276   // Skip past an error looking for a semicolon or OP.  Return true if
277   // all is well, false if we found EOF.
278   bool
279   skip_past_error(Operator op);
280
281   // Verify that an expression is not a sink, and return either the
282   // expression or an error.
283   Expression*
284   verify_not_sink(Expression*);
285
286   // Return the statement associated with a label in a Bc_stack, or
287   // NULL.
288   Statement*
289   find_bc_statement(const Bc_stack*, const std::string&) const;
290
291   // The lexer output we are parsing.
292   Lex* lex_;
293   // The current token.
294   Token token_;
295   // A token pushed back on the input stream.
296   Token unget_token_;
297   // Whether unget_token_ is valid.
298   bool unget_token_valid_;
299   // The code we are generating.
300   Gogo* gogo_;
301   // A stack of statements for which break may be used.
302   Bc_stack* break_stack_;
303   // A stack of statements for which continue may be used.
304   Bc_stack* continue_stack_;
305   // The current iota value.
306   int iota_;
307   // References from the local function to variables defined in
308   // enclosing functions.
309   Enclosing_vars enclosing_vars_;
310 };
311
312
313 #endif // !defined(GO_PARSE_H)