Skip to content
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

gdb: Fix pretty-printing special-cased Rust types #35585

Merged
merged 1 commit into from
Aug 31, 2016
Merged
Show file tree
Hide file tree
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
17 changes: 17 additions & 0 deletions src/etc/debugger_pretty_printers_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,3 +324,20 @@ def extract_length_and_ptr_from_slice(slice_val):

assert data_ptr.type.get_dwarf_type_kind() == DWARF_TYPE_CODE_PTR
return (length, data_ptr)

UNQUALIFIED_TYPE_MARKERS = frozenset(["(", "[", "&", "*"])

def extract_type_name(qualified_type_name):
'''Extracts the type name from a fully qualified path'''
if qualified_type_name[0] in UNQUALIFIED_TYPE_MARKERS:
return qualified_type_name

end_of_search = qualified_type_name.find("<")
if end_of_search < 0:
end_of_search = len(qualified_type_name)

index = qualified_type_name.rfind("::", 0, end_of_search)
if index < 0:
return qualified_type_name
else:
return qualified_type_name[index + 2:]
2 changes: 1 addition & 1 deletion src/etc/gdb_rust_pretty_printing.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_unqualified_type_name(self):
if tag is None:
return tag

return tag.replace("&'static ", "&")
return rustpp.extract_type_name(tag).replace("&'static ", "&")

def get_dwarf_type_kind(self):
if self.ty.code == gdb.TYPE_CODE_STRUCT:
Expand Down
21 changes: 2 additions & 19 deletions src/etc/lldb_rust_formatters.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def get_unqualified_type_name(self):
if qualified_name is None:
return qualified_name

return extract_type_name(qualified_name).replace("&'static ", "&")
return rustpp.extract_type_name(qualified_name).replace("&'static ", "&")

def get_dwarf_type_kind(self):
type_class = self.ty.GetTypeClass()
Expand Down Expand Up @@ -204,7 +204,7 @@ def render_child(child_index):
# LLDB is not good at handling zero-sized values, so we have to help
# it a little
if field.GetType().GetByteSize() == 0:
return this + extract_type_name(field.GetType().GetName())
return this + rustpp.extract_type_name(field.GetType().GetName())
else:
return this + "<invalid value>"

Expand Down Expand Up @@ -274,23 +274,6 @@ def print_std_string_val(val, internal_dict):
# Helper Functions
#=--------------------------------------------------------------------------------------------------

UNQUALIFIED_TYPE_MARKERS = frozenset(["(", "[", "&", "*"])

def extract_type_name(qualified_type_name):
'''Extracts the type name from a fully qualified path'''
if qualified_type_name[0] in UNQUALIFIED_TYPE_MARKERS:
return qualified_type_name

end_of_search = qualified_type_name.find("<")
if end_of_search < 0:
end_of_search = len(qualified_type_name)

index = qualified_type_name.rfind("::", 0, end_of_search)
if index < 0:
return qualified_type_name
else:
return qualified_type_name[index + 2:]

def print_array_of_values(array_name, data_ptr_val, length, internal_dict):
'''Prints a contigous memory range, interpreting it as values of the
pointee-type of data_ptr_val.'''
Expand Down