2016-06-01 03:02:32 +02:00
|
|
|
import gdb.printing
|
2018-06-26 01:38:48 +02:00
|
|
|
|
|
|
|
class Iterator:
|
|
|
|
def __iter__(self):
|
|
|
|
return self
|
|
|
|
|
|
|
|
# Python 2 compatibility
|
|
|
|
def next(self):
|
|
|
|
return self.__next__()
|
|
|
|
|
|
|
|
def children(self):
|
|
|
|
return self
|
|
|
|
|
2018-06-26 02:41:49 +02:00
|
|
|
def escape_bytes(val, l):
|
|
|
|
return '"' + val.string(encoding='Latin-1', length=l).encode('unicode_escape').decode() + '"'
|
2018-06-26 01:38:48 +02:00
|
|
|
|
2016-06-01 03:02:32 +02:00
|
|
|
class SmallStringPrinter:
|
|
|
|
"""Print an llvm::SmallString object."""
|
|
|
|
|
|
|
|
def __init__(self, val):
|
|
|
|
self.val = val
|
|
|
|
|
|
|
|
def to_string(self):
|
|
|
|
begin = self.val['BeginX']
|
|
|
|
end = self.val['EndX']
|
2018-06-26 02:41:49 +02:00
|
|
|
return escape_bytes(begin.cast(gdb.lookup_type('char').pointer()), end - begin)
|
2016-06-01 03:02:32 +02:00
|
|
|
|
|
|
|
class StringRefPrinter:
|
|
|
|
"""Print an llvm::StringRef object."""
|
|
|
|
|
|
|
|
def __init__(self, val):
|
|
|
|
self.val = val
|
|
|
|
|
|
|
|
def to_string(self):
|
2018-06-26 02:41:49 +02:00
|
|
|
return escape_bytes(self.val['Data'], self.val['Length'])
|
2016-06-01 03:02:32 +02:00
|
|
|
|
|
|
|
class SmallVectorPrinter:
|
|
|
|
"""Print an llvm::SmallVector object."""
|
|
|
|
|
|
|
|
class _iterator:
|
|
|
|
def __init__(self, begin, end):
|
|
|
|
self.cur = begin
|
|
|
|
self.end = end
|
|
|
|
self.count = 0
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return self
|
|
|
|
|
|
|
|
def next(self):
|
|
|
|
if self.cur == self.end:
|
|
|
|
raise StopIteration
|
|
|
|
count = self.count
|
|
|
|
self.count = self.count + 1
|
|
|
|
cur = self.cur
|
|
|
|
self.cur = self.cur + 1
|
|
|
|
return '[%d]' % count, cur.dereference()
|
|
|
|
|
2016-08-05 18:48:31 +02:00
|
|
|
__next__ = next
|
|
|
|
|
2016-06-01 03:02:32 +02:00
|
|
|
def __init__(self, val):
|
|
|
|
self.val = val
|
|
|
|
|
|
|
|
def children(self):
|
|
|
|
t = self.val.type.template_argument(0).pointer()
|
|
|
|
begin = self.val['BeginX'].cast(t)
|
|
|
|
end = self.val['EndX'].cast(t)
|
|
|
|
return self._iterator(begin, end)
|
|
|
|
|
|
|
|
def to_string(self):
|
|
|
|
t = self.val.type.template_argument(0).pointer()
|
|
|
|
begin = self.val['BeginX'].cast(t)
|
|
|
|
end = self.val['EndX'].cast(t)
|
|
|
|
capacity = self.val['CapacityX'].cast(t)
|
|
|
|
return 'llvm::SmallVector of length %d, capacity %d' % (end - begin, capacity - begin)
|
|
|
|
|
|
|
|
def display_hint (self):
|
|
|
|
return 'array'
|
|
|
|
|
|
|
|
class ArrayRefPrinter:
|
|
|
|
"""Print an llvm::ArrayRef object."""
|
|
|
|
|
|
|
|
class _iterator:
|
|
|
|
def __init__(self, begin, end):
|
|
|
|
self.cur = begin
|
|
|
|
self.end = end
|
|
|
|
self.count = 0
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return self
|
|
|
|
|
|
|
|
def next(self):
|
|
|
|
if self.cur == self.end:
|
|
|
|
raise StopIteration
|
|
|
|
count = self.count
|
|
|
|
self.count = self.count + 1
|
|
|
|
cur = self.cur
|
|
|
|
self.cur = self.cur + 1
|
|
|
|
return '[%d]' % count, cur.dereference()
|
|
|
|
|
2016-08-05 18:48:31 +02:00
|
|
|
__next__ = next
|
|
|
|
|
2016-06-01 03:02:32 +02:00
|
|
|
def __init__(self, val):
|
|
|
|
self.val = val
|
|
|
|
|
|
|
|
def children(self):
|
|
|
|
data = self.val['Data']
|
|
|
|
return self._iterator(data, data + self.val['Length'])
|
|
|
|
|
|
|
|
def to_string(self):
|
|
|
|
return 'llvm::ArrayRef of length %d' % (self.val['Length'])
|
|
|
|
|
|
|
|
def display_hint (self):
|
|
|
|
return 'array'
|
|
|
|
|
2018-06-26 01:38:48 +02:00
|
|
|
class ExpectedPrinter(Iterator):
|
|
|
|
"""Print an llvm::Expected object."""
|
2016-12-16 20:16:22 +01:00
|
|
|
|
2018-06-26 01:38:48 +02:00
|
|
|
def __init__(self, val):
|
|
|
|
self.val = val
|
2016-12-16 20:16:22 +01:00
|
|
|
|
2018-06-26 01:38:48 +02:00
|
|
|
def __next__(self):
|
|
|
|
val = self.val
|
|
|
|
if val is None:
|
|
|
|
raise StopIteration
|
|
|
|
self.val = None
|
|
|
|
if val['HasError']:
|
|
|
|
return ('error', val['ErrorStorage'].address.cast(
|
|
|
|
gdb.lookup_type('llvm::ErrorInfoBase').pointer()).dereference())
|
|
|
|
return ('value', val['TStorage'].address.cast(
|
|
|
|
val.type.template_argument(0).pointer()).dereference())
|
2016-12-16 20:16:22 +01:00
|
|
|
|
2018-06-26 01:38:48 +02:00
|
|
|
def to_string(self):
|
|
|
|
return 'llvm::Expected{}'.format(' is error' if self.val['HasError'] else '')
|
2016-12-16 20:16:22 +01:00
|
|
|
|
2018-06-26 01:38:48 +02:00
|
|
|
class OptionalPrinter(Iterator):
|
|
|
|
"""Print an llvm::Optional object."""
|
2016-12-16 20:16:22 +01:00
|
|
|
|
2018-06-26 01:38:48 +02:00
|
|
|
def __init__(self, val):
|
|
|
|
self.val = val
|
|
|
|
|
|
|
|
def __next__(self):
|
|
|
|
val = self.val
|
|
|
|
if val is None:
|
|
|
|
raise StopIteration
|
|
|
|
self.val = None
|
|
|
|
if not val['Storage']['hasVal']:
|
|
|
|
raise StopIteration
|
|
|
|
return ('value', val['Storage']['storage']['buffer'].address.cast(
|
|
|
|
val.type.template_argument(0).pointer()).dereference())
|
2016-12-16 20:16:22 +01:00
|
|
|
|
|
|
|
def to_string(self):
|
2018-06-26 01:38:48 +02:00
|
|
|
return 'llvm::Optional{}'.format('' if self.val['Storage']['hasVal'] else ' is not initialized')
|
2016-12-16 20:16:22 +01:00
|
|
|
|
2016-12-17 00:53:14 +01:00
|
|
|
class DenseMapPrinter:
|
|
|
|
"Print a DenseMap"
|
|
|
|
|
|
|
|
class _iterator:
|
|
|
|
def __init__(self, key_info_t, begin, end):
|
|
|
|
self.key_info_t = key_info_t
|
|
|
|
self.cur = begin
|
|
|
|
self.end = end
|
|
|
|
self.advancePastEmptyBuckets()
|
|
|
|
self.first = True
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return self
|
|
|
|
|
|
|
|
def advancePastEmptyBuckets(self):
|
|
|
|
# disabled until the comments below can be addressed
|
|
|
|
# keeping as notes/posterity/hints for future contributors
|
|
|
|
return
|
|
|
|
n = self.key_info_t.name
|
|
|
|
is_equal = gdb.parse_and_eval(n + '::isEqual')
|
|
|
|
empty = gdb.parse_and_eval(n + '::getEmptyKey()')
|
|
|
|
tombstone = gdb.parse_and_eval(n + '::getTombstoneKey()')
|
|
|
|
# the following is invalid, GDB fails with:
|
|
|
|
# Python Exception <class 'gdb.error'> Attempt to take address of value
|
|
|
|
# not located in memory.
|
|
|
|
# because isEqual took parameter (for the unsigned long key I was testing)
|
|
|
|
# by const ref, and GDB
|
|
|
|
# It's also not entirely general - we should be accessing the "getFirst()"
|
|
|
|
# member function, not the 'first' member variable, but I've yet to figure
|
|
|
|
# out how to find/call member functions (especially (const) overloaded
|
|
|
|
# ones) on a gdb.Value.
|
|
|
|
while self.cur != self.end and (is_equal(self.cur.dereference()['first'], empty) or is_equal(self.cur.dereference()['first'], tombstone)):
|
|
|
|
self.cur = self.cur + 1
|
|
|
|
|
|
|
|
def next(self):
|
|
|
|
if self.cur == self.end:
|
|
|
|
raise StopIteration
|
|
|
|
cur = self.cur
|
|
|
|
v = cur.dereference()['first' if self.first else 'second']
|
|
|
|
if not self.first:
|
|
|
|
self.cur = self.cur + 1
|
|
|
|
self.advancePastEmptyBuckets()
|
|
|
|
self.first = True
|
|
|
|
else:
|
|
|
|
self.first = False
|
|
|
|
return 'x', v
|
|
|
|
|
|
|
|
def __init__(self, val):
|
|
|
|
self.val = val
|
|
|
|
|
|
|
|
def children(self):
|
|
|
|
t = self.val.type.template_argument(3).pointer()
|
|
|
|
begin = self.val['Buckets'].cast(t)
|
|
|
|
end = (begin + self.val['NumBuckets']).cast(t)
|
|
|
|
return self._iterator(self.val.type.template_argument(2), begin, end)
|
|
|
|
|
|
|
|
def to_string(self):
|
|
|
|
return 'llvm::DenseMap with %d elements' % (self.val['NumEntries'])
|
|
|
|
|
|
|
|
def display_hint(self):
|
|
|
|
return 'map'
|
|
|
|
|
2017-03-15 21:51:44 +01:00
|
|
|
class TwinePrinter:
|
|
|
|
"Print a Twine"
|
|
|
|
|
|
|
|
def __init__(self, val):
|
|
|
|
self._val = val
|
|
|
|
|
|
|
|
def display_hint(self):
|
|
|
|
return 'string'
|
|
|
|
|
|
|
|
def string_from_pretty_printer_lookup(self, val):
|
|
|
|
'''Lookup the default pretty-printer for val and use it.
|
|
|
|
|
|
|
|
If no pretty-printer is defined for the type of val, print an error and
|
|
|
|
return a placeholder string.'''
|
|
|
|
|
|
|
|
pp = gdb.default_visualizer(val)
|
|
|
|
if pp:
|
|
|
|
s = pp.to_string()
|
|
|
|
|
|
|
|
# The pretty-printer may return a LazyString instead of an actual Python
|
|
|
|
# string. Convert it to a Python string. However, GDB doesn't seem to
|
|
|
|
# register the LazyString type, so we can't check
|
|
|
|
# "type(s) == gdb.LazyString".
|
|
|
|
if 'LazyString' in type(s).__name__:
|
|
|
|
s = s.value().address.string()
|
|
|
|
|
|
|
|
else:
|
|
|
|
print(('No pretty printer for {} found. The resulting Twine ' +
|
|
|
|
'representation will be incomplete.').format(val.type.name))
|
|
|
|
s = '(missing {})'.format(val.type.name)
|
|
|
|
|
|
|
|
return s
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
def is_twine_kind(self, kind, expected):
|
|
|
|
if not kind.endswith(expected):
|
|
|
|
return False
|
|
|
|
# apparently some GDB versions add the NodeKind:: namespace
|
|
|
|
# (happens for me on GDB 7.11)
|
|
|
|
return kind in ('llvm::Twine::' + expected,
|
|
|
|
'llvm::Twine::NodeKind::' + expected)
|
|
|
|
|
2017-03-15 21:51:44 +01:00
|
|
|
def string_from_child(self, child, kind):
|
|
|
|
'''Return the string representation of the Twine::Child child.'''
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
if self.is_twine_kind(kind, 'EmptyKind') or self.is_twine_kind(kind, 'NullKind'):
|
2017-03-15 21:51:44 +01:00
|
|
|
return ''
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
if self.is_twine_kind(kind, 'TwineKind'):
|
2017-03-15 21:51:44 +01:00
|
|
|
return self.string_from_twine_object(child['twine'].dereference())
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
if self.is_twine_kind(kind, 'CStringKind'):
|
2017-03-15 21:51:44 +01:00
|
|
|
return child['cString'].string()
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
if self.is_twine_kind(kind, 'StdStringKind'):
|
2017-03-15 21:51:44 +01:00
|
|
|
val = child['stdString'].dereference()
|
|
|
|
return self.string_from_pretty_printer_lookup(val)
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
if self.is_twine_kind(kind, 'StringRefKind'):
|
2017-03-15 21:51:44 +01:00
|
|
|
val = child['stringRef'].dereference()
|
|
|
|
pp = StringRefPrinter(val)
|
|
|
|
return pp.to_string()
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
if self.is_twine_kind(kind, 'SmallStringKind'):
|
2017-03-15 21:51:44 +01:00
|
|
|
val = child['smallString'].dereference()
|
|
|
|
pp = SmallStringPrinter(val)
|
|
|
|
return pp.to_string()
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
if self.is_twine_kind(kind, 'CharKind'):
|
2017-03-15 21:51:44 +01:00
|
|
|
return chr(child['character'])
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
if self.is_twine_kind(kind, 'DecUIKind'):
|
2017-03-15 21:51:44 +01:00
|
|
|
return str(child['decUI'])
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
if self.is_twine_kind(kind, 'DecIKind'):
|
2017-03-15 21:51:44 +01:00
|
|
|
return str(child['decI'])
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
if self.is_twine_kind(kind, 'DecULKind'):
|
2017-03-15 21:51:44 +01:00
|
|
|
return str(child['decUL'].dereference())
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
if self.is_twine_kind(kind, 'DecLKind'):
|
2017-03-15 21:51:44 +01:00
|
|
|
return str(child['decL'].dereference())
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
if self.is_twine_kind(kind, 'DecULLKind'):
|
2017-03-15 21:51:44 +01:00
|
|
|
return str(child['decULL'].dereference())
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
if self.is_twine_kind(kind, 'DecLLKind'):
|
2017-03-15 21:51:44 +01:00
|
|
|
return str(child['decLL'].dereference())
|
|
|
|
|
2017-06-04 05:27:12 +02:00
|
|
|
if self.is_twine_kind(kind, 'UHexKind'):
|
2017-03-15 21:51:44 +01:00
|
|
|
val = child['uHex'].dereference()
|
|
|
|
return hex(int(val))
|
|
|
|
|
|
|
|
print(('Unhandled NodeKind {} in Twine pretty-printer. The result will be '
|
|
|
|
'incomplete.').format(kind))
|
|
|
|
|
|
|
|
return '(unhandled {})'.format(kind)
|
|
|
|
|
|
|
|
def string_from_twine_object(self, twine):
|
|
|
|
'''Return the string representation of the Twine object twine.'''
|
|
|
|
|
|
|
|
lhs_str = ''
|
|
|
|
rhs_str = ''
|
|
|
|
|
|
|
|
lhs = twine['LHS']
|
|
|
|
rhs = twine['RHS']
|
|
|
|
lhs_kind = str(twine['LHSKind'])
|
|
|
|
rhs_kind = str(twine['RHSKind'])
|
|
|
|
|
|
|
|
lhs_str = self.string_from_child(lhs, lhs_kind)
|
|
|
|
rhs_str = self.string_from_child(rhs, rhs_kind)
|
|
|
|
|
|
|
|
return lhs_str + rhs_str
|
|
|
|
|
|
|
|
def to_string(self):
|
|
|
|
return self.string_from_twine_object(self._val)
|
2016-12-17 00:53:14 +01:00
|
|
|
|
2016-06-01 03:02:32 +02:00
|
|
|
pp = gdb.printing.RegexpCollectionPrettyPrinter("LLVMSupport")
|
|
|
|
pp.add_printer('llvm::SmallString', '^llvm::SmallString<.*>$', SmallStringPrinter)
|
|
|
|
pp.add_printer('llvm::StringRef', '^llvm::StringRef$', StringRefPrinter)
|
|
|
|
pp.add_printer('llvm::SmallVectorImpl', '^llvm::SmallVector(Impl)?<.*>$', SmallVectorPrinter)
|
|
|
|
pp.add_printer('llvm::ArrayRef', '^llvm::(Const)?ArrayRef<.*>$', ArrayRefPrinter)
|
2018-06-26 01:38:48 +02:00
|
|
|
pp.add_printer('llvm::Expected', '^llvm::Expected<.*>$', ExpectedPrinter)
|
2016-12-16 20:16:22 +01:00
|
|
|
pp.add_printer('llvm::Optional', '^llvm::Optional<.*>$', OptionalPrinter)
|
2016-12-17 00:53:14 +01:00
|
|
|
pp.add_printer('llvm::DenseMap', '^llvm::DenseMap<.*>$', DenseMapPrinter)
|
2017-03-15 21:51:44 +01:00
|
|
|
pp.add_printer('llvm::Twine', '^llvm::Twine$', TwinePrinter)
|
2016-06-01 03:02:32 +02:00
|
|
|
gdb.printing.register_pretty_printer(gdb.current_objfile(), pp)
|