Searched defs:JITDescriptor (Results 1 – 1 of 1) sorted by relevance
107 struct JITDescriptor { struct108 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.[all …]