[project @ 2002-03-14 15:27:15 by simonpj]
[ghc-hetmet.git] / ghc / compiler / rename / ParseIface.y
index e3f1e21..0cc4a48 100644 (file)
@@ -1,4 +1,4 @@
-{-     Notes about the syntax of interface files
+{-     Notes about the syntax of interface files                 -*-haskell-*-
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 The header
 ~~~~~~~~~~
@@ -46,18 +46,19 @@ import Type         ( Kind, mkArrowKind, liftedTypeKind, openTypeKind, usageTypeKind )
 import ForeignCall     ( ForeignCall(..), CCallConv(..), CCallSpec(..), CCallTarget(..) )
 import Lex             
 
-import RnMonad         ( ParsedIface(..), ExportItem, IfaceDeprecs ) 
+import RnMonad         ( ParsedIface(..), IfaceDeprecs ) 
 import HscTypes         ( WhetherHasOrphans, IsBootInterface, GenAvailInfo(..), 
                           ImportVersion, WhatsImported(..),
-                          RdrAvailInfo )
+                          RdrAvailInfo, RdrExportItem )
 
 import RdrName          ( RdrName, mkRdrUnqual, mkIfaceOrig )
+import TyCon           ( DataConDetails(..) )
 import Name            ( OccName )
 import OccName          ( mkSysOccFS,
                          tcName, varName, dataName, clsName, tvName,
                          EncodedFS 
                        )
-import Module           ( ModuleName, PackageName, mkSysModuleNameFS, mkModule )
+import Module           ( ModuleName, PackageName, mkSysModuleNameFS )
 import SrcLoc          ( SrcLoc )
 import CmdLineOpts     ( opt_InPackage, opt_IgnoreIfacePragmas )
 import Outputable
@@ -81,12 +82,7 @@ import FastString    ( tailFS )
  'case'        { ITcase }                      -- Haskell keywords
  'class'       { ITclass } 
  'data'        { ITdata } 
- 'default'     { ITdefault }
- 'deriving'    { ITderiving }
- 'do'          { ITdo }
- 'else'        { ITelse }
  'hiding'      { IThiding }
- 'if'          { ITif }
  'import'      { ITimport }
  'in'          { ITin }
  'infix'       { ITinfix }
@@ -94,11 +90,9 @@ import FastString    ( tailFS )
  'infixr'      { ITinfixr }
  'instance'    { ITinstance }
  'let'                 { ITlet }
- 'module'      { ITmodule }
  'newtype'     { ITnewtype }
  'of'          { ITof }
  'qualified'   { ITqualified }
- 'then'        { ITthen }
  'type'        { ITtype }
  'where'       { ITwhere }
 
@@ -114,24 +108,19 @@ import FastString ( tailFS )
 
  '__interface' { ITinterface }                 -- interface keywords
  '__export'    { IT__export }
- '__depends'   { ITdepends }
  '__forall'    { IT__forall }
  '__letrec'    { ITletrec }
  '__coerce'    { ITcoerce }
  '__inline_me'  { ITinlineMe }
  '__inline_call'{ ITinlineCall }
  '__DEFAULT'   { ITdefaultbranch }
- '__bot'       { ITbottom }
- '__integer'   { ITinteger_lit }
  '__float'     { ITfloat_lit }
  '__word'      { ITword_lit }
  '__int64'     { ITint64_lit }
  '__word64'    { ITword64_lit }
- '__rational'  { ITrational_lit }
  '__addr'      { ITaddr_lit }
  '__label'     { ITlabel_lit }
  '__litlit'    { ITlit_lit }
- '__string'    { ITstring_lit }
  '__ccall'     { ITccall $$ }
  '__scc'       { ITscc }
  '__sccC'       { ITsccAllCafs }
@@ -144,28 +133,26 @@ import FastString ( tailFS )
  '__U'         { ITunfold }
  '__S'         { ITstrict $$ }
  '__R'         { ITrules }
- '__M'         { ITcprinfo }
  '__D'         { ITdeprecated }
 
- '..'          { ITdotdot }                    -- reserved symbols
  '::'          { ITdcolon }
  '='           { ITequal }
  '\\'          { ITlam }
  '|'           { ITvbar }
- '<-'          { ITlarrow }
  '->'          { ITrarrow }
  '@'           { ITat }
  '~'           { ITtilde }
  '=>'          { ITdarrow }
  '-'           { ITminus }
  '!'           { ITbang }
+ '*'           { ITstar }
 
  '{'           { ITocurly }                    -- special symbols
  '}'           { ITccurly }
- '{|'          { ITocurlybar }                         -- special symbols
- '|}'          { ITccurlybar }                         -- special symbols
  '['           { ITobrack }
  ']'           { ITcbrack }
+ '[:'          { ITopabrack }
+ ':]'          { ITcpabrack }
  '('           { IToparen }
  ')'           { ITcparen }
  '(#'          { IToubxparen }
@@ -177,11 +164,8 @@ import FastString  ( tailFS )
  VARID         { ITvarid    $$ }               -- identifiers
  CONID         { ITconid    $$ }
  VARSYM        { ITvarsym   $$ }
- CONSYM        { ITconsym   $$ }
  QVARID        { ITqvarid   $$ }
  QCONID        { ITqconid   $$ }
- QVARSYM       { ITqvarsym  $$ }
- QCONSYM       { ITqconsym  $$ }
 
  IPDUPVARID    { ITdupipvarid   $$ }           -- GHC extension
  IPSPLITVARID          { ITsplitipvarid $$ }           -- GHC extension
@@ -193,8 +177,6 @@ import FastString   ( tailFS )
  INTEGER       { ITinteger  $$ }
  RATIONAL      { ITrational $$ }
  CLITLIT       { ITlitlit   $$ }
-
- UNKNOWN       { ITunknown  $$ }
 %%
 
 iface          :: { ParsedIface }
@@ -262,7 +244,7 @@ name_version_pair   :  var_occ version                              { ($1, $2) }
 
 --------------------------------------------------------------------------
 
-exports_part   :: { [ExportItem] }
+exports_part   :: { [RdrExportItem] }
 exports_part   :                                       { [] }
                | '__export' mod_name entities ';'
                        exports_part                    { ({-mkSysModuleNameFS-} $2, $3) : $5 }
@@ -292,16 +274,16 @@ val_occs  :: { [OccName] }
 
 --------------------------------------------------------------------------
 
-fix_decl_part :: { [RdrNameFixitySig] }
+fix_decl_part :: { [(RdrName,Fixity)] }
 fix_decl_part : {- empty -}                            { [] }
              | fix_decls ';'                           { $1 }
 
-fix_decls     :: { [RdrNameFixitySig] }
+fix_decls     :: { [(RdrName,Fixity)] }
 fix_decls     :                                        { [] }
              | fix_decl fix_decls                      { $1 : $2 }
 
-fix_decl :: { RdrNameFixitySig }
-fix_decl : src_loc fixity prec var_or_data_name                { FixitySig $4 (Fixity $3 $2) $1 }
+fix_decl    :: { (RdrName,Fixity) }
+fix_decl    : fixity prec var_or_data_name             { ($3, Fixity $2 $1) }
 
 fixity      :: { FixityDirection }
 fixity      : 'infixl'                                  { InfixL }
@@ -355,12 +337,16 @@ decl    : src_loc qvar_name '::' type maybe_idinfo
                        { TySynonym $3 $4 $6 $1 }
        | src_loc 'foreign' 'type' qtc_name                    
                        { ForeignType $4 Nothing DNType $1 }
-       | src_loc 'data' opt_decl_context qtc_name tv_bndrs constrs            
-                       { mkTyData DataType $3 $4 $5 $6 (length $6) Nothing $1 }
-       | src_loc 'newtype' opt_decl_context qtc_name tv_bndrs newtype_constr
-                       { mkTyData NewType $3 $4 $5 $6 1 Nothing $1 }
-       | src_loc 'class' opt_decl_context qtc_name tv_bndrs fds csigs
-                       { mkClassDecl $3 $4 $5 $6 $7 Nothing $1 }
+       | src_loc 'data' tycl_hdr constrs              
+                       { mkTyData DataType $3 $4 Nothing $1 }
+       | src_loc 'newtype' tycl_hdr newtype_constr
+                       { mkTyData NewType $3 (DataCons [$4]) Nothing $1 }
+       | src_loc 'class' tycl_hdr fds csigs
+                       { mkClassDecl $3 $4 $5 Nothing $1 }
+
+tycl_hdr :: { (RdrNameContext, RdrName, [RdrNameHsTyVar]) }
+       : context '=>' qtc_name tv_bndrs        { ($1, $3, $4) }
+       | qtc_name tv_bndrs                     { ([], $1, $2) }
 
 maybe_idinfo  :: { RdrName -> [HsIdInfo RdrName] }
 maybe_idinfo  : {- empty -}    { \_ -> [] }
@@ -388,10 +374,10 @@ maybe_idinfo  : {- empty -}       { \_ -> [] }
     -}
 
 pragma :: { Maybe (ParseResult [HsIdInfo RdrName]) }
