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

12 3 4

  /external/libmojo/base/android/java/src/org/chromium/base/library_loader/
LibraryLoader.java 96 * before calling System.loadLibrary, this only applies when not using the chromium linker.
223 // Helper for loadAlreadyLocked(). Load a native shared library with the Chromium linker.
225 private void loadLibrary(Linker linker, @Nullable String zipFilePath, String libFilePath) {
226 if (linker.isUsingBrowserSharedRelros()) {
231 linker.loadLibrary(zipFilePath, libFilePath);
235 linker.loadLibraryNoFixedAddress(zipFilePath, libFilePath);
239 linker.loadLibrary(zipFilePath, libFilePath);
248 // Invoke either Linker.loadLibrary(...) or System.loadLibrary(...), triggering
257 if (Linker.isUsed())
259 Linker linker = Linker.getInstance(); local
    [all...]
Linker.java 91 * - Native shared libraries should be loaded with Linker.loadLibrary(),
103 * Otherwise, the linker considers that it is running inside the browser
118 * More specifically, by default when in the browser process, the linker
148 public abstract class Linker {
160 // NOTE: These names are known and expected by the Linker test scripts.
166 // shared RELRO. Only change this while debugging linker-related issues.
168 // NOTE: This variable's name is known and expected by the Linker test scripts.
192 "org.chromium.base.android.linker.shared_relros";
194 // Guards all access to the linker.
211 // Constants used to indicate a given Linker implementation, for testing
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Linker/
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) {
  /external/llvm/tools/llvm-link/
llvm-link.cpp 1 //===- llvm-link.cpp - Low-level LLVM linker ------------------------------===//
25 #include "llvm/Linker/Linker.h"
201 Linker &L) {
246 // order they are seen and selected by the linker, changing program
280 // Instruct the linker to not automatically import linkonce defintion.
281 unsigned Flags = Linker::Flags::DontForceLinkLinkonceODR;
290 static bool linkFiles(const char *argv0, LLVMContext &Context, Linker &L,
294 unsigned ApplicableFlags = Flags & Linker::Flags::OverrideFromSrc;
332 // All linker flags apply to linking of subsequent files
    [all...]
  /external/llvm/bindings/go/llvm/
linker.go 1 //===- linker.go - Bindings for linker ------------------------------------===//
10 // This file defines bindings for the linker component.
18 #include "llvm-c/Linker.h"
  /prebuilts/tools/common/m2/repository/com/squareup/dagger/dagger/1.2.2/
dagger-1.2.2.jar 
  /external/llvm/include/llvm/LTO/legacy/
LTOCodeGenerator.h 16 // linker to through the IPO and Post-IPO phases. By using obj-file extension,
53 class Linker;
138 /// \note It is up to the linker to remove the intermediate output file. Do
147 /// caller (linker), it brings the output to a buffer, and returns the buffer
209 std::unique_ptr<Linker> TheLinker;
  /external/swiftshader/third_party/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(), Linker::DestroySource,
  /external/swiftshader/third_party/LLVM/tools/lto/
LTOCodeGenerator.h 18 #include "llvm/Linker.h"
60 llvm::Linker _linker;
  /external/llvm/lib/Linker/
LinkModules.cpp 1 //===- lib/Linker/LinkModules.cpp - Module Linker Implementation ----------===//
10 // This file implements the LLVM module linker.
15 #include "llvm-c/Linker.h"
20 #include "llvm/Linker/Linker.h"
50 return !(Flags & Linker::DontForceLinkLinkonceODR);
52 bool shouldOverrideFromSrc() { return Flags & Linker::OverrideFromSrc; }
53 bool shouldLinkOnlyNeeded() { return Flags & Linker::LinkOnlyNeeded; }
55 return Flags & Linker::InternalizeLinkedSymbols
    [all...]
  /external/llvm/unittests/Linker/
LinkModulesTest.cpp 1 //===- llvm/unittest/Linker/LinkModulesTest.cpp - IRBuilder tests ---------===//
17 #include "llvm/Linker/Linker.h"
20 #include "llvm-c/Linker.h"
102 Linker::linkModules(*LinkedModule, std::move(M));
176 Linker::linkModules(*EmptyM, std::move(InternalM));
183 Linker::linkModules(*InternalM, std::move(EmptyM));
199 Linker::linkModules(*M1, std::move(M2));
284 Linker::linkModules(*Dst, std::move(Src));
353 bool Failed = Linker::linkModules(*Foo, std::move(Bar))
    [all...]
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
BugDriver.cpp 18 #include "llvm/Linker.h"
130 if (Linker::LinkModules(Program, M.get(), Linker::DestroySource,
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOCodeGenerator.h 16 // linker to through the IPO and Post-IPO phases. By using obj-file extension,
55 class Linker;
141 /// \note It is up to the linker to remove the intermediate output file. Do
150 /// caller (linker), it brings the output to a buffer, and returns the buffer
218 std::unique_ptr<Linker> TheLinker;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOCodeGenerator.h 16 // linker to through the IPO and Post-IPO phases. By using obj-file extension,
55 class Linker;
141 /// \note It is up to the linker to remove the intermediate output file. Do
150 /// caller (linker), it brings the output to a buffer, and returns the buffer
218 std::unique_ptr<Linker> TheLinker;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOCodeGenerator.h 16 // linker to through the IPO and Post-IPO phases. By using obj-file extension,
55 class Linker;
141 /// \note It is up to the linker to remove the intermediate output file. Do
150 /// caller (linker), it brings the output to a buffer, and returns the buffer
218 std::unique_ptr<Linker> TheLinker;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOCodeGenerator.h 16 // linker to through the IPO and Post-IPO phases. By using obj-file extension,
55 class Linker;
141 /// \note It is up to the linker to remove the intermediate output file. Do
150 /// caller (linker), it brings the output to a buffer, and returns the buffer
218 std::unique_ptr<Linker> TheLinker;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOCodeGenerator.h 16 // linker to through the IPO and Post-IPO phases. By using obj-file extension,
55 class Linker;
141 /// \note It is up to the linker to remove the intermediate output file. Do
150 /// caller (linker), it brings the output to a buffer, and returns the buffer
218 std::unique_ptr<Linker> TheLinker;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOCodeGenerator.h 16 // linker to through the IPO and Post-IPO phases. By using obj-file extension,
55 class Linker;
141 /// \note It is up to the linker to remove the intermediate output file. Do
150 /// caller (linker), it brings the output to a buffer, and returns the buffer
218 std::unique_ptr<Linker> TheLinker;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOCodeGenerator.h 16 // linker to through the IPO and Post-IPO phases. By using obj-file extension,
55 class Linker;
141 /// \note It is up to the linker to remove the intermediate output file. Do
150 /// caller (linker), it brings the output to a buffer, and returns the buffer
218 std::unique_ptr<Linker> TheLinker;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOCodeGenerator.h 16 // linker to through the IPO and Post-IPO phases. By using obj-file extension,
55 class Linker;
141 /// \note It is up to the linker to remove the intermediate output file. Do
150 /// caller (linker), it brings the output to a buffer, and returns the buffer
218 std::unique_ptr<Linker> TheLinker;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
rgn-over3.d 16 Linker\s+script\s+and\s+memory\s+map
rgn-over6.d 16 Linker\s+script\s+and\s+memory\s+map
  /external/arm-neon-tests/
Init.s 43 IMPORT ||Image$$STACK$$ZI$$Limit|| ; Linker symbol from scatter file
  /frameworks/compile/libbcc/lib/
Source.cpp 30 #include <llvm/Linker/Linker.h>
213 if (llvm::Linker::linkModules(*mModule, std::unique_ptr<llvm::Module>(&pSource.getModule())) != 0) {
  /frameworks/compile/mclinker/unittests/
LinkerTest.cpp 15 #include "mcld/Linker.h"
53 Linker linker; local
54 linker.emulate(script, config);
60 if (linker.link(module, builder))
61 linker.emit(module, "./test.so");
76 Linker linker; local
87 /// To configure linker before setting options. Linker::config sets u
134 Linker linker; local
232 Linker linker; local
337 Linker linker; local
    [all...]

Completed in 3007 milliseconds

12 3 4