2003-10-29 06:11:31 +08:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
#
|
|
|
|
# Program: profile.pl
|
|
|
|
#
|
|
|
|
# Synopsis: Insert instrumentation code into a program, run it with the JIT,
|
|
|
|
# then print out a profile report.
|
|
|
|
#
|
|
|
|
# Syntax: profile.pl [OPTIONS] bytecodefile <arguments>
|
|
|
|
#
|
|
|
|
# OPTIONS may include one or more of the following:
|
2003-10-29 06:52:05 +08:00
|
|
|
# -block - Enable basic block level profiling
|
2003-10-29 06:11:31 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
my $ProfilePass = "-insert-function-profiling";
|
|
|
|
|
|
|
|
# Parse arguments...
|
|
|
|
while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
|
|
|
|
shift;
|
|
|
|
last if /^--$/; # Stop processing arguments on --
|
|
|
|
|
|
|
|
# List command line options here...
|
2003-10-29 06:52:05 +08:00
|
|
|
if (/^-block$/) { $ProfilePass = "-insert-block-profiling"; next; }
|
2003-10-29 06:11:31 +08:00
|
|
|
|
|
|
|
print "Unknown option: $_ : ignoring!\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
die "Must specify LLVM bytecode file as first argument!" if (@ARGV == 0);
|
|
|
|
|
|
|
|
my $BytecodeFile = $ARGV[0];
|
|
|
|
|
|
|
|
shift @ARGV;
|
|
|
|
|
|
|
|
my $LLIPath = `which lli`;
|
|
|
|
$LLIPath = `dirname $LLIPath`;
|
|
|
|
chomp $LLIPath;
|
|
|
|
|
|
|
|
my $LibProfPath = $LLIPath . "/../../lib/Debug/libprofile_rt.so";
|
|
|
|
|
2003-10-29 06:52:05 +08:00
|
|
|
system "opt $ProfilePass < $BytecodeFile | lli -fake-argv0 '$BytecodeFile'" .
|
|
|
|
" -load $LibProfPath - " . (join ' ', @ARGV);
|
2003-10-29 06:11:31 +08:00
|
|
|
|
|
|
|
system "llvm-prof $BytecodeFile";
|