X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2Frename%2FParseIface.y;h=26a1fc00c4e47b770ed3c7dbedd1f49dbf37cba7;hb=cae34044d89a87bd3da83b0e867b4a5d6994079a;hp=03bdde8eb305362195a69c2af849fc6c7990e424;hpb=1983c5a2f48f054cbbf738dd2a89d7c1f080c361;p=ghc-hetmet.git diff --git a/ghc/compiler/rename/ParseIface.y b/ghc/compiler/rename/ParseIface.y index 03bdde8..26a1fc0 100644 --- a/ghc/compiler/rename/ParseIface.y +++ b/ghc/compiler/rename/ParseIface.y @@ -1,3 +1,32 @@ +{- Notes about the syntax of interface files + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +The header +~~~~~~~~~~ + interface "edison" M 4 6 2 ! 406 Module M, version 4, from package 'edison', + Fixities version 6, rules version 2 + Interface syntax version 406 + ! means M contains orphans + +Import declarations +~~~~~~~~~~~~~~~~~~~ + import Foo ; To compile M I used nothing from Foo, but it's + below me in the hierarchy + + import Foo ! @ ; Ditto, but the ! means that Foo contains orphans + and the @ means that Foo is a boot interface + + import Foo :: 3 ; To compile M I used everything from Foo, which has + module version 3 + + import Foo :: 3 2 6 a 1 b 3 c 7 ; To compile M I used Foo. It had + module version 3 + fixity version 2 + rules version 6 + and some specific things besides. + +-} + + { module ParseIface ( parseIface, IfaceStuff(..) ) where @@ -5,113 +34,164 @@ module ParseIface ( parseIface, IfaceStuff(..) ) where import HsSyn -- quite a bit of stuff import RdrHsSyn -- oodles of synonyms -import HsDecls ( HsIdInfo(..), HsStrictnessInfo(..) ) -import HsTypes ( mkHsForAllTy ) +import HsTypes ( mkHsForAllTy, mkHsUsForAllTy, mkHsTupCon ) import HsCore -import Literal -import BasicTypes ( IfaceFlavour(..), Fixity(..), FixityDirection(..), NewOrData(..), Version ) +import Demand ( mkStrictnessInfo ) +import Literal ( Literal(..), mkMachInt, mkMachInt64, mkMachWord, mkMachWord64 ) +import BasicTypes ( Fixity(..), FixityDirection(..), + NewOrData(..), Version, initialVersion, Boxity(..) + ) +import CostCentre ( CostCentre(..), IsCafCC(..), IsDupdCC(..) ) +import CallConv ( cCallConv ) import HsPragmas ( noDataPragmas, noClassPragmas ) -import Kind ( Kind, mkArrowKind, mkBoxedTypeKind, mkTypeKind ) -import IdInfo ( ArgUsageInfo, FBTypeInfo, ArityInfo, exactArity ) -import PrimRep ( decodePrimRep ) +import Type ( Kind, mkArrowKind, boxedTypeKind, openTypeKind, UsageAnn(..) ) +import IdInfo ( ArityInfo, exactArity, CprInfo(..), InlinePragInfo(..) ) +import PrimOp ( CCall(..), CCallTarget(..) ) import Lex -import RnMonad ( ImportVersion, LocalVersion, ParsedIface(..), WhatsImported(..), - RdrNamePragma, ExportItem, RdrAvailInfo, GenAvailInfo(..) +import RnMonad ( ImportVersion, ParsedIface(..), WhatsImported(..), + RdrNamePragma, ExportItem, RdrAvailInfo, GenAvailInfo(..), + WhetherHasOrphans, IsBootInterface ) -import Bag ( emptyBag, unitBag, snocBag ) -import FiniteMap ( emptyFM, unitFM, addToFM, plusFM, bagToFM, FiniteMap ) -import Name ( OccName(..), isTCOcc, Provenance, SYN_IE(Module) ) +import RdrName ( RdrName, mkRdrUnqual, mkSysQual, mkSysUnqual, mkRdrNameWkr ) +import Name ( OccName, Provenance ) +import OccName ( mkSysOccFS, + tcName, varName, ipName, dataName, clsName, tvName, uvName, + EncodedFS + ) +import Module ( ModuleName, PackageName, mkSysModuleFS, mkModule ) import SrcLoc ( SrcLoc ) -import Maybes +import CmdLineOpts ( opt_InPackage ) import Outputable +import List ( insert ) +import GlaExts +import FastString ( tailFS ) } %name parseIface -%tokentype { IfaceToken } -%monad { IfM }{ thenIf }{ returnIf } -%lexer { lexIface } { ITeof } +%tokentype { Token } +%monad { P }{ thenP }{ returnP } +%lexer { lexer } { ITeof } %token - INTERFACE { ITinterface } - USAGES_PART { ITusages } - VERSIONS_PART { ITversions } - EXPORTS_PART { ITexports } - INSTANCE_MODULES_PART { ITinstance_modules } - INSTANCES_PART { ITinstances } - FIXITIES_PART { ITfixities } - DECLARATIONS_PART { ITdeclarations } - PRAGMAS_PART { ITpragmas } - DATA { ITdata } - TYPE { ITtype } - NEWTYPE { ITnewtype } - DERIVING { ITderiving } - CLASS { ITclass } - WHERE { ITwhere } - INSTANCE { ITinstance } - INFIXL { ITinfixl } - INFIXR { ITinfixr } - INFIX { ITinfix } - FORALL { ITforall } - BANG { ITbang } - VBAR { ITvbar } - DCOLON { ITdcolon } - COMMA { ITcomma } - DARROW { ITdarrow } - DOTDOT { ITdotdot } - EQUAL { ITequal } - OCURLY { ITocurly } - OBRACK { ITobrack } - OPAREN { IToparen } - RARROW { ITrarrow } - CCURLY { ITccurly } - CBRACK { ITcbrack } - CPAREN { ITcparen } - SEMI { ITsemi } - - VARID { ITvarid $$ } - CONID { ITconid $$ } - VARSYM { ITvarsym $$ } - CONSYM { ITconsym $$ } - QVARID { ITqvarid $$ } - QCONID { ITqconid $$ } - QVARSYM { ITqvarsym $$ } - QCONSYM { ITqconsym $$ } - - STRICT_PART { ITstrict $$ } - TYPE_PART { ITtysig _ _ } - ARITY_PART { ITarity } - UNFOLD_PART { ITunfold $$ } - SPECIALISE { ITspecialise } - BOTTOM { ITbottom } - LAM { ITlam } - BIGLAM { ITbiglam } - CASE { ITcase } - PRIM_CASE { ITprim_case } - LET { ITlet } - LETREC { ITletrec } - IN { ITin } - OF { ITof } - COERCE { ITcoerce } - ATSIGN { ITatsign } - CCALL { ITccall $$ } - SCC { ITscc $$ } - INLINE_CALL { ITinline } - - CHAR { ITchar $$ } - STRING { ITstring $$ } - INTEGER { ITinteger $$ } - RATIONAL { ITrational $$ } - - INTEGER_LIT { ITinteger_lit } - FLOAT_LIT { ITfloat_lit } - RATIONAL_LIT { ITrational_lit } - ADDR_LIT { ITaddr_lit } - LIT_LIT { ITlit_lit } - STRING_LIT { ITstring_lit } - - UNKNOWN { ITunknown $$ } + 'as' { ITas } + '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 } + 'infixl' { ITinfixl } + 'infixr' { ITinfixr } + 'instance' { ITinstance } + 'let' { ITlet } + 'module' { ITmodule } + 'newtype' { ITnewtype } + 'of' { ITof } + 'qualified' { ITqualified } + 'then' { ITthen } + 'type' { ITtype } + 'where' { ITwhere } + + 'forall' { ITforall } -- GHC extension keywords + 'foreign' { ITforeign } + 'export' { ITexport } + 'label' { ITlabel } + 'dynamic' { ITdynamic } + 'unsafe' { ITunsafe } + 'with' { ITwith } + 'stdcall' { ITstdcallconv } + 'ccall' { ITccallconv } + + '__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 } + + '__u' { ITusage } + '__fuall' { ITfuall } + + '__A' { ITarity } + '__P' { ITspecialise } + '__C' { ITnocaf } + '__U' { ITunfold $$ } + '__S' { ITstrict $$ } + '__R' { ITrules } + '__M' { ITcprinfo } + '__D' { ITdeprecated } + + '..' { ITdotdot } -- reserved symbols + '::' { ITdcolon } + '=' { ITequal } + '\\' { ITlam } + '|' { ITvbar } + '<-' { ITlarrow } + '->' { ITrarrow } + '@' { ITat } + '~' { ITtilde } + '=>' { ITdarrow } + '-' { ITminus } + '!' { ITbang } + + '/\\' { ITbiglam } -- GHC-extension symbols + + '{' { ITocurly } -- special symbols + '}' { ITccurly } + '[' { ITobrack } + ']' { ITcbrack } + '(' { IToparen } + ')' { ITcparen } + '(#' { IToubxparen } + '#)' { ITcubxparen } + ';' { ITsemi } + ',' { ITcomma } + + VARID { ITvarid $$ } -- identifiers + CONID { ITconid $$ } + VARSYM { ITvarsym $$ } + CONSYM { ITconsym $$ } + QVARID { ITqvarid $$ } + QCONID { ITqconid $$ } + QVARSYM { ITqvarsym $$ } + QCONSYM { ITqconsym $$ } + + IPVARID { ITipvarid $$ } -- GHC extension + + PRAGMA { ITpragma $$ } + + CHAR { ITchar $$ } + STRING { ITstring $$ } + INTEGER { ITinteger $$ } + RATIONAL { ITrational $$ } + CLITLIT { ITlitlit $$ } + + UNKNOWN { ITunknown $$ } %% -- iface_stuff is the main production. @@ -120,191 +200,276 @@ import Outputable -- (c) the IdInfo part of a signature (same reason) iface_stuff :: { IfaceStuff } -iface_stuff : iface { PIface $1 } - | type { PType $1 } - | id_info { PIdInfo $1 } +iface_stuff : iface { PIface $1 } + | type { PType $1 } + | id_info { PIdInfo $1 } + | '__R' rules { PRules $2 } + | '__D' deprecs { PDeprecs $2 } iface :: { ParsedIface } -iface : INTERFACE CONID INTEGER checkVersion - inst_modules_part - usages_part - exports_part fixities_part - instances_part +iface : '__interface' package mod_name + version sub_versions + orphans checkVersion 'where' + exports_part + import_part + fix_decl_part + instance_decl_part decls_part - { ParsedIface - $2 -- Module name - (fromInteger $3) -- Module version - $6 -- Usages - $7 -- Exports - $5 -- Instance modules - $8 -- Fixities - $10 -- Decls - $9 -- Local instances - } - - -usages_part :: { [ImportVersion OccName] } -usages_part : USAGES_PART module_stuff_pairs { $2 } - | { [] } - -module_stuff_pairs :: { [ImportVersion OccName] } -module_stuff_pairs : { [] } - | module_stuff_pair module_stuff_pairs { $1 : $2 } - -module_stuff_pair :: { ImportVersion OccName } -module_stuff_pair : mod_name opt_bang INTEGER DCOLON whats_imported SEMI - { ($1, $2, fromInteger $3, $5) } + rules_and_deprecs + { ParsedIface { + pi_mod = mkModule $3 $2, -- Module itself + pi_vers = $4, -- Module version + pi_orphan = $6, + pi_exports = $9, -- Exports + pi_usages = $10, -- Usages + pi_fixity = (fst $5,$11), -- Fixies + pi_insts = $12, -- Local instances + pi_decls = $13, -- Decls + pi_rules = (snd $5,fst $14), -- Rules + pi_deprecs = snd $14 -- Deprecations + } } + +-- Versions for fixities and rules (optional) +sub_versions :: { (Version,Version) } + : '[' version version ']' { ($2,$3) } + | {- empty -} { (initialVersion, initialVersion) } -whats_imported :: { WhatsImported OccName } -whats_imported : { Everything } - | name_version_pair name_version_pairs { Specifically ($1:$2) } +-------------------------------------------------------------------------- + +import_part :: { [ImportVersion OccName] } +import_part : { [] } + | import_decl import_part { $1 : $2 } + +import_decl :: { ImportVersion OccName } +import_decl : 'import' mod_name orphans is_boot whats_imported ';' + { (mkSysModuleFS $2, $3, $4, $5) } -versions_part :: { [LocalVersion OccName] } -versions_part : VERSIONS_PART name_version_pairs { $2 } - | { [] } +orphans :: { WhetherHasOrphans } +orphans : { False } + | '!' { True } + +is_boot :: { IsBootInterface } +is_boot : { False } + | '@' { True } + +whats_imported :: { WhatsImported OccName } +whats_imported : { NothingAtAll } + | '::' version { Everything $2 } + | '::' version version version name_version_pairs { Specifically $2 $3 $4 $5 } -name_version_pairs :: { [LocalVersion OccName] } +name_version_pairs :: { [(OccName, Version)] } name_version_pairs : { [] } | name_version_pair name_version_pairs { $1 : $2 } -name_version_pair :: { LocalVersion OccName } -name_version_pair : entity_occ INTEGER { ($1, fromInteger $2) --------------------------------------------------------------------------- - } +name_version_pair :: { (OccName, Version) } +name_version_pair : var_occ version { ($1, $2) } + | tc_occ version { ($1, $2) } -exports_part :: { [ExportItem] } -exports_part : EXPORTS_PART export_items { $2 } - | { [] } -export_items :: { [ExportItem] } -export_items : { [] } - | opt_bang mod_name entities SEMI export_items { ($2,$1,$3) : $5 } +-------------------------------------------------------------------------- -opt_bang :: { IfaceFlavour } -opt_bang : { HiFile } - | BANG { HiBootFile } +exports_part :: { [ExportItem] } +exports_part : { [] } + | '__export' mod_name entities ';' + exports_part { (mkSysModuleFS $2, $3) : $5 } entities :: { [RdrAvailInfo] } -entities : { [] } - | entity entities { $1 : $2 } +entities : { [] } + | entity entities { $1 : $2 } entity :: { RdrAvailInfo } -entity : entity_occ { if isTCOcc $1 - then AvailTC $1 [$1] - else Avail $1 } - | entity_occ stuff_inside { AvailTC $1 ($1:$2) } - | entity_occ VBAR stuff_inside { AvailTC $1 $3 } +entity : var_occ { Avail $1 } + | tc_occ { AvailTC $1 [$1] } + | tc_occ '|' stuff_inside { AvailTC $1 $3 } + | tc_occ stuff_inside { AvailTC $1 (insert $1 $2) } + -- The 'insert' is important. The stuff_inside is sorted, and + -- insert keeps it that way. This is important when comparing + -- against the new interface file, which has the stuff in sorted order + -- If they differ, we'll bump the module number when it's unnecessary stuff_inside :: { [OccName] } -stuff_inside : OPAREN val_occs1 CPAREN { $2 --------------------------------------------------------------------------- - } - -inst_modules_part :: { [Module] } -inst_modules_part : { [] } - | INSTANCE_MODULES_PART mod_list { $2 } +stuff_inside : '{' val_occs '}' { $2 } -mod_list :: { [Module] } -mod_list : { [] } - | mod_name mod_list { $1 : $2 --------------------------------------------------------------------------- - } +val_occ :: { OccName } + : var_occ { $1 } + | data_occ { $1 } -fixities_part :: { [(OccName,Fixity)] } -fixities_part : { [] } - | FIXITIES_PART fixes { $2 } +val_occs :: { [OccName] } + : val_occ { [$1] } + | val_occ val_occs { $1 : $2 } -fixes :: { [(OccName,Fixity)] } -fixes : { [] } - | fix fixes { $1 : $2 } -fix :: { (OccName, Fixity) } -fix : INFIXL INTEGER val_occ SEMI { ($3, Fixity (fromInteger $2) InfixL) } - | INFIXR INTEGER val_occ SEMI { ($3, Fixity (fromInteger $2) InfixR) } - | INFIX INTEGER val_occ SEMI { ($3, Fixity (fromInteger $2) InfixN) -------------------------------------------------------------------------- - } -decls_part :: { [(Version, RdrNameHsDecl)] } -decls_part : { [] } - | DECLARATIONS_PART topdecls { $2 } +fix_decl_part :: { [RdrNameFixitySig] } +fix_decl_part : {- empty -} { [] } + | fix_decls ';' { $1 } -topdecls :: { [(Version, RdrNameHsDecl)] } -topdecls : { [] } - | version topdecl topdecls { ($1,$2) : $3 } +fix_decls :: { [RdrNameFixitySig] } +fix_decls : { [] } + | fix_decl fix_decls { $1 : $2 } -version :: { Version } -version : INTEGER { fromInteger $1 } - -topdecl :: { RdrNameHsDecl } -topdecl : src_loc TYPE tc_name tv_bndrs EQUAL type SEMI - { TyD (TySynonym $3 $4 $6 $1) } - | src_loc DATA decl_context tc_name tv_bndrs constrs deriving SEMI - { TyD (TyData DataType $3 $4 $5 $6 $7 noDataPragmas $1) } - | src_loc NEWTYPE decl_context tc_name tv_bndrs newtype_constr deriving SEMI - { TyD (TyData NewType $3 $4 $5 $6 $7 noDataPragmas $1) } - | src_loc CLASS decl_context tc_name tv_bndrs csigs SEMI - { ClD (mkClassDecl $3 $4 $5 $6 EmptyMonoBinds noClassPragmas $1) } - | src_loc var_name TYPE_PART - { - case $3 of - ITtysig sig idinfo_part -> -- Parse type and idinfo lazily - let info = - case idinfo_part of - Nothing -> [] - Just s -> case parseIface s $1 of - Succeeded (PIdInfo id_info) -> id_info - other -> pprPanic "IdInfo parse failed" - (ppr $2) - - tp = case parseIface sig $1 of - Succeeded (PType tp) -> tp - other -> pprPanic "Id type parse failed" - (ppr $2) - in - SigD (IfaceSig $2 tp info $1) } - -decl_context :: { RdrNameContext } -decl_context : { [] } - | OCURLY context_list1 CCURLY DARROW { $2 } +fix_decl :: { RdrNameFixitySig } +fix_decl : src_loc fixity prec var_or_data_name { FixitySig $4 (Fixity $3 $2) $1 } +fixity :: { FixityDirection } +fixity : 'infixl' { InfixL } + | 'infixr' { InfixR } + | 'infix' { InfixN } + +prec :: { Int } +prec : INTEGER { fromInteger $1 } + +----------------------------------------------------------------------------- csigs :: { [RdrNameSig] } csigs : { [] } - | WHERE OCURLY csigs1 CCURLY { $3 } + | 'where' '{' csigs1 '}' { $3 } csigs1 :: { [RdrNameSig] } -csigs1 : csig { [$1] } - | csig SEMI csigs1 { $1 : $3 } +csigs1 : { [] } + | csig ';' csigs1 { $1 : $3 } csig :: { RdrNameSig } -csig : src_loc var_name DCOLON type { ClassOpSig $2 Nothing $4 $1 } - | src_loc var_name EQUAL DCOLON type { ClassOpSig $2 - (Just (error "Un-filled-in default method")) - $5 $1 } ----------------------------------------------------------------- +csig : src_loc var_name '::' type { mkClassOpSig False $2 $4 $1 } + | src_loc var_name '=' '::' type { mkClassOpSig True $2 $5 $1 } + +-------------------------------------------------------------------------- +instance_decl_part :: { [RdrNameInstDecl] } +instance_decl_part : {- empty -} { [] } + | instance_decl_part inst_decl { $2 : $1 } + +inst_decl :: { RdrNameInstDecl } +inst_decl : src_loc 'instance' type '=' var_name ';' + { InstDecl $3 + EmptyMonoBinds {- No bindings -} + [] {- No user pragmas -} + (Just $5) {- Dfun id -} + $1 + } + +-------------------------------------------------------------------------- + +decls_part :: { [(Version, RdrNameHsDecl)] } +decls_part + : {- empty -} { [] } + | opt_version decl ';' decls_part { ($1,$2):$4 } + +decl :: { RdrNameHsDecl } +decl : src_loc var_name '::' type maybe_idinfo + { SigD (IfaceSig $2 $4 ($5 $2) $1) } + | src_loc 'type' tc_name tv_bndrs '=' type + { TyClD (TySynonym $3 $4 $6 $1) } + | src_loc 'data' opt_decl_context tc_name tv_bndrs constrs + { TyClD (TyData DataType $3 $4 $5 $6 (length $6) Nothing noDataPragmas $1) } + | src_loc 'newtype' opt_decl_context tc_name tv_bndrs newtype_constr + { TyClD (TyData NewType $3 $4 $5 $6 1 Nothing noDataPragmas $1) } + | src_loc 'class' opt_decl_context tc_name tv_bndrs fds csigs + { TyClD (mkClassDecl $3 $4 $5 $6 $7 EmptyMonoBinds + noClassPragmas $1) } + +maybe_idinfo :: { RdrName -> [HsIdInfo RdrName] } +maybe_idinfo : {- empty -} { \_ -> [] } + | pragma { \x -> case $1 of + POk _ (PIdInfo id_info) -> id_info + PFailed err -> + pprPanic "IdInfo parse failed" + (vcat [ppr x, err]) + } + +pragma :: { ParseResult IfaceStuff } +pragma : src_loc PRAGMA { parseIface $2 PState{ bol = 0#, atbol = 1#, + context = [], + glasgow_exts = 1#, + loc = $1 } + } + +----------------------------------------------------------------------------- + +rules_and_deprecs :: { ([RdrNameRuleDecl], [RdrNameDeprecation]) } +rules_and_deprecs : {- empty -} { ([], []) } + | rules_and_deprecs rule_or_deprec + { let + append2 (xs1,ys1) (xs2,ys2) = + (xs1 `app` xs2, ys1 `app` ys2) + xs `app` [] = xs -- performance paranoia + xs `app` ys = xs ++ ys + in append2 $1 $2 + } + +rule_or_deprec :: { ([RdrNameRuleDecl], [RdrNameDeprecation]) } +rule_or_deprec : pragma { case $1 of + POk _ (PRules rules) -> (rules,[]) + POk _ (PDeprecs deprecs) -> ([],deprecs) + PFailed err -> pprPanic "Rules/Deprecations parse failed" err + } + +----------------------------------------------------------------------------- + +rules :: { [RdrNameRuleDecl] } + : {- empty -} { [] } + | rule ';' rules { $1:$3 } + +rule :: { RdrNameRuleDecl } +rule : src_loc STRING rule_forall qvar_name + core_args '=' core_expr { IfaceRule $2 $3 $4 $5 $7 $1 } + +rule_forall :: { [UfBinder RdrName] } +rule_forall : '__forall' '{' core_bndrs '}' { $3 } + +----------------------------------------------------------------------------- + +deprecs :: { [RdrNameDeprecation] } +deprecs : {- empty -} { [] } + | deprec ';' deprecs { $1 : $3 } + +deprec :: { RdrNameDeprecation } +deprec : src_loc STRING { Deprecation (IEModuleContents undefined) $2 $1 } + | src_loc deprec_name STRING { Deprecation $2 $3 $1 } + +-- SUP: TEMPORARY HACK +deprec_name :: { RdrNameIE } + : var_name { IEVar $1 } + | data_name { IEThingAbs $1 } + +----------------------------------------------------------------------------- + +version :: { Version } +version : INTEGER { fromInteger $1 } + +opt_version :: { Version } +opt_version : version { $1 } + | {- empty -} { initialVersion } + +opt_decl_context :: { RdrNameContext } +opt_decl_context : { [] } + | context '=>' { $1 } + +---------------------------------------------------------------------------- constrs :: { [RdrNameConDecl] {- empty for handwritten abstract -} } - : { [] } - | EQUAL constrs1 { $2 } + : { [] } + | '=' constrs1 { $2 } constrs1 :: { [RdrNameConDecl] } constrs1 : constr { [$1] } - | constr VBAR constrs1 { $1 : $3 } + | constr '|' constrs1 { $1 : $3 } constr :: { RdrNameConDecl } -constr : src_loc data_name batypes { ConDecl $2 [] (VanillaCon $3) $1 } - | src_loc data_name OCURLY fields1 CCURLY { ConDecl $2 [] (RecCon $4) $1 } +constr : src_loc ex_stuff data_name batypes { mk_con_decl $3 $2 (VanillaCon $4) $1 } + | src_loc ex_stuff data_name '{' fields1 '}' { mk_con_decl $3 $2 (RecCon $5) $1 } + -- We use "data_fs" so as to include () -newtype_constr :: { [RdrNameConDecl] {- Empty if handwritten abstract -} } -newtype_constr : { [] } - | src_loc EQUAL data_name atype { [ConDecl $3 [] (NewCon $4) $1] } +newtype_constr :: { [RdrNameConDecl] {- Not allowed to be empty -} } +newtype_constr : src_loc '=' ex_stuff data_name atype { [mk_con_decl $4 $3 (VanillaCon [Unbanged $5]) $1] } + | src_loc '=' ex_stuff data_name '{' var_name '::' atype '}' + { [mk_con_decl $4 $3 (RecCon [([$6], Unbanged $8)]) $1] } -deriving :: { Maybe [RdrName] } - : { Nothing } - | DERIVING OPAREN tc_names1 CPAREN { Just $3 } +ex_stuff :: { ([HsTyVarBndr RdrName], RdrNameContext) } +ex_stuff : { ([],[]) } + | '__forall' tv_bndrs opt_context '=>' { ($2,$3) } batypes :: { [RdrNameBangType] } batypes : { [] } @@ -312,92 +477,122 @@ batypes : { [] } batype :: { RdrNameBangType } batype : atype { Unbanged $1 } - | BANG atype { Banged $2 } + | '!' atype { Banged $2 } + | '!' '!' atype { Unpacked $3 } fields1 :: { [([RdrName], RdrNameBangType)] } fields1 : field { [$1] } - | field COMMA fields1 { $1 : $3 } + | field ',' fields1 { $1 : $3 } field :: { ([RdrName], RdrNameBangType) } -field : var_names1 DCOLON type { ($1, Unbanged $3) } - | var_names1 DCOLON BANG type { ($1, Banged $4) } +field : var_names1 '::' type { ($1, Unbanged $3) } + | var_names1 '::' '!' type { ($1, Banged $4) } + | var_names1 '::' '!' '!' type { ($1, Unpacked $5) } -------------------------------------------------------------------------- type :: { RdrNameHsType } -type : FORALL forall context DARROW type { mkHsForAllTy $2 $3 $5 } - | btype RARROW type { MonoFunTy $1 $3 } - | btype { $1 } +type : '__fuall' fuall '=>' type { mkHsUsForAllTy $2 $4 } + | '__forall' tv_bndrs + opt_context '=>' type { mkHsForAllTy (Just $2) $3 $5 } + | btype '->' type { HsFunTy $1 $3 } + | btype { $1 } + +fuall :: { [RdrName] } +fuall : '[' uv_bndrs ']' { $2 } -forall :: { [HsTyVar RdrName] } -forall : OBRACK tv_bndrs CBRACK { $2 } +opt_context :: { RdrNameContext } +opt_context : { [] } + | context { $1 } context :: { RdrNameContext } -context : { [] } - | OCURLY context_list1 CCURLY { $2 } +context : '(' context_list1 ')' { $2 } + | '{' context_list1 '}' { $2 } -- Backward compatibility context_list1 :: { RdrNameContext } context_list1 : class { [$1] } - | class COMMA context_list1 { $1 : $3 } + | class ',' context_list1 { $1 : $3 } + +class :: { HsPred RdrName } +class : qcls_name atypes { (HsPClass $1 $2) } + | ipvar_name '::' type { (HsPIParam $1 $3) } -class :: { (RdrName, [RdrNameHsType]) } -class : tc_name atypes { ($1, $2) } +types0 :: { [RdrNameHsType] {- Zero or more -} } +types0 : {- empty -} { [ ] } + | type { [ $1 ] } + | types2 { $1 } types2 :: { [RdrNameHsType] {- Two or more -} } -types2 : type COMMA type { [$1,$3] } - | type COMMA types2 { $1 : $3 } +types2 : type ',' type { [$1,$3] } + | type ',' types2 { $1 : $3 } btype :: { RdrNameHsType } btype : atype { $1 } - | btype atype { MonoTyApp $1 $2 } + | btype atype { HsAppTy $1 $2 } + | '__u' usage atype { HsUsgTy $2 $3 } + +usage :: { HsUsageAnn RdrName } +usage : '-' { HsUsOnce } + | '!' { HsUsMany } + | uv_name { HsUsVar $1 } atype :: { RdrNameHsType } -atype : tc_name { MonoTyVar $1 } - | tv_name { MonoTyVar $1 } - | OPAREN types2 CPAREN { MonoTupleTy dummyRdrTcName $2 } - | OBRACK type CBRACK { MonoListTy dummyRdrTcName $2 } - | OCURLY tc_name atypes CCURLY { MonoDictTy $2 $3 } - | OPAREN type CPAREN { $2 } +atype : qtc_name { HsTyVar $1 } + | tv_name { HsTyVar $1 } + | '(' ')' { HsTupleTy (mkHsTupCon tcName Boxed []) [] } + | '(' types2 ')' { HsTupleTy (mkHsTupCon tcName Boxed $2) $2 } + | '(#' types0 '#)' { HsTupleTy (mkHsTupCon tcName Unboxed $2) $2 } + | '[' type ']' { HsListTy $2 } + | '{' qcls_name atypes '}' { mkHsDictTy $2 $3 } + | '{' ipvar_name '::' type '}' { mkHsIParamTy $2 $4 } + | '(' type ')' { $2 } atypes :: { [RdrNameHsType] {- Zero or more -} } atypes : { [] } | atype atypes { $1 : $2 } --------------------------------------------------------------------- - -mod_name :: { Module } - : CONID { $1 } - -var_occ :: { OccName } -var_occ : VARID { VarOcc $1 } - | VARSYM { VarOcc $1 } - | BANG { VarOcc SLIT("!") {-sigh, double-sigh-} } - -tc_occ :: { OccName } -tc_occ : CONID { TCOcc $1 } - | CONSYM { TCOcc $1 } - | OPAREN RARROW CPAREN { TCOcc SLIT("->") } - -entity_occ :: { OccName } -entity_occ : var_occ { $1 } - | tc_occ { $1 } - | RARROW { TCOcc SLIT("->") {- Allow un-paren'd arrow -} } - -val_occ :: { OccName } -val_occ : var_occ { $1 } - | CONID { VarOcc $1 } - | CONSYM { VarOcc $1 } - -val_occs1 :: { [OccName] } - : val_occ { [$1] } - | val_occ val_occs1 { $1 : $2 } - +package :: { PackageName } + : STRING { $1 } + | {- empty -} { opt_InPackage } -- Useful for .hi-boot files, + -- which can omit the package Id + -- Module loops are always within a package + +mod_name :: { ModuleName } + : CONID { mkSysModuleFS $1 } + + +--------------------------------------------------- +var_fs :: { EncodedFS } + : VARID { $1 } + | '!' { SLIT("!") } + | '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") } + +qvar_fs :: { (EncodedFS, EncodedFS) } + : QVARID { $1 } + | QVARSYM { $1 } + +var_occ :: { OccName } + : var_fs { mkSysOccFS varName $1 } var_name :: { RdrName } -var_name : var_occ { Unqual $1 } +var_name : var_occ { mkRdrUnqual $1 } qvar_name :: { RdrName } qvar_name : var_name { $1 } - | QVARID { lexVarQual $1 } - | QVARSYM { lexVarQual $1 } + | qvar_fs { mkSysQual varName $1 } + +ipvar_name :: { RdrName } + : IPVARID { mkSysUnqual ipName (tailFS $1) } var_names :: { [RdrName] } var_names : { [] } @@ -406,216 +601,313 @@ var_names : { [] } var_names1 :: { [RdrName] } var_names1 : var_name var_names { $1 : $2 } +--------------------------------------------------- +-- For some bizarre reason, +-- (,,,) is dealt with by the parser +-- Foo.(,,,) is dealt with by the lexer +-- Sigh + +data_fs :: { EncodedFS } + : CONID { $1 } + | CONSYM { $1 } + +qdata_fs :: { (EncodedFS, EncodedFS) } + : QCONID { $1 } + | QCONSYM { $1 } + +data_occ :: { OccName } + : data_fs { mkSysOccFS dataName $1 } + data_name :: { RdrName } -data_name : CONID { Unqual (VarOcc $1) } - | CONSYM { Unqual (VarOcc $1) } + : data_occ { mkRdrUnqual $1 } qdata_name :: { RdrName } -qdata_name : data_name { $1 } - | QCONID { lexVarQual $1 } - | QCONSYM { lexVarQual $1 } +qdata_name : data_name { $1 } + | qdata_fs { mkSysQual dataName $1 } qdata_names :: { [RdrName] } qdata_names : { [] } | qdata_name qdata_names { $1 : $2 } +var_or_data_name :: { RdrName } + : var_name { $1 } + | data_name { $1 } + +--------------------------------------------------- +tc_fs :: { EncodedFS } + : data_fs { $1 } + +tc_occ :: { OccName } + : tc_fs { mkSysOccFS tcName $1 } + tc_name :: { RdrName } -tc_name : tc_occ { Unqual $1 } - | QCONID { lexTcQual $1 } - | QCONSYM { lexTcQual $1 } + : tc_occ { mkRdrUnqual $1 } -tc_names1 :: { [RdrName] } - : tc_name { [$1] } - | tc_name COMMA tc_names1 { $1 : $3 } +qtc_name :: { RdrName } + : tc_name { $1 } + | qdata_fs { mkSysQual tcName $1 } -tv_name :: { RdrName } -tv_name : VARID { Unqual (TvOcc $1) } - | VARSYM { Unqual (TvOcc $1) {- Allow t2 as a tyvar -} } +--------------------------------------------------- +cls_name :: { RdrName } + : data_fs { mkSysUnqual clsName $1 } + +qcls_name :: { RdrName } + : cls_name { $1 } + | qdata_fs { mkSysQual clsName $1 } -tv_names :: { [RdrName] } +--------------------------------------------------- +uv_name :: { RdrName } + : VARID { mkSysUnqual uvName $1 } + +uv_bndr :: { RdrName } + : uv_name { $1 } + +uv_bndrs :: { [RdrName] } : { [] } - | tv_name tv_names { $1 : $2 } + | uv_bndr uv_bndrs { $1 : $2 } + +--------------------------------------------------- +tv_name :: { RdrName } + : VARID { mkSysUnqual tvName $1 } + | VARSYM { mkSysUnqual tvName $1 {- Allow t2 as a tyvar -} } -tv_bndr :: { HsTyVar RdrName } -tv_bndr : tv_name DCOLON akind { IfaceTyVar $1 $3 } - | tv_name { UserTyVar $1 } +tv_bndr :: { HsTyVarBndr RdrName } + : tv_name '::' akind { IfaceTyVar $1 $3 } + | tv_name { IfaceTyVar $1 boxedTypeKind } -tv_bndrs :: { [HsTyVar RdrName] } +tv_bndrs :: { [HsTyVarBndr RdrName] } +tv_bndrs : tv_bndrs1 { $1 } + | '[' tv_bndrs1 ']' { $2 } -- Backward compatibility + +tv_bndrs1 :: { [HsTyVarBndr RdrName] } : { [] } - | tv_bndr tv_bndrs { $1 : $2 } + | tv_bndr tv_bndrs1 { $1 : $2 } + +--------------------------------------------------- +fds :: { [([RdrName], [RdrName])] } + : {- empty -} { [] } + | '|' fds1 { reverse $2 } + +fds1 :: { [([RdrName], [RdrName])] } + : fds1 ',' fd { $3 : $1 } + | fd { [$1] } +fd :: { ([RdrName], [RdrName]) } + : varids0 '->' varids0 { (reverse $1, reverse $3) } + +varids0 :: { [RdrName] } + : {- empty -} { [] } + | varids0 tv_name { $2 : $1 } + +--------------------------------------------------- kind :: { Kind } : akind { $1 } - | akind RARROW kind { mkArrowKind $1 $3 } + | akind '->' kind { mkArrowKind $1 $3 } akind :: { Kind } : VARSYM { if $1 == SLIT("*") then - mkBoxedTypeKind - else if $1 == SLIT("**") then - mkTypeKind + boxedTypeKind + else if $1 == SLIT("?") then + openTypeKind else panic "ParseInterface: akind" } - | OPAREN kind CPAREN { $2 } --------------------------------------------------------------------------- - - -instances_part :: { [RdrNameInstDecl] } -instances_part : INSTANCES_PART instdecls { $2 } - | { [] } - -instdecls :: { [RdrNameInstDecl] } -instdecls : { [] } - | instd instdecls { $1 : $2 } + | '(' kind ')' { $2 } -instd :: { RdrNameInstDecl } -instd : src_loc INSTANCE type EQUAL var_name SEMI - { InstDecl $3 - EmptyMonoBinds {- No bindings -} - [] {- No user pragmas -} - (Just $5) {- Dfun id -} - $1 - } -------------------------------------------------------------------------- id_info :: { [HsIdInfo RdrName] } -id_info : { [] } - | id_info_item id_info { $1 : $2 } + : { [] } + | id_info_item id_info { $1 : $2 } id_info_item :: { HsIdInfo RdrName } -id_info_item : ARITY_PART arity_info { HsArity $2 } - | strict_info { HsStrictness $1 } - | BOTTOM { HsStrictness HsBottom } - | UNFOLD_PART core_expr { HsUnfold $1 $2 } - | SPECIALISE spec_tvs - atypes EQUAL core_expr { HsSpecialise $2 $3 $5 } + : '__A' INTEGER { HsArity (exactArity (fromInteger $2)) } + | '__U' inline_prag core_expr { HsUnfold $2 $3 } + | '__M' { HsCprInfo } + | '__S' { HsStrictness (mkStrictnessInfo $1) } + | '__C' { HsNoCafRefs } + | '__P' qvar_name { HsWorker $2 } + +inline_prag :: { InlinePragInfo } + : {- empty -} { NoInlinePragInfo } + | '[' from_prag phase ']' { IMustNotBeINLINEd $2 $3 } + +from_prag :: { Bool } + : {- empty -} { True } + | '!' { False } + +phase :: { Maybe Int } + : {- empty -} { Nothing } + | INTEGER { Just (fromInteger $1) } + +------------------------------------------------------- +core_expr :: { UfExpr RdrName } +core_expr : '\\' core_bndrs '->' core_expr { foldr UfLam $4 $2 } + | 'case' core_expr 'of' var_name + '{' core_alts '}' { UfCase $2 $4 $6 } + | 'let' '{' core_val_bndr '=' core_expr + '}' 'in' core_expr { UfLet (UfNonRec $3 $5) $8 } + | '__letrec' '{' rec_binds '}' + 'in' core_expr { UfLet (UfRec $3) $6 } -spec_tvs :: { [HsTyVar RdrName] } -spec_tvs : OBRACK tv_bndrs CBRACK { $2 } - + | '__litlit' STRING atype { UfLitLit $2 $3 } -arity_info :: { ArityInfo } -arity_info : INTEGER { exactArity (fromInteger $1) } + | fexpr { $1 } -strict_info :: { HsStrictnessInfo RdrName } -strict_info : STRICT_PART qvar_name OCURLY qdata_names CCURLY { HsStrictnessInfo $1 (Just ($2,$4)) } - | STRICT_PART qvar_name { HsStrictnessInfo $1 (Just ($2,[])) } - | STRICT_PART { HsStrictnessInfo $1 Nothing } +fexpr :: { UfExpr RdrName } +fexpr : fexpr core_arg { UfApp $1 $2 } + | scc core_aexpr { UfNote (UfSCC $1) $2 } + | '__inline_me' core_aexpr { UfNote UfInlineMe $2 } + | '__inline_call' core_aexpr { UfNote UfInlineCall $2 } + | '__coerce' atype core_aexpr { UfNote (UfCoerce $2) $3 } + | core_aexpr { $1 } -core_expr :: { UfExpr RdrName } -core_expr : qvar_name { UfVar $1 } - | qdata_name { UfVar $1 } - | core_lit { UfLit $1 } - | OPAREN core_expr CPAREN { $2 } - | qdata_name OCURLY data_args CCURLY { UfCon $1 $3 } - - | core_expr ATSIGN atype { UfApp $1 (UfTyArg $3) } - | core_expr core_arg { UfApp $1 $2 } - | LAM core_val_bndrs RARROW core_expr { foldr UfLam $4 $2 } - | BIGLAM core_tv_bndrs RARROW core_expr { foldr UfLam $4 $2 } - - | CASE core_expr OF - OCURLY alg_alts core_default CCURLY { UfCase $2 (UfAlgAlts $5 $6) } - | PRIM_CASE core_expr OF - OCURLY prim_alts core_default CCURLY { UfCase $2 (UfPrimAlts $5 $6) } - - - | LET OCURLY core_val_bndr EQUAL core_expr CCURLY - IN core_expr { UfLet (UfNonRec $3 $5) $8 } - | LETREC OCURLY rec_binds CCURLY - IN core_expr { UfLet (UfRec $3) $6 } - - | CCALL ccall_string - OBRACK atype atypes CBRACK core_args { let - (is_casm, may_gc) = $1 - in - UfPrim (UfCCallOp $2 is_casm may_gc $5 $4) - $7 - } - | INLINE_CALL core_expr { UfNote UfInlineCall $2 } - | COERCE atype core_expr { UfNote (UfCoerce $2) $3 } - | SCC core_expr { UfNote (UfSCC $1) $2 } +core_arg :: { UfExpr RdrName } + : '@' atype { UfType $2 } + | core_aexpr { $1 } -rec_binds :: { [(UfBinder RdrName, UfExpr RdrName)] } +core_args :: { [UfExpr RdrName] } : { [] } - | core_val_bndr EQUAL core_expr SEMI rec_binds { ($1,$3) : $5 } + | core_arg core_args { $1 : $2 } -prim_alts :: { [(Literal,UfExpr RdrName)] } - : { [] } - | core_lit RARROW core_expr SEMI prim_alts { ($1,$3) : $5 } +core_aexpr :: { UfExpr RdrName } -- Atomic expressions +core_aexpr : qvar_name { UfVar $1 } + | qdata_name { UfVar $1 } -alg_alts :: { [(RdrName, [RdrName], UfExpr RdrName)] } - : { [] } - | qdata_name var_names RARROW - core_expr SEMI alg_alts { ($1,$2,$4) : $6 } + | core_lit { UfLit $1 } + | '(' core_expr ')' { $2 } + + | '(' ')' { UfTuple (mkHsTupCon dataName Boxed []) [] } + | '(' comma_exprs2 ')' { UfTuple (mkHsTupCon dataName Boxed $2) $2 } + | '(#' comma_exprs0 '#)' { UfTuple (mkHsTupCon dataName Unboxed $2) $2 } -core_default :: { UfDefault RdrName } - : { UfNoDefault } - | var_name RARROW core_expr SEMI { UfBindDefault $1 $3 } + | '{' '__ccall' ccall_string type '}' + { let + (is_dyn, is_casm, may_gc) = $2 -core_arg :: { UfArg RdrName } - : qvar_name { UfVarArg $1 } - | qdata_name { UfVarArg $1 } - | core_lit { UfLitArg $1 } + target | is_dyn = DynamicTarget (error "CCall dyn target bogus unique") + | otherwise = StaticTarget $3 -core_args :: { [UfArg RdrName] } + ccall = CCall target is_casm may_gc cCallConv + in + UfCCall ccall $4 + } + + +comma_exprs0 :: { [UfExpr RdrName] } -- Zero or more +comma_exprs0 : {- empty -} { [ ] } + | core_expr { [ $1 ] } + | comma_exprs2 { $1 } + +comma_exprs2 :: { [UfExpr RdrName] } -- Two or more +comma_exprs2 : core_expr ',' core_expr { [$1,$3] } + | core_expr ',' comma_exprs2 { $1 : $3 } + +rec_binds :: { [(UfBinder RdrName, UfExpr RdrName)] } : { [] } - | core_arg core_args { $1 : $2 } + | core_val_bndr '=' core_expr ';' rec_binds { ($1,$3) : $5 } -data_args :: { [UfArg RdrName] } +core_alts :: { [UfAlt RdrName] } : { [] } - | ATSIGN atype data_args { UfTyArg $2 : $3 } - | core_arg data_args { $1 : $2 } + | core_alt ';' core_alts { $1 : $3 } + +core_alt :: { UfAlt RdrName } +core_alt : core_pat '->' core_expr { (fst $1, snd $1, $3) } + +core_pat :: { (UfConAlt RdrName, [RdrName]) } +core_pat : core_lit { (UfLitAlt $1, []) } + | '__litlit' STRING atype { (UfLitLitAlt $2 $3, []) } + | qdata_name core_pat_names { (UfDataAlt $1, $2) } + | '(' ')' { (UfTupleAlt (mkHsTupCon dataName Boxed []), []) } + | '(' comma_var_names1 ')' { (UfTupleAlt (mkHsTupCon dataName Boxed $2), $2) } + | '(#' comma_var_names1 '#)' { (UfTupleAlt (mkHsTupCon dataName Unboxed $2), $2) } + | '__DEFAULT' { (UfDefault, []) } + | '(' core_pat ')' { $2 } + +core_pat_names :: { [RdrName] } +core_pat_names : { [] } + | core_pat_name core_pat_names { $1 : $2 } + +-- Tyvar names and variable names live in different name spaces +-- so they need to be signalled separately. But we don't record +-- types or kinds in a pattern; we work that out from the type +-- of the case scrutinee +core_pat_name :: { RdrName } +core_pat_name : var_name { $1 } + | '@' tv_name { $2 } + +comma_var_names1 :: { [RdrName] } -- One or more +comma_var_names1 : var_name { [$1] } + | var_name ',' comma_var_names1 { $1 : $3 } core_lit :: { Literal } -core_lit : INTEGER { MachInt $1 True } +core_lit : integer { mkMachInt $1 } | CHAR { MachChar $1 } | STRING { MachStr $1 } - | STRING_LIT STRING { NoRepStr $2 } - | RATIONAL { MachDouble $1 } - | FLOAT_LIT RATIONAL { MachFloat $2 } - - | INTEGER_LIT INTEGER { NoRepInteger $2 (panic "NoRepInteger type") - -- The type checker will add the types - } - - | RATIONAL_LIT INTEGER INTEGER { NoRepRational ($2 % $3) - (panic "NoRepRational type") - -- The type checker will add the type - } - - | ADDR_LIT INTEGER { MachAddr $2 } - | LIT_LIT prim_rep STRING { MachLitLit $3 (decodePrimRep $2) } + | rational { MachDouble $1 } + | '__word' integer { mkMachWord $2 } + | '__word64' integer { mkMachWord64 $2 } + | '__int64' integer { mkMachInt64 $2 } + | '__float' rational { MachFloat $2 } + | '__addr' integer { MachAddr $2 } + | '__label' STRING { MachLabel $2 } + +integer :: { Integer } + : INTEGER { $1 } + | '-' INTEGER { (-$2) } + +rational :: { Rational } + : RATIONAL { $1 } + | '-' RATIONAL { (-$2) } + +core_bndr :: { UfBinder RdrName } +core_bndr : core_val_bndr { $1 } + | core_tv_bndr { $1 } + +core_bndrs :: { [UfBinder RdrName] } +core_bndrs : { [] } + | core_bndr core_bndrs { $1 : $2 } core_val_bndr :: { UfBinder RdrName } -core_val_bndr : var_name DCOLON atype { UfValBinder $1 $3 } - -core_val_bndrs :: { [UfBinder RdrName] } -core_val_bndrs : { [] } - | core_val_bndr core_val_bndrs { $1 : $2 } +core_val_bndr : var_name '::' atype { UfValBinder $1 $3 } core_tv_bndr :: { UfBinder RdrName } -core_tv_bndr : tv_name DCOLON akind { UfTyBinder $1 $3 } - | tv_name { UfTyBinder $1 mkBoxedTypeKind } - -core_tv_bndrs :: { [UfBinder RdrName] } -core_tv_bndrs : { [] } - | core_tv_bndr core_tv_bndrs { $1 : $2 } +core_tv_bndr : '@' tv_name '::' akind { UfTyBinder $2 $4 } + | '@' tv_name { UfTyBinder $2 boxedTypeKind } ccall_string :: { FAST_STRING } : STRING { $1 } + | CLITLIT { $1 } | VARID { $1 } | CONID { $1 } -prim_rep :: { Char } - : VARID { head (_UNPK_ $1) } - | CONID { head (_UNPK_ $1) } +------------------------------------------------------------------------ +scc :: { CostCentre } + : '__sccC' '{' mod_name '}' { AllCafsCC $3 } + | '__scc' '{' cc_name mod_name cc_dup cc_caf '}' + { NormalCC { cc_name = $3, cc_mod = $4, + cc_is_dupd = $5, cc_is_caf = $6 } } + +cc_name :: { EncodedFS } + : CONID { $1 } + | var_fs { $1 } + +cc_dup :: { IsDupdCC } +cc_dup : { OriginalCC } + | '!' { DupdCC } + +cc_caf :: { IsCafCC } + : { NotCafCC } + | '__C' { CafCC } ------------------------------------------------------------------- src_loc :: { SrcLoc } -src_loc : {% getSrcLocIf } +src_loc : {% getSrcLocP } +-- Check the project version: this makes sure +-- that the project version (e.g. 407) in the interface +-- file is the same as that for the compiler that's reading it checkVersion :: { () } : {-empty-} {% checkVersion Nothing } | INTEGER {% checkVersion (Just (fromInteger $1)) } @@ -624,9 +916,14 @@ checkVersion :: { () } -- Haskell code { +happyError :: P a +happyError buf PState{ loc = loc } = PFailed (ifaceParseErr buf loc) data IfaceStuff = PIface ParsedIface | PIdInfo [HsIdInfo RdrName] | PType RdrNameHsType + | PRules [RdrNameRuleDecl] + | PDeprecs [RdrNameDeprecation] +mk_con_decl name (ex_tvs, ex_ctxt) details loc = mkConDecl name ex_tvs ex_ctxt details loc }