HomeSort by relevance Sort by last modified time
    Searched defs:Jit (Results 1 - 2 of 2) sorted by null

  /art/runtime/jit/
jit.cc 17 #include "jit.h"
37 namespace jit { namespace in namespace:art
40 // At what priority to schedule jit threads. 9 is the lowest foreground priority on device.
43 // JIT compiler
44 void* Jit::jit_library_handle_= nullptr;
45 void* Jit::jit_compiler_handle_ = nullptr;
46 void* (*Jit::jit_load_)(bool*) = nullptr;
47 void (*Jit::jit_unload_)(void*) = nullptr;
48 bool (*Jit::jit_compile_method_)(void*, ArtMethod*, Thread*, bool) = nullptr;
49 void (*Jit::jit_types_loaded_)(void*, mirror::Class**, size_t count) = nullptr
353 jit::Jit* jit = Runtime::Current()->GetJit(); local
394 Jit* jit = Runtime::Current()->GetJit(); local
    [all...]
jit.h 34 namespace jit { namespace in namespace:art
42 class Jit {
49 virtual ~Jit();
50 static Jit* Create(JitOptions* options, std::string* error_msg);
145 // into the specified class linker to the jit debug interface,
148 // Return whether we should try to JIT compiled code as soon as an ArtMethod is invoked.
151 // Return whether we can invoke JIT code for `method`.
171 Jit();
175 // JIT compiler
189 std::unique_ptr<jit::JitCodeCache> code_cache_
    [all...]

Completed in 82 milliseconds