Searched refs:file_addr (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DAddressRange.cpp32 AddressRange::AddressRange(addr_t file_addr, addr_t byte_size, argument
34 : m_base_addr(file_addr, section_list), m_byte_size(byte_size) {}
69 addr_t file_addr = addr.GetFileAddress();
70 if (file_addr == LLDB_INVALID_ADDRESS)
73 if (file_base_addr <= file_addr)
74 return (file_addr - file_base_addr) < GetByteSize();
79 bool AddressRange::ContainsFileAddress(addr_t file_addr) const {
80 if (file_addr == LLDB_INVALID_ADDRESS)
87 if (file_base_addr <= file_addr)
88 return (file_addr
[all...]
H A DSection.cpp155 SectionType sect_type, addr_t file_addr, addr_t byte_size,
161 m_file_addr(file_addr), m_byte_size(byte_size),
169 // this, module_sp.get(), sect_id, file_addr, file_addr +
177 SectionType sect_type, addr_t file_addr, addr_t byte_size,
183 m_file_addr(file_addr), m_byte_size(byte_size),
191 // this, module_sp.get(), sect_id, file_addr, file_addr +
214 bool Section::SetFileAddress(lldb::addr_t file_addr) { argument
217 if (m_file_addr >= file_addr)
153 Section(const ModuleSP &module_sp, ObjectFile *obj_file, user_id_t sect_id, ConstString name, SectionType sect_type, addr_t file_addr, addr_t byte_size, lldb::offset_t file_offset, lldb::offset_t file_size, uint32_t log2align, uint32_t flags, uint32_t target_byte_size ) argument
174 Section(const lldb::SectionSP &parent_section_sp, const ModuleSP &module_sp, ObjectFile *obj_file, user_id_t sect_id, ConstString name, SectionType sect_type, addr_t file_addr, addr_t byte_size, lldb::offset_t file_offset, lldb::offset_t file_size, uint32_t log2align, uint32_t flags, uint32_t target_byte_size ) argument
277 const addr_t file_addr = GetFileAddress(); local
[all...]
H A DAddress.cpp247 bool Address::ResolveAddressUsingFileSections(addr_t file_addr, argument
251 section_list->FindSectionContainingFileAddress(file_addr));
254 assert(section_sp->ContainsFileAddress(file_addr));
255 m_offset = file_addr - section_sp->GetFileAddress();
260 m_offset = file_addr;
441 addr_t file_addr = GetFileAddress(); local
442 if (file_addr == LLDB_INVALID_ADDRESS) {
447 DumpAddress(s->AsRawOstream(), file_addr, addr_size);
H A DValue.cpp679 lldb::addr_t file_addr = GetScalar().ULongLong(LLDB_INVALID_ADDRESS);
680 if (file_addr == LLDB_INVALID_ADDRESS)
684 if (!module->ResolveFileAddress(file_addr, so_addr))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLineTable.cpp27 void LineTable::InsertLineEntry(lldb::addr_t file_addr, uint32_t line, argument
33 Entry entry(file_addr, line, column, file_idx, is_start_of_statement,
58 LineSequence *sequence, lldb::addr_t file_addr, uint32_t line,
64 Entry entry(file_addr, line, column, file_idx, is_start_of_statement,
77 if (!entries.empty() && entries.back().file_addr == file_addr) {
142 LT_COMPARE(a.file_addr, b.file_addr);
178 search_entry.file_addr = so_addr.GetFileAddress();
179 if (search_entry.file_addr !
57 AppendLineEntryToSequence( LineSequence *sequence, lldb::addr_t file_addr, uint32_t line, uint16_t column, uint16_t file_idx, bool is_start_of_statement, bool is_start_of_basic_block, bool is_prologue_end, bool is_epilogue_begin, bool is_terminal_entry) argument
[all...]
H A DUnwindTable.cpp120 addr_t file_addr = addr.GetFileAddress(); local
124 insert_pos = m_unwinds.lower_bound(file_addr);
H A DSymtab.cpp820 const addr_t file_addr; member in struct:__anon1316
943 Symbol *Symtab::FindSymbolAtFileAddress(addr_t file_addr) { argument
949 m_file_addr_to_index.FindEntryStartsAt(file_addr);
952 if (symbol->GetFileAddress() == file_addr)
958 Symbol *Symtab::FindSymbolContainingFileAddress(addr_t file_addr) { argument
965 m_file_addr_to_index.FindEntryThatContains(file_addr);
968 if (symbol->ContainsFileAddress(file_addr))
975 addr_t file_addr, std::function<bool(Symbol *)> const &callback) {
983 // Get all symbols with file_addr
985 m_file_addr_to_index.FindEntryIndexesThatContain(file_addr,
974 ForEachSymbolContainingFileAddress( addr_t file_addr, std::function<bool(Symbol *)> const &callback) argument
[all...]
H A DArmUnwindInfo.cpp59 lldb::addr_t file_addr = exidx_base_addr + offset; local
63 m_exidx_entries.emplace_back(file_addr, addr, data);
H A DVariable.cpp464 const addr_t file_addr = address.GetFileAddress(); local
473 file_addr, abi.get());
477 LLDB_INVALID_ADDRESS, file_addr,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DLineTable.h61 void InsertLineEntry(lldb::addr_t file_addr, uint32_t line, uint16_t column,
71 void AppendLineEntryToSequence(LineSequence *sequence, lldb::addr_t file_addr,
205 : file_addr(LLDB_INVALID_ADDRESS), line(0),
214 : file_addr(_file_addr), line(_line),
225 file_addr = LLDB_INVALID_ADDRESS;
243 SCALAR_COMPARE(lhs.file_addr, rhs.file_addr);
268 return lhs.file_addr < rhs.file_addr;
273 lldb::addr_t file_addr; member in struct:lldb_private::LineTable::Entry
[all...]
H A DSymtab.h115 Symbol *FindSymbolAtFileAddress(lldb::addr_t file_addr);
116 Symbol *FindSymbolContainingFileAddress(lldb::addr_t file_addr);
118 lldb::addr_t file_addr, std::function<bool(Symbol *)> const &callback);
H A DSymbol.h224 bool ContainsFileAddress(lldb::addr_t file_addr) const;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DAddressRange.h53 /// file_addr, and byte size \a byte_size.
55 /// \param[in] file_addr
63 AddressRange(lldb::addr_t file_addr, lldb::addr_t byte_size,
123 /// Check if the resolved file address \a file_addr is contained within this
126 /// \param[in] file_addr
133 bool ContainsFileAddress(lldb::addr_t file_addr) const;
H A DAddress.h151 /// file_addr.
153 /// \param[in] file_addr
157 /// A list of sections, one of which may contain the \a file_addr.
158 Address(lldb::addr_t file_addr, const SectionList *section_list);
H A DSection.h151 bool SetFileAddress(lldb::addr_t file_addr);
/freebsd-11-stable/contrib/ofed/librdmacm/examples/
H A Drcopy.c63 static void *file_addr; variable
236 if (file_addr || fd > 0) {
279 if (file_addr) {
280 munmap(file_addr, bytes);
281 file_addr = NULL;
318 file_addr = mmap(NULL, bytes, PROT_WRITE, MAP_SHARED, fd, 0);
319 if (file_addr == (void *) -1) {
327 len = _recv(rs, file_addr, bytes);
439 file_addr = mmap(NULL, bytes, PROT_READ, MAP_SHARED, fd, 0);
440 if (file_addr
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBInstructionList.i90 lookup_file_addr = key.file_addr
94 inst_file_addr = inst.addr.file_addr
H A DSBSection.i134 file_addr = property(GetFileAddress, None, doc='''A read only property that returns an integer that represents the starting "file" address for this section, or the address of the section in the object file in which it is defined.''')
H A DSBAddress.i178 file_addr = property(GetFileAddress, None, doc='''A read only property that returns file address for the section as an integer. This is the address that represents the address as it is found in the object file that defines it.''')
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.h65 LookupDeepestBlock(lldb::addr_t file_addr) const;
H A DDWARFDIE.cpp143 DWARFDIE::LookupDeepestBlock(lldb::addr_t file_addr) const {
149 if (m_die->LookupAddress(file_addr, cu, &function_die, &block_die)) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBSection.cpp127 lldb::addr_t file_addr = LLDB_INVALID_ADDRESS; local
131 return file_addr;
281 const addr_t file_addr = section_sp->GetFileAddress(); local
282 strm.Printf("[0x%16.16" PRIx64 "-0x%16.16" PRIx64 ") ", file_addr,
283 file_addr + section_sp->GetByteSize());
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DDWARFExpression.h96 /// contains a DW_OP_addr () opcode in the stream that matches \a file_addr.
97 /// If file_addr is LLDB_INVALID_ADDRESS, the this function will return true
116 bool Update_DW_OP_addr(lldb::addr_t file_addr);
127 std::function<lldb::addr_t(lldb::addr_t file_addr)> const
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.h72 AddressClass GetAddressClass(lldb::addr_t file_addr) override {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectDisassemble.cpp402 lldb::addr_t file_addr = m_options.symbol_containing_addr; local
404 if (module_sp->ResolveFileAddress(file_addr, file_address)) {

Completed in 141 milliseconds

12