aprantl updated this revision to Diff 279634. aprantl added a comment. Fix `&Thread` copy&paste errors. Good catch!
CHANGES SINCE LAST ACTION https://reviews.llvm.org/D84267/new/ https://reviews.llvm.org/D84267 Files: lldb/source/Plugins/ABI/ARC/ABISysV_arc.cpp lldb/source/Plugins/ABI/Mips/ABISysV_mips64.cpp lldb/source/Plugins/ABI/PowerPC/ABISysV_ppc.cpp lldb/source/Plugins/ABI/PowerPC/ABISysV_ppc64.cpp lldb/source/Plugins/ABI/SystemZ/ABISysV_s390x.cpp
Index: lldb/source/Plugins/ABI/SystemZ/ABISysV_s390x.cpp =================================================================== --- lldb/source/Plugins/ABI/SystemZ/ABISysV_s390x.cpp +++ lldb/source/Plugins/ABI/SystemZ/ABISysV_s390x.cpp @@ -508,7 +508,7 @@ if (type_flags & eTypeIsInteger) { // Extract the register context so we can read arguments from registers. llvm::Optional<uint64_t> byte_size = - return_compiler_type.GetByteSize(thread); + return_compiler_type.GetByteSize(&thread); if (!byte_size) return return_valobj_sp; uint64_t raw_value = thread.GetRegisterContext()->ReadRegisterAsUnsigned( @@ -555,7 +555,7 @@ // Don't handle complex yet. } else { llvm::Optional<uint64_t> byte_size = - return_compiler_type.GetByteSize(thread); + return_compiler_type.GetByteSize(&thread); if (byte_size && *byte_size <= sizeof(long double)) { const RegisterInfo *f0_info = reg_ctx->GetRegisterInfoByName("f0", 0); RegisterValue f0_value; Index: lldb/source/Plugins/ABI/PowerPC/ABISysV_ppc64.cpp =================================================================== --- lldb/source/Plugins/ABI/PowerPC/ABISysV_ppc64.cpp +++ lldb/source/Plugins/ABI/PowerPC/ABISysV_ppc64.cpp @@ -567,7 +567,7 @@ ReturnValueExtractor(Thread &thread, CompilerType &type, RegisterContext *reg_ctx, ProcessSP process_sp) : m_thread(thread), m_type(type), - m_byte_size(m_type.GetByteSize(thread).getValueOr(0)), + m_byte_size(m_type.GetByteSize(&thread).getValueOr(0)), m_data_up(new DataBufferHeap(m_byte_size, 0)), m_reg_ctx(reg_ctx), m_process_sp(process_sp), m_byte_order(process_sp->GetByteOrder()), m_addr_size( @@ -643,7 +643,7 @@ DataExtractor de(&raw_data, sizeof(raw_data), m_byte_order, m_addr_size); offset_t offset = 0; - llvm::Optional<uint64_t> byte_size = type.GetByteSize(thread); + llvm::Optional<uint64_t> byte_size = type.GetByteSize(&thread); if (!byte_size) return {}; switch (*byte_size) { @@ -777,7 +777,7 @@ CompilerType elem_type; if (m_type.IsHomogeneousAggregate(&elem_type)) { uint32_t type_flags = elem_type.GetTypeInfo(); - llvm::Optional<uint64_t> elem_size = elem_type.GetByteSize(thread); + llvm::Optional<uint64_t> elem_size = elem_type.GetByteSize(&thread); if (!elem_size) return {}; if (type_flags & eTypeIsComplex || !(type_flags & eTypeIsFloat)) { Index: lldb/source/Plugins/ABI/PowerPC/ABISysV_ppc.cpp =================================================================== --- lldb/source/Plugins/ABI/PowerPC/ABISysV_ppc.cpp +++ lldb/source/Plugins/ABI/PowerPC/ABISysV_ppc.cpp @@ -527,7 +527,7 @@ // Extract the register context so we can read arguments from registers llvm::Optional<uint64_t> byte_size = - return_compiler_type.GetByteSize(thread); + return_compiler_type.GetByteSize(&thread); if (!byte_size) return return_valobj_sp; uint64_t raw_value = thread.GetRegisterContext()->ReadRegisterAsUnsigned( @@ -574,7 +574,7 @@ // Don't handle complex yet. } else { llvm::Optional<uint64_t> byte_size = - return_compiler_type.GetByteSize(thread); + return_compiler_type.GetByteSize(&thread); if (byte_size && *byte_size <= sizeof(long double)) { const RegisterInfo *f1_info = reg_ctx->GetRegisterInfoByName("f1", 0); RegisterValue f1_value; @@ -608,7 +608,7 @@ thread.GetStackFrameAtIndex(0).get(), value, ConstString("")); } else if (type_flags & eTypeIsVector) { llvm::Optional<uint64_t> byte_size = - return_compiler_type.GetByteSize(thread); + return_compiler_type.GetByteSize(&thread); if (byte_size && *byte_size > 0) { const RegisterInfo *altivec_reg = reg_ctx->GetRegisterInfoByName("v2", 0); if (altivec_reg) { Index: lldb/source/Plugins/ABI/Mips/ABISysV_mips64.cpp =================================================================== --- lldb/source/Plugins/ABI/Mips/ABISysV_mips64.cpp +++ lldb/source/Plugins/ABI/Mips/ABISysV_mips64.cpp @@ -753,7 +753,7 @@ const ArchSpec target_arch = target->GetArchitecture(); ByteOrder target_byte_order = target_arch.GetByteOrder(); llvm::Optional<uint64_t> byte_size = - return_compiler_type.GetByteSize(thread); + return_compiler_type.GetByteSize(&thread); if (!byte_size) return return_valobj_sp; const uint32_t type_flags = return_compiler_type.GetTypeInfo(nullptr); @@ -962,7 +962,7 @@ return_compiler_type.GetFieldAtIndex( idx, name, &field_bit_offset, nullptr, nullptr); llvm::Optional<uint64_t> field_byte_width = - field_compiler_type.GetByteSize(thread); + field_compiler_type.GetByteSize(&thread); if (!field_byte_width) return return_valobj_sp; @@ -1034,7 +1034,7 @@ CompilerType field_compiler_type = return_compiler_type.GetFieldAtIndex( idx, name, &field_bit_offset, nullptr, nullptr); llvm::Optional<uint64_t> field_byte_width = - field_compiler_type.GetByteSize(thread); + field_compiler_type.GetByteSize(&thread); // if we don't know the size of the field (e.g. invalid type), just // bail out Index: lldb/source/Plugins/ABI/ARC/ABISysV_arc.cpp =================================================================== --- lldb/source/Plugins/ABI/ARC/ABISysV_arc.cpp +++ lldb/source/Plugins/ABI/ARC/ABISysV_arc.cpp @@ -458,7 +458,7 @@ const uint32_t type_flags = compiler_type.GetTypeInfo(); // Integer return type. if (type_flags & eTypeIsInteger) { - const size_t byte_size = compiler_type.GetByteSize(thread).getValueOr(0); + const size_t byte_size = compiler_type.GetByteSize(&thread).getValueOr(0); auto raw_value = ReadRawValue(reg_ctx, byte_size); const bool is_signed = (type_flags & eTypeIsSigned) != 0; @@ -482,7 +482,7 @@ if (compiler_type.IsFloatingPointType(float_count, is_complex) && 1 == float_count && !is_complex) { - const size_t byte_size = compiler_type.GetByteSize(thread).getValueOr(0); + const size_t byte_size = compiler_type.GetByteSize(&thread).getValueOr(0); auto raw_value = ReadRawValue(reg_ctx, byte_size); if (!SetSizedFloat(value.GetScalar(), raw_value, byte_size))
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits