Searched refs:load_addr (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Target/
H A DSectionLoadList.cpp79 SectionLoadList::SetSectionLoadAddress (const lldb::SectionSP &section, addr_t load_addr, bool warn_multiple) argument
90 log->Printf ("SectionLoadList::%s (section = %p (%s.%s), load_addr = 0x%16.16" PRIx64 ") module = %p",
95 load_addr,
102 // Fill in the section -> load_addr map
107 if (load_addr == sta_pos->second)
110 sta_pos->second = load_addr;
113 m_sect_to_addr[section.get()] = load_addr;
115 // Fill in the load_addr -> section map
116 addr_to_sect_collection::iterator ats_pos = m_addr_to_sect.find(load_addr);
138 load_addr,
192 addr_t load_addr = sta_pos->second; local
204 SetSectionUnloaded(const lldb::SectionSP &section_sp, addr_t load_addr) argument
239 ResolveLoadAddress(addr_t load_addr, Address &so_addr) const argument
[all...]
H A DSectionLoadHistory.cpp130 SectionLoadHistory::ResolveLoadAddress (uint32_t stop_id, addr_t load_addr, Address &so_addr) argument
136 return section_load_list->ResolveLoadAddress (load_addr, so_addr);
142 addr_t load_addr,
148 return section_load_list->SetSectionLoadAddress(section_sp, load_addr, warn_multiple);
161 SectionLoadHistory::SetSectionUnloaded (uint32_t stop_id, const lldb::SectionSP &section_sp, addr_t load_addr) argument
166 return section_load_list->SetSectionUnloaded (section_sp, load_addr);
140 SetSectionLoadAddress(uint32_t stop_id, const lldb::SectionSP &section_sp, addr_t load_addr, bool warn_multiple) argument
H A DTarget.cpp1308 addr_t load_addr = LLDB_INVALID_ADDRESS; local
1327 load_addr = addr.GetOffset(); // "addr" doesn't have a section, so its offset is the load address
1328 section_load_list.ResolveLoadAddress (load_addr, resolved_addr);
1344 if (load_addr == LLDB_INVALID_ADDRESS)
1345 load_addr = resolved_addr.GetLoadAddress (this);
1347 if (load_addr == LLDB_INVALID_ADDRESS)
1360 bytes_read = m_process_sp->ReadMemory(load_addr, dst, dst_len, error);
1366 error.SetErrorStringWithFormat("read memory from 0x%" PRIx64 " failed", load_addr);
1368 error.SetErrorStringWithFormat("only %" PRIu64 " of %" PRIu64 " bytes were read from memory at 0x%" PRIx64, (uint64_t)bytes_read, (uint64_t)dst_len, load_addr);
1374 *load_addr_ptr = load_addr;
1919 GetCallableLoadAddress(lldb::addr_t load_addr, AddressClass addr_class) const argument
1964 GetOpcodeLoadAddress(lldb::addr_t load_addr, AddressClass addr_class) const argument
2268 ResolveLoadAddress(addr_t load_addr, Address &so_addr, uint32_t stop_id) argument
2305 SetSectionUnloaded(const lldb::SectionSP &section_sp, addr_t load_addr) argument
[all...]
/freebsd-10-stable/sys/contrib/octeon-sdk/
H A Dcvmx-pow.c155 cvmx_pow_load_addr_t load_addr; local
156 load_addr.u64 = 0;
157 load_addr.sstatus.mem_region = CVMX_IO_SEG;
158 load_addr.sstatus.is_io = 1;
159 load_addr.sstatus.did = CVMX_OCT_DID_TAG_TAG1;
160 load_addr.sstatus.coreid = core;
163 load_addr.sstatus.get_rev = (bits & 1) != 0;
164 load_addr.sstatus.get_cur = (bits & 2) != 0;
165 load_addr.sstatus.get_wqp = (bits & 4) != 0;
166 if ((load_addr
176 cvmx_pow_load_addr_t load_addr; local
193 cvmx_pow_load_addr_t load_addr; local
235 cvmx_pow_load_addr_t load_addr; local
250 cvmx_pow_load_addr_t load_addr; local
266 cvmx_pow_load_addr_t load_addr; local
[all...]
H A Dcvmx-pow.h1356 cvmx_pow_load_addr_t load_addr; local
1361 load_addr.u64 = 0;
1362 load_addr.sstatus_cn68xx.mem_region = CVMX_IO_SEG;
1363 load_addr.sstatus_cn68xx.is_io = 1;
1364 load_addr.sstatus_cn68xx.did = CVMX_OCT_DID_TAG_TAG5;
1365 load_addr.sstatus_cn68xx.coreid = cvmx_get_core_num();
1366 load_addr.sstatus_cn68xx.opcode = 3;
1367 load_resp.u64 = cvmx_read_csr(load_addr.u64);
1374 load_addr.u64 = 0;
1375 load_addr
1397 cvmx_pow_load_addr_t load_addr; local
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
H A DAddressRange.cpp108 addr_t load_addr = addr.GetLoadAddress(target);
109 if (load_addr == LLDB_INVALID_ADDRESS)
112 if (load_base_addr <= load_addr)
113 return (load_addr - load_base_addr) < GetByteSize();
119 AddressRange::ContainsLoadAddress (addr_t load_addr, Target *target) const argument
121 if (load_addr == LLDB_INVALID_ADDRESS)
128 if (load_base_addr <= load_addr)
129 return (load_addr - load_base_addr) < GetByteSize();
H A DAddress.cpp358 Address::SetCallableLoadAddress (lldb::addr_t load_addr, Target *target) argument
360 if (SetLoadAddress (load_addr, target))
379 Address::SetOpcodeLoadAddress (lldb::addr_t load_addr, Target *target) argument
381 if (SetLoadAddress (load_addr, target))
455 addr_t load_addr = GetLoadAddress (target); local
456 if (load_addr == LLDB_INVALID_ADDRESS)
462 s->Address (load_addr, addr_size);
765 addr_t load_addr = GetLoadAddress (target); local
766 if (load_addr != LLDB_INVALID_ADDRESS)
769 addr_t dereferenced_load_addr = process->ReadPointerFromMemory(load_addr, memory_erro
1084 SetLoadAddress(lldb::addr_t load_addr, Target *target) argument
[all...]
H A DValueObjectMemory.cpp220 lldb::addr_t load_addr = m_address.GetLoadAddress(target); local
221 if (load_addr != LLDB_INVALID_ADDRESS)
224 m_value.GetScalar() = load_addr;
H A DValueObjectVariable.cpp217 lldb::addr_t load_addr = so_addr.GetLoadAddress (target); local
218 if (load_addr != LLDB_INVALID_ADDRESS)
221 m_value.GetScalar() = load_addr;
H A DDisassembler.cpp1065 InstructionList::GetIndexOfInstructionAtLoadAddress (lldb::addr_t load_addr, Target &target) argument
1068 address.SetLoadAddress(load_addr, &target);
1089 lldb::addr_t load_addr = LLDB_INVALID_ADDRESS; local
1095 &load_addr);
1104 const bool data_from_file = load_addr == LLDB_INVALID_ADDRESS;
1145 lldb::addr_t load_addr = LLDB_INVALID_ADDRESS; local
1151 &load_addr);
1153 const bool data_from_file = load_addr == LLDB_INVALID_ADDRESS;
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Target/
H A DSectionLoadHistory.h66 lldb::addr_t load_addr,
72 lldb::addr_t load_addr,
81 lldb::addr_t load_addr);
H A DSectionLoadList.h61 ResolveLoadAddress (lldb::addr_t load_addr, Address &so_addr) const;
64 SetSectionLoadAddress (const lldb::SectionSP &section_sp, lldb::addr_t load_addr, bool warn_multiple = false);
70 SetSectionUnloaded (const lldb::SectionSP &section_sp, lldb::addr_t load_addr);
H A DTarget.h581 CreateBreakpoint (lldb::addr_t load_addr,
717 /// Get \a load_addr as a callable code load address for this target
719 /// Take \a load_addr and potentially add any address bits that are
721 /// zero (if it already isn't) if \a load_addr is a thumb function.
728 GetCallableLoadAddress (lldb::addr_t load_addr, lldb::AddressClass addr_class = lldb::eAddressClassInvalid) const;
731 /// Get \a load_addr as an opcode for this target.
733 /// Take \a load_addr and potentially strip any address bits that are
735 /// clear bit zero (if it already isn't) if \a load_addr is a
736 /// thumb function and load_addr is in code.
743 GetOpcodeLoadAddress (lldb::addr_t load_addr, lld
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Expression/
H A DMaterializer.cpp153 const lldb::addr_t load_addr = process_address + m_offset; local
158 (uint64_t)load_addr,
177 map.WriteScalarToMemory(load_addr,
203 const lldb::addr_t load_addr = process_address + m_offset; local
225 map.ReadPointerFromMemory(&location, load_addr, read_error);
328 const lldb::addr_t load_addr = process_address + m_offset; local
330 dump_stream.Printf("0x%" PRIx64 ": EntityPersistentVariable (%s)\n", load_addr, m_persistent_variable_sp->GetName().AsCString());
337 map.ReadMemory(data.GetBytes(), load_addr, m_size, err);
347 extractor.DumpHexBytes(&dump_stream, data.GetBytes(), data.GetByteSize(), 16, load_addr);
358 map.ReadPointerFromMemory (&target_address, load_addr, er
425 const lldb::addr_t load_addr = process_address + m_offset; local
553 const lldb::addr_t load_addr = process_address + m_offset; local
617 const lldb::addr_t load_addr = process_address + m_offset; local
741 const lldb::addr_t load_addr = process_address + m_offset; local
802 const lldb::addr_t load_addr = process_address + m_offset; local
888 const lldb::addr_t load_addr = process_address + m_offset; local
1005 const lldb::addr_t load_addr = process_address + m_offset; local
1054 const lldb::addr_t load_addr = process_address + m_offset; local
1072 const lldb::addr_t load_addr = process_address + m_offset; local
1133 const lldb::addr_t load_addr = process_address + m_offset; local
1194 const lldb::addr_t load_addr = process_address + m_offset; local
1248 const lldb::addr_t load_addr = process_address + m_offset; local
[all...]
H A DClangExpressionDeclMap.cpp601 lldb::addr_t load_addr = func_so_addr->GetCallableLoadAddress (target, is_indirect_function); local
603 if (load_addr != LLDB_INVALID_ADDRESS)
605 func_addr = load_addr;
1574 lldb::addr_t load_addr = so_addr.GetLoadAddress(target); local
1576 if (load_addr != LLDB_INVALID_ADDRESS)
1578 var_location.GetScalar() = load_addr;
1926 lldb::addr_t load_addr = fun_address->GetCallableLoadAddress(target, is_indirect_function); local
1940 if (load_addr != LLDB_INVALID_ADDRESS)
1943 parser_vars->m_lldb_value.GetScalar() = load_addr;
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBAddress.h29 SBAddress (lldb::addr_t load_addr, lldb::SBTarget &target);
52 SetLoadAddress (lldb::addr_t load_addr,
/freebsd-10-stable/contrib/llvm/tools/lldb/source/API/
H A DSBAddress.cpp51 SBAddress::SBAddress (lldb::addr_t load_addr, lldb::SBTarget &target) : argument
54 SetLoadAddress (load_addr, target);
143 SBAddress::SetLoadAddress (lldb::addr_t load_addr, lldb::SBTarget &target) argument
148 *this = target.ResolveLoadAddress(load_addr);
157 m_opaque_ap->SetOffset(load_addr);
/freebsd-10-stable/contrib/gdb/gdb/
H A Dprintcmd.c1061 CORE_ADDR load_addr;
1089 load_addr = SYMBOL_VALUE_ADDRESS (msymbol);
1095 print_address_numeric (load_addr, 1, gdb_stdout);
1100 load_addr = overlay_unmapped_address (load_addr, section);
1102 print_address_numeric (load_addr, 1, gdb_stdout);
1129 print_address_numeric (load_addr = SYMBOL_VALUE_ADDRESS (sym),
1133 load_addr = overlay_unmapped_address (load_addr, section);
1135 print_address_numeric (load_addr,
1057 CORE_ADDR load_addr; local
[all...]
H A Dsolib-svr4.c1006 CORE_ADDR load_addr = 0; local
1064 load_addr = LM_ADDR (inferior_sos);
1074 load_addr = (read_pc ()
1083 bfd_section_vma (tmp_bfd, interp_sect) + load_addr;
1091 bfd_section_vma (tmp_bfd, interp_sect) + load_addr;
1119 create_solib_event_breakpoint (load_addr + sym_addr);
H A Dwin32-nat.c519 DWORD load_addr; member in struct:so_stuff
588 register_loaded_dll (const char *name, DWORD load_addr) argument
620 so->load_addr = load_addr;
621 if (VirtualQueryEx (current_process_handle, (void *) load_addr, &m,
625 so->end_addr = load_addr + 0x2000; /* completely arbitrary */
713 if (so->next->load_addr == lpBaseOfDll)
734 if (address >= so->load_addr && address <= so->end_addr)
819 solib_symbols_add (char *name, int from_tty, CORE_ADDR load_addr) argument
844 addrs = get_relocated_section_addrs (abfd, load_addr);
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/
H A DAddress.h398 /// Set the address to represent \a load_addr.
401 /// \a target that contains \a load_addr. If successful, this
404 /// be \a load_addr.
406 /// @param[in] load_addr
422 SetLoadAddress (lldb::addr_t load_addr, Target *target);
425 SetOpcodeLoadAddress (lldb::addr_t load_addr, Target *target);
428 SetCallableLoadAddress (lldb::addr_t load_addr, Target *target);
H A DAddressRange.h169 /// Check if the resolved load address \a load_addr is contained
181 ContainsLoadAddress (lldb::addr_t load_addr, Target *target) const;
/freebsd-10-stable/sbin/pfctl/
H A Dpfctl_table.c62 static int load_addr(struct pfr_buffer *, int, char *[], char *, int);
201 if (load_addr(&b, argc, argv, file, 0))
216 if (load_addr(&b, argc, argv, file, 0))
230 if (load_addr(&b, argc, argv, file, 0))
323 if (load_addr(&b, argc, argv, file, 1))
414 load_addr(struct pfr_buffer *b, int argc, char *argv[], char *file, function
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DBlock.h452 GetRangeContainingLoadAddress (lldb::addr_t load_addr, Target &target, AddressRange &range);
/freebsd-10-stable/sys/boot/i386/libi386/
H A Dmultiboot.h114 multiboot_uint32_t load_addr; member in struct:multiboot_header

Completed in 333 milliseconds

12