Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ocamlprof(1) [debian man page]

OCAMLPROF(1)						      General Commands Manual						      OCAMLPROF(1)

NAME
ocamlprof - The Objective Caml profiler SYNOPSIS
ocamlprof [ options ] filename ... DESCRIPTION
The ocamlprof command prints execution counts gathered during the execution of a Objective Caml program instrumented with ocamlcp(1). It produces a source listing of the program modules given as arguments where execution counts have been inserted as comments. For instance, ocamlprof foo.ml prints the source code for the foo module, with comments indicating how many times the functions in this module have been called. Natu- rally, this information is accurate only if the source file has not been modified since the profiling execution took place. OPTIONS
-f dumpfile Specifies an alternate dump file of profiling information. -F string Specifies an additional string to be output with profiling information. By default, ocamlprof(1) will annotate programs with com- ments of the form (* n *) where n is the counter value for a profiling point. With option -F s the annotation will be (* sn *) -impl filename Compile the file filename as an implementation file, even if its extension is not .ml. -intf filename Compile the file filename as an interface file, even if its extension is not .mli. -version Print version string and exit. -vnum Print short version number and exit. -help or --help Display a short usage summary and exit. SEE ALSO
ocamlcp(1). The Objective Caml user's manual, chapter "Profiling". OCAMLPROF(1)

Check Out this Related Man Page

JOCAMLPROF(1)						      General Commands Manual						     JOCAMLPROF(1)

NAME
jocamlprof - The JoCaml profiler SYNOPSIS
jocamlprof [ -f dump-file ] [ -F text ] filename ... DESCRIPTION
The jocamlprof command prints execution counts gathered during the execution of a Objective Caml program instrumented with jocamlcp(1). It produces a source listing of the program modules given as arguments where execution counts have been inserted as comments. For instance, jocamlprof foo.ml prints the source code for the foo module, with comments indicating how many times the functions in this module have been called. Natu- rally, this information is accurate only if the source file has not been modified since the profiling execution took place. OPTIONS
-f dumpfile Specifies an alternate dump file of profiling information. -F string Specifies an additional string to be output with profiling information. By default, jocamlprof(1) will annotate programs with com- ments of the form (* n *) where n is the counter value for a profiling point. With option -F s the annotation will be (* sn *) -impl filename Compile the file filename as an implementation file, even if its extension is not .ml. -intf filename Compile the file filename as an interface file, even if its extension is not .mli. -version Print the version number of jocamlprof and exit. -help or --help Display a short usage summary and exit. SEE ALSO
jocamlcp(1). The Objective Caml user's manual, chapter "Profiling". JOCAMLPROF(1)
Man Page

4 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Profiling..entry for a function in pthread_create

Hello, i am try to write a profiler for a multithreaded applciation. When i creat e a thread for "function f2()" the profiling information for this function does not get captured in the struct profileManager. i;e i get the exit information for "function f2()" in that thread, but the entry... (2 Replies)
Discussion started by: Vikky Panchal
2 Replies

2. UNIX for Dummies Questions & Answers

Reading a file and Classification

Hello Everyone, I am new to UNIX. I have got a requirement. Thought of posting it in this forum so that someone might help me. Please have a look at the scenario. The Objective is to "classify books into four seperate files and then print a summary report". Specifications are as... (3 Replies)
Discussion started by: yarlagadda999
3 Replies

3. UNIX for Dummies Questions & Answers

ls command to list recursively ONLY subdirectories

:confused: ls -dlRr I've tried different combinations of the ls command using the above-mentioned options but none of them are giving me the output I am looking for. Objective: To get a recursive listing of all subdirectories from a particular starting point. For example, if my starting... (5 Replies)
Discussion started by: HLee1981
5 Replies

4. Programming

Compiling Objective-C 2.0 under Linux

Hello all, I am new to programming and currently I am taking a swing at Objective-C. I easily compile my programs on my Macintosh, and have compiled some Objective-C programs on my linux box. The problem I am having is when I try to use features demonstrated in the book Programming in... (4 Replies)
Discussion started by: inquen
4 Replies