Home
last modified time | relevance | path

Searched refs:first_entry (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/llvm/lib/ExecutionEngine/
H A DGDBRegistrationListener.cpp44 struct jit_code_entry *first_entry; member
142 jit_code_entry* NextEntry = __jit_debug_descriptor.first_entry; in NotifyDebugger()
147 __jit_debug_descriptor.first_entry = JITCodeEntry; in NotifyDebugger()
226 assert(__jit_debug_descriptor.first_entry == JITCodeEntry); in deregisterObjectInternal()
227 __jit_debug_descriptor.first_entry = NextEntry; in deregisterObjectInternal()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DJITLoaderGDB.cpp46 struct jit_code_entry *first_entry; member
89 jit_code_entry *NextEntry = __jit_debug_descriptor.first_entry; in registerJITLoaderGDBImpl()
95 __jit_debug_descriptor.first_entry = E; in registerJITLoaderGDBImpl()
/llvm-project-15.0.7/llvm/tools/lli/
H A DExecutionUtils.cpp43 struct jit_code_entry *first_entry; member
86 for (auto *Entry = Descriptor->first_entry; Entry; Entry = Entry->next_entry) in dumpDebugDescriptor()
96 for (auto *Entry = Descriptor->first_entry; Entry; Entry = Entry->next_entry) in dumpDebugObjects()
/llvm-project-15.0.7/lldb/test/API/functionalities/jitloader_gdb/
H A Dmain.c19 struct JITCodeEntry* first_entry; member
38 __jit_debug_descriptor.relevant_entry = __jit_debug_descriptor.first_entry = &entry; in main()
H A Dsimple.c9 void* first_entry; member
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DUniqueCStringMap.h113 const Entry *first_entry = &m_map[0]; in FindNextValueForName() local
114 const Entry *after_last_entry = first_entry + m_map.size(); in FindNextValueForName()
116 if (first_entry <= next_entry && next_entry < after_last_entry) { in FindNextValueForName()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DCompactUnwindInfo.cpp391 offset_t first_entry = lsda_offset; in GetLSDAForFunctionOffset() local
396 offset_t offset = first_entry + (mid * 8); in GetLSDAForFunctionOffset()
420 offset_t first_entry = entry_page_offset; in BinarySearchRegularSecondPage() local
427 offset_t offset = first_entry + (mid * 8); in BinarySearchRegularSecondPage()
432 offset = first_entry + ((mid + 1) * 8); in BinarySearchRegularSecondPage()
441 return first_entry + (mid * 8); in BinarySearchRegularSecondPage()
456 offset_t first_entry = entry_page_offset; in BinarySearchCompressedSecondPage() local
463 offset_t offset = first_entry + (mid * 4); in BinarySearchCompressedSecondPage()
469 offset = first_entry + ((mid + 1) * 4); in BinarySearchCompressedSecondPage()
/llvm-project-15.0.7/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp52 ptr_t first_entry; // pointer member
305 jit_relevant_entry = (addr_t)jit_desc.first_entry; in ReadJITDescriptorImpl()