Searched refs:m_addr (Results 1 - 22 of 22) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeBreakpointList.h19 lldb::addr_t m_addr; member in struct:lldb_private::HardwareBreakpoint
H A DNativeWatchpointList.h19 lldb::addr_t m_addr; member in struct:lldb_private::NativeWatchpoint
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverAddress.cpp27 m_addr(addr), m_resolved_addr(LLDB_INVALID_ADDRESS),
33 m_addr(addr), m_resolved_addr(LLDB_INVALID_ADDRESS), m_module_filespec() {
71 SectionSP section_sp = m_addr.GetSection();
81 m_addr.GetOffset());
84 m_addr.GetOffset());
101 if (m_addr.GetSection() || m_module_filespec)
114 if (m_addr.GetSection())
127 if (filter.AddressPasses(m_addr)) {
131 // m_addr to use that.
132 if (!m_addr
[all...]
H A DStoppointLocation.cpp17 : m_loc_id(bid), m_addr(addr), m_hardware(hardware),
22 : m_loc_id(bid), m_addr(addr), m_hardware(hardware),
H A DBreakpointSite.cpp80 GetID(), (uint64_t)m_addr, IsHardware() ? "hardware" : "software",
166 const lldb::addr_t bp_end_addr = m_addr + m_byte_size;
172 if (end_addr <= m_addr)
175 if (m_addr < addr) {
182 *opcode_offset = addr - m_addr;
185 *intersect_addr = m_addr;
188 std::min<lldb::addr_t>(bp_end_addr, end_addr) - m_addr;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DStoppointLocation.h21 StoppointLocation(lldb::break_id_t bid, lldb::addr_t m_addr, bool hardware);
23 StoppointLocation(lldb::break_id_t bid, lldb::addr_t m_addr,
31 virtual lldb::addr_t GetLoadAddress() const { return m_addr; }
33 virtual void SetLoadAddress(lldb::addr_t addr) { m_addr = addr; }
59 m_addr; // The load address of this stop point. The base Stoppoint doesn't member in class:lldb_private::StoppointLocation
H A DBreakpointResolverAddress.h63 m_addr; // The address - may be Section Offset or may be just an offset member in class:lldb_private::BreakpointResolverAddress
66 FileSpec m_module_filespec; // If this filespec is Valid, and m_addr is an
H A DBreakpointSite.h224 const lldb::BreakpointLocationSP &owner, lldb::addr_t m_addr,
/freebsd-11-stable/sbin/setkey/
H A Dparse.y806 struct sadb_address m_addr;
852 m_addr.sadb_address_len = PFKEY_UNIT64(sizeof(m_addr) +
854 m_addr.sadb_address_exttype = SADB_EXT_ADDRESS_SRC;
855 m_addr.sadb_address_proto = upper;
856 m_addr.sadb_address_prefixlen =
858 m_addr.sadb_address_reserved = 0;
860 setvarbuf(buf, &l, (struct sadb_ext *)&m_addr,
861 sizeof(m_addr), (caddr_t)sa, salen);
866 m_addr
[all...]
H A Dtest-pfkey.c473 struct sadb_address m_addr; local
503 m_addr.sadb_address_len = PFKEY_UNIT64(len);
504 m_addr.sadb_address_exttype = ext;
505 m_addr.sadb_address_proto =
507 m_addr.sadb_address_prefixlen = plen;
508 m_addr.sadb_address_reserved = 0;
511 (caddr_t)&m_addr, sizeof(struct sadb_address),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/
H A DProcessMessage.h41 m_addr(0) {}
129 return m_addr;
134 return m_addr;
153 m_addr(addr), m_child_tid(0) {}
158 m_addr(0), m_child_tid(child_tid) {}
164 lldb::addr_t m_addr; member in class:ProcessMessage
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/
H A DEmulateInstructionPPC64.cpp110 m_addr = ReadRegisterUnsigned(eRegisterKindGeneric, LLDB_REGNUM_GENERIC_PC,
116 m_opcode.SetOpcode32(ReadMemoryUnsigned(ctx, m_addr, 4, 0, &success),
120 m_addr = LLDB_INVALID_ADDRESS;
222 LLDB_LOG(log, "EmulateMFSPR: {0:X+8}: mfspr r0, lr", m_addr);
249 LLDB_LOG(log, "EmulateLD: {0:X+8}: ld r{1}, {2}(r{3})", m_addr, rt, ids, ra);
286 LLDB_LOG(log, "EmulateSTD: {0:X+8}: std{1} r{2}, {3}(r{4})", m_addr,
343 LLDB_LOG(log, "EmulateOR: {0:X+8}: mr r{1}, r{2}", m_addr, ra, rb);
378 LLDB_LOG(log, "EmulateADDI: {0:X+8}: addi r1, r1, {1}", m_addr, si_val);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DEmulateInstruction.cpp525 m_addr = LLDB_INVALID_ADDRESS;
528 m_addr = inst_addr.GetLoadAddress(target);
529 if (m_addr == LLDB_INVALID_ADDRESS)
530 m_addr = inst_addr.GetFileAddress();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp215 : m_addr(addr), m_buff(buff), m_size(size), m_error(error),
221 lldb::addr_t m_addr; member in class:ReadOperation
231 m_result = DoReadMemory(pid, m_addr, m_buff, m_size, m_error);
240 : m_addr(addr), m_buff(buff), m_size(size), m_error(error),
246 lldb::addr_t m_addr; member in class:WriteOperation
256 m_result = DoWriteMemory(pid, m_addr, m_buff, m_size, m_error);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DEmulateInstruction.h430 lldb::addr_t GetAddress() const { return m_addr; }
497 lldb::addr_t m_addr = LLDB_INVALID_ADDRESS; member in class:lldb_private::EmulateInstruction
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.cpp397 m_addr = ReadRegisterUnsigned(eRegisterKindGeneric, LLDB_REGNUM_GENERIC_PC,
404 ReadMemoryUnsigned(read_inst_context, m_addr, 4, 0, &success),
408 m_addr = LLDB_INVALID_ADDRESS;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp3259 m_addr(LLDB_INVALID_ADDRESS) {}
3273 m_addr = OptionArgParser::ToAddress(execution_context, option_arg,
3275 if (m_addr == LLDB_INVALID_ADDRESS)
3296 m_addr = LLDB_INVALID_ADDRESS;
3307 lldb::addr_t m_addr; // Holds the address to lookup member in class:CommandObjectTargetModulesShowUnwind::CommandOptions
3359 if (target->GetSectionLoadList().ResolveLoadAddress(m_options.m_addr,
3595 m_addr = OptionArgParser::ToAddress(execution_context, option_arg,
3665 m_addr = LLDB_INVALID_ADDRESS;
3681 lldb::addr_t m_addr; // Holds the address to lookup member in class:CommandObjectTargetModulesLookup::CommandOptions
3683 m_offset; // Subtract this offset from m_addr befor
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.cpp1014 uint64_t next_inst_addr = (m_addr & (~1ull)) + current_inst_size;
1044 m_addr = ReadRegisterUnsigned(eRegisterKindGeneric, LLDB_REGNUM_GENERIC_PC,
1051 ReadMemoryUnsigned(read_inst_context, m_addr, 4, 0, &success),
1055 m_addr = LLDB_INVALID_ADDRESS;
1072 m_addr, llvm::nulls());
1075 m_addr, llvm::nulls());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.cpp942 m_addr = ReadRegisterUnsigned(eRegisterKindGeneric, LLDB_REGNUM_GENERIC_PC,
949 ReadMemoryUnsigned(read_inst_context, m_addr, 4, 0, &success),
953 m_addr = LLDB_INVALID_ADDRESS;
969 m_addr, llvm::nulls());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.h239 lldb::addr_t m_addr; member in struct:lldb_private::lldb_renderscript::RSScriptGroupDescriptor::Kernel
H A DRenderScriptRuntime.cpp913 LLDB_LOGF(log, "%s: Kernel address 0x%" PRIx64, __FUNCTION__, k.m_addr);
1212 kernel.m_addr = kernel_addr;
1215 if (!ResolveKernelName(kernel.m_addr, kernel.m_name)) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp13881 m_addr = LLDB_INVALID_ADDRESS;

Completed in 320 milliseconds