Searched defs:JITCodeEntryV2 (Results 1 – 1 of 1) sorted by relevance
113 struct JITCodeEntryV2 { struct114 ADDRT next_addr;115 ADDRT prev_addr;116 ADDRT symfile_addr;117 uint64_t symfile_size;118 uint64_t register_timestamp; // CLOCK_MONOTONIC time of entry registration119 uint32_t seqlock; // even value if valid121 bool Valid() const { return (seqlock & 1) == 0; } in Valid()