Home
last modified time | relevance | path

Searched refs:JITCodeEntry (Results 1 – 7 of 7) sorted by relevance

/art/runtime/jit/
Ddebugger_interface.cc125 std::atomic<const JITCodeEntry*> next_; // Atomic to guarantee consistency after crash.
126 const JITCodeEntry* prev_ = nullptr; // For linked list deletion. Unused in readers.
136 struct JITCodeEntry : public JITCodeEntryPublic { struct
152 const JITCodeEntry* relevant_entry_ = nullptr; // The entry affected by the action.
153 std::atomic<const JITCodeEntry*> head_{nullptr}; // Head of link list of all entries.
166 const JITCodeEntry* tail_ = nullptr; // Tail of link list of all live entries.
167 const JITCodeEntry* free_entries_ = nullptr; // List of deleted entries ready for reuse.
170 const JITCodeEntry* zygote_head_entry_ = nullptr;
171 JITCodeEntry application_tail_entry_{};
255 ArrayRef<const uint8_t> GetJITCodeEntrySymFile(const JITCodeEntry* entry) { in GetJITCodeEntrySymFile()
[all …]
Ddebugger_interface.h33 struct JITCodeEntry;
42 ArrayRef<const uint8_t> GetJITCodeEntrySymFile(const JITCodeEntry*);
Djit.h80 virtual std::vector<uint8_t> PackElfFileForJIT(ArrayRef<const JITCodeEntry*> elf_files,
/art/compiler/debug/
Delf_debug_writer.h32 struct JITCodeEntry;
60 ArrayRef<const JITCodeEntry*> jit_entries,
Delf_debug_writer.cc230 ArrayRef<const JITCodeEntry*> jit_entries, in PackElfFileForJIT()
266 for (const JITCodeEntry* it : jit_entries) { in PackElfFileForJIT()
/art/compiler/jit/
Djit_compiler.h62 std::vector<uint8_t> PackElfFileForJIT(ArrayRef<const JITCodeEntry*> elf_files,
Djit_compiler.cc157 std::vector<uint8_t> JitCompiler::PackElfFileForJIT(ArrayRef<const JITCodeEntry*> elf_files, in PackElfFileForJIT()