HomeSort by relevance Sort by last modified time
    Searched refs:MCJIT (Results 1 - 11 of 11) sorted by null

  /external/llvm/tools/llvm-rtdyld/
Makefile 12 LINK_COMPONENTS := all-targets support MC object RuntimeDyld MCJIT DebugInfoDWARF
  /external/llvm/lib/ExecutionEngine/MCJIT/
Android.mk 8 MCJIT.cpp
MCJIT.cpp 1 //===-- MCJIT.cpp - MC-based Just-in-Time Compiler ------------------------===//
10 #include "MCJIT.h"
14 #include "llvm/ExecutionEngine/MCJIT.h"
37 RegisterJIT() { MCJIT::Register(); }
46 MCJIT::createJIT(std::unique_ptr<Module> M,
64 return new MCJIT(std::move(M), std::move(TM), std::move(MemMgr),
68 MCJIT::MCJIT(std::unique_ptr<Module> M, std::unique_ptr<TargetMachine> tm,
92 MCJIT::~MCJIT() {
    [all...]
MCJIT.h 1 //===-- MCJIT.h - Class definition for the MCJIT ----------------*- C++ -*-===//
24 class MCJIT;
26 // This is a helper class that the MCJIT execution engine uses for linking
28 // that is passed in to the MCJIT constructor and defers most functionality
32 LinkingSymbolResolver(MCJIT &Parent,
38 // MCJIT doesn't support logical dylibs.
45 MCJIT &ParentEngine;
61 // MCJIT::mapSectionAddress, (in preparation for later copying to a new location
64 // It might not be obvious at first glance, but the "remote-mcjit" case in th
    [all...]
  /external/llvm/lib/ExecutionEngine/
Makefile 14 PARALLEL_DIRS = Interpreter MCJIT Orc RuntimeDyld
  /external/llvm/unittests/ExecutionEngine/MCJIT/
Makefile 1 ##===- unittests/ExecutionEngine/MCJIT/Makefile ------------*- Makefile -*-===##
11 TESTNAME = MCJIT
12 LINK_COMPONENTS := core ipo mcjit native support
17 # Permit these tests to use the MCJIT's symbolic lookup.
  /external/llvm/unittests/ExecutionEngine/
Makefile 19 PARALLEL_DIRS += MCJIT
  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 42 LLVMExecutionEngineRef MCJIT;
56 if (LLVMCreateMCJITCompilerForModule(&MCJIT, M, &Options,
59 return MCJIT;
llvm_executionengine.mli 20 via MCJIT. *)
28 (** MCJIT compiler options. See [llvm::TargetOptions]. *)
36 (** Default MCJIT compiler options:
41 (** [create m optlevel] creates a new MCJIT just-in-time compiler, taking
  /external/llvm/tools/lli/
lli.cpp 27 #include "llvm/ExecutionEngine/MCJIT.h"
71 enum class JITKind { MCJIT, OrcMCJITReplacement, OrcLazy };
85 cl::init(JITKind::MCJIT),
87 clEnumValN(JITKind::MCJIT, "mcjit",
88 "MCJIT"),
90 "orc-mcjit",
91 "Orc-based MCJIT replacement"),
97 // The MCJIT supports building for a target address space separate from
100 cl::opt<bool> RemoteMCJIT("remote-mcjit",
    [all...]
  /external/llvm/
Android.mk 16 lib/ExecutionEngine/MCJIT \

Completed in 1277 milliseconds