/external/llvm/lib/Linker/ |
Linker.cpp | 1 //===- lib/Linker/Linker.cpp - Basic Linker functionality ----------------===// 10 // This file contains basic Linker functionality that all usages will need. 14 #include "llvm/Linker.h" 24 Linker::Linker(StringRef progname, StringRef modname, 33 Linker::Linker(StringRef progname, Module* aModule, unsigned flags) : 41 Linker::~Linker() [all...] |
Android.mk | 14 Linker.cpp \
|
LinkItems.cpp | 1 //===- lib/Linker/LinkItems.cpp - Link LLVM objects and libraries ---------===// 15 #include "llvm/Linker.h" 30 Linker::LinkInItems(const ItemList& Items, ItemList& NativeItems) { 74 bool Linker::LinkInLibrary(StringRef Lib, bool& is_native) { 123 bool Linker::LinkInLibraries(const std::vector<std::string> &Libraries) { 158 bool Linker::LinkInFile(const sys::Path &File, bool &is_native) { 182 return error("Cannot find linker input '" + File.str() + "'"); 235 bool Linker::LinkInFiles(const std::vector<sys::Path> &Files) {
|
LinkArchives.cpp | 1 //===- lib/Linker/LinkArchives.cpp - Link LLVM objects and libraries ------===// 15 #include "llvm/Linker.h" 95 Linker::LinkInArchive(const sys::Path &Filename, bool &is_native) {
|
LinkModules.cpp | 1 //===- lib/Linker/LinkModules.cpp - Module Linker Implementation ----------===// 10 // This file implements the LLVM module linker. 14 #include "llvm/Linker.h" 324 /// some overhead due to the use of Value handles which the Linker doesn't [all...] |
/external/llvm/lib/ |
Makefile | 14 Target ExecutionEngine Linker MC CompilerDriver Object
|
/external/llvm/include/llvm/ |
Linker.h | 1 //===- llvm/Linker.h - Module Linker Interface ------------------*- C++ -*-===// 10 // This file defines the interface to the module/file/archive linker. 30 /// In this case the Linker still retains ownership of the Module. If the 32 /// to the caller and the Linker object is only suitable for destruction. 33 /// The Linker can link Modules from memory, bitcode files, or bitcode 35 /// presented to it. By default, the linker will generate error and warning 39 /// @brief The LLVM Linker. 40 class Linker { 54 /// linker [all...] |
/external/llvm/tools/lto/ |
LTOCodeGenerator.h | 18 #include "llvm/Linker.h" 60 llvm::Linker _linker;
|
/external/llvm/ |
Android.mk | 43 lib/Linker \
|
/external/llvm/tools/llvm-link/ |
llvm-link.cpp | 1 //===- llvm-link.cpp - Low-level LLVM linker ------------------------------===// 15 #include "llvm/Linker.h" 83 cl::ParseCommandLineOptions(argc, argv, "llvm linker\n"); 106 if (Linker::LinkModules(Composite.get(), M.get(), &ErrorMessage)) {
|
/external/llvm/autoconf/m4/ |
link_options.m4 | 2 # Get the linker version string. 7 [AC_CACHE_CHECK([for linker version],[llvm_cv_link_version], 19 [Linker version detected at compile time.]) 23 # Determine if the system can handle the -R option being passed to the linker. 38 AC_DEFINE([HAVE_LINK_R],[1],[Define if you can use -Wl,-R. to pass -R. to the linker, in order to add the current directory to the dynamic linker search path.]) 43 # Determine if the system can handle the -R option being passed to the linker. 65 # passed to the linker.
|
/external/llvm/tools/llvm-ld/ |
llvm-ld.cpp | 1 //===- llvm-ld.cpp - LLVM 'ld' compatible linker --------------------------===// 24 #include "llvm/Linker.h" 99 cl::desc("Pass options to the system linker")); 327 const Linker::ItemList &LinkItems, 351 // and linker because we don't know where to put the _start symbol. 476 // linker function by combining the Files and Libraries in the order they were 479 Linker::ItemList& Items, 532 cl::ParseCommandLineOptions(argc, argv, "llvm linker\n"); 564 // Construct a Linker (now that Verbose is set) 565 Linker TheLinker(progname, OutputFilename, Context, Verbose) [all...] |
/external/llvm/tools/bugpoint/ |
BugDriver.cpp | 18 #include "llvm/Linker.h" 130 if (Linker::LinkModules(Program, M.get(), &ErrorMessage)) {
|
Miscompilation.cpp | 21 #include "llvm/Linker.h" 225 if (Linker::LinkModules(M1, M2, &ErrorMsg)) { 399 if (Linker::LinkModules(ToNotOptimize, ToOptimizeLoopExtracted, &ErrorMsg)){ 580 if (Linker::LinkModules(ProgClone, Extracted, &ErrorMsg)) { [all...] |
/frameworks/compile/slang/ |
llvm-rs-link.cpp | 26 #include "llvm/Linker.h" 204 if (llvm::Linker::LinkModules(Composite.get(), Lib, &Err)) {
|
slang.cpp | 52 #include "llvm/Linker.h" 84 llvm::Linker::LinkModules(NULL, NULL, NULL);
|
/external/clang/lib/Driver/ |
ToolChains.h | 164 /// AddLinkSearchPathArgs - Add the linker search paths to \arg CmdArgs. 172 /// AddLinkARCArgs - Add the linker arguments to link the ARC runtime library. 176 /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler 368 std::string Linker;
|
ToolChains.cpp | 660 // Otherwise, let the linker search. 740 // Linker input arguments require custom handling. The problem is that we [all...] |
Tools.cpp | 115 // Add extra linker input arguments which are not treated as inputs 139 // Otherwise, this is a linker input argument. 672 // The kext linker doesn't know how to deal with movw/movt. [all...] |
/external/llvm/tools/llvm-config/ |
llvm-config.in.in | 189 --ldflags Print Linker flags. 237 # and sort them into an order which the linker will like. If we packed 238 # our libraries into fewer archives, we could make the linker do much 243 # we use internally (and ultimately pass to the linker). 270 # complete set of linker arguments. 390 # will need to be included by the linker (in no particular order).
|
/frameworks/compile/libbcc/lib/ExecutionEngine/ |
Compiler.cpp | 66 #include "llvm/Linker.h" 200 // This is set for the linker (specify how large of the virtual addresses 260 mHasLinked(false) /* Turn off linker */ { 281 if (llvm::Linker::LinkModules(mModule, moduleWith, &mError) != 0) {
|
/external/pcre/ |
configure | [all...] |