forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 344
Avoid infinite recursion in GetBitSize/GetBitAlign #3089
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
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 {}; | ||
}; | ||
|
@@ -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) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Suggestion: a comment saying when/why this inequality happens. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's again to avoid an infinite recursion. I'll add a comment. |
||
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 {}; | ||
} | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thoughts on adding this function directly to
Type
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did it in this odd way is to minimize the diff between swift-lldb and llvm.org lldb.