X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=docs%2FCommandGuide%2Fllvm-ar.pod;h=63ba43f6f6f865bcb590de078867eacebc5577ca;hb=73b43b9b549a75fb0015c825df68abd95705a67c;hp=0253d4f921120979c4c2db8b5a3f7e9ccf561b83;hpb=9e2485c1227c426910f87e342022c71fe1a916a3;p=oota-llvm.git diff --git a/docs/CommandGuide/llvm-ar.pod b/docs/CommandGuide/llvm-ar.pod index 0253d4f9211..63ba43f6f6f 100644 --- a/docs/CommandGuide/llvm-ar.pod +++ b/docs/CommandGuide/llvm-ar.pod @@ -13,7 +13,7 @@ B [-]{dmpqrtx}[Rabfikouz] [relpos] [count] [files...] The B command is similar to the common Unix utility, C. It archives several files together into a single file. The intent for this is -to produce archive libraries by LLVM bytecode that can be linked into an +to produce archive libraries by LLVM bitcode that can be linked into an LLVM program. However, the archive can contain any kind of file. By default, B generates a symbol table that makes linking faster because only the symbol table needs to be consulted, not each individual file member @@ -44,7 +44,7 @@ Here's where B departs from previous C implementations: =item I -Since B is intended to archive bytecode files, the symbol table +Since B is intended to archive bitcode files, the symbol table won't make much sense to anything but LLVM. Consequently, the symbol table's format has been simplified. It consists simply of a sequence of pairs of a file member index number as an LSB 4byte integer and a null-terminated @@ -78,7 +78,7 @@ add all the files under a directory, if requested. When B prints out the verbose table of contents (C option), it precedes the usual output with a character indicating the basic kind of content in the file. A blank means the file is a regular file. A 'Z' means -the file is compressed. A 'B' means the file is an LLVM bytecode file. An +the file is compressed. A 'B' means the file is an LLVM bitcode file. An 'S' means the file is the symbol table. =back @@ -123,7 +123,7 @@ archive is not modified. Print files to the standard output. The F modifier applies to this operation. This operation simply prints the F indicated to the standard output. If no F are specified, the entire archive is printed. -Printing bytecode files is ill-advised as they might confuse your terminal +Printing bitcode files is ill-advised as they might confuse your terminal settings. The F

operation never modifies the archive. =item q[Rfz] @@ -146,7 +146,7 @@ F are specified, the archive is not modified. Print the table of contents. Without any modifiers, this operation just prints the names of the members to the standard output. With the F modifier, -B also prints out the file type (B=bytecode, Z=compressed, S=symbol +B also prints out the file type (B=bitcode, Z=compressed, S=symbol table, blank=regular file), the permission mode, the owner and group, the size, and the date. If any F are specified, the listing is only for those files. If no F are specified, the table of contents for the @@ -196,9 +196,9 @@ A synonym for the F option. =item [k] -Normally, B will not print the contents of bytecode files when the +Normally, B will not print the contents of bitcode files when the F

operation is used. This modifier defeats the default and allows the -bytecode members to be printed. +bitcode members to be printed. =item [N] @@ -230,8 +230,8 @@ a time stamp than the time stamp of the member in the archive. When inserting or replacing any file in the archive, compress the file first. This -modifier is safe to use when (previously) compressed bytecode files are added to -the archive; the compressed bytecode files will not be doubly compressed. +modifier is safe to use when (previously) compressed bitcode files are added to +the archive; the compressed bitcode files will not be doubly compressed. =back @@ -252,7 +252,7 @@ archive is being created. Using this modifier turns off that warning. This modifier requests that an archive index (or symbol table) be added to the archive. This is the default mode of operation. The symbol table will contain all the externally visible functions and global variables defined by all the -bytecode files in the archive. Using this modifier is more efficient that using +bitcode files in the archive. Using this modifier is more efficient that using L which also creates the symbol table. =item [S] @@ -363,7 +363,7 @@ the details on each of these items: =item offset - vbr encoded 32-bit integer -The offset item provides the offset into the archive file where the bytecode +The offset item provides the offset into the archive file where the bitcode member is stored that is associated with the symbol. The offset value is 0 based at the start of the first "normal" file member. To derive the actual file offset of the member, you must add the number of bytes occupied by the file @@ -397,10 +397,10 @@ exit code of 3. =head1 SEE ALSO -L, L +L, ar(1) =head1 AUTHORS -Maintained by the LLVM Team (L). +Maintained by the LLVM Team (L). =cut