table of contents
other versions
- wheezy 3.12.1-4
- jessie 4.01.0-5
- testing 4.02.3-9
- unstable 4.02.3-9
- experimental 4.04.0-2
OCAMLCP(1) | General Commands Manual | OCAMLCP(1) |
NAME¶
ocamlcp - The Objective Caml profiling compilerSYNOPSIS¶
ocamlcp [ ocamlc options ] [ -p flags ] filename ...DESCRIPTION¶
The ocamlcp command is a front-end to ocamlc(1) that instruments the source code, adding code to record how many times functions are called, branches of conditionals are taken, ... Execution of instrumented code produces an execution profile in the file ocamlprof.dump, which can be read using ocamlprof(1).OPTIONS¶
In addition to the ocamlc(1) options, ocamlcp accepts the following option controlling the amount of profiling information:- -p letters
- The letters indicate which parts of the program should be profiled:
- a
- all options
- f
- function calls : a count point is set at the beginning of each function body
- i
- if ... then ... else: count points are set in both then and else branches
- l
- 0 loops: a count point is set at the beginning of the loop body
- m
- match branches: a count point is set at the beginning of the body of each branch of a pattern-matching
- t
- try ... with branches: a count
point is set at the beginning of the body of each branch of an exception
catcher