Home
last modified time | relevance | path

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

/aosp12/art/runtime/jit/
H A Ddebugger_interface.cc146 struct JITDescriptorPublic { struct
147 uint32_t version_ = 1; // NB: GDB supports only version 1.
148 uint32_t action_flag_ = JIT_NOACTION; // One of the JITAction enum values.
149 const JITCodeEntry* relevant_entry_ = nullptr; // The entry affected by the action.
150 std::atomic<const JITCodeEntry*> head_{nullptr}; // Head of link list of all entries.
154 uint32_t flags_ = 0; // Reserved for future use. Must be 0.
155 uint32_t sizeof_descriptor = sizeof(JITDescriptorPublic);
156 uint32_t sizeof_entry = sizeof(JITCodeEntryPublic);
157 std::atomic_uint32_t seqlock_{0}; // Incremented before and after any modification.
158 uint64_t timestamp_ = 1; // CLOCK_MONOTONIC time of last action.