Convert a bunch of uses of 'bytecode' into 'bitcode'. This
authorDuncan Sands <baldrick@free.fr>
Wed, 29 Sep 2010 20:09:55 +0000 (20:09 +0000)
committerDuncan Sands <baldrick@free.fr>
Wed, 29 Sep 2010 20:09:55 +0000 (20:09 +0000)
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

CREDITS.TXT
docs/CodingStandards.html
docs/LinkTimeOptimization.html
examples/ModuleMaker/README.txt
tools/llvm-config/llvm-config.in.in
utils/findmisopt
utils/findoptdiff
utils/llvm-native-gcc
utils/llvm-native-gxx
utils/profile.pl

index aeecfe2e21e1d023ddcd0e6f2d56cc0c08d91590..8cf3e8494c7d9e3da7f68cc491f9f5e2bb6ae0ef 100644 (file)
@@ -39,7 +39,7 @@ N: Misha Brukman
 E: brukman+llvm@uiuc.edu
 W: http://misha.brukman.net
 D: Portions of X86 and Sparc JIT compilers, PowerPC backend
-D: Incremental bytecode loader
+D: Incremental bitcode loader
 
 N: Cameron Buschardt
 E: buschard@uiuc.edu
index 7815e19739f30854872e8501f3aacb22628937e1..e3ec3ff136c743d56004cd64bd867c7d83714a1e 100644 (file)
@@ -249,7 +249,7 @@ order:</p>
   <li><tt>llvm/*</tt></li>
   <li><tt>llvm/Analysis/*</tt></li>
   <li><tt>llvm/Assembly/*</tt></li>
-  <li><tt>llvm/Bytecode/*</tt></li>
+  <li><tt>llvm/Bitcode/*</tt></li>
   <li><tt>llvm/CodeGen/*</tt></li>
   <li>...</li>
   <li><tt>Support/*</tt></li>
index 1433d082ae5bc7d96dcaedc7fe5e348c8a9a9049..dbe8f389ce80fd1a1165b3b9f0c306aae3ae94fd 100644 (file)
@@ -19,7 +19,7 @@
   </ul></li>
   <li><a href="#multiphase">Multi-phase communication between LLVM and linker</a>
   <ul>
-    <li><a href="#phase1">Phase 1 : Read LLVM Bytecode Files</a></li>
+    <li><a href="#phase1">Phase 1 : Read LLVM Bitcode Files</a></li>
     <li><a href="#phase2">Phase 2 : Symbol Resolution</a></li>
     <li><a href="#phase3">Phase 3 : Optimize Bitcode Files</a></li>
     <li><a href="#phase4">Phase 4 : Symbol Resolution after optimization</a></li>
index ecbe30e4cfe8405c24852cc890f2d98fde176567..66a5d3fe0b1a75af266879edd6425ca4bdf8b46f 100644 (file)
@@ -4,5 +4,5 @@
 
 This project is an extremely simple example of using some simple pieces of the 
 LLVM API.  The actual executable generated by this project simply emits an 
-LLVM bytecode file to standard output.  It is designed to show some basic 
+LLVM bitcode file to standard output.  It is designed to show some basic 
 usage of LLVM APIs, and how to link to LLVM libraries.
index d435d57adf371aa1f5058be8c13d617c96e5ecb5..a13307b867c374a9aeb3bd7aed9d6e09758d762f 100644 (file)
@@ -197,7 +197,7 @@ Options:
 Typical components:
   all                All LLVM libraries (default).
   backend            Either a native backend or the C backend.
-  engine             Either a native JIT or a bytecode interpreter.
+  engine             Either a native JIT or a bitcode interpreter.
 __EOD__
     exit(1);
 }
index b7ffbd9947d5a8accf87626a4914a05c3366f2dc..f2a872c6dc3e70f85f3fa4f4e26fa25d529756f8 100755 (executable)
@@ -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
index 4f8d08dbffe1fedd78f164380d2522a11937e107..7a2eab05d71a54857f629cb336719dde0c9b99c8 100755 (executable)
@@ -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
index b3cecb14118fc4b57854c9c1af18accd3f556323..91a557cc161db26df1cf322b968d8473b6f117f3 100755 (executable)
@@ -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
index 75164af237efcdfc754045a9da928f16d7d4c2d5..db547f654e2ff98ebdc43fecc91e9b36beb728a2 100755 (executable)
@@ -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
index f9950f97fea82179c1e22a23b820db1ef18211ac..318011560bc8ee94961548e599ce54030c6d05c5 100755 (executable)
@@ -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];