Reorder fields to improve object layout since the runtime can't do it for corlib...
[mono.git] / mcs / mcs / cs-tokenizer.cs
1 //
2 // cs-tokenizer.cs: The Tokenizer for the C# compiler
3 //                  This also implements the preprocessor
4 //
5 // Author: Miguel de Icaza (miguel@gnu.org)
6 //         Marek Safar (marek.safar@seznam.cz)
7 //
8 // Dual licensed under the terms of the MIT X11 or GNU GPL
9 //
10 // Copyright 2001, 2002 Ximian, Inc (http://www.ximian.com)
11 // Copyright 2004-2008 Novell, Inc
12 //
13 //
14
15 using System;
16 using System.Text;
17 using System.Collections.Generic;
18 using System.Globalization;
19 using System.Diagnostics;
20
21 namespace Mono.CSharp
22 {
23         /// <summary>
24         ///    Tokenizer for C# source code. 
25         /// </summary>
26
27         public class Tokenizer : yyParser.yyInput
28         {
29                 class KeywordEntry<T>
30                 {
31                         public readonly T Token;
32                         public KeywordEntry<T> Next;
33                         public readonly char[] Value;
34
35                         public KeywordEntry (string value, T token)
36                         {
37                                 this.Value = value.ToCharArray ();
38                                 this.Token = token;
39                         }
40                 }
41
42                 sealed class IdentifiersComparer : IEqualityComparer<char[]>
43                 {
44                         readonly int length;
45
46                         public IdentifiersComparer (int length)
47                         {
48                                 this.length = length;
49                         }
50
51                         public bool Equals (char[] x, char[] y)
52                         {
53                                 for (int i = 0; i < length; ++i)
54                                         if (x [i] != y [i])
55                                                 return false;
56
57                                 return true;
58                         }
59
60                         public int GetHashCode (char[] obj)
61                         {
62                                 int h = 0;
63                                 for (int i = 0; i < length; ++i)
64                                         h = (h << 5) - h + obj [i];
65
66                                 return h;
67                         }
68                 }
69
70                 //
71                 // This class has to be used in the parser only, it reuses token
72                 // details after each parse
73                 //
74                 public class LocatedToken
75                 {
76                         int row, column;
77                         string value;
78
79                         static LocatedToken[] buffer;
80                         static int pos;
81
82                         private LocatedToken ()
83                         {
84                         }
85
86                         public static LocatedToken Create (int row, int column)
87                         {
88                                 return Create (null, row, column);
89                         }
90                         
91                         public static LocatedToken Create (string value, int row, int column)
92                         {
93                                 //
94                                 // TODO: I am not very happy about the logic but it's the best
95                                 // what I could come up with for now.
96                                 // Ideally we should be using just tiny buffer (256 elements) which
97                                 // is enough to hold all details for currect stack and recycle elements
98                                 // poped from the stack but there is a trick needed to recycle
99                                 // them properly.
100                                 //
101                                 LocatedToken entry;
102                                 if (pos >= buffer.Length) {
103                                         entry = new LocatedToken ();
104                                 } else {
105                                         entry = buffer [pos];
106                                         if (entry == null) {
107                                                 entry = new LocatedToken ();
108                                                 buffer [pos] = entry;
109                                         }
110
111                                         ++pos;
112                                 }
113                                 entry.value = value;
114                                 entry.row = row;
115                                 entry.column = column;
116                                 return entry;
117                         }
118
119                         //
120                         // Used for token not required by expression evaluator
121                         //
122                         [Conditional ("FULL_AST")]
123                         public static void CreateOptional (int row, int col, ref object token)
124                         {
125                                 token = Create (row, col);
126                         }
127                         
128                         public static void Initialize ()
129                         {
130                                 if (buffer == null)
131                                         buffer = new LocatedToken [10000];
132                                 pos = 0;
133                         }
134
135                         public Location Location {
136                                 get { return new Location (row, column); }
137                         }
138
139                         public string Value {
140                                 get { return value; }
141                         }
142                 }
143
144                 enum PreprocessorDirective
145                 {
146                         Invalid = 0,
147
148                         Region = 1,
149                         Endregion = 2,
150                         If = 3 | RequiresArgument,
151                         Endif = 4,
152                         Elif = 5 | RequiresArgument,
153                         Else = 6,
154                         Define = 7 | RequiresArgument,
155                         Undef = 8 | RequiresArgument,
156                         Error = 9,
157                         Warning = 10,
158                         Pragma = 11 | CustomArgumentsParsing,
159                         Line = 12,
160
161                         CustomArgumentsParsing = 1 << 10,
162                         RequiresArgument = 1 << 11
163                 }
164
165                 SeekableStreamReader reader;
166                 SourceFile ref_name;
167                 CompilationSourceFile file_name;
168                 CompilerContext context;
169                 bool hidden = false;
170                 int ref_line = 1;
171                 int line = 1;
172                 int col = 0;
173                 int previous_col;
174                 int current_token;
175                 int tab_size;
176                 bool handle_get_set = false;
177                 bool handle_remove_add = false;
178                 bool handle_where = false;
179                 bool handle_typeof = false;
180                 bool lambda_arguments_parsing;
181                 List<Location> escaped_identifiers;
182                 int parsing_generic_less_than;
183                 readonly bool doc_processing;
184                 
185                 //
186                 // Used mainly for parser optimizations. Some expressions for instance
187                 // can appear only in block (including initializer, base initializer)
188                 // scope only
189                 //
190                 public int parsing_block;
191                 internal bool query_parsing;
192                 
193                 // 
194                 // When parsing type only, useful for ambiguous nullable types
195                 //
196                 public int parsing_type;
197                 
198                 //
199                 // Set when parsing generic declaration (type or method header)
200                 //
201                 public bool parsing_generic_declaration;
202                 public bool parsing_generic_declaration_doc;
203                 
204                 //
205                 // The value indicates that we have not reach any declaration or
206                 // namespace yet
207                 //
208                 public int parsing_declaration;
209
210                 public bool parsing_attribute_section;
211
212                 //
213                 // The special characters to inject on streams to run the unit parser
214                 // in the special expression mode. Using private characters from
215                 // Plane Sixteen (U+100000 to U+10FFFD)
216                 //
217                 // This character is only tested just before the tokenizer is about to report
218                 // an error;   So on the regular operation mode, this addition will have no
219                 // impact on the tokenizer's performance.
220                 //
221                 
222                 public const int EvalStatementParserCharacter = 0x100000;
223                 public const int EvalCompilationUnitParserCharacter = 0x100001;
224                 public const int EvalUsingDeclarationsParserCharacter = 0x100002;
225                 public const int DocumentationXref = 0x100003;
226                 
227                 //
228                 // XML documentation buffer. The save point is used to divide
229                 // comments on types and comments on members.
230                 //
231                 StringBuilder xml_comment_buffer;
232
233                 //
234                 // See comment on XmlCommentState enumeration.
235                 //
236                 XmlCommentState xml_doc_state = XmlCommentState.Allowed;
237
238                 //
239                 // Whether tokens have been seen on this line
240                 //
241                 bool tokens_seen = false;
242
243                 //
244                 // Set to true once the GENERATE_COMPLETION token has bee
245                 // returned.   This helps produce one GENERATE_COMPLETION,
246                 // as many COMPLETE_COMPLETION as necessary to complete the
247                 // AST tree and one final EOF.
248                 //
249                 bool generated;
250                 
251                 //
252                 // Whether a token has been seen on the file
253                 // This is needed because `define' is not allowed to be used
254                 // after a token has been seen.
255                 //
256                 bool any_token_seen;
257
258                 //
259                 // Class variables
260                 // 
261                 static readonly KeywordEntry<int>[][] keywords;
262                 static readonly KeywordEntry<PreprocessorDirective>[][] keywords_preprocessor;
263                 static readonly Dictionary<string, object> keyword_strings;             // TODO: HashSet
264                 static readonly NumberStyles styles;
265                 static readonly NumberFormatInfo csharp_format_info;
266
267                 // Pragma arguments
268                 static readonly char[] pragma_warning = "warning".ToCharArray ();
269                 static readonly char[] pragma_warning_disable = "disable".ToCharArray ();
270                 static readonly char[] pragma_warning_restore = "restore".ToCharArray ();
271                 static readonly char[] pragma_checksum = "checksum".ToCharArray ();
272
273                 static readonly char[] simple_whitespaces = new char[] { ' ', '\t' };
274
275                 public bool PropertyParsing {
276                         get { return handle_get_set; }
277                         set { handle_get_set = value; }
278                 }
279
280                 public bool EventParsing {
281                         get { return handle_remove_add; }
282                         set { handle_remove_add = value; }
283                 }
284
285                 public bool ConstraintsParsing {
286                         get { return handle_where; }
287                         set { handle_where = value; }
288                 }
289
290                 public bool TypeOfParsing {
291                         get { return handle_typeof; }
292                         set { handle_typeof = value; }
293                 }
294
295                 public int TabSize {
296                         get { return tab_size; }
297                         set { tab_size = value; }
298                 }
299                 
300                 public XmlCommentState doc_state {
301                         get { return xml_doc_state; }
302                         set {
303                                 if (value == XmlCommentState.Allowed) {
304                                         check_incorrect_doc_comment ();
305                                         reset_doc_comment ();
306                                 }
307                                 xml_doc_state = value;
308                         }
309                 }
310
311                 //
312                 // This is used to trigger completion generation on the parser
313                 public bool CompleteOnEOF;
314                 
315                 void AddEscapedIdentifier (Location loc)
316                 {
317                         if (escaped_identifiers == null)
318                                 escaped_identifiers = new List<Location> ();
319
320                         escaped_identifiers.Add (loc);
321                 }
322
323                 public bool IsEscapedIdentifier (MemberName name)
324                 {
325                         return escaped_identifiers != null && escaped_identifiers.Contains (name.Location);
326                 }
327
328                 //
329                 // Values for the associated token returned
330                 //
331                 internal int putback_char;      // Used by repl only
332                 object val;
333
334                 //
335                 // Pre-processor
336                 //
337                 const int TAKING        = 1;
338                 const int ELSE_SEEN     = 4;
339                 const int PARENT_TAKING = 8;
340                 const int REGION        = 16;           
341
342                 //
343                 // pre-processor if stack state:
344                 //
345                 Stack<int> ifstack;
346
347                 static System.Text.StringBuilder string_builder;
348
349                 const int max_id_size = 512;
350                 static readonly char [] id_builder = new char [max_id_size];
351
352                 public static Dictionary<char[], string>[] identifiers = new Dictionary<char[], string>[max_id_size + 1];
353
354                 const int max_number_size = 512;
355                 static char [] number_builder = new char [max_number_size];
356                 static int number_pos;
357
358                 static char[] value_builder = new char[256];
359
360                 public int Line {
361                         get {
362                                 return ref_line;
363                         }
364                 }
365
366                 //
367                 // This is used when the tokenizer needs to save
368                 // the current position as it needs to do some parsing
369                 // on its own to deamiguate a token in behalf of the
370                 // parser.
371                 //
372                 Stack<Position> position_stack = new Stack<Position> (2);
373
374                 class Position {
375                         public int position;
376                         public int line;
377                         public int ref_line;
378                         public int col;
379                         public bool hidden;
380                         public int putback_char;
381                         public int previous_col;
382                         public Stack<int> ifstack;
383                         public int parsing_generic_less_than;
384                         public int current_token;
385                         public object val;
386
387                         public Position (Tokenizer t)
388                         {
389                                 position = t.reader.Position;
390                                 line = t.line;
391                                 ref_line = t.ref_line;
392                                 col = t.col;
393                                 hidden = t.hidden;
394                                 putback_char = t.putback_char;
395                                 previous_col = t.previous_col;
396                                 if (t.ifstack != null && t.ifstack.Count != 0) {
397                                         // There is no simple way to clone Stack<T> all
398                                         // methods reverse the order
399                                         var clone = t.ifstack.ToArray ();
400                                         Array.Reverse (clone);
401                                         ifstack = new Stack<int> (clone);
402                                 }
403                                 parsing_generic_less_than = t.parsing_generic_less_than;
404                                 current_token = t.current_token;
405                                 val = t.val;
406                         }
407                 }
408
409                 public Tokenizer (SeekableStreamReader input, CompilationSourceFile file, CompilerContext ctx)
410                 {
411                         this.ref_name = file;
412                         this.file_name = file;
413                         this.context = ctx;
414                         reader = input;
415
416                         putback_char = -1;
417
418                         xml_comment_buffer = new StringBuilder ();
419                         doc_processing = ctx.Settings.DocumentationFile != null;
420
421                         if (Environment.OSVersion.Platform == PlatformID.Win32NT)
422                                 tab_size = 4;
423                         else
424                                 tab_size = 8;
425
426                         //
427                         // FIXME: This could be `Location.Push' but we have to
428                         // find out why the MS compiler allows this
429                         //
430                         Mono.CSharp.Location.Push (file, file);
431                 }
432                 
433                 public void PushPosition ()
434                 {
435                         position_stack.Push (new Position (this));
436                 }
437
438                 public void PopPosition ()
439                 {
440                         Position p = position_stack.Pop ();
441
442                         reader.Position = p.position;
443                         ref_line = p.ref_line;
444                         line = p.line;
445                         col = p.col;
446                         hidden = p.hidden;
447                         putback_char = p.putback_char;
448                         previous_col = p.previous_col;
449                         ifstack = p.ifstack;
450                         parsing_generic_less_than = p.parsing_generic_less_than;
451                         current_token = p.current_token;
452                         val = p.val;
453                 }
454
455                 // Do not reset the position, ignore it.
456                 public void DiscardPosition ()
457                 {
458                         position_stack.Pop ();
459                 }
460                 
461                 static void AddKeyword (string kw, int token)
462                 {
463                         keyword_strings.Add (kw, null);
464
465                         AddKeyword (keywords, kw, token);
466                 }
467
468                 static void AddPreprocessorKeyword (string kw, PreprocessorDirective directive)
469                 {
470                         AddKeyword (keywords_preprocessor, kw, directive);
471                 }
472
473                 static void AddKeyword<T> (KeywordEntry<T>[][] keywords, string kw, T token)
474                 {
475                         int length = kw.Length;
476                         if (keywords[length] == null) {
477                                 keywords[length] = new KeywordEntry<T>['z' - '_' + 1];
478                         }
479
480                         int char_index = kw[0] - '_';
481                         var kwe = keywords[length][char_index];
482                         if (kwe == null) {
483                                 keywords[length][char_index] = new KeywordEntry<T> (kw, token);
484                                 return;
485                         }
486
487                         while (kwe.Next != null) {
488                                 kwe = kwe.Next;
489                         }
490
491                         kwe.Next = new KeywordEntry<T> (kw, token);
492                 }
493
494                 //
495                 // Class initializer
496                 // 
497                 static Tokenizer ()
498                 {
499                         keyword_strings = new Dictionary<string, object> ();
500
501                         // 11 is the length of the longest keyword for now
502                         keywords = new KeywordEntry<int>[11][];
503
504                         AddKeyword ("__arglist", Token.ARGLIST);
505                         AddKeyword ("__makeref", Token.MAKEREF);
506                         AddKeyword ("__reftype", Token.REFTYPE);
507                         AddKeyword ("__refvalue", Token.REFVALUE);
508                         AddKeyword ("abstract", Token.ABSTRACT);
509                         AddKeyword ("as", Token.AS);
510                         AddKeyword ("add", Token.ADD);
511                         AddKeyword ("base", Token.BASE);
512                         AddKeyword ("bool", Token.BOOL);
513                         AddKeyword ("break", Token.BREAK);
514                         AddKeyword ("byte", Token.BYTE);
515                         AddKeyword ("case", Token.CASE);
516                         AddKeyword ("catch", Token.CATCH);
517                         AddKeyword ("char", Token.CHAR);
518                         AddKeyword ("checked", Token.CHECKED);
519                         AddKeyword ("class", Token.CLASS);
520                         AddKeyword ("const", Token.CONST);
521                         AddKeyword ("continue", Token.CONTINUE);
522                         AddKeyword ("decimal", Token.DECIMAL);
523                         AddKeyword ("default", Token.DEFAULT);
524                         AddKeyword ("delegate", Token.DELEGATE);
525                         AddKeyword ("do", Token.DO);
526                         AddKeyword ("double", Token.DOUBLE);
527                         AddKeyword ("else", Token.ELSE);
528                         AddKeyword ("enum", Token.ENUM);
529                         AddKeyword ("event", Token.EVENT);
530                         AddKeyword ("explicit", Token.EXPLICIT);
531                         AddKeyword ("extern", Token.EXTERN);
532                         AddKeyword ("false", Token.FALSE);
533                         AddKeyword ("finally", Token.FINALLY);
534                         AddKeyword ("fixed", Token.FIXED);
535                         AddKeyword ("float", Token.FLOAT);
536                         AddKeyword ("for", Token.FOR);
537                         AddKeyword ("foreach", Token.FOREACH);
538                         AddKeyword ("goto", Token.GOTO);
539                         AddKeyword ("get", Token.GET);
540                         AddKeyword ("if", Token.IF);
541                         AddKeyword ("implicit", Token.IMPLICIT);
542                         AddKeyword ("in", Token.IN);
543                         AddKeyword ("int", Token.INT);
544                         AddKeyword ("interface", Token.INTERFACE);
545                         AddKeyword ("internal", Token.INTERNAL);
546                         AddKeyword ("is", Token.IS);
547                         AddKeyword ("lock", Token.LOCK);
548                         AddKeyword ("long", Token.LONG);
549                         AddKeyword ("namespace", Token.NAMESPACE);
550                         AddKeyword ("new", Token.NEW);
551                         AddKeyword ("null", Token.NULL);
552                         AddKeyword ("object", Token.OBJECT);
553                         AddKeyword ("operator", Token.OPERATOR);
554                         AddKeyword ("out", Token.OUT);
555                         AddKeyword ("override", Token.OVERRIDE);
556                         AddKeyword ("params", Token.PARAMS);
557                         AddKeyword ("private", Token.PRIVATE);
558                         AddKeyword ("protected", Token.PROTECTED);
559                         AddKeyword ("public", Token.PUBLIC);
560                         AddKeyword ("readonly", Token.READONLY);
561                         AddKeyword ("ref", Token.REF);
562                         AddKeyword ("remove", Token.REMOVE);
563                         AddKeyword ("return", Token.RETURN);
564                         AddKeyword ("sbyte", Token.SBYTE);
565                         AddKeyword ("sealed", Token.SEALED);
566                         AddKeyword ("set", Token.SET);
567                         AddKeyword ("short", Token.SHORT);
568                         AddKeyword ("sizeof", Token.SIZEOF);
569                         AddKeyword ("stackalloc", Token.STACKALLOC);
570                         AddKeyword ("static", Token.STATIC);
571                         AddKeyword ("string", Token.STRING);
572                         AddKeyword ("struct", Token.STRUCT);
573                         AddKeyword ("switch", Token.SWITCH);
574                         AddKeyword ("this", Token.THIS);
575                         AddKeyword ("throw", Token.THROW);
576                         AddKeyword ("true", Token.TRUE);
577                         AddKeyword ("try", Token.TRY);
578                         AddKeyword ("typeof", Token.TYPEOF);
579                         AddKeyword ("uint", Token.UINT);
580                         AddKeyword ("ulong", Token.ULONG);
581                         AddKeyword ("unchecked", Token.UNCHECKED);
582                         AddKeyword ("unsafe", Token.UNSAFE);
583                         AddKeyword ("ushort", Token.USHORT);
584                         AddKeyword ("using", Token.USING);
585                         AddKeyword ("virtual", Token.VIRTUAL);
586                         AddKeyword ("void", Token.VOID);
587                         AddKeyword ("volatile", Token.VOLATILE);
588                         AddKeyword ("while", Token.WHILE);
589                         AddKeyword ("partial", Token.PARTIAL);
590                         AddKeyword ("where", Token.WHERE);
591
592                         // LINQ keywords
593                         AddKeyword ("from", Token.FROM);
594                         AddKeyword ("join", Token.JOIN);
595                         AddKeyword ("on", Token.ON);
596                         AddKeyword ("equals", Token.EQUALS);
597                         AddKeyword ("select", Token.SELECT);
598                         AddKeyword ("group", Token.GROUP);
599                         AddKeyword ("by", Token.BY);
600                         AddKeyword ("let", Token.LET);
601                         AddKeyword ("orderby", Token.ORDERBY);
602                         AddKeyword ("ascending", Token.ASCENDING);
603                         AddKeyword ("descending", Token.DESCENDING);
604                         AddKeyword ("into", Token.INTO);
605
606                         // Contextual async keywords
607                         AddKeyword ("async", Token.ASYNC);
608                         AddKeyword ("await", Token.AWAIT);
609
610                         keywords_preprocessor = new KeywordEntry<PreprocessorDirective>[10][];
611
612                         AddPreprocessorKeyword ("region", PreprocessorDirective.Region);
613                         AddPreprocessorKeyword ("endregion", PreprocessorDirective.Endregion);
614                         AddPreprocessorKeyword ("if", PreprocessorDirective.If);
615                         AddPreprocessorKeyword ("endif", PreprocessorDirective.Endif);
616                         AddPreprocessorKeyword ("elif", PreprocessorDirective.Elif);
617                         AddPreprocessorKeyword ("else", PreprocessorDirective.Else);
618                         AddPreprocessorKeyword ("define", PreprocessorDirective.Define);
619                         AddPreprocessorKeyword ("undef", PreprocessorDirective.Undef);
620                         AddPreprocessorKeyword ("error", PreprocessorDirective.Error);
621                         AddPreprocessorKeyword ("warning", PreprocessorDirective.Warning);
622                         AddPreprocessorKeyword ("pragma", PreprocessorDirective.Pragma);
623                         AddPreprocessorKeyword ("line", PreprocessorDirective.Line);
624
625                         csharp_format_info = NumberFormatInfo.InvariantInfo;
626                         styles = NumberStyles.Float;
627
628                         string_builder = new System.Text.StringBuilder ();
629                 }
630
631                 int GetKeyword (char[] id, int id_len)
632                 {
633                         //
634                         // Keywords are stored in an array of arrays grouped by their
635                         // length and then by the first character
636                         //
637                         if (id_len >= keywords.Length || keywords [id_len] == null)
638                                 return -1;
639
640                         int first_index = id [0] - '_';
641                         if (first_index > 'z' - '_')
642                                 return -1;
643
644                         var kwe = keywords [id_len] [first_index];
645                         if (kwe == null)
646                                 return -1;
647
648                         int res;
649                         do {
650                                 res = kwe.Token;
651                                 for (int i = 1; i < id_len; ++i) {
652                                         if (id [i] != kwe.Value [i]) {
653                                                 res = 0;
654                                                 kwe = kwe.Next;
655                                                 break;
656                                         }
657                                 }
658                         } while (res == 0 && kwe != null);
659
660                         if (res == 0)
661                                 return -1;
662
663                         int next_token;
664                         switch (res) {
665                         case Token.GET:
666                         case Token.SET:
667                                 if (!handle_get_set)
668                                         res = -1;
669                                 break;
670                         case Token.REMOVE:
671                         case Token.ADD:
672                                 if (!handle_remove_add)
673                                         res = -1;
674                                 break;
675                         case Token.EXTERN:
676                                 if (parsing_declaration == 0)
677                                         res = Token.EXTERN_ALIAS;
678                                 break;
679                         case Token.DEFAULT:
680                                 if (peek_token () == Token.COLON) {
681                                         token ();
682                                         res = Token.DEFAULT_COLON;
683                                 }
684                                 break;
685                         case Token.WHERE:
686                                 if (!handle_where && !query_parsing)
687                                         res = -1;
688                                 break;
689                         case Token.FROM:
690                                 //
691                                 // A query expression is any expression that starts with `from identifier'
692                                 // followed by any token except ; , =
693                                 // 
694                                 if (!query_parsing) {
695                                         if (lambda_arguments_parsing) {
696                                                 res = -1;
697                                                 break;
698                                         }
699
700                                         PushPosition ();
701                                         // HACK: to disable generics micro-parser, because PushPosition does not
702                                         // store identifiers array
703                                         parsing_generic_less_than = 1;
704                                         switch (xtoken ()) {
705                                         case Token.IDENTIFIER:
706                                         case Token.INT:
707                                         case Token.BOOL:
708                                         case Token.BYTE:
709                                         case Token.CHAR:
710                                         case Token.DECIMAL:
711                                         case Token.FLOAT:
712                                         case Token.LONG:
713                                         case Token.OBJECT:
714                                         case Token.STRING:
715                                         case Token.UINT:
716                                         case Token.ULONG:
717                                                 next_token = xtoken ();
718                                                 if (next_token == Token.SEMICOLON || next_token == Token.COMMA || next_token == Token.EQUALS)
719                                                         goto default;
720                                                 
721                                                 res = Token.FROM_FIRST;
722                                                 query_parsing = true;
723                                                 if (context.Settings.Version <= LanguageVersion.ISO_2)
724                                                         Report.FeatureIsNotAvailable (context, Location, "query expressions");
725                                                 break;
726                                         case Token.VOID:
727                                                 Expression.Error_VoidInvalidInTheContext (Location, Report);
728                                                 break;
729                                         default:
730                                                 PopPosition ();
731                                                 // HACK: A token is not a keyword so we need to restore identifiers buffer
732                                                 // which has been overwritten before we grabbed the identifier
733                                                 id_builder [0] = 'f'; id_builder [1] = 'r'; id_builder [2] = 'o'; id_builder [3] = 'm';
734                                                 return -1;
735                                         }
736                                         PopPosition ();
737                                 }
738                                 break;
739                         case Token.JOIN:
740                         case Token.ON:
741                         case Token.EQUALS:
742                         case Token.SELECT:
743                         case Token.GROUP:
744                         case Token.BY:
745                         case Token.LET:
746                         case Token.ORDERBY:
747                         case Token.ASCENDING:
748                         case Token.DESCENDING:
749                         case Token.INTO:
750                                 if (!query_parsing)
751                                         res = -1;
752                                 break;
753                                 
754                         case Token.USING:
755                         case Token.NAMESPACE:
756                                 // TODO: some explanation needed
757                                 check_incorrect_doc_comment ();
758                                 break;
759                                 
760                         case Token.PARTIAL:
761                                 if (parsing_block > 0) {
762                                         res = -1;
763                                         break;
764                                 }
765
766                                 // Save current position and parse next token.
767                                 PushPosition ();
768
769                                 next_token = token ();
770                                 bool ok = (next_token == Token.CLASS) ||
771                                         (next_token == Token.STRUCT) ||
772                                         (next_token == Token.INTERFACE) ||
773                                         (next_token == Token.VOID);
774
775                                 PopPosition ();
776
777                                 if (ok) {
778                                         if (next_token == Token.VOID) {
779                                                 if (context.Settings.Version <= LanguageVersion.ISO_2)
780                                                         Report.FeatureIsNotAvailable (context, Location, "partial methods");
781                                         } else if (context.Settings.Version == LanguageVersion.ISO_1)
782                                                 Report.FeatureIsNotAvailable (context, Location, "partial types");
783
784                                         return res;
785                                 }
786
787                                 if (next_token < Token.LAST_KEYWORD) {
788                                         Report.Error (267, Location,
789                                                 "The `partial' modifier can be used only immediately before `class', `struct', `interface', or `void' keyword");
790                                         return token ();
791                                 }                                       
792
793                                 res = -1;
794                                 break;
795
796                         // TODO: async, it's modifiers context only
797                         case Token.ASYNC:
798                                 if (parsing_block > 0 || context.Settings.Version != LanguageVersion.Future) {
799                                         res = -1;
800                                 }
801                                 break;
802
803                         // TODO: async, it's async block context only
804                         case Token.AWAIT:
805                                 if (context.Settings.Version != LanguageVersion.Future) {
806                                         res = -1;
807                                 }
808
809                                 break;
810                         }
811
812
813                         return res;
814                 }
815
816                 static PreprocessorDirective GetPreprocessorDirective (char[] id, int id_len)
817                 {
818                         //
819                         // Keywords are stored in an array of arrays grouped by their
820                         // length and then by the first character
821                         //
822                         if (id_len >= keywords_preprocessor.Length || keywords_preprocessor[id_len] == null)
823                                 return PreprocessorDirective.Invalid;
824
825                         int first_index = id[0] - '_';
826                         if (first_index > 'z' - '_')
827                                 return PreprocessorDirective.Invalid;
828
829                         var kwe = keywords_preprocessor[id_len][first_index];
830                         if (kwe == null)
831                                 return PreprocessorDirective.Invalid;
832
833                         PreprocessorDirective res = PreprocessorDirective.Invalid;
834                         do {
835                                 res = kwe.Token;
836                                 for (int i = 1; i < id_len; ++i) {
837                                         if (id[i] != kwe.Value[i]) {
838                                                 res = 0;
839                                                 kwe = kwe.Next;
840                                                 break;
841                                         }
842                                 }
843                         } while (res == PreprocessorDirective.Invalid && kwe != null);
844
845                         return res;
846                 }
847
848                 public Location Location {
849                         get {
850                                 return new Location (ref_line, hidden ? -1 : col);
851                         }
852                 }
853
854                 static bool is_identifier_start_character (int c)
855                 {
856                         return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_' || Char.IsLetter ((char)c);
857                 }
858
859                 static bool is_identifier_part_character (char c)
860                 {
861                         if (c >= 'a' && c <= 'z')
862                                 return true;
863
864                         if (c >= 'A' && c <= 'Z')
865                                 return true;
866
867                         if (c == '_' || (c >= '0' && c <= '9'))
868                                 return true;
869
870                         if (c < 0x80)
871                                 return false;
872
873                         return Char.IsLetter (c) || Char.GetUnicodeCategory (c) == UnicodeCategory.ConnectorPunctuation;
874                 }
875
876                 public static bool IsKeyword (string s)
877                 {
878                         return keyword_strings.ContainsKey (s);
879                 }
880
881                 //
882                 // Open parens micro parser. Detects both lambda and cast ambiguity.
883                 //      
884                 int TokenizeOpenParens ()
885                 {
886                         int ptoken;
887                         current_token = -1;
888
889                         int bracket_level = 0;
890                         bool is_type = false;
891                         bool can_be_type = false;
892                         
893                         while (true) {
894                                 ptoken = current_token;
895                                 token ();
896
897                                 switch (current_token) {
898                                 case Token.CLOSE_PARENS:
899                                         token ();
900                                         
901                                         //
902                                         // Expression inside parens is lambda, (int i) => 
903                                         //
904                                         if (current_token == Token.ARROW)
905                                                 return Token.OPEN_PARENS_LAMBDA;
906
907                                         //
908                                         // Expression inside parens is single type, (int[])
909                                         //
910                                         if (is_type)
911                                                 return Token.OPEN_PARENS_CAST;
912
913                                         //
914                                         // Expression is possible cast, look at next token, (T)null
915                                         //
916                                         if (can_be_type) {
917                                                 switch (current_token) {
918                                                 case Token.OPEN_PARENS:
919                                                 case Token.BANG:
920                                                 case Token.TILDE:
921                                                 case Token.IDENTIFIER:
922                                                 case Token.LITERAL:
923                                                 case Token.BASE:
924                                                 case Token.CHECKED:
925                                                 case Token.DELEGATE:
926                                                 case Token.FALSE:
927                                                 case Token.FIXED:
928                                                 case Token.NEW:
929                                                 case Token.NULL:
930                                                 case Token.SIZEOF:
931                                                 case Token.THIS:
932                                                 case Token.THROW:
933                                                 case Token.TRUE:
934                                                 case Token.TYPEOF:
935                                                 case Token.UNCHECKED:
936                                                 case Token.UNSAFE:
937                                                 case Token.DEFAULT:
938
939                                                 //
940                                                 // These can be part of a member access
941                                                 //
942                                                 case Token.INT:
943                                                 case Token.UINT:
944                                                 case Token.SHORT:
945                                                 case Token.USHORT:
946                                                 case Token.LONG:
947                                                 case Token.ULONG:
948                                                 case Token.DOUBLE:
949                                                 case Token.FLOAT:
950                                                 case Token.CHAR:
951                                                 case Token.BYTE:
952                                                 case Token.DECIMAL:
953                                                 case Token.BOOL:
954                                                         return Token.OPEN_PARENS_CAST;
955                                                 }
956                                         }
957                                         return Token.OPEN_PARENS;
958                                         
959                                 case Token.DOT:
960                                 case Token.DOUBLE_COLON:
961                                         if (ptoken != Token.IDENTIFIER && ptoken != Token.OP_GENERICS_GT)
962                                                 goto default;
963
964                                         continue;
965
966                                 case Token.IDENTIFIER:
967                                         switch (ptoken) {
968                                         case Token.DOT:
969                                                 if (bracket_level == 0) {
970                                                         is_type = false;
971                                                         can_be_type = true;
972                                                 }
973
974                                                 continue;
975                                         case Token.OP_GENERICS_LT:
976                                         case Token.COMMA:
977                                         case Token.DOUBLE_COLON:
978                                         case -1:
979                                                 if (bracket_level == 0)
980                                                         can_be_type = true;
981                                                 continue;
982                                         default:
983                                                 can_be_type = is_type = false;
984                                                 continue;
985                                         }
986
987                                 case Token.OBJECT:
988                                 case Token.STRING:
989                                 case Token.BOOL:
990                                 case Token.DECIMAL:
991                                 case Token.FLOAT:
992                                 case Token.DOUBLE:
993                                 case Token.SBYTE:
994                                 case Token.BYTE:
995                                 case Token.SHORT:
996                                 case Token.USHORT:
997                                 case Token.INT:
998                                 case Token.UINT:
999                                 case Token.LONG:
1000                                 case Token.ULONG:
1001                                 case Token.CHAR:
1002                                 case Token.VOID:
1003                                         if (bracket_level == 0)
1004                                                 is_type = true;
1005                                         continue;
1006
1007                                 case Token.COMMA:
1008                                         if (bracket_level == 0) {
1009                                                 bracket_level = 100;
1010                                                 can_be_type = is_type = false;
1011                                         }
1012                                         continue;
1013
1014                                 case Token.OP_GENERICS_LT:
1015                                 case Token.OPEN_BRACKET:
1016                                         if (bracket_level++ == 0)
1017                                                 is_type = true;
1018                                         continue;
1019
1020                                 case Token.OP_GENERICS_GT:
1021                                 case Token.CLOSE_BRACKET:
1022                                         --bracket_level;
1023                                         continue;
1024
1025                                 case Token.INTERR_NULLABLE:
1026                                 case Token.STAR:
1027                                         if (bracket_level == 0)
1028                                                 is_type = true;
1029                                         continue;
1030
1031                                 case Token.REF:
1032                                 case Token.OUT:
1033                                         can_be_type = is_type = false;
1034                                         continue;
1035
1036                                 default:
1037                                         return Token.OPEN_PARENS;
1038                                 }
1039                         }
1040                 }
1041
1042                 public static bool IsValidIdentifier (string s)
1043                 {
1044                         if (s == null || s.Length == 0)
1045                                 return false;
1046
1047                         if (!is_identifier_start_character (s [0]))
1048                                 return false;
1049                         
1050                         for (int i = 1; i < s.Length; i ++)
1051                                 if (! is_identifier_part_character (s [i]))
1052                                         return false;
1053                         
1054                         return true;
1055                 }
1056
1057                 bool parse_less_than ()
1058                 {
1059                 start:
1060                         int the_token = token ();
1061                         if (the_token == Token.OPEN_BRACKET) {
1062                                 do {
1063                                         the_token = token ();
1064                                 } while (the_token != Token.CLOSE_BRACKET);
1065                                 the_token = token ();
1066                         } else if (the_token == Token.IN || the_token == Token.OUT) {
1067                                 the_token = token ();
1068                         }
1069                         switch (the_token) {
1070                         case Token.IDENTIFIER:
1071                         case Token.OBJECT:
1072                         case Token.STRING:
1073                         case Token.BOOL:
1074                         case Token.DECIMAL:
1075                         case Token.FLOAT:
1076                         case Token.DOUBLE:
1077                         case Token.SBYTE:
1078                         case Token.BYTE:
1079                         case Token.SHORT:
1080                         case Token.USHORT:
1081                         case Token.INT:
1082                         case Token.UINT:
1083                         case Token.LONG:
1084                         case Token.ULONG:
1085                         case Token.CHAR:
1086                         case Token.VOID:
1087                                 break;
1088                         case Token.OP_GENERICS_GT:
1089                                 return true;
1090
1091                         default:
1092                                 return false;
1093                         }
1094                 again:
1095                         the_token = token ();
1096
1097                         if (the_token == Token.OP_GENERICS_GT)
1098                                 return true;
1099                         else if (the_token == Token.COMMA || the_token == Token.DOT || the_token == Token.DOUBLE_COLON)
1100                                 goto start;
1101                         else if (the_token == Token.INTERR_NULLABLE || the_token == Token.STAR)
1102                                 goto again;
1103                         else if (the_token == Token.OP_GENERICS_LT) {
1104                                 if (!parse_less_than ())
1105                                         return false;
1106                                 goto again;
1107                         } else if (the_token == Token.OPEN_BRACKET) {
1108                         rank_specifiers:
1109                                 the_token = token ();
1110                                 if (the_token == Token.CLOSE_BRACKET)
1111                                         goto again;
1112                                 else if (the_token == Token.COMMA)
1113                                         goto rank_specifiers;
1114                                 return false;
1115                         }
1116
1117                         return false;
1118                 }
1119
1120                 bool parse_generic_dimension (out int dimension)
1121                 {
1122                         dimension = 1;
1123
1124                 again:
1125                         int the_token = token ();
1126                         if (the_token == Token.OP_GENERICS_GT)
1127                                 return true;
1128                         else if (the_token == Token.COMMA) {
1129                                 dimension++;
1130                                 goto again;
1131                         }
1132
1133                         return false;
1134                 }
1135                 
1136                 public int peek_token ()
1137                 {
1138                         int the_token;
1139
1140                         PushPosition ();
1141                         the_token = token ();
1142                         PopPosition ();
1143                         
1144                         return the_token;
1145                 }
1146                                         
1147                 //
1148                 // Tonizes `?' using custom disambiguous rules to return one
1149                 // of following tokens: INTERR_NULLABLE, OP_COALESCING, INTERR
1150                 //
1151                 // Tricky expression look like:
1152                 //
1153                 // Foo ? a = x ? b : c;
1154                 //
1155                 int TokenizePossibleNullableType ()
1156                 {
1157                         if (parsing_block == 0 || parsing_type > 0)
1158                                 return Token.INTERR_NULLABLE;
1159
1160                         int d = peek_char ();
1161                         if (d == '?') {
1162                                 get_char ();
1163                                 return Token.OP_COALESCING;
1164                         }
1165
1166                         switch (current_token) {
1167                         case Token.CLOSE_PARENS:
1168                         case Token.TRUE:
1169                         case Token.FALSE:
1170                         case Token.NULL:
1171                         case Token.LITERAL:
1172                                 return Token.INTERR;
1173                         }
1174
1175                         if (d != ' ') {
1176                                 if (d == ',' || d == ';' || d == '>')
1177                                         return Token.INTERR_NULLABLE;
1178                                 if (d == '*' || (d >= '0' && d <= '9'))
1179                                         return Token.INTERR;
1180                         }
1181
1182                         PushPosition ();
1183                         current_token = Token.NONE;
1184                         int next_token;
1185                         switch (xtoken ()) {
1186                         case Token.LITERAL:
1187                         case Token.TRUE:
1188                         case Token.FALSE:
1189                         case Token.NULL:
1190                         case Token.THIS:
1191                         case Token.NEW:
1192                                 next_token = Token.INTERR;
1193                                 break;
1194                                 
1195                         case Token.SEMICOLON:
1196                         case Token.COMMA:
1197                         case Token.CLOSE_PARENS:
1198                         case Token.OPEN_BRACKET:
1199                         case Token.OP_GENERICS_GT:
1200                         case Token.INTERR:
1201                                 next_token = Token.INTERR_NULLABLE;
1202                                 break;
1203                                 
1204                         default:
1205                                 next_token = -1;
1206                                 break;
1207                         }
1208
1209                         if (next_token == -1) {
1210                                 switch (xtoken ()) {
1211                                 case Token.COMMA:
1212                                 case Token.SEMICOLON:
1213                                 case Token.OPEN_BRACE:
1214                                 case Token.CLOSE_PARENS:
1215                                 case Token.IN:
1216                                         next_token = Token.INTERR_NULLABLE;
1217                                         break;
1218                                         
1219                                 case Token.COLON:
1220                                         next_token = Token.INTERR;
1221                                         break;                                                  
1222                                         
1223                                 default:
1224                                         int ntoken;
1225                                         int interrs = 1;
1226                                         int colons = 0;
1227                                         //
1228                                         // All shorcuts failed, do it hard way
1229                                         //
1230                                         while ((ntoken = xtoken ()) != Token.EOF) {
1231                                                 if (ntoken == Token.SEMICOLON)
1232                                                         break;
1233                                                 
1234                                                 if (ntoken == Token.COLON) {
1235                                                         if (++colons == interrs)
1236                                                                 break;
1237                                                         continue;
1238                                                 }
1239                                                 
1240                                                 if (ntoken == Token.INTERR) {
1241                                                         ++interrs;
1242                                                         continue;
1243                                                 }
1244                                         }
1245                                         
1246                                         next_token = colons != interrs ? Token.INTERR_NULLABLE : Token.INTERR;
1247                                         break;
1248                                 }
1249                         }
1250                         
1251                         PopPosition ();
1252                         return next_token;
1253                 }
1254
1255                 bool decimal_digits (int c)
1256                 {
1257                         int d;
1258                         bool seen_digits = false;
1259                         
1260                         if (c != -1){
1261                                 if (number_pos == max_number_size)
1262                                         Error_NumericConstantTooLong ();
1263                                 number_builder [number_pos++] = (char) c;
1264                         }
1265                         
1266                         //
1267                         // We use peek_char2, because decimal_digits needs to do a 
1268                         // 2-character look-ahead (5.ToString for example).
1269                         //
1270                         while ((d = peek_char2 ()) != -1){
1271                                 if (d >= '0' && d <= '9'){
1272                                         if (number_pos == max_number_size)
1273                                                 Error_NumericConstantTooLong ();
1274                                         number_builder [number_pos++] = (char) d;
1275                                         get_char ();
1276                                         seen_digits = true;
1277                                 } else
1278                                         break;
1279                         }
1280                         
1281                         return seen_digits;
1282                 }
1283
1284                 static bool is_hex (int e)
1285                 {
1286                         return (e >= '0' && e <= '9') || (e >= 'A' && e <= 'F') || (e >= 'a' && e <= 'f');
1287                 }
1288
1289                 static TypeCode real_type_suffix (int c)
1290                 {
1291                         switch (c){
1292                         case 'F': case 'f':
1293                                 return TypeCode.Single;
1294                         case 'D': case 'd':
1295                                 return TypeCode.Double;
1296                         case 'M': case 'm':
1297                                 return TypeCode.Decimal;
1298                         default:
1299                                 return TypeCode.Empty;
1300                         }
1301                 }
1302
1303                 int integer_type_suffix (ulong ul, int c)
1304                 {
1305                         bool is_unsigned = false;
1306                         bool is_long = false;
1307
1308                         if (c != -1){
1309                                 bool scanning = true;
1310                                 do {
1311                                         switch (c){
1312                                         case 'U': case 'u':
1313                                                 if (is_unsigned)
1314                                                         scanning = false;
1315                                                 is_unsigned = true;
1316                                                 get_char ();
1317                                                 break;
1318
1319                                         case 'l':
1320                                                 if (!is_unsigned){
1321                                                         //
1322                                                         // if we have not seen anything in between
1323                                                         // report this error
1324                                                         //
1325                                                         Report.Warning (78, 4, Location, "The 'l' suffix is easily confused with the digit '1' (use 'L' for clarity)");
1326                                                 }
1327
1328                                                 goto case 'L';
1329
1330                                         case 'L': 
1331                                                 if (is_long)
1332                                                         scanning = false;
1333                                                 is_long = true;
1334                                                 get_char ();
1335                                                 break;
1336                                                 
1337                                         default:
1338                                                 scanning = false;
1339                                                 break;
1340                                         }
1341                                         c = peek_char ();
1342                                 } while (scanning);
1343                         }
1344
1345                         if (is_long && is_unsigned){
1346                                 val = new ULongLiteral (context.BuiltinTypes, ul, Location);
1347                                 return Token.LITERAL;
1348                         }
1349                         
1350                         if (is_unsigned){
1351                                 // uint if possible, or ulong else.
1352
1353                                 if ((ul & 0xffffffff00000000) == 0)
1354                                         val = new UIntLiteral (context.BuiltinTypes, (uint) ul, Location);
1355                                 else
1356                                         val = new ULongLiteral (context.BuiltinTypes, ul, Location);
1357                         } else if (is_long){
1358                                 // long if possible, ulong otherwise
1359                                 if ((ul & 0x8000000000000000) != 0)
1360                                         val = new ULongLiteral (context.BuiltinTypes, ul, Location);
1361                                 else
1362                                         val = new LongLiteral (context.BuiltinTypes, (long) ul, Location);
1363                         } else {
1364                                 // int, uint, long or ulong in that order
1365                                 if ((ul & 0xffffffff00000000) == 0){
1366                                         uint ui = (uint) ul;
1367                                         
1368                                         if ((ui & 0x80000000) != 0)
1369                                                 val = new UIntLiteral (context.BuiltinTypes, ui, Location);
1370                                         else
1371                                                 val = new IntLiteral (context.BuiltinTypes, (int) ui, Location);
1372                                 } else {
1373                                         if ((ul & 0x8000000000000000) != 0)
1374                                                 val = new ULongLiteral (context.BuiltinTypes, ul, Location);
1375                                         else
1376                                                 val = new LongLiteral (context.BuiltinTypes, (long) ul, Location);
1377                                 }
1378                         }
1379                         return Token.LITERAL;
1380                 }
1381                                 
1382                 //
1383                 // given `c' as the next char in the input decide whether
1384                 // we need to convert to a special type, and then choose
1385                 // the best representation for the integer
1386                 //
1387                 int adjust_int (int c)
1388                 {
1389                         try {
1390                                 if (number_pos > 9){
1391                                         ulong ul = (uint) (number_builder [0] - '0');
1392
1393                                         for (int i = 1; i < number_pos; i++){
1394                                                 ul = checked ((ul * 10) + ((uint)(number_builder [i] - '0')));
1395                                         }
1396                                         return integer_type_suffix (ul, c);
1397                                 } else {
1398                                         uint ui = (uint) (number_builder [0] - '0');
1399
1400                                         for (int i = 1; i < number_pos; i++){
1401                                                 ui = checked ((ui * 10) + ((uint)(number_builder [i] - '0')));
1402                                         }
1403                                         return integer_type_suffix (ui, c);
1404                                 }
1405                         } catch (OverflowException) {
1406                                 Error_NumericConstantTooLong ();
1407                                 val = new IntLiteral (context.BuiltinTypes, 0, Location);
1408                                 return Token.LITERAL;
1409                         }
1410                         catch (FormatException) {
1411                                 Report.Error (1013, Location, "Invalid number");
1412                                 val = new IntLiteral (context.BuiltinTypes, 0, Location);
1413                                 return Token.LITERAL;
1414                         }
1415                 }
1416                 
1417                 int adjust_real (TypeCode t)
1418                 {
1419                         string s = new String (number_builder, 0, number_pos);
1420                         const string error_details = "Floating-point constant is outside the range of type `{0}'";
1421
1422                         switch (t){
1423                         case TypeCode.Decimal:
1424                                 try {
1425                                         val = new DecimalLiteral (context.BuiltinTypes, decimal.Parse (s, styles, csharp_format_info), Location);
1426                                 } catch (OverflowException) {
1427                                         val = new DecimalLiteral (context.BuiltinTypes, 0, Location);
1428                                         Report.Error (594, Location, error_details, "decimal");
1429                                 }
1430                                 break;
1431                         case TypeCode.Single:
1432                                 try {
1433                                         val = new FloatLiteral (context.BuiltinTypes, float.Parse (s, styles, csharp_format_info), Location);
1434                                 } catch (OverflowException) {
1435                                         val = new FloatLiteral (context.BuiltinTypes, 0, Location);
1436                                         Report.Error (594, Location, error_details, "float");
1437                                 }
1438                                 break;
1439                         default:
1440                                 try {
1441                                         val = new DoubleLiteral (context.BuiltinTypes, double.Parse (s, styles, csharp_format_info), Location);
1442                                 } catch (OverflowException) {
1443                                         val = new DoubleLiteral (context.BuiltinTypes, 0, Location);
1444                                         Report.Error (594, Location, error_details, "double");
1445                                 }
1446                                 break;
1447                         }
1448
1449                         return Token.LITERAL;
1450                 }
1451
1452                 int handle_hex ()
1453                 {
1454                         int d;
1455                         ulong ul;
1456                         
1457                         get_char ();
1458                         while ((d = peek_char ()) != -1){
1459                                 if (is_hex (d)){
1460                                         number_builder [number_pos++] = (char) d;
1461                                         get_char ();
1462                                 } else
1463                                         break;
1464                         }
1465                         
1466                         string s = new String (number_builder, 0, number_pos);
1467                         try {
1468                                 if (number_pos <= 8)
1469                                         ul = System.UInt32.Parse (s, NumberStyles.HexNumber);
1470                                 else
1471                                         ul = System.UInt64.Parse (s, NumberStyles.HexNumber);
1472                         } catch (OverflowException){
1473                                 Error_NumericConstantTooLong ();
1474                                 val = new IntLiteral (context.BuiltinTypes, 0, Location);
1475                                 return Token.LITERAL;
1476                         }
1477                         catch (FormatException) {
1478                                 Report.Error (1013, Location, "Invalid number");
1479                                 val = new IntLiteral (context.BuiltinTypes, 0, Location);
1480                                 return Token.LITERAL;
1481                         }
1482                         
1483                         return integer_type_suffix (ul, peek_char ());
1484                 }
1485
1486                 //
1487                 // Invoked if we know we have .digits or digits
1488                 //
1489                 int is_number (int c)
1490                 {
1491                         bool is_real = false;
1492
1493                         number_pos = 0;
1494
1495                         if (c >= '0' && c <= '9'){
1496                                 if (c == '0'){
1497                                         int peek = peek_char ();
1498
1499                                         if (peek == 'x' || peek == 'X')
1500                                                 return handle_hex ();
1501                                 }
1502                                 decimal_digits (c);
1503                                 c = get_char ();
1504                         }
1505
1506                         //
1507                         // We need to handle the case of
1508                         // "1.1" vs "1.string" (LITERAL_FLOAT vs NUMBER DOT IDENTIFIER)
1509                         //
1510                         if (c == '.'){
1511                                 if (decimal_digits ('.')){
1512                                         is_real = true;
1513                                         c = get_char ();
1514                                 } else {
1515                                         putback ('.');
1516                                         number_pos--;
1517                                         return adjust_int (-1);
1518                                 }
1519                         }
1520                         
1521                         if (c == 'e' || c == 'E'){
1522                                 is_real = true;
1523                                 if (number_pos == max_number_size)
1524                                         Error_NumericConstantTooLong ();
1525                                 number_builder [number_pos++] = 'e';
1526                                 c = get_char ();
1527                                 
1528                                 if (c == '+'){
1529                                         if (number_pos == max_number_size)
1530                                                 Error_NumericConstantTooLong ();
1531                                         number_builder [number_pos++] = '+';
1532                                         c = -1;
1533                                 } else if (c == '-') {
1534                                         if (number_pos == max_number_size)
1535                                                 Error_NumericConstantTooLong ();
1536                                         number_builder [number_pos++] = '-';
1537                                         c = -1;
1538                                 } else {
1539                                         if (number_pos == max_number_size)
1540                                                 Error_NumericConstantTooLong ();
1541                                         number_builder [number_pos++] = '+';
1542                                 }
1543                                         
1544                                 decimal_digits (c);
1545                                 c = get_char ();
1546                         }
1547
1548                         var type = real_type_suffix (c);
1549                         if (type == TypeCode.Empty && !is_real){
1550                                 putback (c);
1551                                 return adjust_int (c);
1552                         }
1553
1554                         is_real = true;
1555
1556                         if (type == TypeCode.Empty){
1557                                 putback (c);
1558                         }
1559                         
1560                         if (is_real)
1561                                 return adjust_real (type);
1562
1563                         throw new Exception ("Is Number should never reach this point");
1564                 }
1565
1566                 //
1567                 // Accepts exactly count (4 or 8) hex, no more no less
1568                 //
1569                 int getHex (int count, out int surrogate, out bool error)
1570                 {
1571                         int i;
1572                         int total = 0;
1573                         int c;
1574                         int top = count != -1 ? count : 4;
1575                         
1576                         get_char ();
1577                         error = false;
1578                         surrogate = 0;
1579                         for (i = 0; i < top; i++){
1580                                 c = get_char ();
1581
1582                                 if (c >= '0' && c <= '9')
1583                                         c = (int) c - (int) '0';
1584                                 else if (c >= 'A' && c <= 'F')
1585                                         c = (int) c - (int) 'A' + 10;
1586                                 else if (c >= 'a' && c <= 'f')
1587                                         c = (int) c - (int) 'a' + 10;
1588                                 else {
1589                                         error = true;
1590                                         return 0;
1591                                 }
1592                                 
1593                                 total = (total * 16) + c;
1594                                 if (count == -1){
1595                                         int p = peek_char ();
1596                                         if (p == -1)
1597                                                 break;
1598                                         if (!is_hex ((char)p))
1599                                                 break;
1600                                 }
1601                         }
1602
1603                         if (top == 8) {
1604                                 if (total > 0x0010FFFF) {
1605                                         error = true;
1606                                         return 0;
1607                                 }
1608
1609                                 if (total >= 0x00010000) {
1610                                         surrogate = ((total - 0x00010000) % 0x0400 + 0xDC00);                                   
1611                                         total = ((total - 0x00010000) / 0x0400 + 0xD800);
1612                                 }
1613                         }
1614
1615                         return total;
1616                 }
1617
1618                 int escape (int c, out int surrogate)
1619                 {
1620                         bool error;
1621                         int d;
1622                         int v;
1623
1624                         d = peek_char ();
1625                         if (c != '\\') {
1626                                 surrogate = 0;
1627                                 return c;
1628                         }
1629                         
1630                         switch (d){
1631                         case 'a':
1632                                 v = '\a'; break;
1633                         case 'b':
1634                                 v = '\b'; break;
1635                         case 'n':
1636                                 v = '\n'; break;
1637                         case 't':
1638                                 v = '\t'; break;
1639                         case 'v':
1640                                 v = '\v'; break;
1641                         case 'r':
1642                                 v = '\r'; break;
1643                         case '\\':
1644                                 v = '\\'; break;
1645                         case 'f':
1646                                 v = '\f'; break;
1647                         case '0':
1648                                 v = 0; break;
1649                         case '"':
1650                                 v = '"'; break;
1651                         case '\'':
1652                                 v = '\''; break;
1653                         case 'x':
1654                                 v = getHex (-1, out surrogate, out error);
1655                                 if (error)
1656                                         goto default;
1657                                 return v;
1658                         case 'u':
1659                         case 'U':
1660                                 return EscapeUnicode (d, out surrogate);
1661                         default:
1662                                 surrogate = 0;
1663                                 Report.Error (1009, Location, "Unrecognized escape sequence `\\{0}'", ((char)d).ToString ());
1664                                 return d;
1665                         }
1666
1667                         get_char ();
1668                         surrogate = 0;
1669                         return v;
1670                 }
1671
1672                 int EscapeUnicode (int ch, out int surrogate)
1673                 {
1674                         bool error;
1675                         if (ch == 'U') {
1676                                 ch = getHex (8, out surrogate, out error);
1677                         } else {
1678                                 ch = getHex (4, out surrogate, out error);
1679                         }
1680
1681                         if (error)
1682                                 Report.Error (1009, Location, "Unrecognized escape sequence");
1683
1684                         return ch;
1685                 }
1686
1687                 int get_char ()
1688                 {
1689                         int x;
1690                         if (putback_char != -1) {
1691                                 x = putback_char;
1692                                 putback_char = -1;
1693                         } else {
1694                                 x = reader.Read ();
1695                         }
1696                         
1697                         if (x == '\r') {
1698                                 if (peek_char () == '\n') {
1699                                         putback_char = -1;
1700                                 }
1701
1702                                 x = '\n';
1703                                 advance_line ();
1704                         } else if (x == '\n') {
1705                                 advance_line ();
1706                         } else {
1707                                 col++;
1708                         }
1709                         return x;
1710                 }
1711
1712                 void advance_line ()
1713                 {
1714                         line++;
1715                         ref_line++;
1716                         previous_col = col;
1717                         col = 0;
1718                 }
1719
1720                 int peek_char ()
1721                 {
1722                         if (putback_char == -1)
1723                                 putback_char = reader.Read ();
1724                         return putback_char;
1725                 }
1726
1727                 int peek_char2 ()
1728                 {
1729                         if (putback_char != -1)
1730                                 return putback_char;
1731                         return reader.Peek ();
1732                 }
1733                 
1734                 void putback (int c)
1735                 {
1736                         if (putback_char != -1){
1737                                 Console.WriteLine ("Col: " + col);
1738                                 Console.WriteLine ("Row: " + line);
1739                                 Console.WriteLine ("Name: " + ref_name.Name);
1740                                 Console.WriteLine ("Current [{0}] putting back [{1}]  ", putback_char, c);
1741                                 throw new Exception ("This should not happen putback on putback");
1742                         }
1743                         if (c == '\n' || col == 0) {
1744                                 // It won't happen though.
1745                                 line--;
1746                                 ref_line--;
1747                                 col = previous_col;
1748                         }
1749                         else
1750                                 col--;
1751                         putback_char = c;
1752                 }
1753
1754                 public bool advance ()
1755                 {
1756                         return peek_char () != -1 || CompleteOnEOF;
1757                 }
1758
1759                 public Object Value {
1760                         get {
1761                                 return val;
1762                         }
1763                 }
1764
1765                 public Object value ()
1766                 {
1767                         return val;
1768                 }
1769
1770                 public int token ()
1771                 {
1772                         current_token = xtoken ();
1773                         return current_token;
1774                 }
1775
1776                 int TokenizePreprocessorIdentifier (out int c)
1777                 {
1778                         // skip over white space
1779                         do {
1780                                 c = get_char ();
1781                         } while (c == ' ' || c == '\t');
1782
1783
1784                         int pos = 0;
1785                         while (c != -1 && c >= 'a' && c <= 'z') {
1786                                 id_builder[pos++] = (char) c;
1787                                 c = get_char ();
1788                                 if (c == '\\') {
1789                                         int peek = peek_char ();
1790                                         if (peek == 'U' || peek == 'u') {
1791                                                 int surrogate;
1792                                                 c = EscapeUnicode (c, out surrogate);
1793                                                 if (surrogate != 0) {
1794                                                         if (is_identifier_part_character ((char) c)) {
1795                                                                 id_builder[pos++] = (char) c;
1796                                                         }
1797                                                         c = surrogate;
1798                                                 }
1799                                         }
1800                                 }
1801                         }
1802
1803                         return pos;
1804                 }
1805
1806                 PreprocessorDirective get_cmd_arg (out string arg)
1807                 {
1808                         int c;          
1809
1810                         tokens_seen = false;
1811                         arg = "";
1812
1813                         var cmd = GetPreprocessorDirective (id_builder, TokenizePreprocessorIdentifier (out c));
1814
1815                         if ((cmd & PreprocessorDirective.CustomArgumentsParsing) != 0)
1816                                 return cmd;
1817
1818                         // skip over white space
1819                         while (c == ' ' || c == '\t')
1820                                 c = get_char ();
1821
1822                         int has_identifier_argument = (int)(cmd & PreprocessorDirective.RequiresArgument);
1823                         int pos = 0;
1824
1825                         while (c != -1 && c != '\n') {
1826                                 if (c == '\\' && has_identifier_argument >= 0) {
1827                                         if (has_identifier_argument != 0) {
1828                                                 has_identifier_argument = 1;
1829
1830                                                 int peek = peek_char ();
1831                                                 if (peek == 'U' || peek == 'u') {
1832                                                         int surrogate;
1833                                                         c = EscapeUnicode (c, out surrogate);
1834                                                         if (surrogate != 0) {
1835                                                                 if (is_identifier_part_character ((char) c)) {
1836                                                                         if (pos == value_builder.Length)
1837                                                                                 Array.Resize (ref value_builder, pos * 2);
1838
1839                                                                         value_builder[pos++] = (char) c;
1840                                                                 }
1841                                                                 c = surrogate;
1842                                                         }
1843                                                 }
1844                                         } else {
1845                                                 has_identifier_argument = -1;
1846                                         }
1847                                 } else if (c == '/' && peek_char () == '/') {
1848                                         //
1849                                         // Eat single-line comments
1850                                         //
1851                                         get_char ();
1852                                         do {
1853                                                 c = get_char ();
1854                                         } while (c != -1 && c != '\n');
1855
1856                                         break;
1857                                 }
1858
1859                                 if (pos == value_builder.Length)
1860                                         Array.Resize (ref value_builder, pos * 2);
1861
1862                                 value_builder[pos++] = (char) c;
1863                                 c = get_char ();
1864                         }
1865
1866                         if (pos != 0) {
1867                                 if (pos > max_id_size)
1868                                         arg = new string (value_builder, 0, pos);
1869                                 else
1870                                         arg = InternIdentifier (value_builder, pos);
1871
1872                                 // Eat any trailing whitespaces
1873                                 arg = arg.Trim (simple_whitespaces);
1874                         }
1875
1876                         return cmd;
1877                 }
1878
1879                 //
1880                 // Handles the #line directive
1881                 //
1882                 bool PreProcessLine (string arg)
1883                 {
1884                         if (arg.Length == 0)
1885                                 return false;
1886
1887                         if (arg == "default"){
1888                                 ref_line = line;
1889                                 ref_name = file_name;
1890                                 hidden = false;
1891                                 Location.Push (file_name, ref_name);
1892                                 return true;
1893                         } else if (arg == "hidden"){
1894                                 hidden = true;
1895                                 return true;
1896                         }
1897                         
1898                         try {
1899                                 int pos;
1900
1901                                 if ((pos = arg.IndexOf (' ')) != -1 && pos != 0){
1902                                         ref_line = System.Int32.Parse (arg.Substring (0, pos));
1903                                         pos++;
1904                                         
1905                                         char [] quotes = { '\"' };
1906                                         
1907                                         string name = arg.Substring (pos). Trim (quotes);
1908                                         ref_name = context.LookupFile (file_name, name);
1909                                         file_name.AddIncludeFile (ref_name);
1910                                         hidden = false;
1911                                         Location.Push (file_name, ref_name);
1912                                 } else {
1913                                         ref_line = System.Int32.Parse (arg);
1914                                         hidden = false;
1915                                 }
1916                         } catch {
1917                                 return false;
1918                         }
1919                         
1920                         return true;
1921                 }
1922
1923                 //
1924                 // Handles #define and #undef
1925                 //
1926                 void PreProcessDefinition (bool is_define, string ident, bool caller_is_taking)
1927                 {
1928                         if (ident.Length == 0 || ident == "true" || ident == "false"){
1929                                 Report.Error (1001, Location, "Missing identifier to pre-processor directive");
1930                                 return;
1931                         }
1932
1933                         if (ident.IndexOfAny (simple_whitespaces) != -1){
1934                                 Error_EndLineExpected ();
1935                                 return;
1936                         }
1937
1938                         if (!is_identifier_start_character (ident [0]))
1939                                 Report.Error (1001, Location, "Identifier expected: {0}", ident);
1940                         
1941                         foreach (char c in ident.Substring (1)){
1942                                 if (!is_identifier_part_character (c)){
1943                                         Report.Error (1001, Location, "Identifier expected: {0}",  ident);
1944                                         return;
1945                                 }
1946                         }
1947
1948                         if (!caller_is_taking)
1949                                 return;
1950
1951                         if (is_define) {
1952                                 //
1953                                 // #define ident
1954                                 //
1955                                 if (context.Settings.IsConditionalSymbolDefined (ident))
1956                                         return;
1957
1958                                 file_name.AddDefine (ident);
1959                         } else {
1960                                 //
1961                                 // #undef ident
1962                                 //
1963                                 file_name.AddUndefine (ident);
1964                         }
1965                 }
1966
1967                 byte read_hex (out bool error)
1968                 {
1969                         int total;
1970                         int c = get_char ();
1971
1972                         if ((c >= '0') && (c <= '9'))
1973                                 total = (int) c - (int) '0';
1974                         else if ((c >= 'A') && (c <= 'F'))
1975                                 total = (int) c - (int) 'A' + 10;
1976                         else if ((c >= 'a') && (c <= 'f'))
1977                                 total = (int) c - (int) 'a' + 10;
1978                         else {
1979                                 error = true;
1980                                 return 0;
1981                         }
1982
1983                         total *= 16;
1984                         c = get_char ();
1985
1986                         if ((c >= '0') && (c <= '9'))
1987                                 total += (int) c - (int) '0';
1988                         else if ((c >= 'A') && (c <= 'F'))
1989                                 total += (int) c - (int) 'A' + 10;
1990                         else if ((c >= 'a') && (c <= 'f'))
1991                                 total += (int) c - (int) 'a' + 10;
1992                         else {
1993                                 error = true;
1994                                 return 0;
1995                         }
1996
1997                         error = false;
1998                         return (byte) total;
1999                 }
2000
2001                 //
2002                 // Parses #pragma checksum
2003                 //
2004                 bool ParsePragmaChecksum ()
2005                 {
2006                         //
2007                         // The syntax is ` "foo.txt" "{guid}" "hash"'
2008                         //
2009                         int c = get_char ();
2010
2011                         if (c != '"')
2012                                 return false;
2013
2014                         string_builder.Length = 0;
2015                         while (c != -1 && c != '\n') {
2016                                 c = get_char ();
2017                                 if (c == '"') {
2018                                         c = get_char ();
2019                                         break;
2020                                 }
2021
2022                                 string_builder.Append ((char) c);
2023                         }
2024
2025                         if (string_builder.Length == 0) {
2026                                 Report.Warning (1709, 1, Location, "Filename specified for preprocessor directive is empty");
2027                         }
2028
2029                         // TODO: Any white-spaces count
2030                         if (c != ' ')
2031                                 return false;
2032
2033                         SourceFile file = context.LookupFile (file_name, string_builder.ToString ());
2034
2035                         if (get_char () != '"' || get_char () != '{')
2036                                 return false;
2037
2038                         bool error;
2039                         byte[] guid_bytes = new byte [16];
2040                         int i = 0;
2041
2042                         for (; i < 4; i++) {
2043                                 guid_bytes [i] = read_hex (out error);
2044                                 if (error)
2045                                         return false;
2046                         }
2047
2048                         if (get_char () != '-')
2049                                 return false;
2050
2051                         for (; i < 10; i++) {
2052                                 guid_bytes [i] = read_hex (out error);
2053                                 if (error)
2054                                         return false;
2055
2056                                 guid_bytes [i++] = read_hex (out error);
2057                                 if (error)
2058                                         return false;
2059
2060                                 if (get_char () != '-')
2061                                         return false;
2062                         }
2063
2064                         for (; i < 16; i++) {
2065                                 guid_bytes [i] = read_hex (out error);
2066                                 if (error)
2067                                         return false;
2068                         }
2069
2070                         if (get_char () != '}' || get_char () != '"')
2071                                 return false;
2072
2073                         // TODO: Any white-spaces count
2074                         c = get_char ();
2075                         if (c != ' ')
2076                                 return false;
2077
2078                         if (get_char () != '"')
2079                                 return false;
2080
2081                         // Any length of checksum
2082                         List<byte> checksum_bytes = new List<byte> (16);
2083
2084                         c = peek_char ();
2085                         while (c != '"' && c != -1) {
2086                                 checksum_bytes.Add (read_hex (out error));
2087                                 if (error)
2088                                         return false;
2089
2090                                 c = peek_char ();
2091                         }
2092
2093                         if (c == '/') {
2094                                 ReadSingleLineComment ();
2095                         } else if (get_char () != '"') {
2096                                 return false;
2097                         }
2098
2099                         file.SetChecksum (guid_bytes, checksum_bytes.ToArray ());
2100                         ref_name.AutoGenerated = true;
2101                         return true;
2102                 }
2103
2104                 bool IsTokenIdentifierEqual (char[] identifier)
2105                 {
2106                         for (int i = 0; i < identifier.Length; ++i) {
2107                                 if (identifier[i] != id_builder[i])
2108                                         return false;
2109                         }
2110
2111                         return true;
2112                 }
2113
2114                 int TokenizePragmaNumber (ref int c)
2115                 {
2116                         number_pos = 0;
2117
2118                         int number;
2119
2120                         if (c >= '0' && c <= '9') {
2121                                 decimal_digits (c);
2122                                 uint ui = (uint) (number_builder[0] - '0');
2123
2124                                 try {
2125                                         for (int i = 1; i < number_pos; i++) {
2126                                                 ui = checked ((ui * 10) + ((uint) (number_builder[i] - '0')));
2127                                         }
2128
2129                                         number = (int) ui;
2130                                 } catch (OverflowException) {
2131                                         Error_NumericConstantTooLong ();
2132                                         number = -1;
2133                                 }
2134
2135
2136                                 c = get_char ();
2137
2138                                 // skip over white space
2139                                 while (c == ' ' || c == '\t')
2140                                         c = get_char ();
2141
2142                                 if (c == ',') {
2143                                         c = get_char ();
2144                                 }
2145
2146                                 // skip over white space
2147                                 while (c == ' ' || c == '\t')
2148                                         c = get_char ();
2149                         } else {
2150                                 number = -1;
2151                                 if (c == '/') {
2152                                         ReadSingleLineComment ();
2153                                 } else {
2154                                         Report.Warning (1692, 1, Location, "Invalid number");
2155
2156                                         // Read everything till the end of the line or file
2157                                         do {
2158                                                 c = get_char ();
2159                                         } while (c != -1 && c != '\n');
2160                                 }
2161                         }
2162
2163                         return number;
2164                 }
2165
2166                 void ReadSingleLineComment ()
2167                 {
2168                         if (peek_char () != '/')
2169                                 Report.Warning (1696, 1, Location, "Single-line comment or end-of-line expected");
2170
2171                         // Read everything till the end of the line or file
2172                         int c;
2173                         do {
2174                                 c = get_char ();
2175                         } while (c != -1 && c != '\n');
2176                 }
2177
2178                 /// <summary>
2179                 /// Handles #pragma directive
2180                 /// </summary>
2181                 void ParsePragmaDirective (string arg)
2182                 {
2183                         int c;
2184                         int length = TokenizePreprocessorIdentifier (out c);
2185                         if (length == pragma_warning.Length && IsTokenIdentifierEqual (pragma_warning)) {
2186                                 length = TokenizePreprocessorIdentifier (out c);
2187
2188                                 //
2189                                 // #pragma warning disable
2190                                 // #pragma warning restore
2191                                 //
2192                                 if (length == pragma_warning_disable.Length) {
2193                                         bool disable = IsTokenIdentifierEqual (pragma_warning_disable);
2194                                         if (disable || IsTokenIdentifierEqual (pragma_warning_restore)) {
2195                                                 // skip over white space
2196                                                 while (c == ' ' || c == '\t')
2197                                                         c = get_char ();
2198
2199                                                 var loc = Location;
2200
2201                                                 if (c == '\n' || c == '/') {
2202                                                         if (c == '/')
2203                                                                 ReadSingleLineComment ();
2204
2205                                                         //
2206                                                         // Disable/Restore all warnings
2207                                                         //
2208                                                         if (disable) {
2209                                                                 Report.RegisterWarningRegion (loc).WarningDisable (loc.Row);
2210                                                         } else {
2211                                                                 Report.RegisterWarningRegion (loc).WarningEnable (loc.Row);
2212                                                         }
2213                                                 } else {
2214                                                         //
2215                                                         // Disable/Restore a warning or group of warnings
2216                                                         //
2217                                                         int code;
2218                                                         do {
2219                                                                 code = TokenizePragmaNumber (ref c);
2220                                                                 if (code > 0) {
2221                                                                         if (disable) {
2222                                                                                 Report.RegisterWarningRegion (loc).WarningDisable (loc, code, Report);
2223                                                                         } else {
2224                                                                                 Report.RegisterWarningRegion (loc).WarningEnable (loc, code, Report);
2225                                                                         }
2226                                                                 }
2227                                                         } while (code >= 0 && c != '\n' && c != -1);
2228                                                 }
2229
2230                                                 return;
2231                                         }
2232                                 }
2233
2234                                 Report.Warning (1634, 1, Location, "Expected disable or restore");
2235                                 return;
2236                         }
2237
2238                         //
2239                         // #pragma checksum
2240                         //
2241                         if (length == pragma_checksum.Length && IsTokenIdentifierEqual (pragma_checksum)) {
2242                                 if (c != ' ' || !ParsePragmaChecksum ()) {
2243                                         Report.Warning (1695, 1, Location,
2244                                                 "Invalid #pragma checksum syntax. Expected \"filename\" \"{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}\" \"XXXX...\"");
2245                                 }
2246
2247                                 return;
2248                         }
2249
2250                         Report.Warning (1633, 1, Location, "Unrecognized #pragma directive");
2251                 }
2252
2253                 bool eval_val (string s)
2254                 {
2255                         if (s == "true")
2256                                 return true;
2257                         if (s == "false")
2258                                 return false;
2259
2260                         return file_name.IsConditionalDefined (context, s);
2261                 }
2262
2263                 bool pp_primary (ref string s)
2264                 {
2265                         s = s.Trim ();
2266                         int len = s.Length;
2267
2268                         if (len > 0){
2269                                 char c = s [0];
2270                                 
2271                                 if (c == '('){
2272                                         s = s.Substring (1);
2273                                         bool val = pp_expr (ref s, false);
2274                                         if (s.Length > 0 && s [0] == ')'){
2275                                                 s = s.Substring (1);
2276                                                 return val;
2277                                         }
2278                                         Error_InvalidDirective ();
2279                                         return false;
2280                                 }
2281                                 
2282                                 if (is_identifier_start_character (c)){
2283                                         int j = 1;
2284
2285                                         while (j < len){
2286                                                 c = s [j];
2287                                                 
2288                                                 if (is_identifier_part_character (c)){
2289                                                         j++;
2290                                                         continue;
2291                                                 }
2292                                                 bool v = eval_val (s.Substring (0, j));
2293                                                 s = s.Substring (j);
2294                                                 return v;
2295                                         }
2296                                         bool vv = eval_val (s);
2297                                         s = "";
2298                                         return vv;
2299                                 }
2300                         }
2301                         Error_InvalidDirective ();
2302                         return false;
2303                 }
2304                 
2305                 bool pp_unary (ref string s)
2306                 {
2307                         s = s.Trim ();
2308                         int len = s.Length;
2309
2310                         if (len > 0){
2311                                 if (s [0] == '!'){
2312                                         if (len > 1 && s [1] == '='){
2313                                                 Error_InvalidDirective ();
2314                                                 return false;
2315                                         }
2316                                         s = s.Substring (1);
2317                                         return ! pp_primary (ref s);
2318                                 } else
2319                                         return pp_primary (ref s);
2320                         } else {
2321                                 Error_InvalidDirective ();
2322                                 return false;
2323                         }
2324                 }
2325                 
2326                 bool pp_eq (ref string s)
2327                 {
2328                         bool va = pp_unary (ref s);
2329
2330                         s = s.Trim ();
2331                         int len = s.Length;
2332                         if (len > 0){
2333                                 if (s [0] == '='){
2334                                         if (len > 2 && s [1] == '='){
2335                                                 s = s.Substring (2);
2336                                                 return va == pp_unary (ref s);
2337                                         } else {
2338                                                 Error_InvalidDirective ();
2339                                                 return false;
2340                                         }
2341                                 } else if (s [0] == '!' && len > 1 && s [1] == '='){
2342                                         s = s.Substring (2);
2343
2344                                         return va != pp_unary (ref s);
2345
2346                                 } 
2347                         }
2348
2349                         return va;
2350                                 
2351                 }
2352                 
2353                 bool pp_and (ref string s)
2354                 {
2355                         bool va = pp_eq (ref s);
2356
2357                         s = s.Trim ();
2358                         int len = s.Length;
2359                         if (len > 0){
2360                                 if (s [0] == '&'){
2361                                         if (len > 2 && s [1] == '&'){
2362                                                 s = s.Substring (2);
2363                                                 return (va & pp_and (ref s));
2364                                         } else {
2365                                                 Error_InvalidDirective ();
2366                                                 return false;
2367                                         }
2368                                 } 
2369                         }
2370                         return va;
2371                 }
2372                 
2373                 //
2374                 // Evaluates an expression for `#if' or `#elif'
2375                 //
2376                 bool pp_expr (ref string s, bool isTerm)
2377                 {
2378                         bool va = pp_and (ref s);
2379                         s = s.Trim ();
2380                         int len = s.Length;
2381                         if (len > 0){
2382                                 char c = s [0];
2383                                 
2384                                 if (c == '|'){
2385                                         if (len > 2 && s [1] == '|'){
2386                                                 s = s.Substring (2);
2387                                                 return va | pp_expr (ref s, isTerm);
2388                                         } else {
2389                                                 Error_InvalidDirective ();
2390                                                 return false;
2391                                         }
2392                                 }
2393                                 if (isTerm) {
2394                                         Error_EndLineExpected ();
2395                                         return false;
2396                                 }
2397                         }
2398                         
2399                         return va;
2400                 }
2401
2402                 bool eval (string s)
2403                 {
2404                         bool v = pp_expr (ref s, true);
2405                         s = s.Trim ();
2406                         if (s.Length != 0){
2407                                 return false;
2408                         }
2409
2410                         return v;
2411                 }
2412
2413                 void Error_NumericConstantTooLong ()
2414                 {
2415                         Report.Error (1021, Location, "Integral constant is too large");                        
2416                 }
2417                 
2418                 void Error_InvalidDirective ()
2419                 {
2420                         Report.Error (1517, Location, "Invalid preprocessor directive");
2421                 }
2422
2423                 void Error_UnexpectedDirective (string extra)
2424                 {
2425                         Report.Error (
2426                                 1028, Location,
2427                                 "Unexpected processor directive ({0})", extra);
2428                 }
2429
2430                 void Error_TokensSeen ()
2431                 {
2432                         Report.Error (1032, Location,
2433                                 "Cannot define or undefine preprocessor symbols after first token in file");
2434                 }
2435
2436                 void Eror_WrongPreprocessorLocation ()
2437                 {
2438                         Report.Error (1040, Location,
2439                                 "Preprocessor directives must appear as the first non-whitespace character on a line");
2440                 }
2441
2442                 void Error_EndLineExpected ()
2443                 {
2444                         Report.Error (1025, Location, "Single-line comment or end-of-line expected");
2445                 }
2446
2447                 //
2448                 // Raises a warning when tokenizer found documentation comment
2449                 // on unexpected place
2450                 //
2451                 void WarningMisplacedComment (Location loc)
2452                 {
2453                         if (doc_state != XmlCommentState.Error) {
2454                                 doc_state = XmlCommentState.Error;
2455                                 Report.Warning (1587, 2, loc, "XML comment is not placed on a valid language element");
2456                         }
2457                 }
2458                 
2459                 //
2460                 // if true, then the code continues processing the code
2461                 // if false, the code stays in a loop until another directive is
2462                 // reached.
2463                 // When caller_is_taking is false we ignore all directives except the ones
2464                 // which can help us to identify where the #if block ends
2465                 bool ParsePreprocessingDirective (bool caller_is_taking)
2466                 {
2467                         string arg;
2468                         bool region_directive = false;
2469
2470                         var directive = get_cmd_arg (out arg);
2471
2472                         //
2473                         // The first group of pre-processing instructions is always processed
2474                         //
2475                         switch (directive) {
2476                         case PreprocessorDirective.Region:
2477                                 region_directive = true;
2478                                 arg = "true";
2479                                 goto case PreprocessorDirective.If;
2480
2481                         case PreprocessorDirective.Endregion:
2482                                 if (ifstack == null || ifstack.Count == 0){
2483                                         Error_UnexpectedDirective ("no #region for this #endregion");
2484                                         return true;
2485                                 }
2486                                 int pop = ifstack.Pop ();
2487                                         
2488                                 if ((pop & REGION) == 0)
2489                                         Report.Error (1027, Location, "Expected `#endif' directive");
2490                                         
2491                                 return caller_is_taking;
2492                                 
2493                         case PreprocessorDirective.If:
2494                                 if (ifstack == null)
2495                                         ifstack = new Stack<int> (2);
2496
2497                                 int flags = region_directive ? REGION : 0;
2498                                 if (ifstack.Count == 0){
2499                                         flags |= PARENT_TAKING;
2500                                 } else {
2501                                         int state = ifstack.Peek ();
2502                                         if ((state & TAKING) != 0) {
2503                                                 flags |= PARENT_TAKING;
2504                                         }
2505                                 }
2506
2507                                 if (eval (arg) && caller_is_taking) {
2508                                         ifstack.Push (flags | TAKING);
2509                                         return true;
2510                                 }
2511                                 ifstack.Push (flags);
2512                                 return false;
2513
2514                         case PreprocessorDirective.Endif:
2515                                 if (ifstack == null || ifstack.Count == 0){
2516                                         Error_UnexpectedDirective ("no #if for this #endif");
2517                                         return true;
2518                                 } else {
2519                                         pop = ifstack.Pop ();
2520                                         
2521                                         if ((pop & REGION) != 0)
2522                                                 Report.Error (1038, Location, "#endregion directive expected");
2523                                         
2524                                         if (arg.Length != 0) {
2525                                                 Error_EndLineExpected ();
2526                                         }
2527                                         
2528                                         if (ifstack.Count == 0)
2529                                                 return true;
2530
2531                                         int state = ifstack.Peek ();
2532                                         return (state & TAKING) != 0;
2533                                 }
2534
2535                         case PreprocessorDirective.Elif:
2536                                 if (ifstack == null || ifstack.Count == 0){
2537                                         Error_UnexpectedDirective ("no #if for this #elif");
2538                                         return true;
2539                                 } else {
2540                                         int state = ifstack.Pop ();
2541
2542                                         if ((state & REGION) != 0) {
2543                                                 Report.Error (1038, Location, "#endregion directive expected");
2544                                                 return true;
2545                                         }
2546
2547                                         if ((state & ELSE_SEEN) != 0){
2548                                                 Error_UnexpectedDirective ("#elif not valid after #else");
2549                                                 return true;
2550                                         }
2551
2552                                         if ((state & TAKING) != 0) {
2553                                                 ifstack.Push (0);
2554                                                 return false;
2555                                         }
2556
2557                                         if (eval (arg) && ((state & PARENT_TAKING) != 0)){
2558                                                 ifstack.Push (state | TAKING);
2559                                                 return true;
2560                                         }
2561
2562                                         ifstack.Push (state);
2563                                         return false;
2564                                 }
2565
2566                         case PreprocessorDirective.Else:
2567                                 if (ifstack == null || ifstack.Count == 0){
2568                                         Error_UnexpectedDirective ("no #if for this #else");
2569                                         return true;
2570                                 } else {
2571                                         int state = ifstack.Peek ();
2572
2573                                         if ((state & REGION) != 0) {
2574                                                 Report.Error (1038, Location, "#endregion directive expected");
2575                                                 return true;
2576                                         }
2577
2578                                         if ((state & ELSE_SEEN) != 0){
2579                                                 Error_UnexpectedDirective ("#else within #else");
2580                                                 return true;
2581                                         }
2582
2583                                         ifstack.Pop ();
2584
2585                                         if (arg.Length != 0) {
2586                                                 Error_EndLineExpected ();
2587                                                 return true;
2588                                         }
2589
2590                                         bool ret = false;
2591                                         if ((state & PARENT_TAKING) != 0) {
2592                                                 ret = (state & TAKING) == 0;
2593                                         
2594                                                 if (ret)
2595                                                         state |= TAKING;
2596                                                 else
2597                                                         state &= ~TAKING;
2598                                         }
2599         
2600                                         ifstack.Push (state | ELSE_SEEN);
2601                                         
2602                                         return ret;
2603                                 }
2604                         case PreprocessorDirective.Define:
2605                                 if (any_token_seen){
2606                                         Error_TokensSeen ();
2607                                         return caller_is_taking;
2608                                 }
2609                                 PreProcessDefinition (true, arg, caller_is_taking);
2610                                 return caller_is_taking;
2611
2612                         case PreprocessorDirective.Undef:
2613                                 if (any_token_seen){
2614                                         Error_TokensSeen ();
2615                                         return caller_is_taking;
2616                                 }
2617                                 PreProcessDefinition (false, arg, caller_is_taking);
2618                                 return caller_is_taking;
2619
2620                         case PreprocessorDirective.Invalid:
2621                                 Report.Error (1024, Location, "Wrong preprocessor directive");
2622                                 return true;
2623                         }
2624
2625                         //
2626                         // These are only processed if we are in a `taking' block
2627                         //
2628                         if (!caller_is_taking)
2629                                 return false;
2630                                         
2631                         switch (directive){
2632                         case PreprocessorDirective.Error:
2633                                 Report.Error (1029, Location, "#error: '{0}'", arg);
2634                                 return true;
2635
2636                         case PreprocessorDirective.Warning:
2637                                 Report.Warning (1030, 1, Location, "#warning: `{0}'", arg);
2638                                 return true;
2639
2640                         case PreprocessorDirective.Pragma:
2641                                 if (context.Settings.Version == LanguageVersion.ISO_1) {
2642                                         Report.FeatureIsNotAvailable (context, Location, "#pragma");
2643                                 }
2644
2645                                 ParsePragmaDirective (arg);
2646                                 return true;
2647
2648                         case PreprocessorDirective.Line:
2649                                 if (!PreProcessLine (arg))
2650                                         Report.Error (
2651                                                 1576, Location,
2652                                                 "The line number specified for #line directive is missing or invalid");
2653                                 return caller_is_taking;
2654                         }
2655
2656                         throw new NotImplementedException (directive.ToString ());
2657                 }
2658
2659                 private int consume_string (bool quoted)
2660                 {
2661                         int c;
2662                         int pos = 0;
2663                         Location start_location = Location;
2664                         if (quoted)
2665                                 start_location = start_location - 1;
2666
2667                         while (true){
2668                                 c = get_char ();
2669                                 if (c == '"') {
2670                                         if (quoted && peek_char () == '"') {
2671                                                 if (pos == value_builder.Length)
2672                                                         Array.Resize (ref value_builder, pos * 2);
2673
2674                                                 value_builder[pos++] = (char) c;
2675                                                 get_char ();
2676                                                 continue;
2677                                         }
2678
2679                                         string s;
2680                                         if (pos == 0)
2681                                                 s = string.Empty;
2682                                         else if (pos <= 4)
2683                                                 s = InternIdentifier (value_builder, pos);
2684                                         else
2685                                                 s = new string (value_builder, 0, pos);
2686
2687                                         val = new StringLiteral (context.BuiltinTypes, s, start_location);
2688                                         return Token.LITERAL;
2689                                 }
2690
2691                                 if (c == '\n') {
2692                                         if (!quoted)
2693                                                 Report.Error (1010, Location, "Newline in constant");
2694                                 } else if (c == '\\' && !quoted) {
2695                                         int surrogate;
2696                                         c = escape (c, out surrogate);
2697                                         if (c == -1)
2698                                                 return Token.ERROR;
2699                                         if (surrogate != 0) {
2700                                                 if (pos == value_builder.Length)
2701                                                         Array.Resize (ref value_builder, pos * 2);
2702
2703                                                 value_builder[pos++] = (char) c;
2704                                                 c = surrogate;
2705                                         }
2706                                 } else if (c == -1) {
2707                                         Report.Error (1039, Location, "Unterminated string literal");
2708                                         return Token.EOF;
2709                                 }
2710
2711                                 if (pos == value_builder.Length)
2712                                         Array.Resize (ref value_builder, pos * 2);
2713
2714                                 value_builder[pos++] = (char) c;
2715                         }
2716                 }
2717
2718                 private int consume_identifier (int s)
2719                 {
2720                         int res = consume_identifier (s, false);
2721
2722                         if (doc_state == XmlCommentState.Allowed)
2723                                 doc_state = XmlCommentState.NotAllowed;
2724
2725                         return res;
2726                 }
2727
2728                 int consume_identifier (int c, bool quoted) 
2729                 {
2730                         //
2731                         // This method is very performance sensitive. It accounts
2732                         // for approximately 25% of all parser time
2733                         //
2734
2735                         int pos = 0;
2736                         int column = col;
2737                         if (quoted)
2738                                 --column;
2739
2740                         if (c == '\\') {
2741                                 int surrogate;
2742                                 c = escape (c, out surrogate);
2743                                 if (surrogate != 0) {
2744                                         id_builder [pos++] = (char) c;
2745                                         c = surrogate;
2746                                 }
2747                         }
2748
2749                         id_builder [pos++] = (char) c;
2750
2751                         try {
2752                                 while (true) {
2753                                         c = reader.Read ();
2754
2755                                         if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_' || (c >= '0' && c <= '9')) {
2756                                                 id_builder [pos++] = (char) c;
2757                                                 continue;
2758                                         }
2759
2760                                         if (c < 0x80) {
2761                                                 if (c == '\\') {
2762                                                         int surrogate;
2763                                                         c = escape (c, out surrogate);
2764                                                         if (is_identifier_part_character ((char) c))
2765                                                                 id_builder[pos++] = (char) c;
2766
2767                                                         if (surrogate != 0) {
2768                                                                 c = surrogate;
2769                                                         }
2770
2771                                                         continue;
2772                                                 }
2773                                         } else if (Char.IsLetter ((char) c) || Char.GetUnicodeCategory ((char) c) == UnicodeCategory.ConnectorPunctuation) {
2774                                                 id_builder [pos++] = (char) c;
2775                                                 continue;
2776                                         }
2777
2778                                         putback_char = c;
2779                                         break;
2780                                 }
2781                         } catch (IndexOutOfRangeException) {
2782                                 Report.Error (645, Location, "Identifier too long (limit is 512 chars)");
2783                                 --pos;
2784                                 col += pos;
2785                         }
2786
2787                         col += pos - 1;
2788
2789                         //
2790                         // Optimization: avoids doing the keyword lookup
2791                         // on uppercase letters
2792                         //
2793                         if (id_builder [0] >= '_' && !quoted) {
2794                                 int keyword = GetKeyword (id_builder, pos);
2795                                 if (keyword != -1) {
2796                                         val = LocatedToken.Create (null, ref_line, column);
2797                                         return keyword;
2798                                 }
2799                         }
2800
2801                         string s = InternIdentifier (id_builder, pos);
2802                         val = LocatedToken.Create (s, ref_line, column);
2803                         if (quoted && parsing_attribute_section)
2804                                 AddEscapedIdentifier (((LocatedToken) val).Location);
2805
2806                         return Token.IDENTIFIER;
2807                 }
2808
2809                 static string InternIdentifier (char[] charBuffer, int length)
2810                 {
2811                         //
2812                         // Keep identifiers in an array of hashtables to avoid needless
2813                         // allocations
2814                         //
2815                         var identifiers_group = identifiers[length];
2816                         string s;
2817                         if (identifiers_group != null) {
2818                                 if (identifiers_group.TryGetValue (charBuffer, out s)) {
2819                                         return s;
2820                                 }
2821                         } else {
2822                                 // TODO: this should be number of files dependant
2823                                 // corlib compilation peaks at 1000 and System.Core at 150
2824                                 int capacity = length > 20 ? 10 : 100;
2825                                 identifiers_group = new Dictionary<char[], string> (capacity, new IdentifiersComparer (length));
2826                                 identifiers[length] = identifiers_group;
2827                         }
2828
2829                         char[] chars = new char[length];
2830                         Array.Copy (charBuffer, chars, length);
2831
2832                         s = new string (charBuffer, 0, length);
2833                         identifiers_group.Add (chars, s);
2834                         return s;
2835                 }
2836                 
2837                 public int xtoken ()
2838                 {
2839                         int d, c;
2840
2841                         // Whether we have seen comments on the current line
2842                         bool comments_seen = false;
2843                         while ((c = get_char ()) != -1) {
2844                                 switch (c) {
2845                                 case '\t':
2846                                         col = ((col - 1 + tab_size) / tab_size) * tab_size;
2847                                         continue;
2848
2849                                 case ' ':
2850                                 case '\f':
2851                                 case '\v':
2852                                 case 0xa0:
2853                                 case 0:
2854                                 case 0xFEFF:    // Ignore BOM anywhere in the file
2855                                         continue;
2856
2857 /*                              This is required for compatibility with .NET
2858                                 case 0xEF:
2859                                         if (peek_char () == 0xBB) {
2860                                                 PushPosition ();
2861                                                 get_char ();
2862                                                 if (get_char () == 0xBF)
2863                                                         continue;
2864                                                 PopPosition ();
2865                                         }
2866                                         break;
2867 */
2868                                 case '\\':
2869                                         tokens_seen = true;
2870                                         return consume_identifier (c);
2871
2872                                 case '{':
2873                                         val = LocatedToken.Create (ref_line, col);
2874                                         return Token.OPEN_BRACE;
2875                                 case '}':
2876                                         val = LocatedToken.Create (ref_line, col);
2877                                         return Token.CLOSE_BRACE;
2878                                 case '[':
2879                                         // To block doccomment inside attribute declaration.
2880                                         if (doc_state == XmlCommentState.Allowed)
2881                                                 doc_state = XmlCommentState.NotAllowed;
2882
2883                                         val = LocatedToken.Create (ref_line, col);
2884
2885                                         if (parsing_block == 0 || lambda_arguments_parsing)
2886                                                 return Token.OPEN_BRACKET;
2887
2888                                         int next = peek_char ();
2889                                         switch (next) {
2890                                         case ']':
2891                                         case ',':
2892                                                 return Token.OPEN_BRACKET;
2893
2894                                         case ' ':
2895                                         case '\f':
2896                                         case '\v':
2897                                         case '\r':
2898                                         case '\n':
2899                                         case '/':
2900                                                 next = peek_token ();
2901                                                 if (next == Token.COMMA || next == Token.CLOSE_BRACKET)
2902                                                         return Token.OPEN_BRACKET;
2903
2904                                                 return Token.OPEN_BRACKET_EXPR;
2905                                         default:
2906                                                 return Token.OPEN_BRACKET_EXPR;
2907                                         }
2908                                 case ']':
2909                                         LocatedToken.CreateOptional (ref_line, col, ref val);
2910                                         return Token.CLOSE_BRACKET;
2911                                 case '(':
2912                                         val = LocatedToken.Create (ref_line, col);
2913                                         //
2914                                         // An expression versions of parens can appear in block context only
2915                                         //
2916                                         if (parsing_block != 0 && !lambda_arguments_parsing) {
2917                                                 
2918                                                 //
2919                                                 // Optmize most common case where we know that parens
2920                                                 // is not special
2921                                                 //
2922                                                 switch (current_token) {
2923                                                 case Token.IDENTIFIER:
2924                                                 case Token.IF:
2925                                                 case Token.FOR:
2926                                                 case Token.FOREACH:
2927                                                 case Token.TYPEOF:
2928                                                 case Token.WHILE:
2929                                                 case Token.USING:
2930                                                 case Token.DEFAULT:
2931                                                 case Token.DELEGATE:
2932                                                 case Token.OP_GENERICS_GT:
2933                                                         return Token.OPEN_PARENS;
2934                                                 }
2935
2936                                                 // Optimize using peek
2937                                                 int xx = peek_char ();
2938                                                 switch (xx) {
2939                                                 case '(':
2940                                                 case '\'':
2941                                                 case '"':
2942                                                 case '0':
2943                                                 case '1':
2944                                                         return Token.OPEN_PARENS;
2945                                                 }
2946
2947                                                 lambda_arguments_parsing = true;
2948                                                 PushPosition ();
2949                                                 d = TokenizeOpenParens ();
2950                                                 PopPosition ();
2951                                                 lambda_arguments_parsing = false;
2952                                                 return d;
2953                                         }
2954
2955                                         return Token.OPEN_PARENS;
2956                                 case ')':
2957                                         LocatedToken.CreateOptional (ref_line, col, ref val);
2958                                         return Token.CLOSE_PARENS;
2959                                 case ',':
2960                                         LocatedToken.CreateOptional (ref_line, col, ref val);
2961                                         return Token.COMMA;
2962                                 case ';':
2963                                         LocatedToken.CreateOptional (ref_line, col, ref val);
2964                                         return Token.SEMICOLON;
2965                                 case '~':
2966                                         val = LocatedToken.Create (ref_line, col);
2967                                         return Token.TILDE;
2968                                 case '?':
2969                                         val = LocatedToken.Create (ref_line, col);
2970                                         return TokenizePossibleNullableType ();
2971                                 case '<':
2972                                         val = LocatedToken.Create (ref_line, col);
2973                                         if (parsing_generic_less_than++ > 0)
2974                                                 return Token.OP_GENERICS_LT;
2975
2976                                         return TokenizeLessThan ();
2977
2978                                 case '>':
2979                                         val = LocatedToken.Create (ref_line, col);
2980                                         d = peek_char ();
2981
2982                                         if (d == '='){
2983                                                 get_char ();
2984                                                 return Token.OP_GE;
2985                                         }
2986
2987                                         if (parsing_generic_less_than > 1 || (parsing_generic_less_than == 1 && d != '>')) {
2988                                                 parsing_generic_less_than--;
2989                                                 return Token.OP_GENERICS_GT;
2990                                         }
2991
2992                                         if (d == '>') {
2993                                                 get_char ();
2994                                                 d = peek_char ();
2995
2996                                                 if (d == '=') {
2997                                                         get_char ();
2998                                                         return Token.OP_SHIFT_RIGHT_ASSIGN;
2999                                                 }
3000                                                 return Token.OP_SHIFT_RIGHT;
3001                                         }
3002
3003                                         return Token.OP_GT;
3004
3005                                 case '+':
3006                                         val = LocatedToken.Create (ref_line, col);
3007                                         d = peek_char ();
3008                                         if (d == '+') {
3009                                                 d = Token.OP_INC;
3010                                         } else if (d == '=') {
3011                                                 d = Token.OP_ADD_ASSIGN;
3012                                         } else {
3013                                                 return Token.PLUS;
3014                                         }
3015                                         get_char ();
3016                                         return d;
3017
3018                                 case '-':
3019                                         val = LocatedToken.Create (ref_line, col);
3020                                         d = peek_char ();
3021                                         if (d == '-') {
3022                                                 d = Token.OP_DEC;
3023                                         } else if (d == '=')
3024                                                 d = Token.OP_SUB_ASSIGN;
3025                                         else if (d == '>')
3026                                                 d = Token.OP_PTR;
3027                                         else {
3028                                                 return Token.MINUS;
3029                                         }
3030                                         get_char ();
3031                                         return d;
3032
3033                                 case '!':
3034                                         val = LocatedToken.Create (ref_line, col);
3035                                         if (peek_char () == '='){
3036                                                 get_char ();
3037                                                 return Token.OP_NE;
3038                                         }
3039                                         return Token.BANG;
3040
3041                                 case '=':
3042                                         val = LocatedToken.Create (ref_line, col);
3043                                         d = peek_char ();
3044                                         if (d == '='){
3045                                                 get_char ();
3046                                                 return Token.OP_EQ;
3047                                         }
3048                                         if (d == '>'){
3049                                                 get_char ();
3050                                                 return Token.ARROW;
3051                                         }
3052
3053                                         return Token.ASSIGN;
3054
3055                                 case '&':
3056                                         val = LocatedToken.Create (ref_line, col);
3057                                         d = peek_char ();
3058                                         if (d == '&'){
3059                                                 get_char ();
3060                                                 return Token.OP_AND;
3061                                         }
3062                                         if (d == '='){
3063                                                 get_char ();
3064                                                 return Token.OP_AND_ASSIGN;
3065                                         }
3066                                         return Token.BITWISE_AND;
3067
3068                                 case '|':
3069                                         val = LocatedToken.Create (ref_line, col);
3070                                         d = peek_char ();
3071                                         if (d == '|'){
3072                                                 get_char ();
3073                                                 return Token.OP_OR;
3074                                         }
3075                                         if (d == '='){
3076                                                 get_char ();
3077                                                 return Token.OP_OR_ASSIGN;
3078                                         }
3079                                         return Token.BITWISE_OR;
3080
3081                                 case '*':
3082                                         val = LocatedToken.Create (ref_line, col);
3083                                         if (peek_char () == '='){
3084                                                 get_char ();
3085                                                 return Token.OP_MULT_ASSIGN;
3086                                         }
3087                                         return Token.STAR;
3088
3089                                 case '/':
3090                                         d = peek_char ();
3091                                         if (d == '='){
3092                                                 val = LocatedToken.Create (ref_line, col);
3093                                                 get_char ();
3094                                                 return Token.OP_DIV_ASSIGN;
3095                                         }
3096
3097                                         // Handle double-slash comments.
3098                                         if (d == '/'){
3099                                                 get_char ();
3100                                                 if (doc_processing) {
3101                                                         if (peek_char () == '/') {
3102                                                                 get_char ();
3103                                                                 // Don't allow ////.
3104                                                                 if ((d = peek_char ()) != '/') {
3105                                                                         if (doc_state == XmlCommentState.Allowed)
3106                                                                                 handle_one_line_xml_comment ();
3107                                                                         else if (doc_state == XmlCommentState.NotAllowed)
3108                                                                                 WarningMisplacedComment (Location - 3);
3109                                                                 }
3110                                                         } else {
3111                                                                 if (xml_comment_buffer.Length > 0)
3112                                                                         doc_state = XmlCommentState.NotAllowed;
3113                                                         }
3114                                                 }
3115
3116                                                 while ((d = get_char ()) != -1 && d != '\n');
3117
3118                                                 any_token_seen |= tokens_seen;
3119                                                 tokens_seen = false;
3120                                                 comments_seen = false;
3121                                                 continue;
3122                                         } else if (d == '*'){
3123                                                 get_char ();
3124                                                 bool docAppend = false;
3125                                                 if (doc_processing && peek_char () == '*') {
3126                                                         get_char ();
3127                                                         // But when it is /**/, just do nothing.
3128                                                         if (peek_char () == '/') {
3129                                                                 get_char ();
3130                                                                 continue;
3131                                                         }
3132                                                         if (doc_state == XmlCommentState.Allowed)
3133                                                                 docAppend = true;
3134                                                         else if (doc_state == XmlCommentState.NotAllowed) {
3135                                                                 WarningMisplacedComment (Location - 2);
3136                                                         }
3137                                                 }
3138
3139                                                 int current_comment_start = 0;
3140                                                 if (docAppend) {
3141                                                         current_comment_start = xml_comment_buffer.Length;
3142                                                         xml_comment_buffer.Append (Environment.NewLine);
3143                                                 }
3144
3145                                                 while ((d = get_char ()) != -1){
3146                                                         if (d == '*' && peek_char () == '/'){
3147                                                                 get_char ();
3148                                                                 comments_seen = true;
3149                                                                 break;
3150                                                         }
3151                                                         if (docAppend)
3152                                                                 xml_comment_buffer.Append ((char) d);
3153                                                         
3154                                                         if (d == '\n'){
3155                                                                 any_token_seen |= tokens_seen;
3156                                                                 tokens_seen = false;
3157                                                                 // 
3158                                                                 // Reset 'comments_seen' just to be consistent.
3159                                                                 // It doesn't matter either way, here.
3160                                                                 //
3161                                                                 comments_seen = false;
3162                                                         }
3163                                                 }
3164                                                 if (!comments_seen)
3165                                                         Report.Error (1035, Location, "End-of-file found, '*/' expected");
3166
3167                                                 if (docAppend)
3168                                                         update_formatted_doc_comment (current_comment_start);
3169                                                 continue;
3170                                         }
3171                                         val = LocatedToken.Create (ref_line, col);
3172                                         return Token.DIV;
3173
3174                                 case '%':
3175                                         val = LocatedToken.Create (ref_line, col);
3176                                         if (peek_char () == '='){
3177                                                 get_char ();
3178                                                 return Token.OP_MOD_ASSIGN;
3179                                         }
3180                                         return Token.PERCENT;
3181
3182                                 case '^':
3183                                         val = LocatedToken.Create (ref_line, col);
3184                                         if (peek_char () == '='){
3185                                                 get_char ();
3186                                                 return Token.OP_XOR_ASSIGN;
3187                                         }
3188                                         return Token.CARRET;
3189
3190                                 case ':':
3191                                         val = LocatedToken.Create (ref_line, col);
3192                                         if (peek_char () == ':') {
3193                                                 get_char ();
3194                                                 return Token.DOUBLE_COLON;
3195                                         }
3196                                         return Token.COLON;
3197
3198                                 case '0': case '1': case '2': case '3': case '4':
3199                                 case '5': case '6': case '7': case '8': case '9':
3200                                         tokens_seen = true;
3201                                         return is_number (c);
3202
3203                                 case '\n': // white space
3204                                         any_token_seen |= tokens_seen;
3205                                         tokens_seen = false;
3206                                         comments_seen = false;
3207                                         continue;
3208
3209                                 case '.':
3210                                         tokens_seen = true;
3211                                         d = peek_char ();
3212                                         if (d >= '0' && d <= '9')
3213                                                 return is_number (c);
3214
3215                                         LocatedToken.CreateOptional (ref_line, col, ref val);
3216                                         return Token.DOT;
3217                                 
3218                                 case '#':
3219                                         if (tokens_seen || comments_seen) {
3220                                                 Eror_WrongPreprocessorLocation ();
3221                                                 return Token.ERROR;
3222                                         }
3223                                         
3224                                         if (ParsePreprocessingDirective (true))
3225                                                 continue;
3226
3227                                         bool directive_expected = false;
3228                                         while ((c = get_char ()) != -1) {
3229                                                 if (col == 1) {
3230                                                         directive_expected = true;
3231                                                 } else if (!directive_expected) {
3232                                                         // TODO: Implement comment support for disabled code and uncomment this code
3233 //                                                      if (c == '#') {
3234 //                                                              Eror_WrongPreprocessorLocation ();
3235 //                                                              return Token.ERROR;
3236 //                                                      }
3237                                                         continue;
3238                                                 }
3239
3240                                                 if (c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\v' )
3241                                                         continue;
3242
3243                                                 if (c == '#') {
3244                                                         if (ParsePreprocessingDirective (false))
3245                                                                 break;
3246                                                 }
3247                                                 directive_expected = false;
3248                                         }
3249
3250                                         if (c != -1) {
3251                                                 tokens_seen = false;
3252                                                 continue;
3253                                         }
3254
3255                                         return Token.EOF;
3256                                 
3257                                 case '"':
3258                                         return consume_string (false);
3259
3260                                 case '\'':
3261                                         return TokenizeBackslash ();
3262                                 
3263                                 case '@':
3264                                         c = get_char ();
3265                                         if (c == '"') {
3266                                                 tokens_seen = true;
3267                                                 return consume_string (true);
3268                                         }
3269
3270                                         if (is_identifier_start_character (c)){
3271                                                 return consume_identifier (c, true);
3272                                         }
3273
3274                                         Report.Error (1646, Location, "Keyword, identifier, or string expected after verbatim specifier: @");
3275                                         return Token.ERROR;
3276
3277                                 case EvalStatementParserCharacter:
3278                                         return Token.EVAL_STATEMENT_PARSER;
3279                                 case EvalCompilationUnitParserCharacter:
3280                                         return Token.EVAL_COMPILATION_UNIT_PARSER;
3281                                 case EvalUsingDeclarationsParserCharacter:
3282                                         return Token.EVAL_USING_DECLARATIONS_UNIT_PARSER;
3283                                 case DocumentationXref:
3284                                         return Token.DOC_SEE;
3285                                 }
3286
3287                                 if (is_identifier_start_character (c)) {
3288                                         tokens_seen = true;
3289                                         return consume_identifier (c);
3290                                 }
3291
3292                                 if (char.IsWhiteSpace ((char) c))
3293                                         continue;
3294
3295                                 Report.Error (1056, Location, "Unexpected character `{0}'", ((char) c).ToString ());
3296                         }
3297
3298                         if (CompleteOnEOF){
3299                                 if (generated)
3300                                         return Token.COMPLETE_COMPLETION;
3301                                 
3302                                 generated = true;
3303                                 return Token.GENERATE_COMPLETION;
3304                         }
3305                         
3306
3307                         return Token.EOF;
3308                 }
3309
3310                 int TokenizeBackslash ()
3311                 {
3312                         int c = get_char ();
3313                         tokens_seen = true;
3314                         if (c == '\'') {
3315                                 val = new CharLiteral (context.BuiltinTypes, (char) c, Location);
3316                                 Report.Error (1011, Location, "Empty character literal");
3317                                 return Token.LITERAL;
3318                         }
3319
3320                         if (c == '\n') {
3321                                 Report.Error (1010, Location, "Newline in constant");
3322                                 return Token.ERROR;
3323                         }
3324
3325                         int d;
3326                         c = escape (c, out d);
3327                         if (c == -1)
3328                                 return Token.ERROR;
3329                         if (d != 0)
3330                                 throw new NotImplementedException ();
3331
3332                         val = new CharLiteral (context.BuiltinTypes, (char) c, Location);
3333                         c = get_char ();
3334
3335                         if (c != '\'') {
3336                                 Report.Error (1012, Location, "Too many characters in character literal");
3337
3338                                 // Try to recover, read until newline or next "'"
3339                                 while ((c = get_char ()) != -1) {
3340                                         if (c == '\n' || c == '\'')
3341                                                 break;
3342                                 }
3343                         }
3344
3345                         return Token.LITERAL;
3346                 }
3347
3348                 int TokenizeLessThan ()
3349                 {
3350                         int d;
3351                         if (handle_typeof) {
3352                                 PushPosition ();
3353                                 if (parse_generic_dimension (out d)) {
3354                                         val = d;
3355                                         DiscardPosition ();
3356                                         return Token.GENERIC_DIMENSION;
3357                                 }
3358                                 PopPosition ();
3359                         }
3360
3361                         // Save current position and parse next token.
3362                         PushPosition ();
3363                         if (parse_less_than ()) {
3364                                 if (parsing_generic_declaration && (parsing_generic_declaration_doc || token () != Token.DOT)) {
3365                                         d = Token.OP_GENERICS_LT_DECL;
3366                                 } else {
3367                                         d = Token.OP_GENERICS_LT;
3368                                 }
3369                                 PopPosition ();
3370                                 return d;
3371                         }
3372
3373                         PopPosition ();
3374                         parsing_generic_less_than = 0;
3375
3376                         d = peek_char ();
3377                         if (d == '<') {
3378                                 get_char ();
3379                                 d = peek_char ();
3380
3381                                 if (d == '=') {
3382                                         get_char ();
3383                                         return Token.OP_SHIFT_LEFT_ASSIGN;
3384                                 }
3385                                 return Token.OP_SHIFT_LEFT;
3386                         }
3387
3388                         if (d == '=') {
3389                                 get_char ();
3390                                 return Token.OP_LE;
3391                         }
3392                         return Token.OP_LT;
3393                 }
3394
3395                 //
3396                 // Handles one line xml comment
3397                 //
3398                 private void handle_one_line_xml_comment ()
3399                 {
3400                         int c;
3401                         while ((c = peek_char ()) == ' ')
3402                                 get_char (); // skip heading whitespaces.
3403                         while ((c = peek_char ()) != -1 && c != '\n' && c != '\r') {
3404                                 xml_comment_buffer.Append ((char) get_char ());
3405                         }
3406                         if (c == '\r' || c == '\n')
3407                                 xml_comment_buffer.Append (Environment.NewLine);
3408                 }
3409
3410                 //
3411                 // Remove heading "*" in Javadoc-like xml documentation.
3412                 //
3413                 private void update_formatted_doc_comment (int current_comment_start)
3414                 {
3415                         int length = xml_comment_buffer.Length - current_comment_start;
3416                         string [] lines = xml_comment_buffer.ToString (
3417                                 current_comment_start,
3418                                 length).Replace ("\r", "").Split ('\n');
3419                         
3420                         // The first line starts with /**, thus it is not target
3421                         // for the format check.
3422                         for (int i = 1; i < lines.Length; i++) {
3423                                 string s = lines [i];
3424                                 int idx = s.IndexOf ('*');
3425                                 string head = null;
3426                                 if (idx < 0) {
3427                                         if (i < lines.Length - 1)
3428                                                 return;
3429                                         head = s;
3430                                 } else
3431                                         head = s.Substring (0, idx);
3432                                 foreach (char c in head)
3433                                         if (c != ' ')
3434                                                 return;
3435                                 lines [i] = s.Substring (idx + 1);
3436                         }
3437                         xml_comment_buffer.Remove (current_comment_start, length);
3438                         xml_comment_buffer.Insert (current_comment_start, String.Join (Environment.NewLine, lines));
3439                 }
3440
3441                 //
3442                 // Checks if there was incorrect doc comments and raise
3443                 // warnings.
3444                 //
3445                 public void check_incorrect_doc_comment ()
3446                 {
3447                         if (xml_comment_buffer.Length > 0)
3448                                 WarningMisplacedComment (Location);
3449                 }
3450
3451                 //
3452                 // Consumes the saved xml comment lines (if any)
3453                 // as for current target member or type.
3454                 //
3455                 public string consume_doc_comment ()
3456                 {
3457                         if (xml_comment_buffer.Length > 0) {
3458                                 string ret = xml_comment_buffer.ToString ();
3459                                 reset_doc_comment ();
3460                                 return ret;
3461                         }
3462                         return null;
3463                 }
3464
3465                 Report Report {
3466                         get { return context.Report; }
3467                 }
3468
3469                 void reset_doc_comment ()
3470                 {
3471                         xml_comment_buffer.Length = 0;
3472                 }
3473
3474                 public void cleanup ()
3475                 {
3476                         if (ifstack != null && ifstack.Count >= 1) {
3477                                 int state = ifstack.Pop ();
3478                                 if ((state & REGION) != 0)
3479                                         Report.Error (1038, Location, "#endregion directive expected");
3480                                 else 
3481                                         Report.Error (1027, Location, "Expected `#endif' directive");
3482                         }
3483                 }
3484         }
3485
3486         //
3487         // Indicates whether it accepts XML documentation or not.
3488         //
3489         public enum XmlCommentState {
3490                 // comment is allowed in this state.
3491                 Allowed,
3492                 // comment is not allowed in this state.
3493                 NotAllowed,
3494                 // once comments appeared when it is NotAllowed, then the
3495                 // state is changed to it, until the state is changed to
3496                 // .Allowed.
3497                 Error
3498         }
3499 }
3500