Lines Matching defs:JITDescriptor
107 struct JITDescriptor { struct
108 uint32_t version_ = 1; // NB: GDB supports only version 1.
109 uint32_t action_flag_ = JIT_NOACTION; // One of the JITAction enum values.
110 JITCodeEntry* relevant_entry_ = nullptr; // The entry affected by the action.
111 std::atomic<JITCodeEntry*> head_{nullptr}; // Head of link list of all entries.
114 uint8_t magic_[8] = {'A', 'n', 'd', 'r', 'o', 'i', 'd', '1'};
115 uint32_t flags_ = 0; // Reserved for future use. Must be 0.
116 uint32_t sizeof_descriptor = sizeof(JITDescriptor);
117 uint32_t sizeof_entry = sizeof(JITCodeEntry);
118 std::atomic_uint32_t action_seqlock_{0}; // Incremented before and after any modification.
119 uint64_t action_timestamp_ = 1; // CLOCK_MONOTONIC time of last action.