Cleanup whitespace. Doxygenize comments. And indent to llvm coding standards.

llvm-svn: 153740
This commit is contained in:
Bill Wendling 2012-03-30 10:29:38 +00:00
parent 70a6f5ebc7
commit 619da9f4da

View File

@ -4,10 +4,10 @@
// //
// This file is distributed under the University of Illinois Open Source // This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details. // License. See LICENSE.TXT for details.
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// //
// This file implements the Link Time Optimization library. This library is // This file implements the Link Time Optimization library. This library is
// intended to be used by linker to optimize code at link time. // intended to be used by linker to optimize code at link time.
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
@ -19,277 +19,185 @@
#include "LTOCodeGenerator.h" #include "LTOCodeGenerator.h"
// holds most recent error string // Holds most recent error string.
// *** not thread safe *** // *** Not thread safe ***
static std::string sLastErrorString; static std::string sLastErrorString;
/// lto_get_version - Returns a printable string.
extern const char* lto_get_version() {
// return LTOCodeGenerator::getVersionString();
// returns a printable string
//
extern const char* lto_get_version()
{
return LTOCodeGenerator::getVersionString();
} }
// /// lto_get_error_message - Returns the last error string or NULL if last
// returns the last error string or NULL if last operation was successful /// operation was successful.
// const char* lto_get_error_message() {
const char* lto_get_error_message() return sLastErrorString.c_str();
{
return sLastErrorString.c_str();
} }
/// lto_module_is_object_file - Validates if a file is a loadable object file.
bool lto_module_is_object_file(const char* path) {
// return LTOModule::isBitcodeFile(path);
// validates if a file is a loadable object file
//
bool lto_module_is_object_file(const char* path)
{
return LTOModule::isBitcodeFile(path);
} }
/// lto_module_is_object_file_for_target - Validates if a file is a loadable
// /// object file compilable for requested target.
// validates if a file is a loadable object file compilable for requested target bool lto_module_is_object_file_for_target(const char* path,
// const char* target_triplet_prefix) {
bool lto_module_is_object_file_for_target(const char* path, return LTOModule::isBitcodeFileForTarget(path, target_triplet_prefix);
const char* target_triplet_prefix)
{
return LTOModule::isBitcodeFileForTarget(path, target_triplet_prefix);
} }
/// lto_module_is_object_file_in_memory - Validates if a buffer is a loadable
// /// object file.
// validates if a buffer is a loadable object file bool lto_module_is_object_file_in_memory(const void* mem, size_t length) {
// return LTOModule::isBitcodeFile(mem, length);
bool lto_module_is_object_file_in_memory(const void* mem, size_t length)
{
return LTOModule::isBitcodeFile(mem, length);
} }
/// lto_module_is_object_file_in_memory_for_target - Validates if a buffer is a
// /// loadable object file compilable for the target.
// validates if a buffer is a loadable object file compilable for the target bool
// lto_module_is_object_file_in_memory_for_target(const void* mem,
bool lto_module_is_object_file_in_memory_for_target(const void* mem, size_t length,
size_t length, const char* target_triplet_prefix) const char* target_triplet_prefix) {
{ return LTOModule::isBitcodeFileForTarget(mem, length, target_triplet_prefix);
return LTOModule::isBitcodeFileForTarget(mem, length, target_triplet_prefix);
} }
/// lto_module_create - Loads an object file from disk. Returns NULL on error
/// (check lto_get_error_message() for details).
// lto_module_t lto_module_create(const char* path) {
// loads an object file from disk return LTOModule::makeLTOModule(path, sLastErrorString);
// returns NULL on error (check lto_get_error_message() for details)
//
lto_module_t lto_module_create(const char* path)
{
return LTOModule::makeLTOModule(path, sLastErrorString);
} }
// /// lto_module_create_from_fd - Loads an object file from disk. Returns NULL on
// loads an object file from disk /// error (check lto_get_error_message() for details).
// returns NULL on error (check lto_get_error_message() for details) lto_module_t lto_module_create_from_fd(int fd, const char *path, size_t size) {
// return LTOModule::makeLTOModule(fd, path, size, sLastErrorString);
lto_module_t lto_module_create_from_fd(int fd, const char *path, size_t size)
{
return LTOModule::makeLTOModule(fd, path, size, sLastErrorString);
} }
// /// lto_module_create_from_fd_at_offset - Loads an object file from disk.
// loads an object file from disk /// Returns NULL on error (check lto_get_error_message() for details).
// returns NULL on error (check lto_get_error_message() for details)
//
lto_module_t lto_module_create_from_fd_at_offset(int fd, const char *path, lto_module_t lto_module_create_from_fd_at_offset(int fd, const char *path,
size_t file_size, size_t file_size,
size_t map_size, size_t map_size,
off_t offset) off_t offset) {
{ return LTOModule::makeLTOModule(fd, path, file_size, map_size,
return LTOModule::makeLTOModule(fd, path, file_size, map_size, offset, sLastErrorString);
offset, sLastErrorString);
} }
// /// lto_module_create_from_memory - Loads an object file from memory. Returns
// loads an object file from memory /// NULL on error (check lto_get_error_message() for details).
// returns NULL on error (check lto_get_error_message() for details) lto_module_t lto_module_create_from_memory(const void* mem, size_t length) {
// return LTOModule::makeLTOModule(mem, length, sLastErrorString);
lto_module_t lto_module_create_from_memory(const void* mem, size_t length)
{
return LTOModule::makeLTOModule(mem, length, sLastErrorString);
} }
/// lto_module_dispose - Frees all memory for a module. Upon return the
// /// lto_module_t is no longer valid.
// frees all memory for a module void lto_module_dispose(lto_module_t mod) {
// upon return the lto_module_t is no longer valid delete mod;
//
void lto_module_dispose(lto_module_t mod)
{
delete mod;
} }
/// lto_module_get_target_triple - Returns triplet string which the object
// /// module was compiled under.
// returns triplet string which the object module was compiled under const char* lto_module_get_target_triple(lto_module_t mod) {
// return mod->getTargetTriple();
const char* lto_module_get_target_triple(lto_module_t mod)
{
return mod->getTargetTriple();
} }
// /// lto_module_set_target_triple - Sets triple string with which the object will
// sets triple string with which the object will be codegened. /// be codegened.
// void lto_module_set_target_triple(lto_module_t mod, const char *triple) {
void lto_module_set_target_triple(lto_module_t mod, const char *triple) return mod->setTargetTriple(triple);
{
return mod->setTargetTriple(triple);
} }
/// lto_module_get_num_symbols - Returns the number of symbols in the object
// /// module.
// returns the number of symbols in the object module unsigned int lto_module_get_num_symbols(lto_module_t mod) {
// return mod->getSymbolCount();
unsigned int lto_module_get_num_symbols(lto_module_t mod)
{
return mod->getSymbolCount();
} }
// /// lto_module_get_symbol_name - Returns the name of the ith symbol in the
// returns the name of the ith symbol in the object module /// object module.
// const char* lto_module_get_symbol_name(lto_module_t mod, unsigned int index) {
const char* lto_module_get_symbol_name(lto_module_t mod, unsigned int index) return mod->getSymbolName(index);
{
return mod->getSymbolName(index);
} }
/// lto_module_get_symbol_attribute - Returns the attributes of the ith symbol
// /// in the object module.
// returns the attributes of the ith symbol in the object module lto_symbol_attributes lto_module_get_symbol_attribute(lto_module_t mod,
// unsigned int index) {
lto_symbol_attributes lto_module_get_symbol_attribute(lto_module_t mod, return mod->getSymbolAttributes(index);
unsigned int index)
{
return mod->getSymbolAttributes(index);
} }
/// lto_codegen_create - Instantiates a code generator. Returns NULL if there
/// is an error.
lto_code_gen_t lto_codegen_create(void) {
return new LTOCodeGenerator();
//
// instantiates a code generator
// returns NULL if there is an error
//
lto_code_gen_t lto_codegen_create(void)
{
return new LTOCodeGenerator();
} }
/// lto_codegen_dispose - Frees all memory for a code generator. Upon return the
/// lto_code_gen_t is no longer valid.
// void lto_codegen_dispose(lto_code_gen_t cg) {
// frees all memory for a code generator delete cg;
// upon return the lto_code_gen_t is no longer valid
//
void lto_codegen_dispose(lto_code_gen_t cg)
{
delete cg;
} }
/// lto_codegen_add_module - Add an object module to the set of modules for
/// which code will be generated. Returns true on error (check
// /// lto_get_error_message() for details).
// add an object module to the set of modules for which code will be generated bool lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod) {
// returns true on error (check lto_get_error_message() for details) return cg->addModule(mod, sLastErrorString);
//
bool lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod)
{
return cg->addModule(mod, sLastErrorString);
} }
/// lto_codegen_set_debug_model - Sets what if any format of debug info should
// /// be generated. Returns true on error (check lto_get_error_message() for
// sets what if any format of debug info should be generated /// details).
// returns true on error (check lto_get_error_message() for details) bool lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model debug) {
// return cg->setDebugInfo(debug, sLastErrorString);
bool lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model debug)
{
return cg->setDebugInfo(debug, sLastErrorString);
} }
/// lto_codegen_set_pic_model - Sets what code model to generated. Returns true
// /// on error (check lto_get_error_message() for details).
// sets what code model to generated bool lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model model) {
// returns true on error (check lto_get_error_message() for details)
//
bool lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model model)
{
return cg->setCodePICModel(model, sLastErrorString); return cg->setCodePICModel(model, sLastErrorString);
} }
// /// lto_codegen_set_cpu - Sets the cpu to generate code for.
// sets the cpu to generate code for void lto_codegen_set_cpu(lto_code_gen_t cg, const char* cpu) {
//
void lto_codegen_set_cpu(lto_code_gen_t cg, const char* cpu)
{
return cg->setCpu(cpu); return cg->setCpu(cpu);
} }
// /// lto_codegen_set_assembler_path - Sets the path to the assembler tool.
// sets the path to the assembler tool void lto_codegen_set_assembler_path(lto_code_gen_t cg, const char *path) {
//
void lto_codegen_set_assembler_path(lto_code_gen_t cg, const char* path)
{
// In here only for backwards compatibility. We use MC now. // In here only for backwards compatibility. We use MC now.
} }
/// lto_codegen_set_assembler_args - Sets extra arguments that libLTO should
// /// pass to the assembler.
// sets extra arguments that libLTO should pass to the assembler
//
void lto_codegen_set_assembler_args(lto_code_gen_t cg, const char** args, void lto_codegen_set_assembler_args(lto_code_gen_t cg, const char** args,
int nargs) int nargs) {
{
// In here only for backwards compatibility. We use MC now. // In here only for backwards compatibility. We use MC now.
} }
// /// lto_codegen_add_must_preserve_symbol - Adds to a list of all global symbols
// adds to a list of all global symbols that must exist in the final /// that must exist in the final generated code. If a function is not listed
// generated code. If a function is not listed there, it might be /// there, it might be inlined into every usage and optimized away.
// inlined into every usage and optimized away. void lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg,
// const char* symbol) {
void lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol)
{
cg->addMustPreserveSymbol(symbol); cg->addMustPreserveSymbol(symbol);
} }
/// lto_codegen_write_merged_modules - Writes a new file at the specified path
// /// that contains the merged contents of all modules added so far. Returns true
// writes a new file at the specified path that contains the /// on error (check lto_get_error_message() for details).
// merged contents of all modules added so far. bool lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path) {
// returns true on error (check lto_get_error_message() for details)
//
bool lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path)
{
return cg->writeMergedModules(path, sLastErrorString); return cg->writeMergedModules(path, sLastErrorString);
} }
/// lto_codegen_compile - Generates code for all added modules into one native
// /// object file. On success returns a pointer to a generated mach-o/ELF buffer
// Generates code for all added modules into one native object file. /// and length set to the buffer size. The buffer is owned by the lto_code_gen_t
// On success returns a pointer to a generated mach-o/ELF buffer and /// object and will be freed when lto_codegen_dispose() is called, or
// length set to the buffer size. The buffer is owned by the /// lto_codegen_compile() is called again. On failure, returns NULL (check
// lto_code_gen_t and will be freed when lto_codegen_dispose() /// lto_get_error_message() for details).
// is called, or lto_codegen_compile() is called again.
// On failure, returns NULL (check lto_get_error_message() for details).
//
extern const void* extern const void*
lto_codegen_compile(lto_code_gen_t cg, size_t* length) lto_codegen_compile(lto_code_gen_t cg, size_t* length) {
{
return cg->compile(length, sLastErrorString); return cg->compile(length, sLastErrorString);
} }
@ -299,12 +207,9 @@ lto_codegen_compile_to_file(lto_code_gen_t cg, const char **name)
return cg->compile_to_file(name, sLastErrorString); return cg->compile_to_file(name, sLastErrorString);
} }
/// lto_codegen_debug_options - Used to pass extra options to the code
// /// generator.
// Used to pass extra options to the code generator
//
extern void extern void
lto_codegen_debug_options(lto_code_gen_t cg, const char * opt) lto_codegen_debug_options(lto_code_gen_t cg, const char * opt) {
{
cg->setCodeGenDebugOptions(opt); cg->setCodeGenDebugOptions(opt);
} }