2003-10-28 22:11:31 +00: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:
|
2004-02-10 18:01:50 +00:00
|
|
|
# -block - Enable basicblock-level profiling
|
|
|
|
# -function - Enable function-level profiling
|
|
|
|
# -o <filename> - Emit profiling information to the specified file, instead
|
|
|
|
# of llvmprof.out
|
2003-10-28 22:11:31 +00:00
|
|
|
#
|
2003-10-29 21:51:00 +00:00
|
|
|
# Any unrecognized options are passed into the invocation of llvm-prof
|
|
|
|
#
|
2003-10-28 22:11:31 +00:00
|
|
|
|
2004-02-10 18:01:50 +00:00
|
|
|
my $ProfilePass = "-insert-block-profiling";
|
2003-10-28 22:11:31 +00:00
|
|
|
|
2003-10-29 21:51:00 +00:00
|
|
|
my $LLVMProfOpts = "";
|
2004-02-10 18:01:50 +00:00
|
|
|
my $ProgramOpts = "";
|
|
|
|
my $ProfileFile = "";
|
2003-10-29 21:51:00 +00:00
|
|
|
|
2003-10-28 22:11:31 +00:00
|
|
|
# Parse arguments...
|
|
|
|
while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
|
|
|
|
shift;
|
|
|
|
last if /^--$/; # Stop processing arguments on --
|
|
|
|
|
|
|
|
# List command line options here...
|
2003-11-02 05:17:32 +00:00
|
|
|
if (/^-?-block$/) { $ProfilePass = "-insert-block-profiling"; next; }
|
2004-02-10 18:01:50 +00:00
|
|
|
if (/^-?-function$/) { $ProfilePass = "-insert-function-profiling"; next; }
|
|
|
|
if (/^-?-o$/) { # Read -o filename...
|
|
|
|
die "-o option requires a filename argument!" if (!scalar(@ARGV));
|
|
|
|
$ProgramOpts .= " -llvmprof-output $ARGV[0]";
|
|
|
|
$ProfileFile = $ARGV[0];
|
|
|
|
shift;
|
|
|
|
next;
|
|
|
|
}
|
2003-11-02 05:17:32 +00:00
|
|
|
if (/^-?-help$/) {
|
|
|
|
print "OVERVIEW: profile.pl - Instrumentation and profile printer.\n\n";
|
|
|
|
print "USAGE: profile.pl [options] program.bc <program args>\n\n";
|
|
|
|
print "OPTIONS:\n";
|
2004-02-10 18:01:50 +00:00
|
|
|
print " -block - Enable basicblock-level profiling\n";
|
|
|
|
print " -function - Enable function-level profiling\n";
|
|
|
|
print " -o <file> - Specify an output file other than llvm-prof.out.\n";
|
|
|
|
print " -help - Print this usage information\n";
|
2003-11-02 05:17:32 +00:00
|
|
|
print "\nAll other options are passed into llvm-prof.\n";
|
|
|
|
exit 1;
|
|
|
|
}
|
2003-10-28 22:11:31 +00:00
|
|
|
|
2003-10-29 21:51:00 +00:00
|
|
|
# Otherwise, pass the option on to llvm-prof
|
|
|
|
$LLVMProfOpts .= " " . $_;
|
2003-10-28 22:11:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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-11-02 05:17:32 +00:00
|
|
|
system "opt -q $ProfilePass < $BytecodeFile | lli -fake-argv0 '$BytecodeFile'" .
|
2004-02-10 18:01:50 +00:00
|
|
|
" -load $LibProfPath -$ProgramOpts " . (join ' ', @ARGV);
|
2003-10-28 22:11:31 +00:00
|
|
|
|
2004-02-10 18:01:50 +00:00
|
|
|
system "llvm-prof $LLVMProfOpts $BytecodeFile $ProfileFile";
|