HomeSort by relevance Sort by last modified time
    Searched refs:Linker (Results 51 - 75 of 87) sorted by null

1 23 4

  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 1 //===- tools/dsymutil/DwarfLinker.cpp - Dwarf debug info linker -----------===//
3 // The LLVM Linker
    [all...]
  /external/clang/lib/Driver/
CrossWindowsToolChain.cpp 119 return new tools::CrossWindows::Linker(*this);
MinGWToolChain.cpp 120 Tool *MinGW::buildLinker() const { return new tools::MinGW::Linker(*this); }
ToolChains.cpp 231 Tool *MachO::buildLinker() const { return new tools::darwin::Linker(*this); }
768 // Otherwise, let the linker search.
    [all...]
Tools.cpp 239 // Add extra linker input arguments which are not treated as inputs
254 // Otherwise, this is a linker input argument.
263 // Pass -z prefix for gcc linker compatibility.
    [all...]
  /external/libmojo/base/android/java/src/org/chromium/base/library_loader/
ModernLinker.java 21 * of how this class is supposed to be used in Linker.java.
25 * Provides a concrete implementation of the Chromium Linker.
27 * This Linker implementation uses the Android M and later system linker to map and then
30 * For more on the operations performed by the Linker, see {@link Linker}.
32 class ModernLinker extends Linker {
36 // Becomes true after linker initialization.
67 static Linker create() {
71 // Used internally to initialize the linker's data. Assumes lock is held
    [all...]
LegacyLinker.java 24 * of how this class is supposed to be used in Linker.java.
28 * Provides a concrete implementation of the Chromium Linker.
30 * This Linker implementation uses the crazy linker to map and then run Chrome
33 * For more on the operations performed by the Linker, see {@link Linker}.
36 class LegacyLinker extends Linker {
40 // Becomes true after linker initialization.
72 static Linker create() {
76 // Used internally to initialize the linker's data. Assumes lock is held
    [all...]
  /external/llvm/test/Bindings/OCaml/
linker.ml 1 (* RUN: cp %s %T/linker.ml
2 * RUN: %ocamlc -g -w +A -package llvm.linker -linkpkg %T/linker.ml -o %t
4 * RUN: %ocamlopt -g -w +A -package llvm.linker -linkpkg %T/linker.ml -o %t
30 (*===-- Linker -----------------------------------------------------------===*)
65 suite "linker" test_linker
  /external/swiftshader/third_party/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/swiftshader/third_party/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 21 #include "llvm/Linker/Linker.h"
135 if (Linker::linkModules(*Program, std::move(M)))
Miscompilation.cpp 24 #include "llvm/Linker/Linker.h"
225 if (Linker::linkModules(*M1, std::move(M2)))
391 if (Linker::linkModules(*ToNotOptimize,
419 if (Linker::linkModules(*ToNotOptimize, std::move(ToOptimizeLoopExtracted)))
587 if (Linker::linkModules(*ProgClone, std::move(Extracted)))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Linker/
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"
327 /// some overhead due to the use of Value handles which the Linker doesn't
821 if (Mode == Linker::DestroySource) {
    [all...]
  /build/soong/cc/
object.go 38 module.linker = &objectLinker{
46 panic(fmt.Errorf("appendLdflags on object Linker not supported"))
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
Miscompilation.cpp 21 #include "llvm/Linker.h"
225 if (Linker::LinkModules(M1, M2, Linker::DestroySource, &ErrorMsg)) {
399 if (Linker::LinkModules(ToNotOptimize, ToOptimizeLoopExtracted,
400 Linker::DestroySource, &ErrorMsg)){
579 if (Linker::LinkModules(ProgClone, Extracted, Linker::DestroySource,
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionImport.cpp 25 #include "llvm/Linker/Linker.h"
571 // Linker that will be used for importing function
572 Linker TheLinker(DestModule);
668 // Instruct the linker that the client will take care of linkonce resolution
669 unsigned Flags = Linker::Flags::None;
671 Flags |= Linker::Flags::DontForceLinkLinkonceODR;
  /development/vndk/tools/header-checker/header-abi-linker/src/
header_abi_linker.cpp 38 "header-abi-linker options");
347 llvm::cl::ParseCommandLineOptions(argc, argv, "header-linker");
351 HeaderAbiLinker Linker(dump_files, exported_header_dirs, version_script,
354 if (!Linker.LinkAndDump()) {
  /external/llvm/lib/LTO/
LTOCodeGenerator.cpp 11 // intended to be used by linker to optimize code at link time.
40 #include "llvm/Linker/Linker.h"
96 TheLinker(new Linker(*MergedModule)) {
156 TheLinker = make_unique<Linker>(*MergedModule);
382 (Twine("Linker asked to preserve available_externally global: '") +
387 emitWarning((Twine("Linker asked to preserve internal global: '") +
424 // with the linker supplied name, which on Darwin includes a leading
433 // Preserve linkonce value on linker request
  /frameworks/compile/libbcc/lib/
RSCompilerDriver.cpp 38 #include "llvm/Linker/Linker.h"
330 llvm::Linker linker(module);
345 if (linker.linkInModule(std::move(sourceModule))) {
  /external/libunwind/doc/
libunwind-ptrace.tex 116 Linker-switches to add when building a program that uses the
libunwind.tex 216 program includes \File{$<$libunwind.h$>$} and uses the linker switch
218 includes \File{$<$libunwind-}\Var{PLAT}\File{.h$>$} and uses the linker
308 \item[\Opt{-l}\File{unwind}] Linker-switch to add when building a
310 \item[\Opt{-l}\File{unwind-}\Var{PLAT}] Linker-switch to add when
312 For example, to (cross-)unwind an IA-64 program, the linker switch
  /external/swiftshader/third_party/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).
  /prebuilts/go/darwin-x86/src/sync/atomic/
doc.go 146 // Helper for ARM. Linker will discard on other systems
  /prebuilts/go/linux-x86/src/sync/atomic/
doc.go 146 // Helper for ARM. Linker will discard on other systems

Completed in 2305 milliseconds

1 23 4