The ghc-api tag has no wiki summary.
8
votes
1answer
126 views
Infer type of a string containing a Haskell expression
I need a (quick and dirty) way to get some representation of the type of a Haskell expression that is given as a string.
I currently see 3 options:
Use GHC API -- however, the documentation loses ...
4
votes
1answer
195 views
Why directly imported functions in GHC differ so much with functions I write with the source code copied from GHC Libraries
module Has (r,p,s) where
import Prelude ((==),Bool(..),otherwise,(||),Eq)
import qualified Data.List as L
filter :: (a -> Bool) -> [a] -> [a]
filter _pred [] = []
filter pred (x:xs)
| ...
3
votes
2answers
159 views
Is it possible to generate and run TemplateHaskell generated code at runtime?
Is it possible to generate and run TemplateHaskell generated code at runtime?
Using C, at runtime, I can:
create the source code of a function,
call out to gcc to compile it to a .so (linux) (or ...
2
votes
1answer
156 views
Treating a String as a Haskell Program
As a small part of a larger University project, I need to write what is essentially an extremely crude IDE. The idea is to to take input from a gtk text box, treat that string as if it is in a .hs ...
4
votes
1answer
178 views
Haskell GHC Dynamic Compliation Only works on first compile
Following the GHC tutorial posted here and alterations to this code following the advice in a previous stack overflow question I asked, I have created a program which is able to compile and run a ...
5
votes
1answer
155 views
Finding cabal packages when using the GHC API
I'm trying to make a program that typechecks haskell files for me using the GHC API. I've gotten the type checking to work for local files, but I have a specific cabal package that I need to be have ...
2
votes
1answer
86 views
Determine ModuleName of loaded target
I was wondering how do you determine the ModuleName of the file you've just loaded in ghc using the API.
If you look at the Documentation of the API they always assume you know the module name before ...
7
votes
1answer
245 views
Reify a module into a record
Suppose I have an arbitrary module
module Foo where
foo :: Moo -> Goo
bar :: Car -> Far
baz :: Can -> Haz
where foo, bar, and baz are correctly implemented, etc.
I'd like to reify this ...
3
votes
1answer
93 views
GHC-api and typechecking class constraints
I am trying to build a simple ghci-like console using ghc-api. I've gotten to a point where I can extract Type's of expressions using exprType and to evaluate them. Is there also an easy way to check ...
2
votes
0answers
225 views
Does GHC API dynamic loading work only with modules from installed packages?
I try to follow the way described in the answer to this question.
I have ExampleModule.o and ExampleModule.hi files in the working directory and I try to load ExampleModule.f function. But I get ...
2
votes
1answer
232 views
How to handle “panic: the impossible happened” and continue in Haskell
I have the following code that uses the GHC API to load modules and get the type of an expression:
typeObjects :: [String] -> [String] -> IO [Type]
typeObjects modules objects = do
...
15
votes
2answers
1k views
GHC API - How to dynamically load Haskell code from a compiled module using GHC 7.2?
I have an existing Haskell function that uses the GHC API to dynamically load compiled code from a module. It is based on the code from the blog post Dynamic Compilation and Loading of Modules in ...
3
votes
2answers
321 views
Compiling to GHC Core
I would like to create a frontend for a simple language that would produce GHC Core. I would like to then take this output and run it through the normal GHC pipeline. According to this page, it is not ...
5
votes
1answer
138 views
Dynamic loading of Haskell abstract syntax expression
Can we use GHC API or something else to load not text source modules, but AST expressions, similar to haskell-src-exts Exp type? This way we could save time for code generation and parsing.
3
votes
1answer
247 views
How do I force interpretation in Hint
How do I force interpretation mode in Hint (Language.Haskell.Interpreter)?
I have this code:
module Main where
import Language.Haskell.Interpreter
import Control.Monad
main = do
res <- ...
2
votes
2answers
164 views
Why cannot top level module be set to main in Hint
Why cannot top level module be set to "Main" in Hint (Language.Haskell.Interpreter)?
Allow me to demonstrate:
module Main where
import Language.Haskell.Interpreter
import Control.Monad
main = do
...
3
votes
2answers
713 views
Global variables via unsafePerformIO in Haskell
The GHC API requires that some initialisation occurs before invocation. Specifically, parseStaticFlags can only be called once.
I have functions that can call runGhc :: MaybeFilePath :: Ghc a -> ...
2
votes
1answer
130 views
Using GHC API from GHC compiled from source
I'd like to, within a client program, use the GHC API from a
modified version of GHC. Its easy enough to get the GHC sources
and build and install the modified GHC, but installing the
modified GHC ...
7
votes
3answers
408 views
How to convert Haskell source as HTML with types on mouseover?
Can anyone point me to any existing tools that convert .hs
source files to html such that the rendered page displays
the type of the variable/expression under the mouse?
In particular, I am looking ...
3
votes
2answers
474 views
Importing a known function from an already-compiled binary, using GHC's API or Hint
I have a module Target, with a function Target.accessMe inside it. I compile this module in some way, then get rid of the source code.
Now, what series of arcane incantations must I do to make a ...
10
votes
1answer
352 views
Simple way to have the GHC API for application deployed on Windows
I want to deploy an application on Windows that needs to access the GHC API. Using the first simple example from the Wiki:
http://www.haskell.org/haskellwiki/GHC/As_a_library
results in the ...
9
votes
2answers
249 views
Is it possible to use the GHC API to modify a program while compiling it?
I want to test the implementation a compiler optimization by piggybacking into the GHC compilation process and altering its Core representation. The idea would be to have something like:
runGhc (Just ...
14
votes
3answers
862 views
Evaluation of Haskell Statements/Expressions using GHC API
For a tool I'm writing ( http://hackage.haskell.org/package/explore ) I need a way to read haskell function definitions at run-time, apply them to values from my tool and retrieve the results of their ...
18
votes
4answers
769 views
Need a tutorial for using GHC to parse and typecheck Haskell
I'm working on a project for analyzing Haskell code. I decided to use GHC to parse the source and infer types rather than write my own code to do that. Right now, I'm slogging through the Haddock ...
