HomeSort by relevance Sort by last modified time
    Searched refs:Linker (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/content/shell/android/linker_test_apk/src/org/chromium/chromium_linker_test_apk/
LinkerTests.java 10 import org.chromium.base.library_loader.Linker;
13 * A class that is only used in linker test APK to perform runtime checks
17 public class LinkerTests implements Linker.TestRunner {
27 switch (Linker.BROWSER_SHARED_RELRO_CONFIG) {
28 case Linker.BROWSER_SHARED_RELRO_CONFIG_NEVER:
31 case Linker.BROWSER_SHARED_RELRO_CONFIG_LOW_RAM_ONLY:
34 (memoryDeviceConfig == Linker.MEMORY_DEVICE_CONFIG_LOW);
36 case Linker.BROWSER_SHARED_RELRO_CONFIG_ALWAYS:
41 Log.e(TAG, "Invalid shared RELRO linker configuration: " +
42 Linker.BROWSER_SHARED_RELRO_CONFIG)
    [all...]
ChromiumLinkerTestActivity.java 18 import org.chromium.base.library_loader.Linker;
33 "/data/local/tmp/chromium-linker-test-command-line";
77 int memoryDeviceConfig = Linker.MEMORY_DEVICE_CONFIG_NORMAL;
79 memoryDeviceConfig = Linker.MEMORY_DEVICE_CONFIG_LOW;
80 Linker.setMemoryDeviceConfig(memoryDeviceConfig);
83 Linker.setTestRunnerClassName(LinkerTests.class.getName());
  /external/llvm/include/llvm/Linker/
Linker.h 1 //===- Linker.h - Module Linker Interface -----------------------*- C++ -*-===//
28 class Linker {
35 Linker(Module *M, bool SuppressWarnings=false);
36 ~Linker();
48 return linkInModule(Src, Linker::DestroySource, ErrorMsg);
  /frameworks/compile/mclinker/unittests/
LinkerTest.h 16 class Linker;
LinkerTest.cpp 15 #include <mcld/Linker.h>
59 Linker linker; local
60 linker.emulate(script, config);
66 if (linker.link(module, builder))
67 linker.emit(module, "./test.so");
83 Linker linker; local
94 /// To configure linker before setting options. Linker::config sets u
141 Linker linker; local
238 Linker linker; local
342 Linker linker; local
    [all...]
  /external/llvm/unittests/Linker/
Makefile 1 ##===- unittests/Linker/Makefile ---------------------------*- Makefile -*-===##
11 TESTNAME = Linker
12 LINK_COMPONENTS := core linker
LinkModulesTest.cpp 1 //===- llvm/unittest/Linker/LinkModulesTest.cpp - IRBuilder tests ---------===//
10 #include "llvm/Linker/Linker.h"
91 Linker::LinkModules(LinkedModule, M.get(), Linker::PreserveSource, nullptr);
146 Linker::LinkModules(EmptyM, InternalM, Linker::PreserveSource, nullptr);
150 Linker::LinkModules(InternalM, EmptyM, Linker::PreserveSource, nullptr);
  /external/chromium_org/base/android/java/src/org/chromium/base/library_loader/
LibraryLoader.java 153 boolean useChromiumLinker = Linker.isUsed();
156 // Load libraries using the Chromium linker.
157 Linker.prepareLibraryLoad();
161 if (Linker.isInZipFile()) {
169 if (Linker.isUsingBrowserSharedRelros()) {
172 Linker.loadLibraryInZipFile(zipfile, library);
174 Linker.loadLibrary(library);
180 Linker.disableSharedRelros();
185 Linker.loadLibraryInZipFile(zipfile, library);
187 Linker.loadLibrary(library)
    [all...]
Linker.java 75 * for details. This linker probes the system on startup and will completely
98 * - Native shared libraries should be loaded with Linker.loadLibrary(),
110 * Otherwise, the linker considers that it is running inside the browser
125 * More specifically, by default when in the browser process, the linker
155 public class Linker {
157 // Log tag for this class. This must match the name of the linker's native library.
168 // NOTE: These names are known and expected by the Linker test scripts.
174 // shared RELRO. Only change this while debugging linker-related issues.
175 // NOTE: This variable's name is known and expected by the Linker test scripts.
192 // Becomes true after linker initialization
    [all...]
  /frameworks/compile/mclinker/include/mcld/
Linker.h 1 //===- Linker.h -----------------------------------------------------------===//
29 /** \class Linker
30 * \brief Linker is a modular linker.
32 class Linker
35 Linker();
37 ~Linker();
39 /// emulate - To set up target-dependent options and default linker script.
84 } // namespace of MC Linker
  /frameworks/compile/mclinker/include/mcld/CodeGen/
MCLinker.h 10 // MCLinker is a base class inherited by target specific linker.
30 class Linker;
37 * - provide an interface for target-specific linker
73 Linker* m_pLinker;
79 } // namespace of MC Linker
  /frameworks/compile/mclinker/lib/Core/
Linker.cpp 1 //===- Linker.cpp ---------------------------------------------------------===//
9 #include <mcld/Linker.h>
35 Linker::Linker()
40 Linker::~Linker()
45 /// emulate - To set up target-dependent options and default linker script.
47 bool Linker::emulate(LinkerScript& pScript, LinkerConfig& pConfig)
66 bool Linker::link(Module& pModule, IRBuilder& pBuilder)
78 bool Linker::normalize(Module& pModule, IRBuilder& pBuilder
    [all...]
Android.mk 12 Linker.cpp \
  /external/llvm/lib/
Makefile 14 ExecutionEngine Linker LTO MC Object Option DebugInfo \
  /external/llvm/unittests/
Makefile 13 LineEditor Linker MC Option Support Transforms
  /external/llvm/bindings/ocaml/linker/
llvm_linker.mli 10 (** Linker.
12 This interface provides an OCaml API for LLVM bitcode linker,
13 the classes in the Linker library. *)
  /frameworks/compile/libbcc/lib/Core/
Source.cpp 25 #include <llvm/Linker/Linker.h>
146 llvm::Linker::LinkerMode mode =
147 ((pPreserveSource) ? llvm::Linker::PreserveSource :
148 llvm::Linker::DestroySource);
150 if (llvm::Linker::LinkModules(mModule, &pSource.getModule(),
  /art/compiler/
elf_writer_mclinker.h 30 class Linker;
80 std::unique_ptr<mcld::Linker> linker_;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/app/
ChildProcessService.java 24 import org.chromium.base.library_loader.Linker;
59 // Linker-specific parameters for this child process service.
100 Bundle sharedRelros = args.getBundle(Linker.EXTRA_LINKER_SHARED_RELROS);
102 Linker.useSharedRelros(sharedRelros);
133 // CommandLine must be initialized before others, e.g., Linker.isUsed()
141 boolean useLinker = Linker.isUsed();
152 Linker.initServiceProcess(mLinkerParams.mBaseLoadAddress);
154 Linker.disableSharedRelros();
156 Linker.setTestRunnerClassName(mLinkerParams.mTestRunnerClassName);
176 Linker.disableSharedRelros()
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/
host_vc.mk 15 # in the linker to drop libc++ unless it's actually needed.
94 # $6 = Other Linker Args
110 # $5 = POSIX Linker Switches
111 # $6 = VC Linker Switches
host_gcc.mk 15 # in the linker to drop libc++ unless it's actually needed.
114 # $6 = Linker Args
138 # $5 = POSIX Linker Switches
139 # $6 = VC Linker Switches
  /external/llvm/tools/bugpoint/
BugDriver.cpp 20 #include "llvm/Linker/Linker.h"
134 if (Linker::LinkModules(Program, M.get(), Linker::DestroySource,
  /frameworks/compile/mclinker/tools/mcld/
main.cpp 24 #include <mcld/Linker.h>
34 /// configure linker
127 << ": failed to process linker options from command line!\n";
131 mcld::Linker linker; local
132 if (!linker.emulate(script, config)) {
145 if (!linker.link(module, builder)) {
151 if (!linker.emit(module, module.name())) {
  /external/llvm/include/llvm/LTO/
LTOCodeGenerator.h 16 // linker to through the IPO and Post-IPO phases. By using obj-file extension,
42 #include "llvm/Linker/Linker.h"
97 // NOTE that it is up to the linker to remove the intermediate object file.
108 // (linker), it brings the object to a buffer, and return the buffer to the
138 Linker IRLinker;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ChildProcessLauncher.java 19 import org.chromium.base.library_loader.Linker;
184 if (Linker.isUsed()) {
185 sLinkerLoadAddress = Linker.getBaseLoadAddress();
200 Linker.getTestRunnerClassName());
426 Linker.getSharedRelros());

Completed in 1139 milliseconds

1 2