Home
last modified time | relevance | path

Searched refs:m_byte_size (Results 1 – 24 of 24) sorted by relevance

/openbsd/gnu/llvm/lldb/include/lldb/Utility/
H A DVMRange.h33 m_byte_size(end_addr > start_addr ? end_addr - start_addr : 0) {} in VMRange()
39 m_byte_size = 0; in Clear()
54 m_byte_size = end_addr - base_addr; in SetEndAddress()
56 m_byte_size = 0; in SetEndAddress()
59 lldb::addr_t GetByteSize() const { return m_byte_size; } in GetByteSize()
61 void SetByteSize(lldb::addr_t byte_size) { m_byte_size = byte_size; } in SetByteSize()
65 lldb::addr_t GetEndAddress() const { return GetBaseAddress() + m_byte_size; } in GetEndAddress()
67 bool IsValid() const { return m_byte_size > 0; } in IsValid()
92 lldb::addr_t m_byte_size = 0; variable
/openbsd/gnu/llvm/lldb/source/Interpreter/
H A DOptionGroupFormat.cpp38 m_byte_size(default_byte_size, default_byte_size), in OptionGroupFormat()
62 if (m_byte_size.GetDefaultValue() < UINT64_MAX) { in GetDefinitions()
94 if (m_byte_size.GetDefaultValue() == 0) { in SetOptionValue()
97 error = m_byte_size.SetValueFromString(option_arg); in SetOptionValue()
98 if (m_byte_size.GetCurrentValue() == 0) in SetOptionValue()
136 const bool byte_size_enabled = m_byte_size.GetDefaultValue() < UINT64_MAX; in SetOptionValue()
169 m_byte_size.SetCurrentValue(byte_size); in SetOptionValue()
170 m_byte_size.SetOptionWasSet(); in SetOptionValue()
280 m_byte_size.Clear(); in OptionParsingStarting()
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.h27 m_byte_size(byte_size) {} in UniqueDWARFASTType()
31 m_declaration(rhs.m_declaration), m_byte_size(rhs.m_byte_size) {} in UniqueDWARFASTType()
40 m_byte_size = rhs.m_byte_size;
48 int32_t m_byte_size = -1; variable
H A DUniqueDWARFASTType.cpp23 if (udt.m_byte_size < 0 || byte_size < 0 || in Find()
24 udt.m_byte_size == byte_size) { in Find()
H A DDWARFASTParserClang.cpp1823 unique_ast_entry_up->m_byte_size = attrs.byte_size.value_or(0); in ParseStructureLikeDIE()
/openbsd/gnu/llvm/lldb/include/lldb/Interpreter/
H A DOptionGroupFormat.h56 OptionValueUInt64 &GetByteSizeValue() { return m_byte_size; } in GetByteSizeValue()
58 const OptionValueUInt64 &GetByteSizeValue() const { return m_byte_size; } in GetByteSizeValue()
67 return m_format.OptionWasSet() || m_byte_size.OptionWasSet() || in AnyOptionWasSet()
77 OptionValueUInt64 m_byte_size; variable
/openbsd/gnu/llvm/lldb/source/Core/
H A DAddressRange.cpp35 : m_base_addr(file_addr, section_list), m_byte_size(byte_size) {} in AddressRange()
39 : m_base_addr(section, offset), m_byte_size(byte_size) {} in AddressRange()
42 : m_base_addr(so_addr), m_byte_size(byte_size) {} in AddressRange()
139 m_byte_size += rhs_end_addr - lhs_end_addr; in Extend()
145 m_byte_size = 0; in Clear()
H A DValueObjectConstResult.cpp209 if (!m_byte_size) { in GetByteSize()
214 return m_byte_size; in GetByteSize()
217 void ValueObjectConstResult::SetByteSize(size_t size) { m_byte_size = size; } in SetByteSize()
H A DValueObjectChild.cpp36 m_byte_size(byte_size), m_byte_offset(byte_offset), in ValueObjectChild()
189 scalar.ExtractBitfield(8 * m_byte_size, 8 * m_byte_offset); in UpdateValue()
H A DSection.cpp162 m_file_addr(file_addr), m_byte_size(byte_size), in Section()
178 m_file_addr(file_addr), m_byte_size(byte_size), in Section()
290 VMRange range(addr, addr + m_byte_size); in Dump()
/openbsd/gnu/llvm/lldb/tools/debugserver/source/
H A DDNBBreakpoint.h30 nub_size_t ByteSize() const { return m_byte_size; } in ByteSize()
41 if (m_byte_size > 0) { in IntersectsRange()
42 const nub_addr_t bp_end_addr = m_addr + m_byte_size; in IntersectsRange()
104 uint32_t m_byte_size; // Length in bytes of the breakpoint if set in memory variable
H A DDNBBreakpoint.cpp23 : m_retain_count(1), m_byte_size(static_cast<uint32_t>(byte_size)), in DNBBreakpoint()
39 (uint64_t)m_addr, (uint64_t)m_byte_size, in Dump()
/openbsd/gnu/llvm/lldb/include/lldb/Core/
H A DAddressRange.h221 lldb::addr_t GetByteSize() const { return m_byte_size; } in GetByteSize()
237 void SetByteSize(lldb::addr_t byte_size) { m_byte_size = byte_size; } in SetByteSize()
242 lldb::addr_t m_byte_size = 0; ///< The size in bytes of this address range. variable
H A DValueObjectChild.h32 std::optional<uint64_t> GetByteSize() override { return m_byte_size; } in GetByteSize()
65 uint64_t m_byte_size; variable
H A DSection.h162 lldb::addr_t GetByteSize() const { return m_byte_size; } in GetByteSize()
164 void SetByteSize(lldb::addr_t byte_size) { m_byte_size = byte_size; } in SetByteSize()
261 lldb::addr_t m_byte_size; // Size in bytes that this section will occupy in variable
H A DValueObjectConstResult.h117 std::optional<uint64_t> m_byte_size; variable
/openbsd/gnu/llvm/lldb/source/Breakpoint/
H A DStoppointSite.cpp17 m_hardware_index(LLDB_INVALID_INDEX32), m_byte_size(0), m_hit_counter() {} in StoppointSite()
22 m_hardware_index(LLDB_INVALID_INDEX32), m_byte_size(byte_size), in StoppointSite()
H A DBreakpointSite.cpp107 m_byte_size = trap_opcode_size; in SetTrapOpcode()
111 m_byte_size = 0; in SetTrapOpcode()
166 if (m_byte_size == 0) in IntersectsRange()
169 const lldb::addr_t bp_end_addr = m_addr + m_byte_size; in IntersectsRange()
H A DWatchpoint.cpp198 GetID(), GetLoadAddress(), m_byte_size, in DumpWithLevel()
/openbsd/gnu/llvm/lldb/source/Symbol/
H A DType.cpp157 m_byte_size = *byte_size; in Type()
160 m_byte_size = 0; in Type()
168 m_byte_size = 0; in Type()
245 s->Printf(", size = %" PRIu64, m_byte_size); in Dump()
347 return static_cast<uint64_t>(m_byte_size); in GetByteSize()
363 m_byte_size = *size; in GetByteSize()
365 return static_cast<uint64_t>(m_byte_size); in GetByteSize()
370 m_byte_size = *size; in GetByteSize()
372 return static_cast<uint64_t>(m_byte_size); in GetByteSize()
381 m_byte_size = arch.GetAddressByteSize(); in GetByteSize()
[all …]
/openbsd/gnu/llvm/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc64.cpp554 uint64_t m_byte_size; member in __anonae4a79c20111::ReturnValueExtractor
571 m_byte_size(m_type.GetByteSize(&thread).value_or(0)), in ReturnValueExtractor()
572 m_data_up(new DataBufferHeap(m_byte_size, 0)), m_reg_ctx(reg_ctx), in ReturnValueExtractor()
598 switch (m_byte_size) { in GetIntegerValue()
701 if (m_byte_size > 2 * vr_size) { in GetVectorValueObject()
709 if (m_byte_size > vr_size) { in GetVectorValueObject()
742 if (m_byte_size < vr_size) in GetVectorValueObject()
743 offs = vr_size - m_byte_size; in GetVectorValueObject()
753 if (m_byte_size > 2 * sizeof(uint64_t)) { in GetStructValueObject()
761 m_byte_size, error); in GetStructValueObject()
[all …]
/openbsd/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/
H A DGenericBitset.cpp54 uint8_t m_byte_size = 0; member in __anon0d631be00111::GenericBitsetFrontEnd
64 m_byte_size = target_sp->GetArchitecture().GetAddressByteSize(); in GenericBitsetFrontEnd()
128 DataExtractor data(&value, sizeof(value), m_byte_order, m_byte_size); in GetChildAtIndex()
/openbsd/gnu/llvm/lldb/include/lldb/Breakpoint/
H A DStoppointSite.h31 uint32_t GetByteSize() const { return m_byte_size; } in GetByteSize()
68 uint32_t m_byte_size; variable
/openbsd/gnu/llvm/lldb/include/lldb/Symbol/
H A DType.h217 uint64_t m_byte_size : 63; variable