Home
last modified time | relevance | path

Searched defs:JITCodeEntryPublic (Results 1 – 1 of 1) sorted by relevance

/art/runtime/jit/
Ddebugger_interface.cc121 struct JITCodeEntryPublic { struct
122 std::atomic<const JITCodeEntry*> next_; // Atomic to guarantee consistency after crash.
123 const JITCodeEntry* prev_ = nullptr; // For linked list deletion. Unused in readers.
124 const uint8_t* symfile_addr_ = nullptr; // Address of the in-memory ELF file.
125 uint64_t symfile_size_ = 0; // NB: The offset is 12 on x86 but 16 on ARM32.
128 uint64_t timestamp_; // CLOCK_MONOTONIC time of entry registration.
129 std::atomic_uint32_t seqlock_{1}; // Synchronization. Even value if entry is valid.