mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-08 19:25:47 +00:00
llvm-size: Apply Chris's code review fixes.
This doesn't use formated_raw_ostream because it doesn't support the functionality needed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140751 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -31,44 +31,43 @@
|
|||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
using namespace object;
|
using namespace object;
|
||||||
|
|
||||||
namespace {
|
enum OutputFormatTy {berkeley, sysv};
|
||||||
enum OutputFormatTy {berkeley, sysv};
|
static cl::opt<OutputFormatTy>
|
||||||
cl::opt<OutputFormatTy>
|
OutputFormat("format",
|
||||||
OutputFormat("format",
|
cl::desc("Specify output format"),
|
||||||
cl::desc("Specify output format"),
|
cl::values(clEnumVal(sysv, "System V format"),
|
||||||
cl::values(clEnumVal(sysv, "System V format"),
|
clEnumVal(berkeley, "Berkeley format"),
|
||||||
clEnumVal(berkeley, "Berkeley format"),
|
clEnumValEnd),
|
||||||
clEnumValEnd),
|
cl::init(berkeley));
|
||||||
cl::init(berkeley));
|
|
||||||
|
|
||||||
cl::opt<OutputFormatTy>
|
static cl::opt<OutputFormatTy>
|
||||||
OutputFormatShort(cl::desc("Specify output format"),
|
OutputFormatShort(cl::desc("Specify output format"),
|
||||||
cl::values(clEnumValN(sysv, "A", "System V format"),
|
cl::values(clEnumValN(sysv, "A", "System V format"),
|
||||||
clEnumValN(berkeley, "B", "Berkeley format"),
|
clEnumValN(berkeley, "B", "Berkeley format"),
|
||||||
clEnumValEnd),
|
clEnumValEnd),
|
||||||
cl::init(berkeley));
|
cl::init(berkeley));
|
||||||
|
|
||||||
enum RadixTy {octal = 8, decimal = 10, hexadecimal = 16};
|
enum RadixTy {octal = 8, decimal = 10, hexadecimal = 16};
|
||||||
cl::opt<int>
|
static cl::opt<unsigned int>
|
||||||
Radix("-radix",
|
Radix("-radix",
|
||||||
cl::desc("Print size in radix. Only 8, 10, and 16 are valid"),
|
cl::desc("Print size in radix. Only 8, 10, and 16 are valid"),
|
||||||
cl::init(decimal));
|
cl::init(decimal));
|
||||||
|
|
||||||
cl::opt<RadixTy>
|
static cl::opt<RadixTy>
|
||||||
RadixShort(cl::desc("Print size in radix:"),
|
RadixShort(cl::desc("Print size in radix:"),
|
||||||
cl::values(clEnumValN(octal, "o", "Print size in octal"),
|
cl::values(clEnumValN(octal, "o", "Print size in octal"),
|
||||||
clEnumValN(decimal, "d", "Print size in decimal"),
|
clEnumValN(decimal, "d", "Print size in decimal"),
|
||||||
clEnumValN(hexadecimal, "x", "Print size in hexadecimal"),
|
clEnumValN(hexadecimal, "x", "Print size in hexadecimal"),
|
||||||
clEnumValEnd),
|
clEnumValEnd),
|
||||||
cl::init(decimal));
|
cl::init(decimal));
|
||||||
|
|
||||||
cl::list<std::string>
|
static cl::list<std::string>
|
||||||
InputFilenames(cl::Positional, cl::desc("<input files>"),
|
InputFilenames(cl::Positional, cl::desc("<input files>"),
|
||||||
cl::ZeroOrMore);
|
cl::ZeroOrMore);
|
||||||
|
|
||||||
std::string ToolName;
|
static std::string ToolName;
|
||||||
}
|
|
||||||
|
|
||||||
|
/// @brief If ec is not success, print the error and return true.
|
||||||
static bool error(error_code ec) {
|
static bool error(error_code ec) {
|
||||||
if (!ec) return false;
|
if (!ec) return false;
|
||||||
|
|
||||||
@@ -77,13 +76,18 @@ static bool error(error_code ec) {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int getNumLengthAsString(uint64_t num) {
|
/// @brief Get the length of the string that represents @p num in Radix
|
||||||
|
/// including the leading 0x or 0 for hexadecimal and octal respectively.
|
||||||
|
static unsigned int getNumLengthAsString(uint64_t num) {
|
||||||
APInt conv(64, num);
|
APInt conv(64, num);
|
||||||
SmallString<32> result;
|
SmallString<32> result;
|
||||||
conv.toString(result, static_cast<unsigned int>(Radix), false, true);
|
conv.toString(result, Radix, false, true);
|
||||||
return result.size();
|
return result.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// @brief Print the size of each section in @p o.
|
||||||
|
///
|
||||||
|
/// The format used is determined by @c OutputFormat and @c Radix.
|
||||||
static void PrintObjectSectionSizes(ObjectFile *o) {
|
static void PrintObjectSectionSizes(ObjectFile *o) {
|
||||||
uint64_t total = 0;
|
uint64_t total = 0;
|
||||||
std::string fmtbuf;
|
std::string fmtbuf;
|
||||||
@@ -105,8 +109,8 @@ static void PrintObjectSectionSizes(ObjectFile *o) {
|
|||||||
// Run two passes over all sections. The first gets the lengths needed for
|
// Run two passes over all sections. The first gets the lengths needed for
|
||||||
// formatting the output. The second actually does the output.
|
// formatting the output. The second actually does the output.
|
||||||
std::size_t max_name_len = strlen("section");
|
std::size_t max_name_len = strlen("section");
|
||||||
int max_size_len = strlen("size");
|
std::size_t max_size_len = strlen("size");
|
||||||
int max_addr_len = strlen("addr");
|
std::size_t max_addr_len = strlen("addr");
|
||||||
error_code ec;
|
error_code ec;
|
||||||
for (ObjectFile::section_iterator i = o->begin_sections(),
|
for (ObjectFile::section_iterator i = o->begin_sections(),
|
||||||
e = o->end_sections(); i != e;
|
e = o->end_sections(); i != e;
|
||||||
@@ -127,10 +131,12 @@ static void PrintObjectSectionSizes(ObjectFile *o) {
|
|||||||
max_addr_len = std::max(max_addr_len, getNumLengthAsString(addr));
|
max_addr_len = std::max(max_addr_len, getNumLengthAsString(addr));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add extra padding.
|
||||||
max_name_len += 2;
|
max_name_len += 2;
|
||||||
max_size_len += 2;
|
max_size_len += 2;
|
||||||
max_addr_len += 2;
|
max_addr_len += 2;
|
||||||
|
|
||||||
|
// Setup header format.
|
||||||
fmt << "%-" << max_name_len << "s "
|
fmt << "%-" << max_name_len << "s "
|
||||||
<< "%" << max_size_len << "s "
|
<< "%" << max_size_len << "s "
|
||||||
<< "%" << max_addr_len << "s\n";
|
<< "%" << max_addr_len << "s\n";
|
||||||
@@ -176,12 +182,14 @@ static void PrintObjectSectionSizes(ObjectFile *o) {
|
|||||||
static_cast<const char*>("Total"),
|
static_cast<const char*>("Total"),
|
||||||
total);
|
total);
|
||||||
} else {
|
} else {
|
||||||
|
// The Berkeley format does not display individual section sizes. It
|
||||||
|
// displays the cumulative size for each section type.
|
||||||
uint64_t total_text = 0;
|
uint64_t total_text = 0;
|
||||||
uint64_t total_data = 0;
|
uint64_t total_data = 0;
|
||||||
uint64_t total_bss = 0;
|
uint64_t total_bss = 0;
|
||||||
|
|
||||||
|
// Make one pass over the section table to calculate sizes.
|
||||||
error_code ec;
|
error_code ec;
|
||||||
// Collect section data.
|
|
||||||
for (ObjectFile::section_iterator i = o->begin_sections(),
|
for (ObjectFile::section_iterator i = o->begin_sections(),
|
||||||
e = o->end_sections(); i != e;
|
e = o->end_sections(); i != e;
|
||||||
i.increment(ec)) {
|
i.increment(ec)) {
|
||||||
@@ -223,6 +231,8 @@ static void PrintObjectSectionSizes(ObjectFile *o) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// @brief Print the section sizes for @p file. If @p file is an archive, print
|
||||||
|
/// the section sizes for each archive member.
|
||||||
static void PrintFileSectionSizes(StringRef file) {
|
static void PrintFileSectionSizes(StringRef file) {
|
||||||
// If file is not stdin, check that it exists.
|
// If file is not stdin, check that it exists.
|
||||||
if (file != "-") {
|
if (file != "-") {
|
||||||
@@ -233,6 +243,7 @@ static void PrintFileSectionSizes(StringRef file) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Attempt to open the binary.
|
||||||
OwningPtr<Binary> binary;
|
OwningPtr<Binary> binary;
|
||||||
if (error_code ec = createBinary(file, binary)) {
|
if (error_code ec = createBinary(file, binary)) {
|
||||||
errs() << ToolName << ": " << file << ": " << ec.message() << ".\n";
|
errs() << ToolName << ": " << file << ": " << ec.message() << ".\n";
|
||||||
@@ -240,8 +251,9 @@ static void PrintFileSectionSizes(StringRef file) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (Archive *a = dyn_cast<Archive>(binary.get())) {
|
if (Archive *a = dyn_cast<Archive>(binary.get())) {
|
||||||
|
// This is an archive. Iterate over each member and display its sizes.
|
||||||
for (object::Archive::child_iterator i = a->begin_children(),
|
for (object::Archive::child_iterator i = a->begin_children(),
|
||||||
e = a->end_children(); i != e; ++i) {
|
e = a->end_children(); i != e; ++i) {
|
||||||
OwningPtr<Binary> child;
|
OwningPtr<Binary> child;
|
||||||
if (error_code ec = i->getAsBinary(child)) {
|
if (error_code ec = i->getAsBinary(child)) {
|
||||||
errs() << ToolName << ": " << file << ": " << ec.message() << ".\n";
|
errs() << ToolName << ": " << file << ": " << ec.message() << ".\n";
|
||||||
@@ -265,6 +277,7 @@ static void PrintFileSectionSizes(StringRef file) {
|
|||||||
} else {
|
} else {
|
||||||
errs() << ToolName << ": " << file << ": " << "Unrecognized file type.\n";
|
errs() << ToolName << ": " << file << ": " << "Unrecognized file type.\n";
|
||||||
}
|
}
|
||||||
|
// System V adds an extra newline at the end of each file.
|
||||||
if (OutputFormat == sysv)
|
if (OutputFormat == sysv)
|
||||||
outs() << "\n";
|
outs() << "\n";
|
||||||
}
|
}
|
||||||
@@ -281,14 +294,14 @@ int main(int argc, char **argv) {
|
|||||||
if (OutputFormatShort.getNumOccurrences())
|
if (OutputFormatShort.getNumOccurrences())
|
||||||
OutputFormat = OutputFormatShort;
|
OutputFormat = OutputFormatShort;
|
||||||
if (RadixShort.getNumOccurrences())
|
if (RadixShort.getNumOccurrences())
|
||||||
Radix = int(RadixShort);
|
Radix = RadixShort;
|
||||||
|
|
||||||
if (InputFilenames.size() == 0)
|
if (InputFilenames.size() == 0)
|
||||||
InputFilenames.push_back("a.out");
|
InputFilenames.push_back("a.out");
|
||||||
|
|
||||||
if (OutputFormat == berkeley)
|
if (OutputFormat == berkeley)
|
||||||
outs() << " text data bss "
|
outs() << " text data bss "
|
||||||
<< (Radix == int(octal) ? "oct" : "dec")
|
<< (Radix == octal ? "oct" : "dec")
|
||||||
<< " hex filename\n";
|
<< " hex filename\n";
|
||||||
|
|
||||||
std::for_each(InputFilenames.begin(), InputFilenames.end(),
|
std::for_each(InputFilenames.begin(), InputFilenames.end(),
|
||||||
|
Reference in New Issue
Block a user