handle not initialized std::vector in gdb
This commit is contained in:
parent
4633a8f93a
commit
090343bf9a
|
@ -441,11 +441,21 @@ class StdVectorPrinter:
|
||||||
self.typename = strip_versioned_namespace(typename)
|
self.typename = strip_versioned_namespace(typename)
|
||||||
self.val = val
|
self.val = val
|
||||||
self.is_bool = val.type.template_argument(0).code == gdb.TYPE_CODE_BOOL
|
self.is_bool = val.type.template_argument(0).code == gdb.TYPE_CODE_BOOL
|
||||||
|
start = self.val['_M_impl']['_M_start']
|
||||||
|
finish = self.val['_M_impl']['_M_finish']
|
||||||
|
end = self.val['_M_impl']['_M_end_of_storage']
|
||||||
|
if int(finish - start)<0 or int(end - start)<0 or finish > end :
|
||||||
|
self.valid = False
|
||||||
|
else:
|
||||||
|
self.valid = True
|
||||||
|
|
||||||
def children(self):
|
def children(self):
|
||||||
|
if self.valid:
|
||||||
return self._iterator(self.val['_M_impl']['_M_start'],
|
return self._iterator(self.val['_M_impl']['_M_start'],
|
||||||
self.val['_M_impl']['_M_finish'],
|
self.val['_M_impl']['_M_finish'],
|
||||||
self.is_bool)
|
self.is_bool)
|
||||||
|
else:
|
||||||
|
return None
|
||||||
|
|
||||||
def to_string(self):
|
def to_string(self):
|
||||||
start = self.val['_M_impl']['_M_start']
|
start = self.val['_M_impl']['_M_start']
|
||||||
|
@ -462,8 +472,11 @@ class StdVectorPrinter:
|
||||||
return ('%s<bool> of length %d, capacity %d'
|
return ('%s<bool> of length %d, capacity %d'
|
||||||
% (self.typename, int (length), int (capacity)))
|
% (self.typename, int (length), int (capacity)))
|
||||||
else:
|
else:
|
||||||
|
if self.valid:
|
||||||
return ('%s of length %d, capacity %d'
|
return ('%s of length %d, capacity %d'
|
||||||
% (self.typename, int (finish - start), int (end - start)))
|
% (self.typename, int (finish - start), int (end - start)))
|
||||||
|
else:
|
||||||
|
return ('Not initialized')
|
||||||
|
|
||||||
def display_hint(self):
|
def display_hint(self):
|
||||||
return 'array'
|
return 'array'
|
||||||
|
|
Loading…
Reference in New Issue