blob: b674f3171ef86c346284e0dc47d0c2d6ad87dfe9 [file] [log] [blame]
Nick Kledzik77595fc2008-02-26 20:26:43 +00001//===-lto.cpp - LLVM Link Time Optimizer ----------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Link Time Optimization library. This library is
11// intended to be used by linker to optimize code at link time.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm-c/lto.h"
16
17#include "LTOModule.h"
18#include "LTOCodeGenerator.h"
19
20
21// holds most recent error string
22// *** not thread safe ***
23static std::string sLastErrorString;
24
25
26
27//
28// returns a printable string
29//
30extern const char* lto_get_version()
31{
32 return LTOCodeGenerator::getVersionString();
33}
34
35//
Nick Kledzikef194ed2008-02-27 22:25:36 +000036// returns the last error string or NULL if last operation was successful
Nick Kledzik77595fc2008-02-26 20:26:43 +000037//
38const char* lto_get_error_message()
39{
40 return sLastErrorString.c_str();
41}
42
43
44
45//
46// validates if a file is a loadable object file
47//
48bool lto_module_is_object_file(const char* path)
49{
50 return LTOModule::isBitcodeFile(path);
51}
52
53
54//
55// validates if a file is a loadable object file compilable for requested target
56//
57bool lto_module_is_object_file_for_target(const char* path,
58 const char* target_triplet_prefix)
59{
60 return LTOModule::isBitcodeFileForTarget(path, target_triplet_prefix);
61}
62
63
64//
65// validates if a buffer is a loadable object file
66//
67bool lto_module_is_object_file_in_memory(const void* mem, size_t length)
68{
69 return LTOModule::isBitcodeFile(mem, length);
70}
71
72
73//
74// validates if a buffer is a loadable object file compilable for the target
75//
76bool lto_module_is_object_file_in_memory_for_target(const void* mem,
77 size_t length, const char* target_triplet_prefix)
78{
79 return LTOModule::isBitcodeFileForTarget(mem, length, target_triplet_prefix);
80}
81
82
83
84//
85// loads an object file from disk
86// returns NULL on error (check lto_get_error_message() for details)
87//
88lto_module_t lto_module_create(const char* path)
89{
90 return LTOModule::makeLTOModule(path, sLastErrorString);
91}
92
93
94//
95// loads an object file from memory
96// returns NULL on error (check lto_get_error_message() for details)
97//
98lto_module_t lto_module_create_from_memory(const void* mem, size_t length)
99{
100 return LTOModule::makeLTOModule(mem, length, sLastErrorString);
101}
102
103
104//
105// frees all memory for a module
106// upon return the lto_module_t is no longer valid
107//
108void lto_module_dispose(lto_module_t mod)
109{
110 delete mod;
111}
112
113
114//
115// returns triplet string which the object module was compiled under
116//
117const char* lto_module_get_target_triple(lto_module_t mod)
118{
119 return mod->getTargetTriple();
120}
121
122
123//
124// returns the number of symbols in the object module
125//
126uint32_t lto_module_get_num_symbols(lto_module_t mod)
127{
128 return mod->getSymbolCount();
129}
130
131//
132// returns the name of the ith symbol in the object module
133//
134const char* lto_module_get_symbol_name(lto_module_t mod, uint32_t index)
135{
136 return mod->getSymbolName(index);
137}
138
139
140//
141// returns the attributes of the ith symbol in the object module
142//
143lto_symbol_attributes lto_module_get_symbol_attribute(lto_module_t mod,
144 uint32_t index)
145{
146 return mod->getSymbolAttributes(index);
147}
148
149
150
151
152
153//
154// instantiates a code generator
155// returns NULL if there is an error
156//
157lto_code_gen_t lto_codegen_create()
158{
159 return new LTOCodeGenerator();
160}
161
162
163
164//
165// frees all memory for a code generator
166// upon return the lto_code_gen_t is no longer valid
167//
168void lto_codegen_dispose(lto_code_gen_t cg)
169{
170 delete cg;
171}
172
173
174
175//
176// add an object module to the set of modules for which code will be generated
177// returns true on error (check lto_get_error_message() for details)
178//
179bool lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod)
180{
181 return cg->addModule(mod, sLastErrorString);
182}
183
184
185//
186// sets what if any format of debug info should be generated
187// returns true on error (check lto_get_error_message() for details)
188//
189bool lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model debug)
190{
191 return cg->setDebugInfo(debug, sLastErrorString);
192}
193
194
195//
196// sets what code model to generated
197// returns true on error (check lto_get_error_message() for details)
198//
199bool lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model model)
200{
201 return cg->setCodePICModel(model, sLastErrorString);
202}
203
204//
205// adds to a list of all global symbols that must exist in the final
206// generated code. If a function is not listed there, it might be
207// inlined into every usage and optimized away.
208//
209void lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol)
210{
211 cg->addMustPreserveSymbol(symbol);
212}
213
214
215//
216// writes a new file at the specified path that contains the
217// merged contents of all modules added so far.
218// returns true on error (check lto_get_error_message() for details)
219//
220bool lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path)
221{
222 return cg->writeMergedModules(path, sLastErrorString);
223}
224
225
226//
Nick Kledzikef194ed2008-02-27 22:25:36 +0000227// Generates code for all added modules into one native object file.
228// On sucess returns a pointer to a generated mach-o/ELF buffer and
229// length set to the buffer size. The buffer is owned by the
230// lto_code_gen_t and will be freed when lto_codegen_dispose()
231// is called, or lto_codegen_compile() is called again.
232// On failure, returns NULL (check lto_get_error_message() for details).
Nick Kledzik77595fc2008-02-26 20:26:43 +0000233//
Nick Kledzikef194ed2008-02-27 22:25:36 +0000234extern const void*
Nick Kledzik77595fc2008-02-26 20:26:43 +0000235lto_codegen_compile(lto_code_gen_t cg, size_t* length)
236{
237 return cg->compile(length, sLastErrorString);
238}
239
Devang Patela93ae712008-07-03 22:53:14 +0000240extern void
241lto_codegen_debug_options(lto_code_gen_t cg, const char * opt)
242{
243 cg->setCodeGenDebugOptions(opt);
244}
245
Nick Kledzik77595fc2008-02-26 20:26:43 +0000246
247