Searched defs:JITDescriptorPublic (Results 1 – 1 of 1) sorted by relevance
149 struct JITDescriptorPublic { struct150 uint32_t version_ = 1; // NB: GDB supports only version 1.151 uint32_t action_flag_ = JIT_NOACTION; // One of the JITAction enum values.152 const JITCodeEntry* relevant_entry_ = nullptr; // The entry affected by the action.153 std::atomic<const JITCodeEntry*> head_{nullptr}; // Head of link list of all entries.156 uint8_t magic_[8] = {'A', 'n', 'd', 'r', 'o', 'i', 'd', '2'};157 uint32_t flags_ = 0; // Reserved for future use. Must be 0.158 uint32_t sizeof_descriptor = sizeof(JITDescriptorPublic);159 uint32_t sizeof_entry = sizeof(JITCodeEntryPublic);160 std::atomic_uint32_t seqlock_{0}; // Incremented before and after any modification.[all …]