Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

jocamlprof(1) [debian 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)

Check Out this Related Man Page

JOCAMLCP(1)						      General Commands Manual						       JOCAMLCP(1)

NAME
Jocamlcp - The JoCaml profiling compiler SYNOPSIS
jocamlcp [ jocamlcp options ] [ -p flags ] filename ... DESCRIPTION
The jocamlcp command is a front-end to jocamlc(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 jocamlprof(1). jocamlcp accepts the same arguments and options as jocamlc(1). OPTIONS
In addition to the jocamlc(1) options, jocamlcp 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 For instance, compiling with jocamlcp -pfilm profiles function calls, if ... then ... else ..., loops, and pattern matching. Calling jocamlcp(1) without the -p option defaults to -p fm meaning that only function calls and pattern matching are profiled. Note: due to the implementation of streams and stream patterns as syntactic sugar, it is hard to predict what parts of stream expressions and patterns will be profiled by a given flag. To profile a program with streams, we recommend using jocamlcp -p a. SEE ALSO
jocamlc(1), jocamlprof(1). The Objective Caml user's manual, chapter "Profiling". JOCAMLCP(1)
Man Page

5 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

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

3. 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

4. UNIX for Dummies Questions & Answers

profiling execution of a process

question goes like this : Explain how users can profile execution of a process with help of an example? can some one pls give me the answer?? (1 Reply)
Discussion started by: rakesh1988
1 Replies

5. Shell Programming and Scripting

removing the filename extension

Is there an easy way to strip off a filename's extension? For example, here's a filename: blahblahblah.thisisok.thisisnotok I want to get rid of .thisisnotok from the filename, so that what's left is blahblahblah.thisisok Thanks. I have a directory full of filenames that need to be... (5 Replies)
Discussion started by: daflore
5 Replies