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