summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2010-09-29 20:09:55 +0000
committerDuncan Sands <baldrick@free.fr>2010-09-29 20:09:55 +0000
commit18d52f2fb551c295bbce4c7d7357f4050b06e926 (patch)
tree40cb3c83836fe7978b80dd40219dca19c88f6ba9 /utils
parentf513ab8b77cd5e7dcd41a8700ff0d1a08c76b059 (diff)
downloadllvm-18d52f2fb551c295bbce4c7d7357f4050b06e926.tar.gz
llvm-18d52f2fb551c295bbce4c7d7357f4050b06e926.tar.bz2
llvm-18d52f2fb551c295bbce4c7d7357f4050b06e926.tar.xz
Convert a bunch of uses of 'bytecode' into 'bitcode'. This
is not everything, but the remaining cases are less trivial. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115080 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rwxr-xr-xutils/findmisopt4
-rwxr-xr-xutils/findoptdiff6
-rwxr-xr-xutils/llvm-native-gcc4
-rwxr-xr-xutils/llvm-native-gxx4
-rwxr-xr-xutils/profile.pl4
5 files changed, 11 insertions, 11 deletions
diff --git a/utils/findmisopt b/utils/findmisopt
index b7ffbd9947..f2a872c6dc 100755
--- a/utils/findmisopt
+++ b/utils/findmisopt
@@ -7,7 +7,7 @@
# it from finding a problem unless the set of failing optimizations are
# known and given to it on the command line.
#
-# Given a bytecode file that produces correct output (or return code),
+# Given a bitcode file that produces correct output (or return code),
# this script will run through all the optimizations passes that gccas
# uses (in the same order) and will narrow down which optimizations
# cause the program either generate different output or return a
@@ -21,7 +21,7 @@
#
# Where:
# bcfile
-# is the bytecode file input (the unoptimized working case)
+# is the bitcode file input (the unoptimized working case)
# outdir
# is a directory into which intermediate results are placed
# progargs
diff --git a/utils/findoptdiff b/utils/findoptdiff
index 4f8d08dbff..7a2eab05d7 100755
--- a/utils/findoptdiff
+++ b/utils/findoptdiff
@@ -14,7 +14,7 @@
# second build contains some experimental optimization features that
# are suspected of producing a misoptimization.
#
-# The script takes two bytecode files, one from each build. They are
+# The script takes two bitcode files, one from each build. They are
# presumed to be a compilation of the same program or program fragment
# with the only difference being the builds.
#
@@ -39,9 +39,9 @@
# llvm2
# is the path to the second llvm build dir
# bc1
-# is the bytecode file for the first llvm environment
+# is the bitcode file for the first llvm environment
# bc2
-# is the bytecode file for the second llvm environment
+# is the bitcode file for the second llvm environment
# filter1
# is an optional filter for filtering the llvm1 generated assembly
# filter2
diff --git a/utils/llvm-native-gcc b/utils/llvm-native-gcc
index b3cecb1411..91a557cc16 100755
--- a/utils/llvm-native-gcc
+++ b/utils/llvm-native-gcc
@@ -193,10 +193,10 @@ native-build [OPTIONS...] FILE
llvm-native-gcc is a wrapper around the LLVM command-line tools which generates
a native object (.o) file by compiling FILE with llvm-gcc, and then running
-an LLVM back-end (CBE by default) over the resulting bytecode, and then
+an LLVM back-end (CBE by default) over the resulting bitcode, and then
compiling the resulting code to a native object file.
-If called as "native-build", it compiles bytecode to native code, and takes
+If called as "native-build", it compiles bitcode to native code, and takes
different options.
=head1 OPTIONS
diff --git a/utils/llvm-native-gxx b/utils/llvm-native-gxx
index 75164af237..db547f654e 100755
--- a/utils/llvm-native-gxx
+++ b/utils/llvm-native-gxx
@@ -193,10 +193,10 @@ native-build [OPTIONS...] FILE
llvm-native-g++ is a wrapper around the LLVM command-line tools which generates
a native object (.o) file by compiling FILE with llvm-g++, and then running
-an LLVM back-end (CBE by default) over the resulting bytecode, and then
+an LLVM back-end (CBE by default) over the resulting bitcode, and then
compiling the resulting code to a native object file.
-If called as "native-build", it compiles bytecode to native code, and takes
+If called as "native-build", it compiles bitcode to native code, and takes
different options.
=head1 OPTIONS
diff --git a/utils/profile.pl b/utils/profile.pl
index f9950f97fe..318011560b 100755
--- a/utils/profile.pl
+++ b/utils/profile.pl
@@ -5,7 +5,7 @@
# Synopsis: Insert instrumentation code into a program, run it with the JIT,
# then print out a profile report.
#
-# Syntax: profile.pl [OPTIONS] bytecodefile <arguments>
+# Syntax: profile.pl [OPTIONS] bitcodefile <arguments>
#
# OPTIONS may include one or more of the following:
# -block - Enable basicblock profiling
@@ -56,7 +56,7 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
$LLVMProfOpts .= " " . $_;
}
-die "Must specify LLVM bytecode file as first argument!" if (@ARGV == 0);
+die "Must specify LLVM bitcode file as first argument!" if (@ARGV == 0);
my $BytecodeFile = $ARGV[0];