-
Notifications
You must be signed in to change notification settings - Fork 202
/
Copy path.gdbinit
270 lines (206 loc) · 8.12 KB
/
.gdbinit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#
# Copyright 2021-2025 Software Radio Systems Limited
#
# This file is part of srsRAN
#
# srsRAN is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of
# the License, or (at your option) any later version.
#
# srsRAN is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# A copy of the GNU Affero General Public License can be found in
# the LICENSE file in the top-level directory of this distribution
# and at http://www.gnu.org/licenses/.
#
############################################
# Pretty-Printers
############################################
python
import struct
###### static_vector<T, N> ########
class StaticVectorPrinter(object):
def __init__(self, val):
self.val = val
self.value_type = self.val.type.template_argument(0)
def children(self):
start = self.val['array']['_M_elems'].cast(self.value_type.pointer())
length = int(self.val['sz'])
for idx in range(length):
yield f'[{idx}]', start[idx]
def to_string(self):
length = int(self.val['sz'])
capacity = int(self.val.type.template_argument(1))
return f'static_vector of length {length}, capacity {capacity}'
def display_hint(self):
return 'array'
def make_static_vector(val):
s = str(val.type.strip_typedefs())
if 'static_vector<' in s and s.endswith('>'):
return StaticVectorPrinter(val)
gdb.pretty_printers.append(make_static_vector)
###### bounded_bitset<N, reversed> ########
class BoundedBitsetPrinter(object):
def __init__(self, val):
self.val = val
def to_string(self):
length = int(self.val['cur_size'])
capacity = int(self.val.type.template_argument(0))
buffer = self.val['buffer']['_M_elems']
bitstring = ''
nof_words = (length + 63) // 64
nof_bits_in_word = 64
for idx in reversed(range(nof_words)):
bitstring += '{:064b}'.format(int(buffer[idx]))
# last word might have a lower number of bits
last_word_nof_bits = length % 64
bitstring = bitstring[64-last_word_nof_bits::]
return f'bounded_bitset of length {length}, capacity {capacity} = {bitstring}'
def display_hint(self):
return 'string'
def make_bounded_bitset(val):
s = str(val.type.strip_typedefs())
if 'bounded_bitset<' in s and s.endswith('>'):
return BoundedBitsetPrinter(val)
gdb.pretty_printers.append(make_bounded_bitset)
###### optional<T> #######
class OptionalPrinter(object):
def __init__(self, val):
self.val = val
self.value_type = self.val.type.strip_typedefs().template_argument(0)
def children(self):
has_val = bool(self.val['storage']['has_val'])
if has_val:
payload = self.val['storage']['payload']['val']
yield '[0]', payload
def to_string(self):
has_val = bool(self.val['storage']['has_val'])
if has_val:
return 'optional (present)'
return 'optional (empty)'
def display_hint(self):
return 'string'
def make_optional(val):
s = str(val.type.strip_typedefs())
if s.startswith('srsran::optional<') and s.endswith('>'):
return OptionalPrinter(val)
gdb.pretty_printers.append(make_optional)
###### tiny_optional<T> #######
class TinyOptionalPrinter(object):
def __init__(self, val):
self.val = val
self.has_val = TinyOptionalPrinter.get_has_value(self.val)
def children(self):
if self.has_val:
yield '[0]', TinyOptionalPrinter.get_value(self.val)
def to_string(self):
if self.has_val:
return 'tiny_optional (present)'
return 'tiny_optional (empty)'
def display_hint(self):
return 'string'
@staticmethod
def get_has_value(gdb_val):
fields = gdb_val.type.strip_typedefs().fields()
assert len(fields) > 0
f_type_str = str(fields[0].type.strip_typedefs())
if f_type_str.startswith('srsran::optional<'):
return bool(gdb_val['storage']['has_val'])
if 'std::unique_ptr<' in str(gdb_val['val'].type):
val_str = str(gdb_val['val'])
val_str = val_str[val_str.find('get() = ') + len('get() = ')::]
val_str = val_str[0:val_str.find('}')]
val_int = int(val_str, 16)
return val_int != 0
return True #TODO: tiny_optional with flag
@staticmethod
def get_value(gdb_val):
fields = gdb_val.type.strip_typedefs().fields()
f_type_str = str(fields[0].type.strip_typedefs())
if f_type_str.startswith('srsran::optional<'):
return gdb_val['storage']['payload']['val']
return gdb_val['val']
def make_tiny_optional(val):
s = str(val.type.strip_typedefs())
if s.startswith('srsran::tiny_optional<') and s.endswith('>'):
return TinyOptionalPrinter(val)
gdb.pretty_printers.append(make_tiny_optional)
###### slotted_array<T, N> #######
class SlotArrayPrinter(object):
def __init__(self, val):
self.val = val
self.value_type = self.val.type.strip_typedefs().template_argument(0)
self.capacity = int(self.val.type.strip_typedefs().template_argument(1))
self.nof_elems = int(self.val['nof_elems'])
def children(self):
vec = self.val['vec']['_M_elems']
for idx in range(self.capacity):
if TinyOptionalPrinter.get_has_value(vec[idx]):
yield f'[{idx}]', TinyOptionalPrinter.get_value(vec[idx])
def to_string(self):
return f'slotted_array of {self.nof_elems} elements, capacity {self.capacity}'
def display_hint(self):
return 'string'
def make_slotted_array(val):
s = str(val.type.strip_typedefs())
if s.startswith('srsran::slotted_array<') and s.endswith('>'):
return SlotArrayPrinter(val)
gdb.pretty_printers.append(make_slotted_array)
###### slotted_vector<T> #######
class SlotVectorPrinter(object):
def __init__(self, val):
self.val = val
self.value_type = self.val.type.strip_typedefs().template_argument(0)
self.objects = self.val['objects']
self.nof_elems = int(self.objects['_M_impl']['_M_finish'] - self.objects['_M_impl']['_M_start'])
def children(self):
indexmapper = self.val['index_mapper']
nof_idxs = int(indexmapper['_M_impl']['_M_finish'] - indexmapper['_M_impl']['_M_start'])
max_int = 2**64 - 1
indexmapper_ptr = indexmapper['_M_impl']['_M_start']
object_ptr = self.objects['_M_impl']['_M_start']
for idx in range(nof_idxs):
if int(indexmapper_ptr[idx]) != max_int:
yield f'[{idx}]', object_ptr[indexmapper_ptr[idx]]
def to_string(self):
return f'slotted_vector of {self.nof_elems} elements'
def display_hint(self):
return 'string'
def make_slotted_vector(val):
s = str(val.type.strip_typedefs())
if s.startswith('srsran::slotted_vector<') and s.endswith('>'):
return SlotVectorPrinter(val)
gdb.pretty_printers.append(make_slotted_vector)
###### Brain Floating Point 16 (bf16_t) ######
class BFloat16(object):
def __init__(self, val):
self.__val = val
def to_string(self):
value_uint16 = self.__val['val']
value_uint32 = value_uint16.cast(gdb.lookup_type('uint32_t')) << 16
value_float = struct.unpack('!f', struct.pack('!I', value_uint32))[0]
return value_float
def display_hint(self):
return None
def make_bf16_t(val):
s = str(val.type.strip_typedefs())
if 'srsran::strong_bf16_tag' in s:
return BFloat16(val)
gdb.pretty_printers.append(make_bf16_t)
class BFloat16Complex(object):
def __init__(self, val):
self.__val = val
def to_string(self):
return f'{self.__val["real"]} + {self.__val["imag"]}i'
def display_hint(self):
return None
def make_cbf16_t(val):
s = str(val.type.strip_typedefs())
if s == 'srsran::cbf16_t':
return BFloat16Complex(val)
gdb.pretty_printers.append(make_cbf16_t)
end