Home
last modified time | relevance | path

Searched defs:JitNativeInfo (Results 1 – 1 of 1) sorted by relevance

/art/runtime/jit/
Ddebugger_interface.cc229 struct JitNativeInfo { struct
230 static constexpr bool kCopySymfileData = true; // Copy debug info to JIT memory.
231 static JITDescriptor& Descriptor() { return __jit_debug_descriptor; } in Descriptor()
232 static void NotifyNativeDebugger() { __jit_debug_register_code_ptr(); } in NotifyNativeDebugger()
233 static const void* Alloc(size_t size) { return Memory()->AllocateData(size); } in Alloc()
234 static void Free(const void* ptr) { Memory()->FreeData(reinterpret_cast<const uint8_t*>(ptr)); } in Free()
237 template<class T> static T* Writable(const T* v) { in Writable()
245 static jit::JitMemoryRegion* Memory() ASSERT_CAPABILITY(Locks::jit_lock_) { in Memory()