Home
last modified time | relevance | path

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

/art/runtime/jit/
Ddebugger_interface.cc114 std::atomic<const JITCodeEntry*> next_; // Atomic to guarantee consistency after crash.
115 const JITCodeEntry* prev_ = nullptr; // For linked list deletion. Unused in readers.
125 struct JITCodeEntry : public JITCodeEntryPublic { struct
141 const JITCodeEntry* relevant_entry_ = nullptr; // The entry affected by the action.
142 std::atomic<const JITCodeEntry*> head_{nullptr}; // Head of link list of all entries.
155 const JITCodeEntry* tail_ = nullptr; // Tail of link list of all live entries.
156 const JITCodeEntry* free_entries_ = nullptr; // List of deleted entries ready for reuse.
159 const JITCodeEntry* zygote_head_entry_ = nullptr;
160 JITCodeEntry application_tail_entry_{};
229 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.h202 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.cc231 ArrayRef<const JITCodeEntry*> jit_entries, in PackElfFileForJIT()
267 for (const JITCodeEntry* it : jit_entries) { in PackElfFileForJIT()
/art/compiler/jit/
Djit_compiler.h56 std::vector<uint8_t> PackElfFileForJIT(ArrayRef<const JITCodeEntry*> elf_files,
Djit_compiler.cc145 std::vector<uint8_t> JitCompiler::PackElfFileForJIT(ArrayRef<const JITCodeEntry*> elf_files, in PackElfFileForJIT()