[llvm-commits] [llvm] r115080 - in /llvm/trunk: 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

Duncan Sands baldrick at free.fr
Wed Sep 29 13:09:55 PDT 2010


Author: baldrick
Date: Wed Sep 29 15:09:55 2010
New Revision: 115080

URL: http://llvm.org/viewvc/llvm-project?rev=115080&view=rev
Log:
Convert a bunch of uses of 'bytecode' into 'bitcode'.  This
is not everything, but the remaining cases are less trivial.

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

Modified: llvm/trunk/CREDITS.TXT
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CREDITS.TXT?rev=115080&r1=115079&r2=115080&view=diff
==============================================================================
--- llvm/trunk/CREDITS.TXT (original)
+++ llvm/trunk/CREDITS.TXT Wed Sep 29 15:09:55 2010
@@ -39,7 +39,7 @@
 E: brukman+llvm at 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 at uiuc.edu

Modified: llvm/trunk/docs/CodingStandards.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodingStandards.html?rev=115080&r1=115079&r2=115080&view=diff
==============================================================================
--- llvm/trunk/docs/CodingStandards.html (original)
+++ llvm/trunk/docs/CodingStandards.html Wed Sep 29 15:09:55 2010
@@ -249,7 +249,7 @@
   <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>

Modified: llvm/trunk/docs/LinkTimeOptimization.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LinkTimeOptimization.html?rev=115080&r1=115079&r2=115080&view=diff
==============================================================================
--- llvm/trunk/docs/LinkTimeOptimization.html (original)
+++ llvm/trunk/docs/LinkTimeOptimization.html Wed Sep 29 15:09:55 2010
@@ -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>

Modified: llvm/trunk/examples/ModuleMaker/README.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/ModuleMaker/README.txt?rev=115080&r1=115079&r2=115080&view=diff
==============================================================================
--- llvm/trunk/examples/ModuleMaker/README.txt (original)
+++ llvm/trunk/examples/ModuleMaker/README.txt Wed Sep 29 15:09:55 2010
@@ -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.

Modified: llvm/trunk/tools/llvm-config/llvm-config.in.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-config/llvm-config.in.in?rev=115080&r1=115079&r2=115080&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-config/llvm-config.in.in (original)
+++ llvm/trunk/tools/llvm-config/llvm-config.in.in Wed Sep 29 15:09:55 2010
@@ -197,7 +197,7 @@
 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);
 }

Modified: llvm/trunk/utils/findmisopt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/findmisopt?rev=115080&r1=115079&r2=115080&view=diff
==============================================================================
--- llvm/trunk/utils/findmisopt (original)
+++ llvm/trunk/utils/findmisopt Wed Sep 29 15:09:55 2010
@@ -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

Modified: llvm/trunk/utils/findoptdiff
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/findoptdiff?rev=115080&r1=115079&r2=115080&view=diff
==============================================================================
--- llvm/trunk/utils/findoptdiff (original)
+++ llvm/trunk/utils/findoptdiff Wed Sep 29 15:09:55 2010
@@ -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

Modified: llvm/trunk/utils/llvm-native-gcc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/llvm-native-gcc?rev=115080&r1=115079&r2=115080&view=diff
==============================================================================
--- llvm/trunk/utils/llvm-native-gcc (original)
+++ llvm/trunk/utils/llvm-native-gcc Wed Sep 29 15:09:55 2010
@@ -193,10 +193,10 @@
 
 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

Modified: llvm/trunk/utils/llvm-native-gxx
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/llvm-native-gxx?rev=115080&r1=115079&r2=115080&view=diff
==============================================================================
--- llvm/trunk/utils/llvm-native-gxx (original)
+++ llvm/trunk/utils/llvm-native-gxx Wed Sep 29 15:09:55 2010
@@ -193,10 +193,10 @@
 
 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

Modified: llvm/trunk/utils/profile.pl
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/profile.pl?rev=115080&r1=115079&r2=115080&view=diff
==============================================================================
--- llvm/trunk/utils/profile.pl (original)
+++ llvm/trunk/utils/profile.pl Wed Sep 29 15:09:55 2010
@@ -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 @@
   $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];
 





More information about the llvm-commits mailing list