Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. lookupRdrNameInModuleForPlugins :: HasDebugCallStack => HscEnv -> ModuleName -> RdrName -> IO (Maybe (Name, ModIface))

    ghc GHC.Runtime.Loader

    Finds the Name corresponding to the given RdrName in the context of the ModuleName. Returns Nothing if no such Name could be found. Any other condition results in an exception:

    • If the module could not be found
    • If we could not determine the imports of the module
    Can only be used for looking up names while loading plugins (and is *not* suitable for use within plugins). The interface file is loaded very partially: just enough that it can be used, without its rules and instances affecting (and being linked from!) the module being compiled. This was introduced by 57d6798. Need the module as well to record information in the interface file

  2. data Platform

    ghc GHC.Settings

    Platform description This is used to describe platforms so that we can generate code for them.

  3. Platform :: ArchOS -> PlatformWordSize -> ByteOrder -> Bool -> Bool -> Bool -> Bool -> Bool -> Bool -> Bool -> Bool -> !Maybe PlatformConstants -> Platform

    ghc GHC.Settings

    No documentation available.

  4. data PlatformMisc

    ghc GHC.Settings

    Platform-specific settings formerly hard-coded in Config.hs. These should probably be all be triaged whether they can be computed from other settings or belong in another another place (like Platform above).

  5. PlatformMisc :: String -> Bool -> Bool -> String -> PlatformMisc

    ghc GHC.Settings

    No documentation available.

  6. platformArchOS :: Platform -> !ArchOS

    ghc GHC.Settings

    Architecture and OS

  7. platformByteOrder :: Platform -> !ByteOrder

    ghc GHC.Settings

    Byte order (endianness)

  8. platformHasGnuNonexecStack :: Platform -> !Bool

    ghc GHC.Settings

    No documentation available.

  9. platformHasIdentDirective :: Platform -> !Bool

    ghc GHC.Settings

    No documentation available.

  10. platformHasLibm :: Platform -> !Bool

    ghc GHC.Settings

    Some platforms require that we explicitly link against libm if any math-y things are used (which we assume to include all programs). See #14022.

Page 478 of many | Previous | Next