I'd like to be able to get the AST for a given OCaml program (I'd like to walk the AST and generate an instrumented version of the code or do some kind of transformation, for example). Do any of the OCaml tools support this functionality?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

camlp4 is a way to go. Here is a motivating example. The docs are sparse - true, but one can make his way reading through wiki, existing examples, tutorials, and maybe even camlp4 sources.

link|improve this answer
What does that motivating example do? – aneccodeal Jun 30 '10 at 15:46
Insert calls co Camlp4prof.count (read "arbitrary") function at the beginning of each parsed function definition passing name and location parameters. – ygrek Jun 30 '10 at 16:32
An Active discussion on resources to learn camlp4: groups.google.com/group/fa.caml/browse_thread/thread/… – nlucaroni Sep 28 '10 at 13:29
feedback

What you're looking for is [camlp4][1]. I haven't used camlp4 before, so I can't attest to it's virtues as software. I have heard of people using camlp5 [http://pauillac.inria.fr/~ddr/camlp5/] which, according to wikipedia, has better documentation than the current version of camlp4.

link|improve this answer
I thought camlp4 was used to modify & customize the OCaml syntax, but I suppose it makes sense that it can get to the AST somehow. – aneccodeal Jun 30 '10 at 3:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.