Home
last modified time | relevance | path

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

/art/runtime/jit/
Ddebugger_interface.cc122 std::atomic<const JITCodeEntry*> next_; // Atomic to guarantee consistency after crash.
123 const JITCodeEntry* prev_ = nullptr; // For linked list deletion. Unused in readers.
133 struct JITCodeEntry : public JITCodeEntryPublic { struct
149 const JITCodeEntry* relevant_entry_ = nullptr; // The entry affected by the action.
150 std::atomic<const JITCodeEntry*> head_{nullptr}; // Head of link list of all entries.
163 const JITCodeEntry* tail_ = nullptr; // Tail of link list of all live entries.
164 const JITCodeEntry* free_entries_ = nullptr; // List of deleted entries ready for reuse.
167 const JITCodeEntry* zygote_head_entry_ = nullptr;
168 JITCodeEntry application_tail_entry_{};
249 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.h203 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.h57 std::vector<uint8_t> PackElfFileForJIT(ArrayRef<const JITCodeEntry*> elf_files,
Djit_compiler.cc147 std::vector<uint8_t> JitCompiler::PackElfFileForJIT(ArrayRef<const JITCodeEntry*> elf_files, in PackElfFileForJIT()