Home
last modified time | relevance | path

Searched refs:JITDescriptor (Results 1 – 3 of 3) sorted by relevance

/aosp12/art/runtime/jit/
H A Ddebugger_interface.cc162 struct JITDescriptor : public JITDescriptorPublic { struct
192 JITDescriptor __jit_debug_descriptor GUARDED_BY(g_jit_debug_lock) {}; in GUARDED_BY()
255 static uint64_t GetNextTimestamp(JITDescriptor& descriptor) { in GetNextTimestamp()
260 static void Seqlock(JITDescriptor& descriptor) { in Seqlock()
268 static void Sequnlock(JITDescriptor& descriptor) { in Sequnlock()
280 JITDescriptor& descriptor = NativeInfo::Descriptor(); in InsertNewEntry()
307 JITDescriptor& descriptor = NativeInfo::Descriptor(); in CreateJITCodeEntryInternal()
368 JITDescriptor& descriptor = NativeInfo::Descriptor(); in DeleteJITCodeEntryInternal()
459 JITDescriptor& descriptor = JitNativeInfo::Descriptor(); in NativeDebugInfoPreFork()
481 JITDescriptor& descriptor = JitNativeInfo::Descriptor(); in NativeDebugInfoPostFork()
[all …]
/aosp12/system/unwinding/libunwindstack/
H A DGlobalDebugImpl.h64 struct JITDescriptor { struct
78 static constexpr size_t kSizeOfDescriptorV1 = offsetof(JITDescriptor, magic); argument
79 static constexpr size_t kSizeOfDescriptorV2 = sizeof(JITDescriptor);
99 JITDescriptor desc{}; in ReadDescriptor()
238 if (!ReadNextField(descriptor_addr_ + offsetof(JITDescriptor, first_entry), &uid, race)) { in ReadNewEntries()
410 static_assert(sizeof(typename Impl::JITDescriptor) == 48, "layout"); in CreateGlobalDebugImpl()
419 static_assert(sizeof(typename Impl::JITDescriptor) == 48, "layout"); in CreateGlobalDebugImpl()
429 static_assert(sizeof(typename Impl::JITDescriptor) == 56, "layout"); in CreateGlobalDebugImpl()
/aosp12/system/extras/simpleperf/
H A DJITDebugReader.cpp64 struct JITDescriptor { struct
150 using JITDescriptor32 = JITDescriptor<uint32_t>;
151 using JITDescriptor64 = JITDescriptor<uint64_t>;
171 bool JITDescriptor<ADDRT>::Valid() const { in Valid()