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