Fix #3741, simplifying things in the process
[ghc-hetmet.git] / compiler / parser / Lexer.x
1 -----------------------------------------------------------------------------
2 -- (c) The University of Glasgow, 2006
3 --
4 -- GHC's lexer.
5 --
6 -- This is a combination of an Alex-generated lexer from a regex
7 -- definition, with some hand-coded bits.
8 --
9 -- Completely accurate information about token-spans within the source
10 -- file is maintained.  Every token has a start and end SrcLoc attached to it.
11 --
12 -----------------------------------------------------------------------------
13
14 --   ToDo / known bugs:
15 --    - parsing integers is a bit slow
16 --    - readRational is a bit slow
17 --
18 --   Known bugs, that were also in the previous version:
19 --    - M... should be 3 tokens, not 1.
20 --    - pragma-end should be only valid in a pragma
21
22 --   qualified operator NOTES.
23 --   
24 --   - If M.(+) is a single lexeme, then..
25 --     - Probably (+) should be a single lexeme too, for consistency.
26 --       Otherwise ( + ) would be a prefix operator, but M.( + ) would not be.
27 --     - But we have to rule out reserved operators, otherwise (..) becomes
28 --       a different lexeme.
29 --     - Should we therefore also rule out reserved operators in the qualified
30 --       form?  This is quite difficult to achieve.  We don't do it for
31 --       qualified varids.
32
33 {
34 -- XXX The above flags turn off warnings in the generated code:
35 {-# OPTIONS_GHC -fno-warn-unused-matches #-}
36 {-# OPTIONS_GHC -fno-warn-unused-binds #-}
37 {-# OPTIONS_GHC -fno-warn-unused-imports #-}
38 {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
39 -- But alex still generates some code that causes the "lazy unlifted bindings"
40 -- warning, and old compilers don't know about it so we can't easily turn
41 -- it off, so for now we use the sledge hammer:
42 {-# OPTIONS_GHC -w #-}
43
44 {-# OPTIONS_GHC -funbox-strict-fields #-}
45
46 module Lexer (
47    Token(..), lexer, pragState, mkPState, PState(..),
48    P(..), ParseResult(..), getSrcLoc, 
49    getPState, getDynFlags, withThisPackage,
50    failLocMsgP, failSpanMsgP, srcParseFail,
51    getMessages, 
52    popContext, pushCurrentContext, setLastToken, setSrcLoc,
53    getLexState, popLexState, pushLexState,
54    extension, standaloneDerivingEnabled, bangPatEnabled,
55    addWarning,
56    lexTokenStream
57   ) where
58
59 import Bag
60 import ErrUtils
61 import Outputable
62 import StringBuffer
63 import FastString
64 import SrcLoc
65 import UniqFM
66 import DynFlags
67 import Module
68 import Ctype
69 import Util             ( readRational )
70
71 import Control.Monad
72 import Data.Bits
73 import Data.Char
74 import Data.List
75 import Data.Maybe
76 import Data.Map (Map)
77 import qualified Data.Map as Map
78 import Data.Ratio
79 }
80
81 $unispace    = \x05 -- Trick Alex into handling Unicode. See alexGetChar.
82 $whitechar   = [\ \n\r\f\v $unispace]
83 $white_no_nl = $whitechar # \n
84 $tab         = \t
85
86 $ascdigit  = 0-9
87 $unidigit  = \x03 -- Trick Alex into handling Unicode. See alexGetChar.
88 $decdigit  = $ascdigit -- for now, should really be $digit (ToDo)
89 $digit     = [$ascdigit $unidigit]
90
91 $special   = [\(\)\,\;\[\]\`\{\}]
92 $ascsymbol = [\!\#\$\%\&\*\+\.\/\<\=\>\?\@\\\^\|\-\~]
93 $unisymbol = \x04 -- Trick Alex into handling Unicode. See alexGetChar.
94 $symbol    = [$ascsymbol $unisymbol] # [$special \_\:\"\']
95
96 $unilarge  = \x01 -- Trick Alex into handling Unicode. See alexGetChar.
97 $asclarge  = [A-Z]
98 $large     = [$asclarge $unilarge]
99
100 $unismall  = \x02 -- Trick Alex into handling Unicode. See alexGetChar.
101 $ascsmall  = [a-z]
102 $small     = [$ascsmall $unismall \_]
103
104 $unigraphic = \x06 -- Trick Alex into handling Unicode. See alexGetChar.
105 $graphic   = [$small $large $symbol $digit $special $unigraphic \:\"\']
106
107 $octit     = 0-7
108 $hexit     = [$decdigit A-F a-f]
109 $symchar   = [$symbol \:]
110 $nl        = [\n\r]
111 $idchar    = [$small $large $digit \']
112
113 $pragmachar = [$small $large $digit]
114
115 $docsym    = [\| \^ \* \$]
116
117 @varid     = $small $idchar*
118 @conid     = $large $idchar*
119
120 @varsym    = $symbol $symchar*
121 @consym    = \: $symchar*
122
123 @decimal     = $decdigit+
124 @octal       = $octit+
125 @hexadecimal = $hexit+
126 @exponent    = [eE] [\-\+]? @decimal
127
128 -- we support the hierarchical module name extension:
129 @qual = (@conid \.)+
130
131 @floating_point = @decimal \. @decimal @exponent? | @decimal @exponent
132
133 -- normal signed numerical literals can only be explicitly negative,
134 -- not explicitly positive (contrast @exponent)
135 @negative = \-
136 @signed = @negative ?
137
138 haskell :-
139
140 -- everywhere: skip whitespace and comments
141 $white_no_nl+                           ;
142 $tab+         { warn Opt_WarnTabs (text "Tab character") }
143
144 -- Everywhere: deal with nested comments.  We explicitly rule out
145 -- pragmas, "{-#", so that we don't accidentally treat them as comments.
146 -- (this can happen even though pragmas will normally take precedence due to
147 -- longest-match, because pragmas aren't valid in every state, but comments
148 -- are). We also rule out nested Haddock comments, if the -haddock flag is
149 -- set.
150
151 "{-" / { isNormalComment } { nested_comment lexToken }
152
153 -- Single-line comments are a bit tricky.  Haskell 98 says that two or
154 -- more dashes followed by a symbol should be parsed as a varsym, so we
155 -- have to exclude those.
156
157 -- Since Haddock comments aren't valid in every state, we need to rule them
158 -- out here.  
159
160 -- The following two rules match comments that begin with two dashes, but
161 -- continue with a different character. The rules test that this character
162 -- is not a symbol (in which case we'd have a varsym), and that it's not a
163 -- space followed by a Haddock comment symbol (docsym) (in which case we'd
164 -- have a Haddock comment). The rules then munch the rest of the line.
165
166 "-- " ~[$docsym \#] .* { lineCommentToken }
167 "--" [^$symbol : \ ] .* { lineCommentToken }
168
169 -- Next, match Haddock comments if no -haddock flag
170
171 "-- " [$docsym \#] .* / { ifExtension (not . haddockEnabled) } { lineCommentToken }
172
173 -- Now, when we've matched comments that begin with 2 dashes and continue
174 -- with a different character, we need to match comments that begin with three
175 -- or more dashes (which clearly can't be Haddock comments). We only need to
176 -- make sure that the first non-dash character isn't a symbol, and munch the
177 -- rest of the line.
178
179 "---"\-* [^$symbol :] .* { lineCommentToken }
180
181 -- Since the previous rules all match dashes followed by at least one
182 -- character, we also need to match a whole line filled with just dashes.
183
184 "--"\-* / { atEOL } { lineCommentToken }
185
186 -- We need this rule since none of the other single line comment rules
187 -- actually match this case.
188
189 "-- " / { atEOL } { lineCommentToken }
190
191 -- 'bol' state: beginning of a line.  Slurp up all the whitespace (including
192 -- blank lines) until we find a non-whitespace character, then do layout
193 -- processing.
194 --
195 -- One slight wibble here: what if the line begins with {-#? In
196 -- theory, we have to lex the pragma to see if it's one we recognise,
197 -- and if it is, then we backtrack and do_bol, otherwise we treat it
198 -- as a nested comment.  We don't bother with this: if the line begins
199 -- with {-#, then we'll assume it's a pragma we know about and go for do_bol.
200 <bol> {
201   \n                                    ;
202   ^\# (line)?                           { begin line_prag1 }
203   ^\# pragma .* \n                      ; -- GCC 3.3 CPP generated, apparently
204   ^\# \! .* \n                          ; -- #!, for scripts
205   ()                                    { do_bol }
206 }
207
208 -- after a layout keyword (let, where, do, of), we begin a new layout
209 -- context if the curly brace is missing.
210 -- Careful! This stuff is quite delicate.
211 <layout, layout_do> {
212   \{ / { notFollowedBy '-' }            { pop_and open_brace }
213         -- we might encounter {-# here, but {- has been handled already
214   \n                                    ;
215   ^\# (line)?                           { begin line_prag1 }
216 }
217
218 -- do is treated in a subtly different way, see new_layout_context
219 <layout>    ()                          { new_layout_context True }
220 <layout_do> ()                          { new_layout_context False }
221
222 -- after a new layout context which was found to be to the left of the
223 -- previous context, we have generated a '{' token, and we now need to
224 -- generate a matching '}' token.
225 <layout_left>  ()                       { do_layout_left }
226
227 <0,option_prags> \n                             { begin bol }
228
229 "{-#" $whitechar* $pragmachar+ / { known_pragma linePrags }
230                                 { dispatch_pragmas linePrags }
231
232 -- single-line line pragmas, of the form
233 --    # <line> "<file>" <extra-stuff> \n
234 <line_prag1> $decdigit+                 { setLine line_prag1a }
235 <line_prag1a> \" [$graphic \ ]* \"      { setFile line_prag1b }
236 <line_prag1b> .*                        { pop }
237
238 -- Haskell-style line pragmas, of the form
239 --    {-# LINE <line> "<file>" #-}
240 <line_prag2> $decdigit+                 { setLine line_prag2a }
241 <line_prag2a> \" [$graphic \ ]* \"      { setFile line_prag2b }
242 <line_prag2b> "#-}"|"-}"                { pop }
243    -- NOTE: accept -} at the end of a LINE pragma, for compatibility
244    -- with older versions of GHC which generated these.
245
246 <0,option_prags> {
247   "{-#" $whitechar* $pragmachar+ 
248         $whitechar+ $pragmachar+ / { known_pragma twoWordPrags }
249                                  { dispatch_pragmas twoWordPrags }
250
251   "{-#" $whitechar* $pragmachar+ / { known_pragma oneWordPrags }
252                                  { dispatch_pragmas oneWordPrags }
253
254   -- We ignore all these pragmas, but don't generate a warning for them
255   "{-#" $whitechar* $pragmachar+ / { known_pragma ignoredPrags }
256                                  { dispatch_pragmas ignoredPrags }
257
258   -- ToDo: should only be valid inside a pragma:
259   "#-}"                                 { endPrag }
260 }
261
262 <option_prags> {
263   "{-#"  $whitechar* $pragmachar+ / { known_pragma fileHeaderPrags }
264                                    { dispatch_pragmas fileHeaderPrags }
265
266   "-- #"                                 { multiline_doc_comment }
267 }
268
269 <0> {
270   -- In the "0" mode we ignore these pragmas
271   "{-#"  $whitechar* $pragmachar+ / { known_pragma fileHeaderPrags }
272                      { nested_comment lexToken }
273 }
274
275 <0> {
276   "-- #" .* { lineCommentToken }
277 }
278
279 <0,option_prags> {
280   "{-#"  { warnThen Opt_WarnUnrecognisedPragmas (text "Unrecognised pragma")
281                     (nested_comment lexToken) }
282 }
283
284 -- '0' state: ordinary lexemes
285
286 -- Haddock comments
287
288 <0> {
289   "-- " $docsym      / { ifExtension haddockEnabled } { multiline_doc_comment }
290   "{-" \ ? $docsym   / { ifExtension haddockEnabled } { nested_doc_comment }
291 }
292
293 -- "special" symbols
294
295 <0> {
296   "[:" / { ifExtension parrEnabled }    { token ITopabrack }
297   ":]" / { ifExtension parrEnabled }    { token ITcpabrack }
298 }
299   
300 <0> {
301   "[|"      / { ifExtension thEnabled } { token ITopenExpQuote }
302   "[e|"     / { ifExtension thEnabled } { token ITopenExpQuote }
303   "[p|"     / { ifExtension thEnabled } { token ITopenPatQuote }
304   "[d|"     / { ifExtension thEnabled } { layout_token ITopenDecQuote }
305   "[t|"     / { ifExtension thEnabled } { token ITopenTypQuote }
306   "|]"      / { ifExtension thEnabled } { token ITcloseQuote }
307   \$ @varid / { ifExtension thEnabled } { skip_one_varid ITidEscape }
308   "$("      / { ifExtension thEnabled } { token ITparenEscape }
309
310   "[$" @varid "|"  / { ifExtension qqEnabled }
311                      { lex_quasiquote_tok }
312 }
313
314 <0> {
315   "(|" / { ifExtension arrowsEnabled `alexAndPred` notFollowedBySymbol }
316                                         { special IToparenbar }
317   "|)" / { ifExtension arrowsEnabled }  { special ITcparenbar }
318 }
319
320 <0> {
321   \? @varid / { ifExtension ipEnabled } { skip_one_varid ITdupipvarid }
322 }
323
324 <0> {
325   "(#" / { ifExtension unboxedTuplesEnabled `alexAndPred` notFollowedBySymbol }
326          { token IToubxparen }
327   "#)" / { ifExtension unboxedTuplesEnabled }
328          { token ITcubxparen }
329 }
330
331 <0> {
332   "{|" / { ifExtension genericsEnabled } { token ITocurlybar }
333   "|}" / { ifExtension genericsEnabled } { token ITccurlybar }
334 }
335
336 <0,option_prags> {
337   \(                                    { special IToparen }
338   \)                                    { special ITcparen }
339   \[                                    { special ITobrack }
340   \]                                    { special ITcbrack }
341   \,                                    { special ITcomma }
342   \;                                    { special ITsemi }
343   \`                                    { special ITbackquote }
344                                 
345   \{                                    { open_brace }
346   \}                                    { close_brace }
347 }
348
349 <0,option_prags> {
350   @qual @varid                  { idtoken qvarid }
351   @qual @conid                  { idtoken qconid }
352   @varid                        { varid }
353   @conid                        { idtoken conid }
354 }
355
356 <0> {
357   @qual @varid "#"+ / { ifExtension magicHashEnabled } { idtoken qvarid }
358   @qual @conid "#"+ / { ifExtension magicHashEnabled } { idtoken qconid }
359   @varid "#"+       / { ifExtension magicHashEnabled } { varid }
360   @conid "#"+       / { ifExtension magicHashEnabled } { idtoken conid }
361 }
362
363 -- ToDo: - move `var` and (sym) into lexical syntax?
364 --       - remove backquote from $special?
365 <0> {
366   @qual @varsym       / { ifExtension oldQualOps } { idtoken qvarsym }
367   @qual @consym       / { ifExtension oldQualOps } { idtoken qconsym }
368   @qual \( @varsym \) / { ifExtension newQualOps } { idtoken prefixqvarsym }
369   @qual \( @consym \) / { ifExtension newQualOps } { idtoken prefixqconsym }
370   @varsym                                          { varsym }
371   @consym                                          { consym }
372 }
373
374 -- For the normal boxed literals we need to be careful
375 -- when trying to be close to Haskell98
376 <0> {
377   -- Normal integral literals (:: Num a => a, from Integer)
378   @decimal           { tok_num positive 0 0 decimal }
379   0[oO] @octal       { tok_num positive 2 2 octal }
380   0[xX] @hexadecimal { tok_num positive 2 2 hexadecimal }
381
382   -- Normal rational literals (:: Fractional a => a, from Rational)
383   @floating_point    { strtoken tok_float }
384 }
385
386 <0> {
387   -- Unboxed ints (:: Int#) and words (:: Word#)
388   -- It's simpler (and faster?) to give separate cases to the negatives,
389   -- especially considering octal/hexadecimal prefixes.
390   @decimal                     \# / { ifExtension magicHashEnabled } { tok_primint positive 0 1 decimal }
391   0[oO] @octal                 \# / { ifExtension magicHashEnabled } { tok_primint positive 2 3 octal }
392   0[xX] @hexadecimal           \# / { ifExtension magicHashEnabled } { tok_primint positive 2 3 hexadecimal }
393   @negative @decimal           \# / { ifExtension magicHashEnabled } { tok_primint negative 1 2 decimal }
394   @negative 0[oO] @octal       \# / { ifExtension magicHashEnabled } { tok_primint negative 3 4 octal }
395   @negative 0[xX] @hexadecimal \# / { ifExtension magicHashEnabled } { tok_primint negative 3 4 hexadecimal }
396
397   @decimal                     \# \# / { ifExtension magicHashEnabled } { tok_primword 0 2 decimal }
398   0[oO] @octal                 \# \# / { ifExtension magicHashEnabled } { tok_primword 2 4 octal }
399   0[xX] @hexadecimal           \# \# / { ifExtension magicHashEnabled } { tok_primword 2 4 hexadecimal }
400
401   -- Unboxed floats and doubles (:: Float#, :: Double#)
402   -- prim_{float,double} work with signed literals
403   @signed @floating_point \# / { ifExtension magicHashEnabled } { init_strtoken 1 tok_primfloat }
404   @signed @floating_point \# \# / { ifExtension magicHashEnabled } { init_strtoken 2 tok_primdouble }
405 }
406
407 -- Strings and chars are lexed by hand-written code.  The reason is
408 -- that even if we recognise the string or char here in the regex
409 -- lexer, we would still have to parse the string afterward in order
410 -- to convert it to a String.
411 <0> {
412   \'                            { lex_char_tok }
413   \"                            { lex_string_tok }
414 }
415
416 {
417 -- -----------------------------------------------------------------------------
418 -- The token type
419
420 data Token
421   = ITas                        -- Haskell keywords
422   | ITcase
423   | ITclass
424   | ITdata
425   | ITdefault
426   | ITderiving
427   | ITdo
428   | ITelse
429   | IThiding
430   | ITif
431   | ITimport
432   | ITin
433   | ITinfix
434   | ITinfixl
435   | ITinfixr
436   | ITinstance
437   | ITlet
438   | ITmodule
439   | ITnewtype
440   | ITof
441   | ITqualified
442   | ITthen
443   | ITtype
444   | ITwhere
445   | ITscc                       -- ToDo: remove (we use {-# SCC "..." #-} now)
446
447   | ITforall                    -- GHC extension keywords
448   | ITforeign
449   | ITexport
450   | ITlabel
451   | ITdynamic
452   | ITsafe
453   | ITthreadsafe
454   | ITunsafe
455   | ITstdcallconv
456   | ITccallconv
457   | ITprimcallconv
458   | ITmdo
459   | ITfamily
460   | ITgroup
461   | ITby
462   | ITusing
463
464         -- Pragmas
465   | ITinline_prag Bool          -- True <=> INLINE, False <=> NOINLINE
466   | ITinline_conlike_prag Bool  -- same
467   | ITspec_prag                 -- SPECIALISE   
468   | ITspec_inline_prag Bool     -- SPECIALISE INLINE (or NOINLINE)
469   | ITsource_prag
470   | ITrules_prag
471   | ITwarning_prag
472   | ITdeprecated_prag
473   | ITline_prag
474   | ITscc_prag
475   | ITgenerated_prag
476   | ITcore_prag                 -- hdaume: core annotations
477   | ITunpack_prag
478   | ITann_prag
479   | ITclose_prag
480   | IToptions_prag String
481   | ITinclude_prag String
482   | ITlanguage_prag
483
484   | ITdotdot                    -- reserved symbols
485   | ITcolon
486   | ITdcolon
487   | ITequal
488   | ITlam
489   | ITvbar
490   | ITlarrow
491   | ITrarrow
492   | ITat
493   | ITtilde
494   | ITdarrow
495   | ITminus
496   | ITbang
497   | ITstar
498   | ITdot
499
500   | ITbiglam                    -- GHC-extension symbols
501
502   | ITocurly                    -- special symbols
503   | ITccurly
504   | ITocurlybar                 -- {|, for type applications
505   | ITccurlybar                 -- |}, for type applications
506   | ITvocurly
507   | ITvccurly
508   | ITobrack
509   | ITopabrack                  -- [:, for parallel arrays with -XParr
510   | ITcpabrack                  -- :], for parallel arrays with -XParr
511   | ITcbrack
512   | IToparen
513   | ITcparen
514   | IToubxparen
515   | ITcubxparen
516   | ITsemi
517   | ITcomma
518   | ITunderscore
519   | ITbackquote
520
521   | ITvarid   FastString        -- identifiers
522   | ITconid   FastString
523   | ITvarsym  FastString
524   | ITconsym  FastString
525   | ITqvarid  (FastString,FastString)
526   | ITqconid  (FastString,FastString)
527   | ITqvarsym (FastString,FastString)
528   | ITqconsym (FastString,FastString)
529   | ITprefixqvarsym (FastString,FastString)
530   | ITprefixqconsym (FastString,FastString)
531
532   | ITdupipvarid   FastString   -- GHC extension: implicit param: ?x
533
534   | ITchar       Char
535   | ITstring     FastString
536   | ITinteger    Integer
537   | ITrational   Rational
538
539   | ITprimchar   Char
540   | ITprimstring FastString
541   | ITprimint    Integer
542   | ITprimword   Integer
543   | ITprimfloat  Rational
544   | ITprimdouble Rational
545
546   -- Template Haskell extension tokens
547   | ITopenExpQuote              --  [| or [e|
548   | ITopenPatQuote              --  [p|
549   | ITopenDecQuote              --  [d|
550   | ITopenTypQuote              --  [t|         
551   | ITcloseQuote                --  |]
552   | ITidEscape   FastString     --  $x
553   | ITparenEscape               --  $( 
554   | ITvarQuote                  --  '
555   | ITtyQuote                   --  ''
556   | ITquasiQuote (FastString,FastString,SrcSpan) --  [:...|...|]
557
558   -- Arrow notation extension
559   | ITproc
560   | ITrec
561   | IToparenbar                 --  (|
562   | ITcparenbar                 --  |)
563   | ITlarrowtail                --  -<
564   | ITrarrowtail                --  >-
565   | ITLarrowtail                --  -<<
566   | ITRarrowtail                --  >>-
567
568   | ITunknown String            -- Used when the lexer can't make sense of it
569   | ITeof                       -- end of file token
570
571   -- Documentation annotations
572   | ITdocCommentNext  String     -- something beginning '-- |'
573   | ITdocCommentPrev  String     -- something beginning '-- ^'
574   | ITdocCommentNamed String     -- something beginning '-- $'
575   | ITdocSection      Int String -- a section heading
576   | ITdocOptions      String     -- doc options (prune, ignore-exports, etc)
577   | ITdocOptionsOld   String     -- doc options declared "-- # ..."-style
578   | ITlineComment     String     -- comment starting by "--"
579   | ITblockComment    String     -- comment in {- -}
580
581 #ifdef DEBUG
582   deriving Show -- debugging
583 #endif
584
585 {-
586 isSpecial :: Token -> Bool
587 -- If we see M.x, where x is a keyword, but
588 -- is special, we treat is as just plain M.x, 
589 -- not as a keyword.
590 isSpecial ITas          = True
591 isSpecial IThiding      = True
592 isSpecial ITqualified   = True
593 isSpecial ITforall      = True
594 isSpecial ITexport      = True
595 isSpecial ITlabel       = True
596 isSpecial ITdynamic     = True
597 isSpecial ITsafe        = True
598 isSpecial ITthreadsafe  = True
599 isSpecial ITunsafe      = True
600 isSpecial ITccallconv   = True
601 isSpecial ITstdcallconv = True
602 isSpecial ITprimcallconv = True
603 isSpecial ITmdo         = True
604 isSpecial ITfamily      = True
605 isSpecial ITgroup   = True
606 isSpecial ITby      = True
607 isSpecial ITusing   = True
608 isSpecial _             = False
609 -}
610
611 -- the bitmap provided as the third component indicates whether the
612 -- corresponding extension keyword is valid under the extension options
613 -- provided to the compiler; if the extension corresponding to *any* of the
614 -- bits set in the bitmap is enabled, the keyword is valid (this setup
615 -- facilitates using a keyword in two different extensions that can be
616 -- activated independently)
617 --
618 reservedWordsFM :: UniqFM (Token, Int)
619 reservedWordsFM = listToUFM $
620         map (\(x, y, z) -> (mkFastString x, (y, z)))
621        [( "_",          ITunderscore,   0 ),
622         ( "as",         ITas,           0 ),
623         ( "case",       ITcase,         0 ),     
624         ( "class",      ITclass,        0 ),    
625         ( "data",       ITdata,         0 ),     
626         ( "default",    ITdefault,      0 ),  
627         ( "deriving",   ITderiving,     0 ), 
628         ( "do",         ITdo,           0 ),       
629         ( "else",       ITelse,         0 ),     
630         ( "hiding",     IThiding,       0 ),
631         ( "if",         ITif,           0 ),       
632         ( "import",     ITimport,       0 ),   
633         ( "in",         ITin,           0 ),       
634         ( "infix",      ITinfix,        0 ),    
635         ( "infixl",     ITinfixl,       0 ),   
636         ( "infixr",     ITinfixr,       0 ),   
637         ( "instance",   ITinstance,     0 ), 
638         ( "let",        ITlet,          0 ),      
639         ( "module",     ITmodule,       0 ),   
640         ( "newtype",    ITnewtype,      0 ),  
641         ( "of",         ITof,           0 ),       
642         ( "qualified",  ITqualified,    0 ),
643         ( "then",       ITthen,         0 ),     
644         ( "type",       ITtype,         0 ),     
645         ( "where",      ITwhere,        0 ),
646         ( "_scc_",      ITscc,          0 ),            -- ToDo: remove
647
648     ( "forall", ITforall,        bit explicitForallBit .|. bit inRulePragBit),
649         ( "mdo",        ITmdo,           bit recursiveDoBit),
650         ( "family",     ITfamily,        bit tyFamBit),
651     ( "group",  ITgroup,     bit transformComprehensionsBit),
652     ( "by",     ITby,        bit transformComprehensionsBit),
653     ( "using",  ITusing,     bit transformComprehensionsBit),
654
655         ( "foreign",    ITforeign,       bit ffiBit),
656         ( "export",     ITexport,        bit ffiBit),
657         ( "label",      ITlabel,         bit ffiBit),
658         ( "dynamic",    ITdynamic,       bit ffiBit),
659         ( "safe",       ITsafe,          bit ffiBit),
660         ( "threadsafe", ITthreadsafe,    bit ffiBit),  -- ToDo: remove
661         ( "unsafe",     ITunsafe,        bit ffiBit),
662         ( "stdcall",    ITstdcallconv,   bit ffiBit),
663         ( "ccall",      ITccallconv,     bit ffiBit),
664         ( "prim",       ITprimcallconv,  bit ffiBit),
665
666         ( "rec",        ITrec,           bit recBit),
667         ( "proc",       ITproc,          bit arrowsBit)
668      ]
669
670 reservedSymsFM :: UniqFM (Token, Int -> Bool)
671 reservedSymsFM = listToUFM $
672     map (\ (x,y,z) -> (mkFastString x,(y,z)))
673       [ ("..",  ITdotdot,   always)
674         -- (:) is a reserved op, meaning only list cons
675        ,(":",   ITcolon,    always)
676        ,("::",  ITdcolon,   always)
677        ,("=",   ITequal,    always)
678        ,("\\",  ITlam,      always)
679        ,("|",   ITvbar,     always)
680        ,("<-",  ITlarrow,   always)
681        ,("->",  ITrarrow,   always)
682        ,("@",   ITat,       always)
683        ,("~",   ITtilde,    always)
684        ,("=>",  ITdarrow,   always)
685        ,("-",   ITminus,    always)
686        ,("!",   ITbang,     always)
687
688         -- For data T (a::*) = MkT
689        ,("*", ITstar, always) -- \i -> kindSigsEnabled i || tyFamEnabled i)
690         -- For 'forall a . t'
691        ,(".", ITdot,  always) -- \i -> explicitForallEnabled i || inRulePrag i)
692
693        ,("-<",  ITlarrowtail, arrowsEnabled)
694        ,(">-",  ITrarrowtail, arrowsEnabled)
695        ,("-<<", ITLarrowtail, arrowsEnabled)
696        ,(">>-", ITRarrowtail, arrowsEnabled)
697
698        ,("∷",   ITdcolon, unicodeSyntaxEnabled)
699        ,("⇒",   ITdarrow, unicodeSyntaxEnabled)
700        ,("∀",   ITforall, \i -> unicodeSyntaxEnabled i &&
701                                 explicitForallEnabled i)
702        ,("→",   ITrarrow, unicodeSyntaxEnabled)
703        ,("←",   ITlarrow, unicodeSyntaxEnabled)
704        ,("⋯",   ITdotdot, unicodeSyntaxEnabled)
705
706        ,("⤙",   ITlarrowtail, \i -> unicodeSyntaxEnabled i && arrowsEnabled i)
707        ,("⤚",   ITrarrowtail, \i -> unicodeSyntaxEnabled i && arrowsEnabled i)
708        ,("⤛",   ITLarrowtail, \i -> unicodeSyntaxEnabled i && arrowsEnabled i)
709        ,("⤜",   ITRarrowtail, \i -> unicodeSyntaxEnabled i && arrowsEnabled i)
710
711        ,("★", ITstar, unicodeSyntaxEnabled)
712
713         -- ToDo: ideally, → and ∷ should be "specials", so that they cannot
714         -- form part of a large operator.  This would let us have a better
715         -- syntax for kinds: ɑ∷*→* would be a legal kind signature. (maybe).
716        ]
717
718 -- -----------------------------------------------------------------------------
719 -- Lexer actions
720
721 type Action = SrcSpan -> StringBuffer -> Int -> P (Located Token)
722
723 special :: Token -> Action
724 special tok span _buf _len = return (L span tok)
725
726 token, layout_token :: Token -> Action
727 token t span _buf _len = return (L span t)
728 layout_token t span _buf _len = pushLexState layout >> return (L span t)
729
730 idtoken :: (StringBuffer -> Int -> Token) -> Action
731 idtoken f span buf len = return (L span $! (f buf len))
732
733 skip_one_varid :: (FastString -> Token) -> Action
734 skip_one_varid f span buf len 
735   = return (L span $! f (lexemeToFastString (stepOn buf) (len-1)))
736
737 strtoken :: (String -> Token) -> Action
738 strtoken f span buf len = 
739   return (L span $! (f $! lexemeToString buf len))
740
741 init_strtoken :: Int -> (String -> Token) -> Action
742 -- like strtoken, but drops the last N character(s)
743 init_strtoken drop f span buf len = 
744   return (L span $! (f $! lexemeToString buf (len-drop)))
745
746 begin :: Int -> Action
747 begin code _span _str _len = do pushLexState code; lexToken
748
749 pop :: Action
750 pop _span _buf _len = do _ <- popLexState
751                          lexToken
752
753 pop_and :: Action -> Action
754 pop_and act span buf len = do _ <- popLexState
755                               act span buf len
756
757 {-# INLINE nextCharIs #-}
758 nextCharIs :: StringBuffer -> (Char -> Bool) -> Bool
759 nextCharIs buf p = not (atEnd buf) && p (currentChar buf)
760
761 notFollowedBy :: Char -> AlexAccPred Int
762 notFollowedBy char _ _ _ (AI _ buf) 
763   = nextCharIs buf (/=char)
764
765 notFollowedBySymbol :: AlexAccPred Int
766 notFollowedBySymbol _ _ _ (AI _ buf)
767   = nextCharIs buf (`notElem` "!#$%&*+./<=>?@\\^|-~")
768
769 -- We must reject doc comments as being ordinary comments everywhere.
770 -- In some cases the doc comment will be selected as the lexeme due to
771 -- maximal munch, but not always, because the nested comment rule is
772 -- valid in all states, but the doc-comment rules are only valid in
773 -- the non-layout states.
774 isNormalComment :: AlexAccPred Int
775 isNormalComment bits _ _ (AI _ buf)
776   | haddockEnabled bits = notFollowedByDocOrPragma
777   | otherwise           = nextCharIs buf (/='#')
778   where
779     notFollowedByDocOrPragma
780        = not $ spaceAndP buf (`nextCharIs` (`elem` "|^*$#"))
781
782 spaceAndP :: StringBuffer -> (StringBuffer -> Bool) -> Bool
783 spaceAndP buf p = p buf || nextCharIs buf (==' ') && p (snd (nextChar buf))
784
785 {-
786 haddockDisabledAnd p bits _ _ (AI _ buf)
787   = if haddockEnabled bits then False else (p buf)
788 -}
789
790 atEOL :: AlexAccPred Int
791 atEOL _ _ _ (AI _ buf) = atEnd buf || currentChar buf == '\n'
792
793 ifExtension :: (Int -> Bool) -> AlexAccPred Int
794 ifExtension pred bits _ _ _ = pred bits
795
796 multiline_doc_comment :: Action
797 multiline_doc_comment span buf _len = withLexedDocType (worker "")
798   where
799     worker commentAcc input docType oneLine = case alexGetChar input of
800       Just ('\n', input') 
801         | oneLine -> docCommentEnd input commentAcc docType buf span
802         | otherwise -> case checkIfCommentLine input' of
803           Just input -> worker ('\n':commentAcc) input docType False
804           Nothing -> docCommentEnd input commentAcc docType buf span
805       Just (c, input) -> worker (c:commentAcc) input docType oneLine
806       Nothing -> docCommentEnd input commentAcc docType buf span
807       
808     checkIfCommentLine input = check (dropNonNewlineSpace input)
809       where
810         check input = case alexGetChar input of
811           Just ('-', input) -> case alexGetChar input of
812             Just ('-', input) -> case alexGetChar input of
813               Just (c, _) | c /= '-' -> Just input
814               _ -> Nothing
815             _ -> Nothing
816           _ -> Nothing
817
818         dropNonNewlineSpace input = case alexGetChar input of
819           Just (c, input') 
820             | isSpace c && c /= '\n' -> dropNonNewlineSpace input'
821             | otherwise -> input
822           Nothing -> input
823
824 lineCommentToken :: Action
825 lineCommentToken span buf len = do
826   b <- extension rawTokenStreamEnabled
827   if b then strtoken ITlineComment span buf len else lexToken
828
829 {-
830   nested comments require traversing by hand, they can't be parsed
831   using regular expressions.
832 -}
833 nested_comment :: P (Located Token) -> Action
834 nested_comment cont span _str _len = do
835   input <- getInput
836   go "" (1::Int) input
837   where
838     go commentAcc 0 input = do setInput input
839                                b <- extension rawTokenStreamEnabled
840                                if b
841                                  then docCommentEnd input commentAcc ITblockComment _str span
842                                  else cont
843     go commentAcc n input = case alexGetChar input of
844       Nothing -> errBrace input span
845       Just ('-',input) -> case alexGetChar input of
846         Nothing  -> errBrace input span
847         Just ('\125',input) -> go commentAcc (n-1) input
848         Just (_,_)          -> go ('-':commentAcc) n input
849       Just ('\123',input) -> case alexGetChar input of
850         Nothing  -> errBrace input span
851         Just ('-',input) -> go ('-':'\123':commentAcc) (n+1) input
852         Just (_,_)       -> go ('\123':commentAcc) n input
853       Just (c,input) -> go (c:commentAcc) n input
854
855 nested_doc_comment :: Action
856 nested_doc_comment span buf _len = withLexedDocType (go "")
857   where
858     go commentAcc input docType _ = case alexGetChar input of
859       Nothing -> errBrace input span
860       Just ('-',input) -> case alexGetChar input of
861         Nothing -> errBrace input span
862         Just ('\125',input) ->
863           docCommentEnd input commentAcc docType buf span
864         Just (_,_) -> go ('-':commentAcc) input docType False
865       Just ('\123', input) -> case alexGetChar input of
866         Nothing  -> errBrace input span
867         Just ('-',input) -> do
868           setInput input
869           let cont = do input <- getInput; go commentAcc input docType False
870           nested_comment cont span buf _len
871         Just (_,_) -> go ('\123':commentAcc) input docType False
872       Just (c,input) -> go (c:commentAcc) input docType False
873
874 withLexedDocType :: (AlexInput -> (String -> Token) -> Bool -> P (Located Token))
875                  -> P (Located Token)
876 withLexedDocType lexDocComment = do
877   input@(AI _ buf) <- getInput
878   case prevChar buf ' ' of
879     '|' -> lexDocComment input ITdocCommentNext False
880     '^' -> lexDocComment input ITdocCommentPrev False
881     '$' -> lexDocComment input ITdocCommentNamed False
882     '*' -> lexDocSection 1 input
883     '#' -> lexDocComment input ITdocOptionsOld False
884     _ -> panic "withLexedDocType: Bad doc type"
885  where 
886     lexDocSection n input = case alexGetChar input of 
887       Just ('*', input) -> lexDocSection (n+1) input
888       Just (_,   _)     -> lexDocComment input (ITdocSection n) True
889       Nothing -> do setInput input; lexToken -- eof reached, lex it normally
890
891 -- RULES pragmas turn on the forall and '.' keywords, and we turn them
892 -- off again at the end of the pragma.
893 rulePrag :: Action
894 rulePrag span _buf _len = do
895   setExts (.|. bit inRulePragBit)
896   return (L span ITrules_prag)
897
898 endPrag :: Action
899 endPrag span _buf _len = do
900   setExts (.&. complement (bit inRulePragBit))
901   return (L span ITclose_prag)
902
903 -- docCommentEnd
904 -------------------------------------------------------------------------------
905 -- This function is quite tricky. We can't just return a new token, we also
906 -- need to update the state of the parser. Why? Because the token is longer
907 -- than what was lexed by Alex, and the lexToken function doesn't know this, so 
908 -- it writes the wrong token length to the parser state. This function is
909 -- called afterwards, so it can just update the state. 
910
911 docCommentEnd :: AlexInput -> String -> (String -> Token) -> StringBuffer ->
912                  SrcSpan -> P (Located Token) 
913 docCommentEnd input commentAcc docType buf span = do
914   setInput input
915   let (AI loc nextBuf) = input
916       comment = reverse commentAcc
917       span' = mkSrcSpan (srcSpanStart span) loc
918       last_len = byteDiff buf nextBuf
919       
920   span `seq` setLastToken span' last_len
921   return (L span' (docType comment))
922  
923 errBrace :: AlexInput -> SrcSpan -> P a
924 errBrace (AI end _) span = failLocMsgP (srcSpanStart span) end "unterminated `{-'"
925
926 open_brace, close_brace :: Action
927 open_brace span _str _len = do 
928   ctx <- getContext
929   setContext (NoLayout:ctx)
930   return (L span ITocurly)
931 close_brace span _str _len = do 
932   popContext
933   return (L span ITccurly)
934
935 qvarid, qconid :: StringBuffer -> Int -> Token
936 qvarid buf len = ITqvarid $! splitQualName buf len False
937 qconid buf len = ITqconid $! splitQualName buf len False
938
939 splitQualName :: StringBuffer -> Int -> Bool -> (FastString,FastString)
940 -- takes a StringBuffer and a length, and returns the module name
941 -- and identifier parts of a qualified name.  Splits at the *last* dot,
942 -- because of hierarchical module names.
943 splitQualName orig_buf len parens = split orig_buf orig_buf
944   where
945     split buf dot_buf
946         | orig_buf `byteDiff` buf >= len  = done dot_buf
947         | c == '.'                        = found_dot buf'
948         | otherwise                       = split buf' dot_buf
949       where
950        (c,buf') = nextChar buf
951   
952     -- careful, we might get names like M....
953     -- so, if the character after the dot is not upper-case, this is
954     -- the end of the qualifier part.
955     found_dot buf -- buf points after the '.'
956         | isUpper c    = split buf' buf
957         | otherwise    = done buf
958       where
959        (c,buf') = nextChar buf
960
961     done dot_buf =
962         (lexemeToFastString orig_buf (qual_size - 1),
963          if parens -- Prelude.(+)
964             then lexemeToFastString (stepOn dot_buf) (len - qual_size - 2)
965             else lexemeToFastString dot_buf (len - qual_size))
966       where
967         qual_size = orig_buf `byteDiff` dot_buf
968
969 varid :: Action
970 varid span buf len =
971   fs `seq`
972   case lookupUFM reservedWordsFM fs of
973         Just (keyword,0)    -> do
974                 maybe_layout keyword
975                 return (L span keyword)
976         Just (keyword,exts) -> do
977                 b <- extension (\i -> exts .&. i /= 0)
978                 if b then do maybe_layout keyword
979                              return (L span keyword)
980                      else return (L span (ITvarid fs))
981         _other -> return (L span (ITvarid fs))
982   where
983         fs = lexemeToFastString buf len
984
985 conid :: StringBuffer -> Int -> Token
986 conid buf len = ITconid fs
987   where fs = lexemeToFastString buf len
988
989 qvarsym, qconsym, prefixqvarsym, prefixqconsym :: StringBuffer -> Int -> Token
990 qvarsym buf len = ITqvarsym $! splitQualName buf len False
991 qconsym buf len = ITqconsym $! splitQualName buf len False
992 prefixqvarsym buf len = ITprefixqvarsym $! splitQualName buf len True
993 prefixqconsym buf len = ITprefixqconsym $! splitQualName buf len True
994
995 varsym, consym :: Action
996 varsym = sym ITvarsym
997 consym = sym ITconsym
998
999 sym :: (FastString -> Token) -> SrcSpan -> StringBuffer -> Int
1000     -> P (Located Token)
1001 sym con span buf len = 
1002   case lookupUFM reservedSymsFM fs of
1003         Just (keyword,exts) -> do
1004                 b <- extension exts
1005                 if b then return (L span keyword)
1006                      else return (L span $! con fs)
1007         _other -> return (L span $! con fs)
1008   where
1009         fs = lexemeToFastString buf len
1010
1011 -- Variations on the integral numeric literal.
1012 tok_integral :: (Integer -> Token)
1013      -> (Integer -> Integer)
1014  --    -> (StringBuffer -> StringBuffer) -> (Int -> Int)
1015      -> Int -> Int
1016      -> (Integer, (Char->Int)) -> Action
1017 tok_integral itint transint transbuf translen (radix,char_to_int) span buf len =
1018   return $ L span $ itint $! transint $ parseUnsignedInteger
1019      (offsetBytes transbuf buf) (subtract translen len) radix char_to_int
1020
1021 -- some conveniences for use with tok_integral
1022 tok_num :: (Integer -> Integer)
1023         -> Int -> Int
1024         -> (Integer, (Char->Int)) -> Action
1025 tok_num = tok_integral ITinteger
1026 tok_primint :: (Integer -> Integer)
1027             -> Int -> Int
1028             -> (Integer, (Char->Int)) -> Action
1029 tok_primint = tok_integral ITprimint
1030 tok_primword :: Int -> Int
1031              -> (Integer, (Char->Int)) -> Action
1032 tok_primword = tok_integral ITprimword positive
1033 positive, negative :: (Integer -> Integer)
1034 positive = id
1035 negative = negate
1036 decimal, octal, hexadecimal :: (Integer, Char -> Int)
1037 decimal = (10,octDecDigit)
1038 octal = (8,octDecDigit)
1039 hexadecimal = (16,hexDigit)
1040
1041 -- readRational can understand negative rationals, exponents, everything.
1042 tok_float, tok_primfloat, tok_primdouble :: String -> Token
1043 tok_float        str = ITrational   $! readRational str
1044 tok_primfloat    str = ITprimfloat  $! readRational str
1045 tok_primdouble   str = ITprimdouble $! readRational str
1046
1047 -- -----------------------------------------------------------------------------
1048 -- Layout processing
1049
1050 -- we're at the first token on a line, insert layout tokens if necessary
1051 do_bol :: Action
1052 do_bol span _str _len = do
1053         pos <- getOffside
1054         case pos of
1055             LT -> do
1056                 --trace "layout: inserting '}'" $ do
1057                 popContext
1058                 -- do NOT pop the lex state, we might have a ';' to insert
1059                 return (L span ITvccurly)
1060             EQ -> do
1061                 --trace "layout: inserting ';'" $ do
1062                 _ <- popLexState
1063                 return (L span ITsemi)
1064             GT -> do
1065                 _ <- popLexState
1066                 lexToken
1067
1068 -- certain keywords put us in the "layout" state, where we might
1069 -- add an opening curly brace.
1070 maybe_layout :: Token -> P ()
1071 maybe_layout t = do -- If the alternative layout rule is enabled then
1072                     -- we never create an implicit layout context here.
1073                     -- Layout is handled XXX instead.
1074                     -- The code for closing implicit contexts, or
1075                     -- inserting implicit semi-colons, is therefore
1076                     -- irrelevant as it only applies in an implicit
1077                     -- context.
1078                     alr <- extension alternativeLayoutRule
1079                     unless alr $ f t
1080     where f ITdo    = pushLexState layout_do
1081           f ITmdo   = pushLexState layout_do
1082           f ITof    = pushLexState layout
1083           f ITlet   = pushLexState layout
1084           f ITwhere = pushLexState layout
1085           f ITrec   = pushLexState layout
1086           f _       = return ()
1087
1088 -- Pushing a new implicit layout context.  If the indentation of the
1089 -- next token is not greater than the previous layout context, then
1090 -- Haskell 98 says that the new layout context should be empty; that is
1091 -- the lexer must generate {}.
1092 --
1093 -- We are slightly more lenient than this: when the new context is started
1094 -- by a 'do', then we allow the new context to be at the same indentation as
1095 -- the previous context.  This is what the 'strict' argument is for.
1096 --
1097 new_layout_context :: Bool -> Action
1098 new_layout_context strict span _buf _len = do
1099     _ <- popLexState
1100     (AI l _) <- getInput
1101     let offset = srcLocCol l
1102     ctx <- getContext
1103     case ctx of
1104         Layout prev_off : _  | 
1105            (strict     && prev_off >= offset  ||
1106             not strict && prev_off > offset) -> do
1107                 -- token is indented to the left of the previous context.
1108                 -- we must generate a {} sequence now.
1109                 pushLexState layout_left
1110                 return (L span ITvocurly)
1111         _ -> do
1112                 setContext (Layout offset : ctx)
1113                 return (L span ITvocurly)
1114
1115 do_layout_left :: Action
1116 do_layout_left span _buf _len = do
1117     _ <- popLexState
1118     pushLexState bol  -- we must be at the start of a line
1119     return (L span ITvccurly)
1120
1121 -- -----------------------------------------------------------------------------
1122 -- LINE pragmas
1123
1124 setLine :: Int -> Action
1125 setLine code span buf len = do
1126   let line = parseUnsignedInteger buf len 10 octDecDigit
1127   setSrcLoc (mkSrcLoc (srcSpanFile span) (fromIntegral line - 1) 1)
1128         -- subtract one: the line number refers to the *following* line
1129   _ <- popLexState
1130   pushLexState code
1131   lexToken
1132
1133 setFile :: Int -> Action
1134 setFile code span buf len = do
1135   let file = lexemeToFastString (stepOn buf) (len-2)
1136   setAlrLastLoc noSrcSpan
1137   setSrcLoc (mkSrcLoc file (srcSpanEndLine span) (srcSpanEndCol span))
1138   _ <- popLexState
1139   pushLexState code
1140   lexToken
1141
1142
1143 -- -----------------------------------------------------------------------------
1144 -- Options, includes and language pragmas.
1145
1146 lex_string_prag :: (String -> Token) -> Action
1147 lex_string_prag mkTok span _buf _len
1148     = do input <- getInput
1149          start <- getSrcLoc
1150          tok <- go [] input
1151          end <- getSrcLoc
1152          return (L (mkSrcSpan start end) tok)
1153     where go acc input
1154               = if isString input "#-}"
1155                    then do setInput input
1156                            return (mkTok (reverse acc))
1157                    else case alexGetChar input of
1158                           Just (c,i) -> go (c:acc) i
1159                           Nothing -> err input
1160           isString _ [] = True
1161           isString i (x:xs)
1162               = case alexGetChar i of
1163                   Just (c,i') | c == x    -> isString i' xs
1164                   _other -> False
1165           err (AI end _) = failLocMsgP (srcSpanStart span) end "unterminated options pragma"
1166
1167
1168 -- -----------------------------------------------------------------------------
1169 -- Strings & Chars
1170
1171 -- This stuff is horrible.  I hates it.
1172
1173 lex_string_tok :: Action
1174 lex_string_tok span _buf _len = do
1175   tok <- lex_string ""
1176   end <- getSrcLoc 
1177   return (L (mkSrcSpan (srcSpanStart span) end) tok)
1178
1179 lex_string :: String -> P Token
1180 lex_string s = do
1181   i <- getInput
1182   case alexGetChar' i of
1183     Nothing -> lit_error
1184
1185     Just ('"',i)  -> do
1186         setInput i
1187         magicHash <- extension magicHashEnabled
1188         if magicHash
1189           then do
1190             i <- getInput
1191             case alexGetChar' i of
1192               Just ('#',i) -> do
1193                    setInput i
1194                    if any (> '\xFF') s
1195                     then failMsgP "primitive string literal must contain only characters <= \'\\xFF\'"
1196                     else let s' = mkZFastString (reverse s) in
1197                          return (ITprimstring s')
1198                         -- mkZFastString is a hack to avoid encoding the
1199                         -- string in UTF-8.  We just want the exact bytes.
1200               _other ->
1201                 return (ITstring (mkFastString (reverse s)))
1202           else
1203                 return (ITstring (mkFastString (reverse s)))
1204
1205     Just ('\\',i)
1206         | Just ('&',i) <- next -> do 
1207                 setInput i; lex_string s
1208         | Just (c,i) <- next, is_space c -> do 
1209                 setInput i; lex_stringgap s
1210         where next = alexGetChar' i
1211
1212     Just (c, i) -> do
1213         c' <- lex_char c i
1214         lex_string (c':s)
1215
1216 lex_stringgap :: String -> P Token
1217 lex_stringgap s = do
1218   c <- getCharOrFail
1219   case c of
1220     '\\' -> lex_string s
1221     c | is_space c -> lex_stringgap s
1222     _other -> lit_error
1223
1224
1225 lex_char_tok :: Action
1226 -- Here we are basically parsing character literals, such as 'x' or '\n'
1227 -- but, when Template Haskell is on, we additionally spot
1228 -- 'x and ''T, returning ITvarQuote and ITtyQuote respectively, 
1229 -- but WITHOUT CONSUMING the x or T part  (the parser does that).
1230 -- So we have to do two characters of lookahead: when we see 'x we need to
1231 -- see if there's a trailing quote
1232 lex_char_tok span _buf _len = do        -- We've seen '
1233    i1 <- getInput       -- Look ahead to first character
1234    let loc = srcSpanStart span
1235    case alexGetChar' i1 of
1236         Nothing -> lit_error 
1237
1238         Just ('\'', i2@(AI end2 _)) -> do       -- We've seen ''
1239                   th_exts <- extension thEnabled
1240                   if th_exts then do
1241                         setInput i2
1242                         return (L (mkSrcSpan loc end2)  ITtyQuote)
1243                    else lit_error
1244
1245         Just ('\\', i2@(AI _end2 _)) -> do      -- We've seen 'backslash
1246                   setInput i2
1247                   lit_ch <- lex_escape
1248                   mc <- getCharOrFail   -- Trailing quote
1249                   if mc == '\'' then finish_char_tok loc lit_ch
1250                                 else do setInput i2; lit_error 
1251
1252         Just (c, i2@(AI _end2 _))
1253                 | not (isAny c) -> lit_error
1254                 | otherwise ->
1255
1256                 -- We've seen 'x, where x is a valid character
1257                 --  (i.e. not newline etc) but not a quote or backslash
1258            case alexGetChar' i2 of      -- Look ahead one more character
1259                 Just ('\'', i3) -> do   -- We've seen 'x'
1260                         setInput i3 
1261                         finish_char_tok loc c
1262                 _other -> do            -- We've seen 'x not followed by quote
1263                                         -- (including the possibility of EOF)
1264                                         -- If TH is on, just parse the quote only
1265                         th_exts <- extension thEnabled  
1266                         let (AI end _) = i1
1267                         if th_exts then return (L (mkSrcSpan loc end) ITvarQuote)
1268                                    else do setInput i2; lit_error
1269
1270 finish_char_tok :: SrcLoc -> Char -> P (Located Token)
1271 finish_char_tok loc ch  -- We've already seen the closing quote
1272                         -- Just need to check for trailing #
1273   = do  magicHash <- extension magicHashEnabled
1274         i@(AI end _) <- getInput
1275         if magicHash then do
1276                 case alexGetChar' i of
1277                         Just ('#',i@(AI end _)) -> do
1278                                 setInput i
1279                                 return (L (mkSrcSpan loc end) (ITprimchar ch))
1280                         _other ->
1281                                 return (L (mkSrcSpan loc end) (ITchar ch))
1282             else do
1283                    return (L (mkSrcSpan loc end) (ITchar ch))
1284
1285 lex_char :: Char -> AlexInput -> P Char
1286 lex_char c inp = do
1287   case c of
1288       '\\' -> do setInput inp; lex_escape
1289       c | isAny c -> do setInput inp; return c
1290       _other -> lit_error
1291
1292 isAny :: Char -> Bool
1293 isAny c | c > '\x7f' = isPrint c
1294         | otherwise  = is_any c
1295
1296 lex_escape :: P Char
1297 lex_escape = do
1298   c <- getCharOrFail
1299   case c of
1300         'a'   -> return '\a'
1301         'b'   -> return '\b'
1302         'f'   -> return '\f'
1303         'n'   -> return '\n'
1304         'r'   -> return '\r'
1305         't'   -> return '\t'
1306         'v'   -> return '\v'
1307         '\\'  -> return '\\'
1308         '"'   -> return '\"'
1309         '\''  -> return '\''
1310         '^'   -> do c <- getCharOrFail
1311                     if c >= '@' && c <= '_'
1312                         then return (chr (ord c - ord '@'))
1313                         else lit_error
1314
1315         'x'   -> readNum is_hexdigit 16 hexDigit
1316         'o'   -> readNum is_octdigit  8 octDecDigit
1317         x | is_decdigit x -> readNum2 is_decdigit 10 octDecDigit (octDecDigit x)
1318
1319         c1 ->  do
1320            i <- getInput
1321            case alexGetChar' i of
1322             Nothing -> lit_error
1323             Just (c2,i2) -> 
1324               case alexGetChar' i2 of
1325                 Nothing -> do setInput i2; lit_error
1326                 Just (c3,i3) -> 
1327                    let str = [c1,c2,c3] in
1328                    case [ (c,rest) | (p,c) <- silly_escape_chars,
1329                                      Just rest <- [stripPrefix p str] ] of
1330                           (escape_char,[]):_ -> do
1331                                 setInput i3
1332                                 return escape_char
1333                           (escape_char,_:_):_ -> do
1334                                 setInput i2
1335                                 return escape_char
1336                           [] -> lit_error
1337
1338 readNum :: (Char -> Bool) -> Int -> (Char -> Int) -> P Char
1339 readNum is_digit base conv = do
1340   i <- getInput
1341   c <- getCharOrFail
1342   if is_digit c 
1343         then readNum2 is_digit base conv (conv c)
1344         else do setInput i; lit_error
1345
1346 readNum2 :: (Char -> Bool) -> Int -> (Char -> Int) -> Int -> P Char
1347 readNum2 is_digit base conv i = do
1348   input <- getInput
1349   read i input
1350   where read i input = do
1351           case alexGetChar' input of
1352             Just (c,input') | is_digit c -> do
1353                 read (i*base + conv c) input'
1354             _other -> do
1355                 if i >= 0 && i <= 0x10FFFF
1356                    then do setInput input; return (chr i)
1357                    else lit_error
1358
1359 silly_escape_chars :: [(String, Char)]
1360 silly_escape_chars = [
1361         ("NUL", '\NUL'),
1362         ("SOH", '\SOH'),
1363         ("STX", '\STX'),
1364         ("ETX", '\ETX'),
1365         ("EOT", '\EOT'),
1366         ("ENQ", '\ENQ'),
1367         ("ACK", '\ACK'),
1368         ("BEL", '\BEL'),
1369         ("BS", '\BS'),
1370         ("HT", '\HT'),
1371         ("LF", '\LF'),
1372         ("VT", '\VT'),
1373         ("FF", '\FF'),
1374         ("CR", '\CR'),
1375         ("SO", '\SO'),
1376         ("SI", '\SI'),
1377         ("DLE", '\DLE'),
1378         ("DC1", '\DC1'),
1379         ("DC2", '\DC2'),
1380         ("DC3", '\DC3'),
1381         ("DC4", '\DC4'),
1382         ("NAK", '\NAK'),
1383         ("SYN", '\SYN'),
1384         ("ETB", '\ETB'),
1385         ("CAN", '\CAN'),
1386         ("EM", '\EM'),
1387         ("SUB", '\SUB'),
1388         ("ESC", '\ESC'),
1389         ("FS", '\FS'),
1390         ("GS", '\GS'),
1391         ("RS", '\RS'),
1392         ("US", '\US'),
1393         ("SP", '\SP'),
1394         ("DEL", '\DEL')
1395         ]
1396
1397 -- before calling lit_error, ensure that the current input is pointing to
1398 -- the position of the error in the buffer.  This is so that we can report
1399 -- a correct location to the user, but also so we can detect UTF-8 decoding
1400 -- errors if they occur.
1401 lit_error :: P a
1402 lit_error = lexError "lexical error in string/character literal"
1403
1404 getCharOrFail :: P Char
1405 getCharOrFail =  do
1406   i <- getInput
1407   case alexGetChar' i of
1408         Nothing -> lexError "unexpected end-of-file in string/character literal"
1409         Just (c,i)  -> do setInput i; return c
1410
1411 -- -----------------------------------------------------------------------------
1412 -- QuasiQuote
1413
1414 lex_quasiquote_tok :: Action
1415 lex_quasiquote_tok span buf len = do
1416   let quoter = reverse $ takeWhile (/= '$')
1417                $ reverse $ lexemeToString buf (len - 1)
1418   quoteStart <- getSrcLoc              
1419   quote <- lex_quasiquote ""
1420   end <- getSrcLoc 
1421   return (L (mkSrcSpan (srcSpanStart span) end)
1422            (ITquasiQuote (mkFastString quoter,
1423                           mkFastString (reverse quote),
1424                           mkSrcSpan quoteStart end)))
1425
1426 lex_quasiquote :: String -> P String
1427 lex_quasiquote s = do
1428   i <- getInput
1429   case alexGetChar' i of
1430     Nothing -> lit_error
1431
1432     Just ('\\',i)
1433         | Just ('|',i) <- next -> do 
1434                 setInput i; lex_quasiquote ('|' : s)
1435         | Just (']',i) <- next -> do 
1436                 setInput i; lex_quasiquote (']' : s)
1437         where next = alexGetChar' i
1438
1439     Just ('|',i)
1440         | Just (']',i) <- next -> do 
1441                 setInput i; return s
1442         where next = alexGetChar' i
1443
1444     Just (c, i) -> do
1445          setInput i; lex_quasiquote (c : s)
1446
1447 -- -----------------------------------------------------------------------------
1448 -- Warnings
1449
1450 warn :: DynFlag -> SDoc -> Action
1451 warn option warning srcspan _buf _len = do
1452     addWarning option srcspan warning
1453     lexToken
1454
1455 warnThen :: DynFlag -> SDoc -> Action -> Action
1456 warnThen option warning action srcspan buf len = do
1457     addWarning option srcspan warning
1458     action srcspan buf len
1459
1460 -- -----------------------------------------------------------------------------
1461 -- The Parse Monad
1462
1463 data LayoutContext
1464   = NoLayout
1465   | Layout !Int
1466   deriving Show
1467
1468 data ParseResult a
1469   = POk PState a
1470   | PFailed 
1471         SrcSpan         -- The start and end of the text span related to
1472                         -- the error.  Might be used in environments which can 
1473                         -- show this span, e.g. by highlighting it.
1474         Message         -- The error message
1475
1476 data PState = PState { 
1477         buffer     :: StringBuffer,
1478         dflags     :: DynFlags,
1479         messages   :: Messages,
1480         last_loc   :: SrcSpan,  -- pos of previous token
1481         last_len   :: !Int,     -- len of previous token
1482         loc        :: SrcLoc,   -- current loc (end of prev token + 1)
1483         extsBitmap :: !Int,     -- bitmap that determines permitted extensions
1484         context    :: [LayoutContext],
1485         lex_state  :: [Int],
1486         -- Used in the alternative layout rule:
1487         -- These tokens are the next ones to be sent out. They are
1488         -- just blindly emitted, without the rule looking at them again:
1489         alr_pending_implicit_tokens :: [Located Token],
1490         -- This is the next token to be considered or, if it is Nothing,
1491         -- we need to get the next token from the input stream:
1492         alr_next_token :: Maybe (Located Token),
1493         -- This is what we consider to be the locatino of the last token
1494         -- emitted:
1495         alr_last_loc :: SrcSpan,
1496         -- The stack of layout contexts:
1497         alr_context :: [ALRContext],
1498         -- Are we expecting a '{'? If it's Just, then the ALRLayout tells
1499         -- us what sort of layout the '{' will open:
1500         alr_expecting_ocurly :: Maybe ALRLayout
1501      }
1502         -- last_loc and last_len are used when generating error messages,
1503         -- and in pushCurrentContext only.  Sigh, if only Happy passed the
1504         -- current token to happyError, we could at least get rid of last_len.
1505         -- Getting rid of last_loc would require finding another way to 
1506         -- implement pushCurrentContext (which is only called from one place).
1507
1508 data ALRContext = ALRNoLayout Bool{- does it contain commas? -}
1509                 | ALRLayout ALRLayout Int
1510 data ALRLayout = ALRLayoutLet
1511                | ALRLayoutWhere
1512                | ALRLayoutOf
1513                | ALRLayoutDo
1514
1515 newtype P a = P { unP :: PState -> ParseResult a }
1516
1517 instance Monad P where
1518   return = returnP
1519   (>>=) = thenP
1520   fail = failP
1521
1522 returnP :: a -> P a
1523 returnP a = a `seq` (P $ \s -> POk s a)
1524
1525 thenP :: P a -> (a -> P b) -> P b
1526 (P m) `thenP` k = P $ \ s ->
1527         case m s of
1528                 POk s1 a         -> (unP (k a)) s1
1529                 PFailed span err -> PFailed span err
1530
1531 failP :: String -> P a
1532 failP msg = P $ \s -> PFailed (last_loc s) (text msg)
1533
1534 failMsgP :: String -> P a
1535 failMsgP msg = P $ \s -> PFailed (last_loc s) (text msg)
1536
1537 failLocMsgP :: SrcLoc -> SrcLoc -> String -> P a
1538 failLocMsgP loc1 loc2 str = P $ \_ -> PFailed (mkSrcSpan loc1 loc2) (text str)
1539
1540 failSpanMsgP :: SrcSpan -> SDoc -> P a
1541 failSpanMsgP span msg = P $ \_ -> PFailed span msg
1542
1543 getPState :: P PState
1544 getPState = P $ \s -> POk s s
1545
1546 getDynFlags :: P DynFlags
1547 getDynFlags = P $ \s -> POk s (dflags s)
1548
1549 withThisPackage :: (PackageId -> a) -> P a
1550 withThisPackage f
1551  = do   pkg     <- liftM thisPackage getDynFlags
1552         return  $ f pkg
1553
1554 extension :: (Int -> Bool) -> P Bool
1555 extension p = P $ \s -> POk s (p $! extsBitmap s)
1556
1557 getExts :: P Int
1558 getExts = P $ \s -> POk s (extsBitmap s)
1559
1560 setExts :: (Int -> Int) -> P ()
1561 setExts f = P $ \s -> POk s{ extsBitmap = f (extsBitmap s) } ()
1562
1563 setSrcLoc :: SrcLoc -> P ()
1564 setSrcLoc new_loc = P $ \s -> POk s{loc=new_loc} ()
1565
1566 getSrcLoc :: P SrcLoc
1567 getSrcLoc = P $ \s@(PState{ loc=loc }) -> POk s loc
1568
1569 setLastToken :: SrcSpan -> Int -> P ()
1570 setLastToken loc len = P $ \s -> POk s { 
1571   last_loc=loc, 
1572   last_len=len
1573   } ()
1574
1575 data AlexInput = AI SrcLoc StringBuffer
1576
1577 alexInputPrevChar :: AlexInput -> Char
1578 alexInputPrevChar (AI _ buf) = prevChar buf '\n'
1579
1580 alexGetChar :: AlexInput -> Maybe (Char,AlexInput)
1581 alexGetChar (AI loc s) 
1582   | atEnd s   = Nothing
1583   | otherwise = adj_c `seq` loc' `seq` s' `seq` 
1584                 --trace (show (ord c)) $
1585                 Just (adj_c, (AI loc' s'))
1586   where (c,s') = nextChar s
1587         loc'   = advanceSrcLoc loc c
1588
1589         non_graphic     = '\x0'
1590         upper           = '\x1'
1591         lower           = '\x2'
1592         digit           = '\x3'
1593         symbol          = '\x4'
1594         space           = '\x5'
1595         other_graphic   = '\x6'
1596
1597         adj_c 
1598           | c <= '\x06' = non_graphic
1599           | c <= '\x7f' = c
1600           -- Alex doesn't handle Unicode, so when Unicode
1601           -- character is encountered we output these values
1602           -- with the actual character value hidden in the state.
1603           | otherwise = 
1604                 case generalCategory c of
1605                   UppercaseLetter       -> upper
1606                   LowercaseLetter       -> lower
1607                   TitlecaseLetter       -> upper
1608                   ModifierLetter        -> other_graphic
1609                   OtherLetter           -> lower -- see #1103
1610                   NonSpacingMark        -> other_graphic
1611                   SpacingCombiningMark  -> other_graphic
1612                   EnclosingMark         -> other_graphic
1613                   DecimalNumber         -> digit
1614                   LetterNumber          -> other_graphic
1615                   OtherNumber           -> other_graphic
1616                   ConnectorPunctuation  -> symbol
1617                   DashPunctuation       -> symbol
1618                   OpenPunctuation       -> other_graphic
1619                   ClosePunctuation      -> other_graphic
1620                   InitialQuote          -> other_graphic
1621                   FinalQuote            -> other_graphic
1622                   OtherPunctuation      -> symbol
1623                   MathSymbol            -> symbol
1624                   CurrencySymbol        -> symbol
1625                   ModifierSymbol        -> symbol
1626                   OtherSymbol           -> symbol
1627                   Space                 -> space
1628                   _other                -> non_graphic
1629
1630 -- This version does not squash unicode characters, it is used when
1631 -- lexing strings.
1632 alexGetChar' :: AlexInput -> Maybe (Char,AlexInput)
1633 alexGetChar' (AI loc s) 
1634   | atEnd s   = Nothing
1635   | otherwise = c `seq` loc' `seq` s' `seq` 
1636                 --trace (show (ord c)) $
1637                 Just (c, (AI loc' s'))
1638   where (c,s') = nextChar s
1639         loc'   = advanceSrcLoc loc c
1640
1641 getInput :: P AlexInput
1642 getInput = P $ \s@PState{ loc=l, buffer=b } -> POk s (AI l b)
1643
1644 setInput :: AlexInput -> P ()
1645 setInput (AI l b) = P $ \s -> POk s{ loc=l, buffer=b } ()
1646
1647 pushLexState :: Int -> P ()
1648 pushLexState ls = P $ \s@PState{ lex_state=l } -> POk s{lex_state=ls:l} ()
1649
1650 popLexState :: P Int
1651 popLexState = P $ \s@PState{ lex_state=ls:l } -> POk s{ lex_state=l } ls
1652
1653 getLexState :: P Int
1654 getLexState = P $ \s@PState{ lex_state=ls:_ } -> POk s ls
1655
1656 popNextToken :: P (Maybe (Located Token))
1657 popNextToken
1658     = P $ \s@PState{ alr_next_token = m } ->
1659               POk (s {alr_next_token = Nothing}) m
1660
1661 setAlrLastLoc :: SrcSpan -> P ()
1662 setAlrLastLoc l = P $ \s -> POk (s {alr_last_loc = l}) ()
1663
1664 getAlrLastLoc :: P SrcSpan
1665 getAlrLastLoc = P $ \s@(PState {alr_last_loc = l}) -> POk s l
1666
1667 getALRContext :: P [ALRContext]
1668 getALRContext = P $ \s@(PState {alr_context = cs}) -> POk s cs
1669
1670 setALRContext :: [ALRContext] -> P ()
1671 setALRContext cs = P $ \s -> POk (s {alr_context = cs}) ()
1672
1673 setNextToken :: Located Token -> P ()
1674 setNextToken t = P $ \s -> POk (s {alr_next_token = Just t}) ()
1675
1676 popPendingImplicitToken :: P (Maybe (Located Token))
1677 popPendingImplicitToken
1678     = P $ \s@PState{ alr_pending_implicit_tokens = ts } ->
1679               case ts of
1680               [] -> POk s Nothing
1681               (t : ts') -> POk (s {alr_pending_implicit_tokens = ts'}) (Just t)
1682
1683 setPendingImplicitTokens :: [Located Token] -> P ()
1684 setPendingImplicitTokens ts = P $ \s -> POk (s {alr_pending_implicit_tokens = ts}) ()
1685
1686 getAlrExpectingOCurly :: P (Maybe ALRLayout)
1687 getAlrExpectingOCurly = P $ \s@(PState {alr_expecting_ocurly = b}) -> POk s b
1688
1689 setAlrExpectingOCurly :: Maybe ALRLayout -> P ()
1690 setAlrExpectingOCurly b = P $ \s -> POk (s {alr_expecting_ocurly = b}) ()
1691
1692 -- for reasons of efficiency, flags indicating language extensions (eg,
1693 -- -fglasgow-exts or -XParr) are represented by a bitmap stored in an unboxed
1694 -- integer
1695
1696 genericsBit :: Int
1697 genericsBit = 0 -- {| and |}
1698 ffiBit :: Int
1699 ffiBit     = 1
1700 parrBit :: Int
1701 parrBit    = 2
1702 arrowsBit :: Int
1703 arrowsBit  = 4
1704 thBit :: Int
1705 thBit      = 5
1706 ipBit :: Int
1707 ipBit      = 6
1708 explicitForallBit :: Int
1709 explicitForallBit = 7 -- the 'forall' keyword and '.' symbol
1710 bangPatBit :: Int
1711 bangPatBit = 8  -- Tells the parser to understand bang-patterns
1712                 -- (doesn't affect the lexer)
1713 tyFamBit :: Int
1714 tyFamBit   = 9  -- indexed type families: 'family' keyword and kind sigs
1715 haddockBit :: Int
1716 haddockBit = 10 -- Lex and parse Haddock comments
1717 magicHashBit :: Int
1718 magicHashBit = 11 -- "#" in both functions and operators
1719 kindSigsBit :: Int
1720 kindSigsBit = 12 -- Kind signatures on type variables
1721 recursiveDoBit :: Int
1722 recursiveDoBit = 13 -- mdo
1723 unicodeSyntaxBit :: Int
1724 unicodeSyntaxBit = 14 -- the forall symbol, arrow symbols, etc
1725 unboxedTuplesBit :: Int
1726 unboxedTuplesBit = 15 -- (# and #)
1727 standaloneDerivingBit :: Int
1728 standaloneDerivingBit = 16 -- standalone instance deriving declarations
1729 transformComprehensionsBit :: Int
1730 transformComprehensionsBit = 17
1731 qqBit :: Int
1732 qqBit      = 18 -- enable quasiquoting
1733 inRulePragBit :: Int
1734 inRulePragBit = 19
1735 rawTokenStreamBit :: Int
1736 rawTokenStreamBit = 20 -- producing a token stream with all comments included
1737 newQualOpsBit :: Int
1738 newQualOpsBit = 21 -- Haskell' qualified operator syntax, e.g. Prelude.(+)
1739 recBit :: Int
1740 recBit = 22 -- rec
1741 alternativeLayoutRuleBit :: Int
1742 alternativeLayoutRuleBit = 23
1743
1744 always :: Int -> Bool
1745 always           _     = True
1746 genericsEnabled :: Int -> Bool
1747 genericsEnabled  flags = testBit flags genericsBit
1748 parrEnabled :: Int -> Bool
1749 parrEnabled      flags = testBit flags parrBit
1750 arrowsEnabled :: Int -> Bool
1751 arrowsEnabled    flags = testBit flags arrowsBit
1752 thEnabled :: Int -> Bool
1753 thEnabled        flags = testBit flags thBit
1754 ipEnabled :: Int -> Bool
1755 ipEnabled        flags = testBit flags ipBit
1756 explicitForallEnabled :: Int -> Bool
1757 explicitForallEnabled flags = testBit flags explicitForallBit
1758 bangPatEnabled :: Int -> Bool
1759 bangPatEnabled   flags = testBit flags bangPatBit
1760 -- tyFamEnabled :: Int -> Bool
1761 -- tyFamEnabled     flags = testBit flags tyFamBit
1762 haddockEnabled :: Int -> Bool
1763 haddockEnabled   flags = testBit flags haddockBit
1764 magicHashEnabled :: Int -> Bool
1765 magicHashEnabled flags = testBit flags magicHashBit
1766 -- kindSigsEnabled :: Int -> Bool
1767 -- kindSigsEnabled  flags = testBit flags kindSigsBit
1768 unicodeSyntaxEnabled :: Int -> Bool
1769 unicodeSyntaxEnabled flags = testBit flags unicodeSyntaxBit
1770 unboxedTuplesEnabled :: Int -> Bool
1771 unboxedTuplesEnabled flags = testBit flags unboxedTuplesBit
1772 standaloneDerivingEnabled :: Int -> Bool
1773 standaloneDerivingEnabled flags = testBit flags standaloneDerivingBit
1774 qqEnabled :: Int -> Bool
1775 qqEnabled        flags = testBit flags qqBit
1776 -- inRulePrag :: Int -> Bool
1777 -- inRulePrag       flags = testBit flags inRulePragBit
1778 rawTokenStreamEnabled :: Int -> Bool
1779 rawTokenStreamEnabled flags = testBit flags rawTokenStreamBit
1780 newQualOps :: Int -> Bool
1781 newQualOps       flags = testBit flags newQualOpsBit
1782 oldQualOps :: Int -> Bool
1783 oldQualOps flags = not (newQualOps flags)
1784 alternativeLayoutRule :: Int -> Bool
1785 alternativeLayoutRule flags = testBit flags alternativeLayoutRuleBit
1786
1787 -- PState for parsing options pragmas
1788 --
1789 pragState :: DynFlags -> StringBuffer -> SrcLoc -> PState
1790 pragState dynflags buf loc =
1791   PState {
1792       buffer        = buf,
1793       messages      = emptyMessages,
1794       dflags        = dynflags,
1795       last_loc      = mkSrcSpan loc loc,
1796       last_len      = 0,
1797       loc           = loc,
1798       extsBitmap    = 0,
1799       context       = [],
1800       lex_state     = [bol, option_prags, 0],
1801       alr_pending_implicit_tokens = [],
1802       alr_next_token = Nothing,
1803       alr_last_loc = noSrcSpan,
1804       alr_context = [],
1805       alr_expecting_ocurly = Nothing
1806     }
1807
1808
1809 -- create a parse state
1810 --
1811 mkPState :: StringBuffer -> SrcLoc -> DynFlags -> PState
1812 mkPState buf loc flags  = 
1813   PState {
1814       buffer          = buf,
1815       dflags        = flags,
1816       messages      = emptyMessages,
1817       last_loc      = mkSrcSpan loc loc,
1818       last_len      = 0,
1819       loc           = loc,
1820       extsBitmap    = fromIntegral bitmap,
1821       context       = [],
1822       lex_state     = [bol, 0],
1823         -- we begin in the layout state if toplev_layout is set
1824       alr_pending_implicit_tokens = [],
1825       alr_next_token = Nothing,
1826       alr_last_loc = noSrcSpan,
1827       alr_context = [],
1828       alr_expecting_ocurly = Nothing
1829     }
1830     where
1831       bitmap = genericsBit `setBitIf` dopt Opt_Generics flags
1832                .|. ffiBit            `setBitIf` dopt Opt_ForeignFunctionInterface flags
1833                .|. parrBit           `setBitIf` dopt Opt_PArr         flags
1834                .|. arrowsBit         `setBitIf` dopt Opt_Arrows       flags
1835                .|. thBit             `setBitIf` dopt Opt_TemplateHaskell flags
1836                .|. qqBit             `setBitIf` dopt Opt_QuasiQuotes flags
1837                .|. ipBit             `setBitIf` dopt Opt_ImplicitParams flags
1838                .|. explicitForallBit `setBitIf` dopt Opt_ExplicitForAll flags
1839                .|. bangPatBit        `setBitIf` dopt Opt_BangPatterns flags
1840                .|. tyFamBit          `setBitIf` dopt Opt_TypeFamilies flags
1841                .|. haddockBit        `setBitIf` dopt Opt_Haddock      flags
1842                .|. magicHashBit      `setBitIf` dopt Opt_MagicHash    flags
1843                .|. kindSigsBit       `setBitIf` dopt Opt_KindSignatures flags
1844                .|. recursiveDoBit    `setBitIf` dopt Opt_RecursiveDo flags
1845                .|. recBit            `setBitIf` dopt Opt_DoRec  flags
1846                .|. recBit            `setBitIf` dopt Opt_Arrows flags
1847                .|. unicodeSyntaxBit  `setBitIf` dopt Opt_UnicodeSyntax flags
1848                .|. unboxedTuplesBit  `setBitIf` dopt Opt_UnboxedTuples flags
1849                .|. standaloneDerivingBit `setBitIf` dopt Opt_StandaloneDeriving flags
1850                .|. transformComprehensionsBit `setBitIf` dopt Opt_TransformListComp flags
1851                .|. rawTokenStreamBit `setBitIf` dopt Opt_KeepRawTokenStream flags
1852                .|. newQualOpsBit `setBitIf` dopt Opt_NewQualifiedOperators flags
1853                .|. alternativeLayoutRuleBit `setBitIf` dopt Opt_AlternativeLayoutRule flags
1854       --
1855       setBitIf :: Int -> Bool -> Int
1856       b `setBitIf` cond | cond      = bit b
1857                         | otherwise = 0
1858
1859 addWarning :: DynFlag -> SrcSpan -> SDoc -> P ()
1860 addWarning option srcspan warning
1861  = P $ \s@PState{messages=(ws,es), dflags=d} ->
1862        let warning' = mkWarnMsg srcspan alwaysQualify warning
1863            ws' = if dopt option d then ws `snocBag` warning' else ws
1864        in POk s{messages=(ws', es)} ()
1865
1866 getMessages :: PState -> Messages
1867 getMessages PState{messages=ms} = ms
1868
1869 getContext :: P [LayoutContext]
1870 getContext = P $ \s@PState{context=ctx} -> POk s ctx
1871
1872 setContext :: [LayoutContext] -> P ()
1873 setContext ctx = P $ \s -> POk s{context=ctx} ()
1874
1875 popContext :: P ()
1876 popContext = P $ \ s@(PState{ buffer = buf, context = ctx, 
1877                               last_len = len, last_loc = last_loc }) ->
1878   case ctx of
1879         (_:tl) -> POk s{ context = tl } ()
1880         []     -> PFailed last_loc (srcParseErr buf len)
1881
1882 -- Push a new layout context at the indentation of the last token read.
1883 -- This is only used at the outer level of a module when the 'module'
1884 -- keyword is missing.
1885 pushCurrentContext :: P ()
1886 pushCurrentContext = P $ \ s@PState{ last_loc=loc, context=ctx } -> 
1887     POk s{context = Layout (srcSpanStartCol loc) : ctx} ()
1888
1889 getOffside :: P Ordering
1890 getOffside = P $ \s@PState{last_loc=loc, context=stk} ->
1891                 let offs = srcSpanStartCol loc in
1892                 let ord = case stk of
1893                         (Layout n:_) -> --trace ("layout: " ++ show n ++ ", offs: " ++ show offs) $ 
1894                                         compare offs n
1895                         _            -> GT
1896                 in POk s ord
1897
1898 -- ---------------------------------------------------------------------------
1899 -- Construct a parse error
1900
1901 srcParseErr
1902   :: StringBuffer       -- current buffer (placed just after the last token)
1903   -> Int                -- length of the previous token
1904   -> Message
1905 srcParseErr buf len
1906   = hcat [ if null token 
1907              then ptext (sLit "parse error (possibly incorrect indentation)")
1908              else hcat [ptext (sLit "parse error on input "),
1909                         char '`', text token, char '\'']
1910     ]
1911   where token = lexemeToString (offsetBytes (-len) buf) len
1912
1913 -- Report a parse failure, giving the span of the previous token as
1914 -- the location of the error.  This is the entry point for errors
1915 -- detected during parsing.
1916 srcParseFail :: P a
1917 srcParseFail = P $ \PState{ buffer = buf, last_len = len,       
1918                             last_loc = last_loc } ->
1919     PFailed last_loc (srcParseErr buf len)
1920
1921 -- A lexical error is reported at a particular position in the source file,
1922 -- not over a token range.
1923 lexError :: String -> P a
1924 lexError str = do
1925   loc <- getSrcLoc
1926   (AI end buf) <- getInput
1927   reportLexError loc end buf str
1928
1929 -- -----------------------------------------------------------------------------
1930 -- This is the top-level function: called from the parser each time a
1931 -- new token is to be read from the input.
1932
1933 lexer :: (Located Token -> P a) -> P a
1934 lexer cont = do
1935   alr <- extension alternativeLayoutRule
1936   let lexTokenFun = if alr then lexTokenAlr else lexToken
1937   tok@(L _span _tok__) <- lexTokenFun
1938   --trace ("token: " ++ show _tok__) $ do
1939   cont tok
1940
1941 lexTokenAlr :: P (Located Token)
1942 lexTokenAlr = do mPending <- popPendingImplicitToken
1943                  t <- case mPending of
1944                       Nothing ->
1945                           do mNext <- popNextToken
1946                              t <- case mNext of
1947                                   Nothing -> lexToken
1948                                   Just next -> return next
1949                              alternativeLayoutRuleToken t
1950                       Just t ->
1951                           return t
1952                  setAlrLastLoc (getLoc t)
1953                  case unLoc t of
1954                      ITwhere -> setAlrExpectingOCurly (Just ALRLayoutWhere)
1955                      ITlet   -> setAlrExpectingOCurly (Just ALRLayoutLet)
1956                      ITof    -> setAlrExpectingOCurly (Just ALRLayoutOf)
1957                      ITdo    -> setAlrExpectingOCurly (Just ALRLayoutDo)
1958                      _       -> return ()
1959                  return t
1960
1961 alternativeLayoutRuleToken :: Located Token -> P (Located Token)
1962 alternativeLayoutRuleToken t
1963     = do context <- getALRContext
1964          lastLoc <- getAlrLastLoc
1965          mExpectingOCurly <- getAlrExpectingOCurly
1966          let thisLoc = getLoc t
1967              thisCol = srcSpanStartCol thisLoc
1968              newLine = (lastLoc == noSrcSpan)
1969                     || (srcSpanStartLine thisLoc > srcSpanEndLine lastLoc)
1970          case (unLoc t, context, mExpectingOCurly) of
1971              -- This case handles a GHC extension to the original H98
1972              -- layout rule...
1973              (ITocurly, _, Just _) ->
1974                  do setAlrExpectingOCurly Nothing
1975                     setALRContext (ALRNoLayout (containsCommas ITocurly) : context)
1976                     return t
1977              -- ...and makes this case unnecessary
1978              {-
1979              -- I think our implicit open-curly handling is slightly
1980              -- different to John's, in how it interacts with newlines
1981              -- and "in"
1982              (ITocurly, _, Just _) ->
1983                  do setAlrExpectingOCurly Nothing
1984                     setNextToken t
1985                     lexTokenAlr
1986              -}
1987              (_, ALRLayout _ col : ls, Just expectingOCurly)
1988               | (thisCol > col) ||
1989                 (thisCol == col &&
1990                  isNonDecreasingIntentation expectingOCurly) ->
1991                  do setAlrExpectingOCurly Nothing
1992                     setALRContext (ALRLayout expectingOCurly thisCol : context)
1993                     setNextToken t
1994                     return (L thisLoc ITocurly)
1995               | otherwise ->
1996                  do setAlrExpectingOCurly Nothing
1997                     setPendingImplicitTokens [L lastLoc ITccurly]
1998                     setNextToken t
1999                     return (L lastLoc ITocurly)
2000              (_, _, Just expectingOCurly) ->
2001                  do setAlrExpectingOCurly Nothing
2002                     setALRContext (ALRLayout expectingOCurly thisCol : context)
2003                     setNextToken t
2004                     return (L thisLoc ITocurly)
2005              -- We do the [] cases earlier than in the spec, as we
2006              -- have an actual EOF token
2007              (ITeof, ALRLayout _ _ : ls, _) ->
2008                  do setALRContext ls
2009                     setNextToken t
2010                     return (L thisLoc ITccurly)
2011              (ITeof, _, _) ->
2012                  return t
2013              -- the other ITeof case omitted; general case below covers it
2014              (ITin, ALRLayout ALRLayoutLet _ : ls, _)
2015               | newLine ->
2016                  do setPendingImplicitTokens [t]
2017                     setALRContext ls
2018                     return (L thisLoc ITccurly)
2019              (_, ALRLayout _ col : ls, _)
2020               | newLine && thisCol == col ->
2021                  do setNextToken t
2022                     return (L thisLoc ITsemi)
2023               | newLine && thisCol < col ->
2024                  do setALRContext ls
2025                     setNextToken t
2026                     -- Note that we use lastLoc, as we may need to close
2027                     -- more layouts, or give a semicolon
2028                     return (L lastLoc ITccurly)
2029              (u, _, _)
2030               | isALRopen u ->
2031                  do setALRContext (ALRNoLayout (containsCommas u) : context)
2032                     return t
2033              (u, _, _)
2034               | isALRclose u ->
2035                  case context of
2036                  ALRLayout _ _ : ls ->
2037                      do setALRContext ls
2038                         setNextToken t
2039                         return (L thisLoc ITccurly)
2040                  ALRNoLayout _ : ls ->
2041                      do setALRContext ls
2042                         return t
2043                  [] ->
2044                      -- XXX This is an error in John's code, but
2045                      -- it looks reachable to me at first glance
2046                      return t
2047              (ITin, ALRLayout ALRLayoutLet _ : ls, _) ->
2048                  do setALRContext ls
2049                     setPendingImplicitTokens [t]
2050                     return (L thisLoc ITccurly)
2051              (ITin, ALRLayout _ _ : ls, _) ->
2052                  do setALRContext ls
2053                     setNextToken t
2054                     return (L thisLoc ITccurly)
2055              -- the other ITin case omitted; general case below covers it
2056              (ITcomma, ALRLayout _ _ : ls, _)
2057               | topNoLayoutContainsCommas ls ->
2058                  do setALRContext ls
2059                     setNextToken t
2060                     return (L thisLoc ITccurly)
2061              (ITwhere, ALRLayout ALRLayoutDo _ : ls, _) ->
2062                  do setALRContext ls
2063                     setPendingImplicitTokens [t]
2064                     return (L thisLoc ITccurly)
2065              -- the other ITwhere case omitted; general case below covers it
2066              (_, _, _) -> return t
2067
2068 isALRopen :: Token -> Bool
2069 isALRopen ITcase   = True
2070 isALRopen ITif     = True
2071 isALRopen IToparen = True
2072 isALRopen ITobrack = True
2073 isALRopen ITocurly = True
2074 -- GHC Extensions:
2075 isALRopen IToubxparen = True
2076 isALRopen _        = False
2077
2078 isALRclose :: Token -> Bool
2079 isALRclose ITof     = True
2080 isALRclose ITthen   = True
2081 isALRclose ITcparen = True
2082 isALRclose ITcbrack = True
2083 isALRclose ITccurly = True
2084 -- GHC Extensions:
2085 isALRclose ITcubxparen = True
2086 isALRclose _        = False
2087
2088 isNonDecreasingIntentation :: ALRLayout -> Bool
2089 isNonDecreasingIntentation ALRLayoutDo = True
2090 isNonDecreasingIntentation _           = False
2091
2092 containsCommas :: Token -> Bool
2093 containsCommas IToparen = True
2094 containsCommas ITobrack = True
2095 -- John doesn't have {} as containing commas, but records contain them,
2096 -- which caused a problem parsing Cabal's Distribution.Simple.InstallDirs
2097 -- (defaultInstallDirs).
2098 containsCommas ITocurly = True
2099 -- GHC Extensions:
2100 containsCommas IToubxparen = True
2101 containsCommas _        = False
2102
2103 topNoLayoutContainsCommas :: [ALRContext] -> Bool
2104 topNoLayoutContainsCommas [] = False
2105 topNoLayoutContainsCommas (ALRLayout _ _ : ls) = topNoLayoutContainsCommas ls
2106 topNoLayoutContainsCommas (ALRNoLayout b : _) = b
2107
2108 lexToken :: P (Located Token)
2109 lexToken = do
2110   inp@(AI loc1 buf) <- getInput
2111   sc <- getLexState
2112   exts <- getExts
2113   case alexScanUser exts inp sc of
2114     AlexEOF -> do
2115         let span = mkSrcSpan loc1 loc1
2116         setLastToken span 0
2117         return (L span ITeof)
2118     AlexError (AI loc2 buf) ->
2119         reportLexError loc1 loc2 buf "lexical error"
2120     AlexSkip inp2 _ -> do
2121         setInput inp2
2122         lexToken
2123     AlexToken inp2@(AI end buf2) _ t -> do
2124         setInput inp2
2125         let span = mkSrcSpan loc1 end
2126         let bytes = byteDiff buf buf2
2127         span `seq` setLastToken span bytes
2128         t span buf bytes
2129
2130 reportLexError :: SrcLoc -> SrcLoc -> StringBuffer -> [Char] -> P a
2131 reportLexError loc1 loc2 buf str
2132   | atEnd buf = failLocMsgP loc1 loc2 (str ++ " at end of input")
2133   | otherwise =
2134   let 
2135         c = fst (nextChar buf)
2136   in
2137   if c == '\0' -- decoding errors are mapped to '\0', see utf8DecodeChar#
2138     then failLocMsgP loc2 loc2 (str ++ " (UTF-8 decoding error)")
2139     else failLocMsgP loc1 loc2 (str ++ " at character " ++ show c)
2140
2141 lexTokenStream :: StringBuffer -> SrcLoc -> DynFlags -> ParseResult [Located Token]
2142 lexTokenStream buf loc dflags = unP go initState
2143     where initState = mkPState buf loc (dopt_set (dopt_unset dflags Opt_Haddock) Opt_KeepRawTokenStream)
2144           go = do
2145             ltok <- lexer return
2146             case ltok of
2147               L _ ITeof -> return []
2148               _ -> liftM (ltok:) go
2149
2150 linePrags = Map.singleton "line" (begin line_prag2)
2151
2152 fileHeaderPrags = Map.fromList([("options", lex_string_prag IToptions_prag),
2153                                  ("options_ghc", lex_string_prag IToptions_prag),
2154                                  ("options_haddock", lex_string_prag ITdocOptions),
2155                                  ("language", token ITlanguage_prag),
2156                                  ("include", lex_string_prag ITinclude_prag)])
2157
2158 ignoredPrags = Map.fromList (map ignored pragmas)
2159                where ignored opt = (opt, nested_comment lexToken)
2160                      impls = ["hugs", "nhc98", "jhc", "yhc", "catch", "derive"]
2161                      options_pragmas = map ("options_" ++) impls
2162                      -- CFILES is a hugs-only thing.
2163                      pragmas = options_pragmas ++ ["cfiles", "contract"]
2164
2165 oneWordPrags = Map.fromList([("rules", rulePrag),
2166                            ("inline", token (ITinline_prag True)),
2167                            ("notinline", token (ITinline_prag False)),
2168                            ("specialize", token ITspec_prag),
2169                            ("source", token ITsource_prag),
2170                            ("warning", token ITwarning_prag),
2171                            ("deprecated", token ITdeprecated_prag),
2172                            ("scc", token ITscc_prag),
2173                            ("generated", token ITgenerated_prag),
2174                            ("core", token ITcore_prag),
2175                            ("unpack", token ITunpack_prag),
2176                            ("ann", token ITann_prag)])
2177
2178 twoWordPrags = Map.fromList([("inline conlike", token (ITinline_conlike_prag True)),
2179                              ("notinline conlike", token (ITinline_conlike_prag False)),
2180                              ("specialize inline", token (ITspec_inline_prag True)),
2181                              ("specialize notinline", token (ITspec_inline_prag False))])
2182
2183
2184 dispatch_pragmas :: Map String Action -> Action
2185 dispatch_pragmas prags span buf len = case Map.lookup (clean_pragma (lexemeToString buf len)) prags of
2186                                        Just found -> found span buf len
2187                                        Nothing -> lexError "unknown pragma"
2188
2189 known_pragma :: Map String Action -> AlexAccPred Int
2190 known_pragma prags _ _ len (AI _ buf) = (isJust $ Map.lookup (clean_pragma (lexemeToString (offsetBytes (- len) buf) len)) prags)
2191                                           && (nextCharIs buf (\c -> not (isAlphaNum c || c == '_')))
2192
2193 clean_pragma :: String -> String
2194 clean_pragma prag = canon_ws (map toLower (unprefix prag))
2195                     where unprefix prag' = case stripPrefix "{-#" prag' of
2196                                              Just rest -> rest
2197                                              Nothing -> prag'
2198                           canonical prag' = case prag' of
2199                                               "noinline" -> "notinline"
2200                                               "specialise" -> "specialize"
2201                                               "constructorlike" -> "conlike"
2202                                               _ -> prag'
2203                           canon_ws s = unwords (map canonical (words s))
2204 }