Profiling the OCaml compiler

Background information (you do not need to repeat these steps to answer the question, this just gives some background):

I am trying to compile a rather large set of generated modules. These files are the output of a prototype Modelica to OCaml compiler and reflect the Modelica class structure of the Modelica Standard Library.

The main feature is the use of polymorphic, open recursion: Every method takes a this argument which contains the final superclass hierarchy. So for instance the model:

model A type T = Real type S = T end A;

is translated into

let m_A = object
            method m_T this = m_Modelica_Real 
            method m_S this = this#m_T this 
          end 

and has to be closed before usage:

let _ = m_A#m_T m_A 

This seems to postpone a lot of typechecking until the superclass hierarchy is actually fixed, which in turn makes it impossible to compile the final linkage module (try ocamlbuild Linkage.cmo after editing the comments in the corresponding file to see what I mean).

Unfortunately, since the code base is rather large and uses a lot of objects, the type-structure might not be the root cause after all, it might as well be some optimization or a flaw in the code-generation (although I strongly suspect the typechecker). So my question is: Is there any way to profile the ocaml compiler in a way that signals when a certain phase (typechecking, intermediate code generation, optimization) is over and how long it took? Any further insights into my particular use case are also welcome.


As of right now, there isn't.

You can do it yourself though, the compiler source are open and you can get those and modify them to fit your needs.

Depending on whether you use ocamlc or ocamlopt , you'll need to modify either driver/compile.ml or driver/optcompile.ml to add timers to the compilation process.

Fortunately, this already has been done for you here. Just compile with the option -dtimings or environment variable OCAMLPARAM=timings=1,_ .

Even more easily, you can download the opam Flambda switch:

opam switch install 4.03.0+pr132
ocamlopt -dtimings myfile.ml

Note: Flambda itself changes the compilation time (most what happens after typing) and its integration into the OCaml compiler is not confirmed yet.


OCaml compiler is an ordinary OCaml program in that regard. I would use poorman's profiler for a quick inspection, using eg pmp script.

链接地址: http://www.djcxy.com/p/85452.html

上一篇: 未初始化的局部变量是最快的随机数生成器吗?

下一篇: 分析OCaml编译器