Skip to content

Avoid infinite recursion in GetBitSize/GetBitAlign. #3091

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions lldb/source/Plugins/TypeSystem/Swift/TypeSystemSwiftTypeRef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2170,18 +2170,32 @@ TypeSystemSwiftTypeRef::GetBitSize(opaque_compiler_type_t type,
// info for it, so defer to SwiftASTContext.
if (llvm::isa<SwiftASTContextForExpressions>(m_swift_ast_context))
return ReconstructType({this, type}).GetBitSize(exe_scope);
LLDB_LOGF(GetLogIfAllCategoriesSet(LIBLLDB_LOG_TYPES),
"Couldn't compute size of type %s using SwiftLanguageRuntime.",
AsMangledName(type));
return {};
}

// If there is no process, we can still try to get the static size
// information out of DWARF. Because it is stored in the Type
// object we need to look that up by name again.
if (TypeSP type_sp = LookupTypeInModule(type)) {
if (auto byte_size = type_sp->GetByteSize(exe_scope))
struct SwiftType : public Type {
/// Avoid a potential infinite recursion because
/// Type::GetByteSize() may call into this function again.
llvm::Optional<uint64_t> GetStaticByteSize() {
if (m_byte_size_has_value)
return m_byte_size;
return {};
}
};
if (auto byte_size =
reinterpret_cast<SwiftType *>(type_sp.get())->GetStaticByteSize())
return *byte_size * 8;
else return {};
}
LLDB_LOGF(GetLogIfAllCategoriesSet(LIBLLDB_LOG_TYPES),
"Couldn't compute size of type %s without a process.",
"Couldn't compute size of type %s using static debug info.",
AsMangledName(type));
return {};
};
Expand Down Expand Up @@ -3179,9 +3193,10 @@ TypeSystemSwiftTypeRef::GetTypeBitAlign(opaque_compiler_type_t type,
// alignment information out of DWARF. Because it is stored in the
// Type object we need to look that up by name again.
if (TypeSP type_sp = LookupTypeInModule(type))
return type_sp->GetLayoutCompilerType().GetTypeBitAlign(exe_scope);
if (type_sp->GetLayoutCompilerType().GetOpaqueQualType() != type)
return type_sp->GetLayoutCompilerType().GetTypeBitAlign(exe_scope);
LLDB_LOGF(GetLogIfAllCategoriesSet(LIBLLDB_LOG_TYPES),
"Couldn't compute alignment of type %s without a process.",
"Couldn't compute alignment of type %s using static debug info.",
AsMangledName(type));
return {};
}
Expand Down