Searched refs:Linker (Results 1 - 13 of 13) sorted by relevance

/frameworks/compile/libbcc/lib/Core/
H A DLinker.cpp17 #include "bcc/Linker.h"
39 const char* Linker::GetErrorString(enum Linker::ErrorCode pErrCode) {
44 "Configure Linker twice.",
56 "Linker::config() is not called",
58 "Linker::setOutput() is not called before add input files",
79 // Linker
81 Linker::Linker() function in class:Linker
86 Linker function in class:Linker
[all...]
H A DAndroid.mk28 Linker.cpp \
H A DSource.cpp23 #include <llvm/Linker.h>
161 llvm::Linker::LinkerMode mode =
162 ((pPreserveSource) ? llvm::Linker::PreserveSource :
163 llvm::Linker::DestroySource);
165 if (llvm::Linker::LinkModules(mModule, &pSource.getModule(),
/frameworks/compile/mclinker/tools/mcld/lib/Core/
H A DLinker.cpp1 //===- Linker.cpp ---------------------------------------------------------===//
10 #include "alone/Linker.h"
32 const char* Linker::GetErrorString(enum Linker::ErrorCode pErrCode) {
37 "Configure Linker twice.",
49 "Linker::config() is not called",
51 "Linker::setOutput() is not called before add input files",
72 // Linker
74 Linker::Linker() function in class:Linker
79 Linker::Linker(const LinkerConfig& pConfig) function in class:Linker
[all...]
/frameworks/compile/libbcc/include/bcc/
H A DLinker.h44 class Linker { class in namespace:bcc
75 Linker();
77 Linker(const LinkerConfig& pConfig);
79 ~Linker();
/frameworks/compile/mclinker/tools/mcld/include/alone/
H A DLinker.h1 //===- Linker.h -----------------------------------------------------------===//
37 class Linker { class in namespace:alone
68 Linker();
70 Linker(const LinkerConfig& pConfig);
72 ~Linker();
/frameworks/compile/libbcc/tools/mcld/
H A DMain.cpp33 #include <bcc/Linker.h>
186 bool ConfigLinker(Linker &pLinker, const std::string &pOutputFilename) {
246 Linker::ErrorCode result = pLinker.config(*config);
247 if (Linker::kSuccess != result) {
249 << Linker::GetErrorString(result) << ")\n";
257 bool PrepareInputOutput(Linker &pLinker, const std::string &pOutputPath) {
262 Linker::ErrorCode result = pLinker.setOutput(pOutputPath);
264 if (Linker::kSuccess != result) {
267 << Linker::GetErrorString(result) << ")\n";
296 if (Linker
[all...]
/frameworks/compile/mclinker/tools/mcld/
H A Dmain.cpp26 #include <alone/Linker.h>
179 bool ConfigLinker(Linker &pLinker, const std::string &pOutputFilename) {
239 Linker::ErrorCode result = pLinker.config(*config);
240 if (Linker::kSuccess != result) {
242 << Linker::GetErrorString(result) << ")\n";
250 bool PrepareInputOutput(Linker &pLinker, const std::string &pOutputPath) {
255 Linker::ErrorCode result = pLinker.setOutput(pOutputPath);
257 if (Linker::kSuccess != result) {
260 << Linker::GetErrorString(result) << ")\n";
289 if (Linker
[all...]
/frameworks/compile/libbcc/lib/AndroidBitcode/
H A DABCCompilerDriver.cpp122 Linker::ErrorCode result = mLinker.config(*mLinkerConfig);
123 if (result != Linker::kSuccess) {
125 Linker::GetErrorString(result));
178 Linker::ErrorCode result = mLinker.setOutput(pOutputFd);
180 if (result != Linker::kSuccess) {
182 pOutputFd, Linker::GetErrorString(result));
209 if (result != Linker::kSuccess) {
211 Linker::GetErrorString(result));
/frameworks/compile/llvm-ndk-cc/
H A Dllvm-ndk-link.cpp5 #include "llvm/Linker.h"
68 llvm::Linker Linker("llvm-ndk-link", M);
72 if (!Linker.LinkInModule(M, &ErrMsg)) {
77 M = Linker.releaseModule();
/frameworks/compile/libbcc/include/bcc/AndroidBitcode/
H A DABCCompilerDriver.h23 #include "bcc/Linker.h"
37 Linker mLinker;
/frameworks/compile/slang/
H A Dllvm-rs-link.cpp26 #include "llvm/Linker.h"
207 if (llvm::Linker::LinkModules(Composite.get(), Lib,
208 llvm::Linker::DestroySource, &Err)) {
H A Dslang.cpp52 #include "llvm/Linker.h"
83 llvm::Linker::LinkModules(NULL, NULL, 0, NULL);

Completed in 183 milliseconds