Searched defs:JitNativeInfo (Results 1 – 1 of 1) sorted by relevance
223 struct JitNativeInfo { struct224 static constexpr bool kCopySymfileData = true; // Copy debug info to JIT memory.225 static JITDescriptor& Descriptor() { return __jit_debug_descriptor; } in Descriptor()226 static void NotifyNativeDebugger() { __jit_debug_register_code_ptr(); } in NotifyNativeDebugger()227 static const void* Alloc(size_t size) { return Memory()->AllocateData(size); } in Alloc()228 static void Free(const void* ptr) { Memory()->FreeData(reinterpret_cast<const uint8_t*>(ptr)); } in Free()231 template<class T> static T* Writable(const T* v) { in Writable()239 static jit::JitMemoryRegion* Memory() ASSERT_CAPABILITY(Locks::jit_lock_) { in Memory()