diff options
Diffstat (limited to 'lldb/source')
20 files changed, 85 insertions, 97 deletions
diff --git a/lldb/source/API/SBType.cpp b/lldb/source/API/SBType.cpp index 976bbf21ae5..4914daeeccb 100644 --- a/lldb/source/API/SBType.cpp +++ b/lldb/source/API/SBType.cpp @@ -136,7 +136,7 @@ SBType::IsValid() const return m_opaque_sp->IsValid(); } -size_t +uint64_t SBType::GetByteSize() { if (!IsValid()) diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp index 47ddc512fc3..ea8feed873a 100644 --- a/lldb/source/Commands/CommandObjectMemory.cpp +++ b/lldb/source/Commands/CommandObjectMemory.cpp @@ -538,7 +538,7 @@ protected: --pointer_count; } - m_format_options.GetByteSizeValue() = (clang_ast_type.GetClangTypeBitWidth () + 7) / 8; + m_format_options.GetByteSizeValue() = clang_ast_type.GetClangTypeByteSize(); if (m_format_options.GetByteSizeValue() == 0) { diff --git a/lldb/source/Core/DataBufferHeap.cpp b/lldb/source/Core/DataBufferHeap.cpp index a93427ff858..3692aa90a5b 100644 --- a/lldb/source/Core/DataBufferHeap.cpp +++ b/lldb/source/Core/DataBufferHeap.cpp @@ -23,7 +23,7 @@ DataBufferHeap::DataBufferHeap () : // Initialize this class with "n" characters and fill the buffer // with "ch". //---------------------------------------------------------------------- -DataBufferHeap::DataBufferHeap (size_t n, uint8_t ch) : +DataBufferHeap::DataBufferHeap (lldb::offset_t n, uint8_t ch) : m_data(n, ch) { } @@ -32,7 +32,7 @@ DataBufferHeap::DataBufferHeap (size_t n, uint8_t ch) : // Initialize this class with a copy of the "n" bytes from the "bytes" // buffer. //---------------------------------------------------------------------- -DataBufferHeap::DataBufferHeap (const void *src, size_t src_len) : +DataBufferHeap::DataBufferHeap (const void *src, lldb::offset_t src_len) : m_data() { CopyData (src, src_len); @@ -73,7 +73,7 @@ DataBufferHeap::GetBytes () const //---------------------------------------------------------------------- // Return the number of bytes this object currently contains. //---------------------------------------------------------------------- -size_t +uint64_t DataBufferHeap::GetByteSize () const { return m_data.size(); @@ -84,15 +84,15 @@ DataBufferHeap::GetByteSize () const // Sets the number of bytes that this object should be able to // contain. This can be used prior to copying data into the buffer. //---------------------------------------------------------------------- -size_t -DataBufferHeap::SetByteSize (size_t new_size) +uint64_t +DataBufferHeap::SetByteSize (uint64_t new_size) { m_data.resize(new_size); return m_data.size(); } void -DataBufferHeap::CopyData (const void *src, size_t src_len) +DataBufferHeap::CopyData (const void *src, uint64_t src_len) { const uint8_t *src_u8 = (const uint8_t *)src; if (src && src_len > 0) diff --git a/lldb/source/Core/DataBufferMemoryMap.cpp b/lldb/source/Core/DataBufferMemoryMap.cpp index 19dcf77d4f1..d1131ae865f 100644 --- a/lldb/source/Core/DataBufferMemoryMap.cpp +++ b/lldb/source/Core/DataBufferMemoryMap.cpp @@ -68,7 +68,7 @@ DataBufferMemoryMap::GetBytes() const //---------------------------------------------------------------------- // Return the number of bytes this object currently contains. //---------------------------------------------------------------------- -size_t +uint64_t DataBufferMemoryMap::GetByteSize() const { return m_size; @@ -104,8 +104,8 @@ DataBufferMemoryMap::Clear() //---------------------------------------------------------------------- size_t DataBufferMemoryMap::MemoryMapFromFileSpec (const FileSpec* filespec, - off_t offset, - size_t length, + lldb::offset_t offset, + lldb::offset_t length, bool writeable) { if (filespec != NULL) @@ -113,7 +113,7 @@ DataBufferMemoryMap::MemoryMapFromFileSpec (const FileSpec* filespec, LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_MMAP)); if (log) { - log->Printf("DataBufferMemoryMap::MemoryMapFromFileSpec(file=\"%s/%s\", offset=0x%" PRIx64 ", length=0x%zx, writeable=%i", + log->Printf("DataBufferMemoryMap::MemoryMapFromFileSpec(file=\"%s/%s\", offset=0x%" PRIx64 ", length=0x%" PRIx64 ", writeable=%i", filespec->GetDirectory().GetCString(), filespec->GetFilename().GetCString(), offset, @@ -156,8 +156,8 @@ DataBufferMemoryMap::MemoryMapFromFileSpec (const FileSpec* filespec, //---------------------------------------------------------------------- size_t DataBufferMemoryMap::MemoryMapFromFileDescriptor (int fd, - off_t offset, - size_t length, + lldb::offset_t offset, + lldb::offset_t length, bool writeable, bool fd_is_file) { @@ -167,7 +167,7 @@ DataBufferMemoryMap::MemoryMapFromFileDescriptor (int fd, LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_MMAP|LIBLLDB_LOG_VERBOSE)); if (log) { - log->Printf("DataBufferMemoryMap::MemoryMapFromFileSpec(fd=%i, offset=0x%" PRIx64 ", length=0x%zx, writeable=%i, fd_is_file=%i)", + log->Printf("DataBufferMemoryMap::MemoryMapFromFileSpec(fd=%i, offset=0x%" PRIx64 ", length=0x%" PRIx64 ", writeable=%i, fd_is_file=%i)", fd, offset, length, diff --git a/lldb/source/Core/Value.cpp b/lldb/source/Core/Value.cpp index 5b6e8fd9882..f5298098024 100644 --- a/lldb/source/Core/Value.cpp +++ b/lldb/source/Core/Value.cpp @@ -169,10 +169,10 @@ Value::ValueOf(ExecutionContext *exe_ctx, clang::ASTContext *ast_context) return false; } -size_t +uint64_t Value::GetValueByteSize (clang::ASTContext *ast_context, Error *error_ptr) { - size_t byte_size = 0; + uint64_t byte_size = 0; switch (m_context_type) { @@ -190,8 +190,7 @@ Value::GetValueByteSize (clang::ASTContext *ast_context, Error *error_ptr) } else { - uint64_t bit_width = ClangASTType::GetClangTypeBitWidth (ast_context, m_context); - byte_size = (bit_width + 7 ) / 8; + byte_size = ClangASTType(ast_context, m_context).GetClangTypeByteSize(); } break; @@ -348,9 +347,8 @@ Value::GetValueAsData (ExecutionContext *exe_ctx, data.SetByteOrder (lldb::endian::InlHostByteOrder()); if (m_context_type == eContextTypeClangType && ast_context) { - uint32_t ptr_bit_width = ClangASTType::GetClangTypeBitWidth (ast_context, - ClangASTContext::GetVoidPtrType(ast_context, false)); - uint32_t ptr_byte_size = (ptr_bit_width + 7) / 8; + ClangASTType ptr_type (ast_context, ClangASTContext::GetVoidPtrType(ast_context, false)); + uint64_t ptr_byte_size = ptr_type.GetClangTypeByteSize(); data.SetAddressByteSize (ptr_byte_size); } else diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index 7891c26fafb..fb3c9b3c06c 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -998,7 +998,7 @@ ValueObject::GetPointeeData (DataExtractor& data, return 0; } -size_t +uint64_t ValueObject::GetData (DataExtractor& data) { UpdateValueIfNeeded(false); @@ -1717,7 +1717,7 @@ ValueObject::SetValueFromCString (const char *value_str, Error& error) return false; } - uint32_t count = 0; + uint64_t count = 0; Encoding encoding = ClangASTType::GetEncoding (GetClangType(), count); const size_t byte_size = GetByteSize(); diff --git a/lldb/source/Core/ValueObjectCast.cpp b/lldb/source/Core/ValueObjectCast.cpp index 6abf83607d1..e1c94cc5fa4 100644 --- a/lldb/source/Core/ValueObjectCast.cpp +++ b/lldb/source/Core/ValueObjectCast.cpp @@ -79,7 +79,7 @@ ValueObjectCast::GetClangASTImpl () return m_cast_type.GetASTContext(); } -size_t +uint64_t ValueObjectCast::GetByteSize() { return m_value.GetValueByteSize(GetClangAST(), NULL); diff --git a/lldb/source/Core/ValueObjectChild.cpp b/lldb/source/Core/ValueObjectChild.cpp index ee2bbb5ddc3..8aeb005512a 100644 --- a/lldb/source/Core/ValueObjectChild.cpp +++ b/lldb/source/Core/ValueObjectChild.cpp @@ -30,7 +30,7 @@ ValueObjectChild::ValueObjectChild clang::ASTContext *clang_ast, void *clang_type, const ConstString &name, - uint32_t byte_size, + uint64_t byte_size, int32_t byte_offset, uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset, diff --git a/lldb/source/Core/ValueObjectConstResult.cpp b/lldb/source/Core/ValueObjectConstResult.cpp index 4a9dfbe5d4b..b78e4ec3476 100644 --- a/lldb/source/Core/ValueObjectConstResult.cpp +++ b/lldb/source/Core/ValueObjectConstResult.cpp @@ -286,7 +286,7 @@ ValueObjectConstResult::GetValueType() const return eValueTypeConstResult; } -size_t +uint64_t ValueObjectConstResult::GetByteSize() { if (m_byte_size == 0) diff --git a/lldb/source/Core/ValueObjectDynamicValue.cpp b/lldb/source/Core/ValueObjectDynamicValue.cpp index 06a7eedc349..a90ef0286fb 100644 --- a/lldb/source/Core/ValueObjectDynamicValue.cpp +++ b/lldb/source/Core/ValueObjectDynamicValue.cpp @@ -106,7 +106,7 @@ ValueObjectDynamicValue::GetClangASTImpl () return m_parent->GetClangAST (); } -size_t +uint64_t ValueObjectDynamicValue::GetByteSize() { const bool success = UpdateValueIfNeeded(false); diff --git a/lldb/source/Core/ValueObjectMemory.cpp b/lldb/source/Core/ValueObjectMemory.cpp index 325dc88f9e9..2bdf44f9c2d 100644 --- a/lldb/source/Core/ValueObjectMemory.cpp +++ b/lldb/source/Core/ValueObjectMemory.cpp @@ -165,12 +165,12 @@ ValueObjectMemory::GetClangASTImpl () return m_clang_type.GetASTContext(); } -size_t +uint64_t ValueObjectMemory::GetByteSize() { if (m_type_sp) return m_type_sp->GetByteSize(); - return (m_clang_type.GetClangTypeBitWidth () + 7) / 8; + return m_clang_type.GetClangTypeByteSize (); } lldb::ValueType diff --git a/lldb/source/Core/ValueObjectRegister.cpp b/lldb/source/Core/ValueObjectRegister.cpp index 95a6315f435..9ac8aa49205 100644 --- a/lldb/source/Core/ValueObjectRegister.cpp +++ b/lldb/source/Core/ValueObjectRegister.cpp @@ -72,7 +72,7 @@ ValueObjectRegisterContext::GetClangASTImpl () return NULL; } -size_t +uint64_t ValueObjectRegisterContext::GetByteSize() { return 0; @@ -177,7 +177,7 @@ ValueObjectRegisterSet::GetClangASTImpl () return NULL; } -size_t +uint64_t ValueObjectRegisterSet::GetByteSize() { return 0; @@ -361,7 +361,7 @@ ValueObjectRegister::GetClangASTImpl () return NULL; } -size_t +uint64_t ValueObjectRegister::GetByteSize() { return m_reg_info.byte_size; diff --git a/lldb/source/Core/ValueObjectSyntheticFilter.cpp b/lldb/source/Core/ValueObjectSyntheticFilter.cpp index c8edffab898..ab5d1f524da 100644 --- a/lldb/source/Core/ValueObjectSyntheticFilter.cpp +++ b/lldb/source/Core/ValueObjectSyntheticFilter.cpp @@ -135,7 +135,7 @@ ValueObjectSynthetic::GetClangASTImpl () return m_parent->GetClangAST (); } -size_t +uint64_t ValueObjectSynthetic::GetByteSize() { return m_parent->GetByteSize(); diff --git a/lldb/source/Core/ValueObjectVariable.cpp b/lldb/source/Core/ValueObjectVariable.cpp index 5647fbb890e..164592d10b9 100644 --- a/lldb/source/Core/ValueObjectVariable.cpp +++ b/lldb/source/Core/ValueObjectVariable.cpp @@ -102,16 +102,15 @@ ValueObjectVariable::GetClangASTImpl () return 0; } -size_t +uint64_t ValueObjectVariable::GetByteSize() { - ClangASTType type(GetClangAST(), - GetClangType()); + ClangASTType type(GetClangAST(), GetClangType()); if (!type.IsValid()) return 0; - return (ClangASTType::GetClangTypeBitWidth(type.GetASTContext(), type.GetOpaqueQualType()) + 7) / 8; + return type.GetClangTypeByteSize(); } lldb::ValueType diff --git a/lldb/source/Expression/DWARFExpression.cpp b/lldb/source/Expression/DWARFExpression.cpp index a6950d6a5dc..82d40af1562 100644 --- a/lldb/source/Expression/DWARFExpression.cpp +++ b/lldb/source/Expression/DWARFExpression.cpp @@ -2794,7 +2794,7 @@ DWARFExpression::Evaluate addr_t source_addr = (addr_t)tmp.GetScalar().ULongLong(); addr_t target_addr = (addr_t)stack.back().GetScalar().ULongLong(); - size_t byte_size = (ClangASTType::GetClangTypeBitWidth(ast_context, clang_type) + 7) / 8; + const uint64_t byte_size = ClangASTType::GetTypeByteSize(ast_context, clang_type); switch (source_value_type) { diff --git a/lldb/source/Expression/IRForTarget.cpp b/lldb/source/Expression/IRForTarget.cpp index 8f775a793a5..c7c96f73fbd 100644 --- a/lldb/source/Expression/IRForTarget.cpp +++ b/lldb/source/Expression/IRForTarget.cpp @@ -707,7 +707,7 @@ IRForTarget::CreateResultVariable (llvm::Function &llvm_function) m_result_name = m_decl_map->GetPersistentResultName(); if (log) - log->Printf("Creating a new result global: \"%s\" with size 0x%x", + log->Printf("Creating a new result global: \"%s\" with size 0x%" PRIx64, m_result_name.GetCString(), m_result_type.GetClangTypeBitWidth() / 8); @@ -1674,11 +1674,11 @@ IRForTarget::MaybeHandleVariable (Value *llvm_value_ptr) value_type = global_variable->getType(); } - size_t value_size = (ast_context->getTypeSize(qual_type) + 7) / 8; - off_t value_alignment = (ast_context->getTypeAlign(qual_type) + 7) / 8; + uint64_t value_size = (ast_context->getTypeSize(qual_type) + 7ull) / 8ull; + off_t value_alignment = (ast_context->getTypeAlign(qual_type) + 7ull) / 8ull; if (log) - log->Printf("Type of \"%s\" is [clang \"%s\", llvm \"%s\"] [size %lu, align %" PRId64 "]", + log->Printf("Type of \"%s\" is [clang \"%s\", llvm \"%s\"] [size %" PRIu64 ", align %" PRId64 "]", name.c_str(), qual_type.getAsString().c_str(), PrintType(value_type).c_str(), diff --git a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp index ba286997dd2..53e99d746d9 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp @@ -5442,7 +5442,7 @@ SymbolFileDWARF::ParseType (const SymbolContext& sc, DWARFCompileUnit* dwarf_cu, const char *type_name_cstr = NULL; ConstString type_name_const_str; Type::ResolveState resolve_state = Type::eResolveStateUnresolved; - size_t byte_size = 0; + uint64_t byte_size = 0; Declaration decl; Type::EncodingDataType encoding_data_type = Type::eEncodingIsUID; diff --git a/lldb/source/Symbol/ClangASTContext.cpp b/lldb/source/Symbol/ClangASTContext.cpp index e1bc3c2c0e2..0b8465e414c 100644 --- a/lldb/source/Symbol/ClangASTContext.cpp +++ b/lldb/source/Symbol/ClangASTContext.cpp @@ -5598,7 +5598,7 @@ ClangASTContext::CreateMemberPointerType (clang_type_t clang_pointee_type, clang return NULL; } -uint32_t +uint64_t ClangASTContext::GetPointerBitSize () { ASTContext *ast = getASTContext(); diff --git a/lldb/source/Symbol/ClangASTType.cpp b/lldb/source/Symbol/ClangASTType.cpp index 5c6b8da2689..721672ef8ef 100644 --- a/lldb/source/Symbol/ClangASTType.cpp +++ b/lldb/source/Symbol/ClangASTType.cpp @@ -141,7 +141,7 @@ ClangASTType::GetPointeeType (clang_type_t clang_type) } lldb::clang_type_t -ClangASTType::GetArrayElementType (uint32_t& stride) +ClangASTType::GetArrayElementType (uint64_t& stride) { return GetArrayElementType(m_ast, m_type, stride); } @@ -149,7 +149,7 @@ ClangASTType::GetArrayElementType (uint32_t& stride) lldb::clang_type_t ClangASTType::GetArrayElementType (clang::ASTContext* ast, lldb::clang_type_t opaque_clang_qual_type, - uint32_t& stride) + uint64_t& stride) { if (opaque_clang_qual_type) { @@ -187,7 +187,7 @@ ClangASTType::GetPointerType (clang::ASTContext *ast_context, } lldb::Encoding -ClangASTType::GetEncoding (uint32_t &count) +ClangASTType::GetEncoding (uint64_t &count) { return GetEncoding(m_type, count); } @@ -363,7 +363,7 @@ ClangASTType::GetMinimumLanguage (clang::ASTContext *ctx, } lldb::Encoding -ClangASTType::GetEncoding (clang_type_t clang_type, uint32_t &count) +ClangASTType::GetEncoding (clang_type_t clang_type, uint64_t &count) { count = 1; clang::QualType qual_type(clang::QualType::getFromOpaquePtr(clang_type)); @@ -631,7 +631,7 @@ ClangASTType::DumpValue Stream *s, lldb::Format format, const lldb_private::DataExtractor &data, - uint32_t data_byte_offset, + lldb::offset_t data_byte_offset, size_t data_byte_size, uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset, @@ -667,7 +667,7 @@ ClangASTType::DumpValue Stream *s, lldb::Format format, const lldb_private::DataExtractor &data, - uint32_t data_byte_offset, + lldb::offset_t data_byte_offset, size_t data_byte_size, uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset, @@ -965,7 +965,7 @@ bool ClangASTType::DumpTypeValue (Stream *s, lldb::Format format, const lldb_private::DataExtractor &data, - uint32_t byte_offset, + lldb::offset_t byte_offset, size_t byte_size, uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset, @@ -990,7 +990,7 @@ ClangASTType::DumpTypeValue (clang::ASTContext *ast_context, Stream *s, lldb::Format format, const lldb_private::DataExtractor &data, - uint32_t byte_offset, + lldb::offset_t byte_offset, size_t byte_size, uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset, @@ -1153,7 +1153,7 @@ ClangASTType::DumpSummary ExecutionContext *exe_ctx, Stream *s, const lldb_private::DataExtractor &data, - uint32_t data_byte_offset, + lldb::offset_t data_byte_offset, size_t data_byte_size ) { @@ -1174,7 +1174,7 @@ ClangASTType::DumpSummary ExecutionContext *exe_ctx, Stream *s, const lldb_private::DataExtractor &data, - uint32_t data_byte_offset, + lldb::offset_t data_byte_offset, size_t data_byte_size ) { @@ -1219,19 +1219,19 @@ ClangASTType::DumpSummary } } -uint32_t +uint64_t ClangASTType::GetClangTypeByteSize () { return (GetClangTypeBitWidth (m_ast, m_type) + 7) / 8; } -uint32_t +uint64_t ClangASTType::GetClangTypeBitWidth () { return GetClangTypeBitWidth (m_ast, m_type); } -uint32_t +uint64_t ClangASTType::GetClangTypeBitWidth (clang::ASTContext *ast_context, clang_type_t clang_type) { if (ClangASTContext::GetCompleteType (ast_context, clang_type)) @@ -1428,7 +1428,7 @@ bool ClangASTType::GetValueAsScalar ( const lldb_private::DataExtractor &data, - uint32_t data_byte_offset, + lldb::offset_t data_byte_offset, size_t data_byte_size, Scalar &value ) @@ -1447,7 +1447,7 @@ ClangASTType::GetValueAsScalar clang::ASTContext *ast_context, clang_type_t clang_type, const lldb_private::DataExtractor &data, - uint32_t data_byte_offset, + lldb::offset_t data_byte_offset, size_t data_byte_size, Scalar &value ) @@ -1460,14 +1460,14 @@ ClangASTType::GetValueAsScalar } else { - uint32_t count = 0; + uint64_t count = 0; lldb::Encoding encoding = GetEncoding (clang_type, count); if (encoding == lldb::eEncodingInvalid || count != 1) return false; uint64_t bit_width = ast_context->getTypeSize(qual_type); - uint32_t byte_size = (bit_width + 7 ) / 8; + uint64_t byte_size = (bit_width + 7 ) / 8; lldb::offset_t offset = data_byte_offset; switch (encoding) { @@ -1603,18 +1603,18 @@ ClangASTType::SetValueFromScalar if (!ClangASTContext::IsAggregateType (clang_type)) { strm.GetFlags().Set(Stream::eBinary); - uint32_t count = 0; + uint64_t count = 0; lldb::Encoding encoding = GetEncoding (clang_type, count); if (encoding == lldb::eEncodingInvalid || count != 1) return false; - uint64_t bit_width = ast_context->getTypeSize(qual_type); + const uint64_t bit_width = ast_context->getTypeSize(qual_type); // This function doesn't currently handle non-byte aligned assignments if ((bit_width % 8) != 0) return false; - uint32_t byte_size = (bit_width + 7 ) / 8; + const uint64_t byte_size = (bit_width + 7 ) / 8; switch (encoding) { case lldb::eEncodingInvalid: @@ -1673,13 +1673,10 @@ ClangASTType::SetValueFromScalar } bool -ClangASTType::ReadFromMemory -( - lldb_private::ExecutionContext *exe_ctx, - lldb::addr_t addr, - AddressType address_type, - lldb_private::DataExtractor &data -) +ClangASTType::ReadFromMemory (lldb_private::ExecutionContext *exe_ctx, + lldb::addr_t addr, + AddressType address_type, + lldb_private::DataExtractor &data) { return ReadFromMemory (m_ast, m_type, @@ -1689,24 +1686,21 @@ ClangASTType::ReadFromMemory data); } -uint32_t +uint64_t ClangASTType::GetTypeByteSize() const { - return GetTypeByteSize(m_ast, - m_type); + return GetTypeByteSize (m_ast, m_type); } -uint32_t -ClangASTType::GetTypeByteSize( - clang::ASTContext *ast_context, - lldb::clang_type_t opaque_clang_qual_type) +uint64_t +ClangASTType::GetTypeByteSize(clang::ASTContext *ast_context, lldb::clang_type_t opaque_clang_qual_type) { if (ClangASTContext::GetCompleteType (ast_context, opaque_clang_qual_type)) { clang::QualType qual_type(clang::QualType::getFromOpaquePtr(opaque_clang_qual_type)); - uint32_t byte_size = (ast_context->getTypeSize (qual_type) + 7) / 8; + uint64_t byte_size = (ast_context->getTypeSize (qual_type) + (uint64_t)7) / (uint64_t)8; if (ClangASTContext::IsObjCClassType(opaque_clang_qual_type)) byte_size += ast_context->getTypeSize(ast_context->ObjCBuiltinClassTy) / 8; // isa @@ -1718,15 +1712,12 @@ ClangASTType::GetTypeByteSize( bool -ClangASTType::ReadFromMemory -( - clang::ASTContext *ast_context, - clang_type_t clang_type, - lldb_private::ExecutionContext *exe_ctx, - lldb::addr_t addr, - AddressType address_type, - lldb_private::DataExtractor &data -) +ClangASTType::ReadFromMemory (clang::ASTContext *ast_context, + clang_type_t clang_type, + lldb_private::ExecutionContext *exe_ctx, + lldb::addr_t addr, + AddressType address_type, + lldb_private::DataExtractor &data) { if (address_type == eAddressTypeFile) { @@ -1740,7 +1731,7 @@ ClangASTType::ReadFromMemory clang::QualType qual_type(clang::QualType::getFromOpaquePtr(clang_type)); - const uint32_t byte_size = (ast_context->getTypeSize (qual_type) + 7) / 8; + const uint64_t byte_size = (ast_context->getTypeSize (qual_type) + 7) / 8; if (data.GetByteSize() < byte_size) { lldb::DataBufferSP data_sp(new DataBufferHeap (byte_size, '\0')); @@ -1808,7 +1799,7 @@ ClangASTType::WriteToMemory return false; } clang::QualType qual_type(clang::QualType::getFromOpaquePtr(clang_type)); - const uint32_t byte_size = (ast_context->getTypeSize (qual_type) + 7) / 8; + const uint64_t byte_size = (ast_context->getTypeSize (qual_type) + 7) / 8; if (byte_size > 0) { diff --git a/lldb/source/Symbol/Type.cpp b/lldb/source/Symbol/Type.cpp index bdd7ce84f1c..e886f15a564 100644 --- a/lldb/source/Symbol/Type.cpp +++ b/lldb/source/Symbol/Type.cpp @@ -51,7 +51,7 @@ Type::Type lldb::user_id_t uid, SymbolFile* symbol_file, const ConstString &name, - uint32_t byte_size, + uint64_t byte_size, SymbolContextScope *context, user_id_t encoding_uid, EncodingDataType encoding_uid_type, @@ -138,7 +138,7 @@ Type::GetDescription (Stream *s, lldb::DescriptionLevel level, bool show_name) // Call the get byte size accesor so we resolve our byte size if (GetByteSize()) - s->Printf(", byte-size = %u", m_byte_size); + s->Printf(", byte-size = %" PRIu64, m_byte_size); bool show_fullpaths = (level == lldb::eDescriptionLevelVerbose); m_decl.Dump(s, show_fullpaths); @@ -178,7 +178,7 @@ Type::Dump (Stream *s, bool show_context) *s << ", name = \"" << m_name << "\""; if (m_byte_size != 0) - s->Printf(", size = %u", m_byte_size); + s->Printf(", size = %" PRIu64, m_byte_size); if (show_context && m_context != NULL) { @@ -289,7 +289,7 @@ Type::GetEncodingType () -uint32_t +uint64_t Type::GetByteSize() { if (m_byte_size == 0) @@ -375,7 +375,7 @@ Type::GetFormat () lldb::Encoding -Type::GetEncoding (uint32_t &count) +Type::GetEncoding (uint64_t &count) { // Make sure we resolve our type if it already hasn't been. if (!ResolveClangType(eResolveStateForward)) @@ -426,7 +426,7 @@ Type::ReadFromMemory (ExecutionContext *exe_ctx, lldb::addr_t addr, AddressType return false; } - const uint32_t byte_size = GetByteSize(); + const uint64_t byte_size = GetByteSize(); if (data.GetByteSize() < byte_size) { lldb::DataBufferSP data_sp(new DataBufferHeap (byte_size, '\0')); |