-pragma : src_loc PRAGMA        { Just (parseIdInfo $2 PState{ bol = 0#, atbol = 1#,
-                                                       context = [],
-                                                       glasgow_exts = 1#,
-                                                       loc = $1 })
+pragma : src_loc PRAGMA        { let exts = ExtFlags {glasgowExtsEF = True,
+                                                      parrEF        = True}
+                                 in
+                                 Just (parseIdInfo $2 (mkPState $1 exts))
                                }
 
 -----------------------------------------------------------------------------
@@ -401,10 +387,9 @@ pragma     : src_loc PRAGMA        { Just (parseIdInfo $2 PState{ bol = 0#, atbol = 1#,
 rules_and_deprecs_part :: { () -> ([RdrNameRuleDecl], IfaceDeprecs) }
 rules_and_deprecs_part
   : {- empty -}                { \_ -> ([], Nothing) }
-  | src_loc PRAGMA     { \_ -> case parseRules $2 PState{ bol = 0#, atbol = 1#,
-                                                          context = [],
-                                                          glasgow_exts = 1#,
-                                                          loc = $1 } of
+  | src_loc PRAGMA     { \_ -> let exts = ExtFlags {glasgowExtsEF = True,
+                                                    parrEF        = True}
+                               in case parseRules $2 (mkPState $1 exts) of
                                        POk _ rds   -> rds
                                        PFailed err -> pprPanic "Rules/Deprecations parse failed" err
                        }
@@ -465,15 +450,13 @@ opt_version       :: { Version }
 opt_version    : version                       { $1 }
                | {- empty -}                   { initialVersion }
        
-opt_decl_context  :: { RdrNameContext }
-opt_decl_context  :                            { [] }
-                 | context '=>'                { $1 }
 
 ----------------------------------------------------------------------------
 
-constrs                :: { [RdrNameConDecl] {- empty for handwritten abstract -} }
-               :                       { [] }
-               | '=' constrs1          { $2 }
+constrs                :: { DataConDetails RdrNameConDecl }
+               :                       { Unknown }
+               | '='                   { DataCons [] }
+               | '=' constrs1          { DataCons $2 }
 
 constrs1       :: { [RdrNameConDecl] }
 constrs1       :  constr               { [$1] }
@@ -484,10 +467,10 @@ constr            :  src_loc ex_stuff qdata_name batypes          { mk_con_decl $3 $2 (VanillaCon
                |  src_loc ex_stuff qdata_name '{' fields1 '}'  { mk_con_decl $3 $2 (RecCon $5)     $1 }
                 -- We use "data_fs" so as to include ()
 
-newtype_constr :: { [RdrNameConDecl] {- Not allowed to be empty -} }
-newtype_constr : src_loc '=' ex_stuff qdata_name atype { [mk_con_decl $4 $3 (VanillaCon [unbangedType $5]) $1] }
+newtype_constr :: { RdrNameConDecl }
+newtype_constr : src_loc '=' ex_stuff qdata_name atype { mk_con_decl $4 $3 (VanillaCon [unbangedType $5]) $1 }
                | src_loc '=' ex_stuff qdata_name '{' qvar_name '::' atype '}'
-                                                       { [mk_con_decl $4 $3 (RecCon [([$6], unbangedType $8)]) $1] }
+                                                       { mk_con_decl $4 $3 (RecCon [([$6], unbangedType $8)]) $1 }
 
 ex_stuff :: { ([HsTyVarBndr RdrName], RdrNameContext) }
 ex_stuff       :                                       { ([],[]) }
@@ -547,7 +530,6 @@ types2              :  type ',' type                        { [$1,$3] }
 btype          :: { RdrNameHsType }
 btype          :  atype                                { $1 }
                |  btype atype                          { HsAppTy $1 $2 }
-               |  '__u' atype atype                    { HsUsageTy $2 $3 }
 
 atype          :: { RdrNameHsType }
 atype          :  qtc_name                             { HsTyVar $1 }
@@ -558,6 +540,7 @@ atype               :  qtc_name                             { HsTyVar $1 }
                |  '(' types2 ')'                       { HsTupleTy (mkHsTupCon tcName Boxed   $2) $2 }
                |  '(#' types0 '#)'                     { HsTupleTy (mkHsTupCon tcName Unboxed $2) $2 }
                |  '[' type ']'                         { HsListTy  $2 }
+               |  '[:' type ':]'                       { HsPArrTy $2 }
                |  '{' qcls_name atypes '}'             { mkHsDictTy $2 $3 }
                |  '{' ipvar_name '::' type '}'         { mkHsIParamTy $2 $4 }
                |  '(' type ')'                         { $2 }
@@ -579,7 +562,6 @@ ttype               : '__forall' tv_bndrs
 tbtype         :: { RdrNameHsType }
 tbtype         :  tatype                               { $1 }
                |  tbtype atype                         { HsAppTy $1 $2 }
-               |  '__u' atype atype                    { HsUsageTy $2 $3 }
 
 tatype         :: { RdrNameHsType }
 tatype         :  qtc_name                             { HsTyVar $1 }
@@ -588,6 +570,7 @@ tatype              :  qtc_name                             { HsTyVar $1 }
                |  '(' types2 ')'                       { HsTupleTy (mkHsTupCon tcName Boxed   $2) $2 }
                |  '(#' types0 '#)'                     { HsTupleTy (mkHsTupCon tcName Unboxed $2) $2 }
                |  '[' type ']'                         { HsListTy  $2 }
+               |  '[:' type ':]'                       { HsPArrTy $2 }
                |  '{' qcls_name atypes '}'             { mkHsDictTy $2 $3 }
                |  '{' ipvar_name '::' type '}'         { mkHsIParamTy $2 $4 }
                |  '(' type ')'                         { $2 }
@@ -607,18 +590,18 @@ mod_name  :: { ModuleName }
 ---------------------------------------------------
 var_fs          :: { EncodedFS }
                : VARID                 { $1 }
-               | 'as'                  { SLIT("as") }
-               | 'qualified'           { SLIT("qualified") }
-               | 'hiding'              { SLIT("hiding") }
-               | 'forall'              { SLIT("forall") }
-               | 'foreign'             { SLIT("foreign") }
-               | 'export'              { SLIT("export") }
-               | 'label'               { SLIT("label") }
-               | 'dynamic'             { SLIT("dynamic") }
-               | 'unsafe'              { SLIT("unsafe") }
-               | 'with'                { SLIT("with") }
-               | 'ccall'               { SLIT("ccall") }
-               | 'stdcall'             { SLIT("stdcall") }
+               | 'as'                  { FSLIT("as") }
+               | 'qualified'           { FSLIT("qualified") }
+               | 'hiding'              { FSLIT("hiding") }
+               | 'forall'              { FSLIT("forall") }
+               | 'foreign'             { FSLIT("foreign") }
+               | 'export'              { FSLIT("export") }
+               | 'label'               { FSLIT("label") }
+               | 'dynamic'             { FSLIT("dynamic") }
+               | 'unsafe'              { FSLIT("unsafe") }
+               | 'with'                { FSLIT("with") }
+               | 'ccall'               { FSLIT("ccall") }
+               | 'stdcall'             { FSLIT("stdcall") }
 
 var_occ                :: { OccName }
                :  var_fs               { mkSysOccFS varName $1 }
@@ -638,13 +621,6 @@ qvar_names1        :: { [RdrName] }
 qvar_names1    : qvar_name             { [$1] }
                | qvar_name qvar_names1 { $1 : $2 }
 
-var_names      :: { [RdrName] }
-var_names      :                       { [] }
-               | var_name var_names    { $1 : $2 }
-
-var_names1     :: { [RdrName] }
-var_names1     : var_name var_names    { $1 : $2 }
-
 ---------------------------------------------------
 
 data_occ       :: { OccName }
@@ -709,11 +685,10 @@ kind              :: { Kind }
                | akind '->' kind       { mkArrowKind $1 $3 }
 
 akind          :: { Kind }
-               : VARSYM                { if $1 == SLIT("*") then
-                                               liftedTypeKind
-                                         else if $1 == SLIT("?") then
+                : '*'                   { liftedTypeKind }
+               | VARSYM                { if $1 == FSLIT("?") then
                                                openTypeKind
-                                         else if $1 == SLIT("\36") then
+                                         else if $1 == FSLIT("\36") then
                                                 usageTypeKind  -- dollar
                                           else panic "ParseInterface: akind"
                                        }