-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathdebuginfo.py
456 lines (403 loc) · 17.1 KB
/
debuginfo.py
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
"""
Implements helpers to build LLVM debuginfo.
"""
import abc
import os.path
from contextlib import contextmanager
from llvmlite import ir
from numba.core import cgutils, types
from numba.core.datamodel.models import ComplexModel, UniTupleModel
from numba.core import config
@contextmanager
def suspend_emission(builder):
"""Suspends the emission of debug_metadata for the duration of the context
managed block."""
ref = builder.debug_metadata
builder.debug_metadata = None
try:
yield
finally:
builder.debug_metadata = ref
class AbstractDIBuilder(metaclass=abc.ABCMeta):
@abc.abstractmethod
def mark_variable(self, builder, allocavalue, name, lltype, size, line,
datamodel=None, argidx=None):
"""Emit debug info for the variable.
"""
pass
@abc.abstractmethod
def mark_location(self, builder, line):
"""Emit source location information to the given IRBuilder.
"""
pass
@abc.abstractmethod
def mark_subprogram(self, function, qualname, argnames, argtypes, line):
"""Emit source location information for the given function.
"""
pass
@abc.abstractmethod
def initialize(self):
"""Initialize the debug info. An opportunity for the debuginfo to
prepare any necessary data structures.
"""
@abc.abstractmethod
def finalize(self):
"""Finalize the debuginfo by emitting all necessary metadata.
"""
pass
class DummyDIBuilder(AbstractDIBuilder):
def __init__(self, module, filepath, cgctx, directives_only):
pass
def mark_variable(self, builder, allocavalue, name, lltype, size, line,
datamodel=None, argidx=None):
pass
def mark_location(self, builder, line):
pass
def mark_subprogram(self, function, qualname, argnames, argtypes, line):
pass
def initialize(self):
pass
def finalize(self):
pass
_BYTE_SIZE = 8
class DIBuilder(AbstractDIBuilder):
DWARF_VERSION = 4
DEBUG_INFO_VERSION = 3
DBG_CU_NAME = 'llvm.dbg.cu'
_DEBUG = False
def __init__(self, module, filepath, cgctx, directives_only):
self.module = module
self.filepath = os.path.abspath(filepath)
self.difile = self._di_file()
self.subprograms = []
self.cgctx = cgctx
if directives_only:
self.emission_kind = 'DebugDirectivesOnly'
else:
self.emission_kind = 'FullDebug'
self.initialize()
def initialize(self):
# Create the compile unit now because it is referenced when
# constructing subprograms
self.dicompileunit = self._di_compile_unit()
def _var_type(self, lltype, size, datamodel=None):
if self._DEBUG:
print("-->", lltype, size, datamodel,
getattr(datamodel, 'fe_type', 'NO FE TYPE'))
m = self.module
bitsize = _BYTE_SIZE * size
int_type = ir.IntType,
real_type = ir.FloatType, ir.DoubleType
# For simple numeric types, choose the closest encoding.
# We treat all integers as unsigned when there's no known datamodel.
if isinstance(lltype, int_type + real_type):
if datamodel is None:
# This is probably something like an `i8*` member of a struct
name = str(lltype)
if isinstance(lltype, int_type):
ditok = 'DW_ATE_unsigned'
else:
ditok = 'DW_ATE_float'
else:
# This is probably a known int/float scalar type
name = str(datamodel.fe_type)
if isinstance(datamodel.fe_type, types.Integer):
if datamodel.fe_type.signed:
ditok = 'DW_ATE_signed'
else:
ditok = 'DW_ATE_unsigned'
else:
ditok = 'DW_ATE_float'
mdtype = m.add_debug_info('DIBasicType', {
'name': name,
'size': bitsize,
'encoding': ir.DIToken(ditok),
})
elif isinstance(datamodel, ComplexModel):
# TODO: Is there a better way of determining "this is a complex
# number"?
#
# NOTE: Commented below is the way to generate the metadata for a
# C99 complex type that's directly supported by DWARF. Numba however
# generates a struct with real/imag cf. CPython to give a more
# pythonic feel to inspection.
#
# mdtype = m.add_debug_info('DIBasicType', {
# 'name': f"{datamodel.fe_type} ({str(lltype)})",
# 'size': bitsize,
# 'encoding': ir.DIToken('DW_ATE_complex_float'),
#})
meta = []
offset = 0
for ix, name in enumerate(('real', 'imag')):
component = lltype.elements[ix]
component_size = self.cgctx.get_abi_sizeof(component)
component_basetype = m.add_debug_info('DIBasicType', {
'name': str(component),
'size': _BYTE_SIZE * component_size, # bits
'encoding': ir.DIToken('DW_ATE_float'),
})
derived_type = m.add_debug_info('DIDerivedType', {
'tag': ir.DIToken('DW_TAG_member'),
'name': name,
'baseType': component_basetype,
'size': _BYTE_SIZE * component_size, # DW_TAG_member size is in bits
'offset': offset,
})
meta.append(derived_type)
offset += (_BYTE_SIZE * component_size) # offset is in bits
mdtype = m.add_debug_info('DICompositeType', {
'tag': ir.DIToken('DW_TAG_structure_type'),
'name': f"{datamodel.fe_type} ({str(lltype)})",
'identifier': str(lltype),
'elements': m.add_metadata(meta),
'size': offset,
}, is_distinct=True)
elif isinstance(datamodel, UniTupleModel):
element = lltype.element
el_size = self.cgctx.get_abi_sizeof(element)
basetype = self._var_type(element, el_size)
name = f"{datamodel.fe_type} ({str(lltype)})"
count = size // el_size
mdrange = m.add_debug_info('DISubrange', {
'count': count,
})
mdtype = m.add_debug_info('DICompositeType', {
'tag': ir.DIToken('DW_TAG_array_type'),
'baseType': basetype,
'name': name,
'size': bitsize,
'identifier': str(lltype),
'elements': m.add_metadata([mdrange]),
})
elif isinstance(lltype, ir.PointerType):
model = getattr(datamodel, '_pointee_model', None)
basetype = self._var_type(lltype.pointee,
self.cgctx.get_abi_sizeof(lltype.pointee),
model)
mdtype = m.add_debug_info('DIDerivedType', {
'tag': ir.DIToken('DW_TAG_pointer_type'),
'baseType': basetype,
'size': _BYTE_SIZE * self.cgctx.get_abi_sizeof(lltype)
})
elif isinstance(lltype, ir.LiteralStructType):
# Struct type
meta = []
offset = 0
if datamodel is None or not datamodel.inner_models():
name = f"Anonymous struct ({str(lltype)})"
for field_id, element in enumerate(lltype.elements):
size = self.cgctx.get_abi_sizeof(element)
basetype = self._var_type(element, size)
derived_type = m.add_debug_info('DIDerivedType', {
'tag': ir.DIToken('DW_TAG_member'),
'name': f'<field {field_id}>',
'baseType': basetype,
'size': _BYTE_SIZE * size, # DW_TAG_member size is in bits
'offset': offset,
})
meta.append(derived_type)
offset += (_BYTE_SIZE * size) # offset is in bits
else:
name = f"{datamodel.fe_type} ({str(lltype)})"
for element, field, model in zip(lltype.elements,
datamodel._fields,
datamodel.inner_models()):
size = self.cgctx.get_abi_sizeof(element)
basetype = self._var_type(element, size, datamodel=model)
derived_type = m.add_debug_info('DIDerivedType', {
'tag': ir.DIToken('DW_TAG_member'),
'name': field,
'baseType': basetype,
'size': _BYTE_SIZE * size, # DW_TAG_member size is in bits
'offset': offset,
})
meta.append(derived_type)
offset += (_BYTE_SIZE * size) # offset is in bits
mdtype = m.add_debug_info('DICompositeType', {
'tag': ir.DIToken('DW_TAG_structure_type'),
'name': name,
'identifier': str(lltype),
'elements': m.add_metadata(meta),
'size': offset,
}, is_distinct=True)
elif isinstance(lltype, ir.ArrayType):
element = lltype.element
el_size = self.cgctx.get_abi_sizeof(element)
basetype = self._var_type(element, el_size)
count = size // el_size
mdrange = m.add_debug_info('DISubrange', {
'count': count,
})
mdtype = m.add_debug_info('DICompositeType', {
'tag': ir.DIToken('DW_TAG_array_type'),
'baseType': basetype,
'name': str(lltype),
'size': bitsize,
'identifier': str(lltype),
'elements': m.add_metadata([mdrange]),
})
else:
# For all other types, describe it as sequence of bytes
count = size
mdrange = m.add_debug_info('DISubrange', {
'count': count,
})
mdbase = m.add_debug_info('DIBasicType', {
'name': 'byte',
'size': _BYTE_SIZE,
'encoding': ir.DIToken('DW_ATE_unsigned_char'),
})
mdtype = m.add_debug_info('DICompositeType', {
'tag': ir.DIToken('DW_TAG_array_type'),
'baseType': mdbase,
'name': str(lltype),
'size': bitsize,
'identifier': str(lltype),
'elements': m.add_metadata([mdrange]),
})
return mdtype
def mark_variable(self, builder, allocavalue, name, lltype, size, line,
datamodel=None, argidx=None):
arg_index = 0 if argidx is None else argidx
m = self.module
fnty = ir.FunctionType(ir.VoidType(), [ir.MetaDataType()] * 3)
decl = cgutils.get_or_insert_function(m, fnty, 'llvm.dbg.declare')
mdtype = self._var_type(lltype, size, datamodel=datamodel)
name = name.replace('.', '$') # for gdb to work correctly
mdlocalvar = m.add_debug_info('DILocalVariable', {
'name': name,
'arg': arg_index,
'scope': self.subprograms[-1],
'file': self.difile,
'line': line,
'type': mdtype,
})
mdexpr = m.add_debug_info('DIExpression', {})
return builder.call(decl, [allocavalue, mdlocalvar, mdexpr])
def mark_location(self, builder, line):
builder.debug_metadata = self._add_location(line)
def mark_subprogram(self, function, qualname, argnames, argtypes, line):
name = qualname
argmap = dict(zip(argnames, argtypes))
di_subp = self._add_subprogram(name=name, linkagename=function.name,
line=line, function=function,
argmap=argmap)
function.set_metadata("dbg", di_subp)
def finalize(self):
dbgcu = cgutils.get_or_insert_named_metadata(self.module, self.DBG_CU_NAME)
dbgcu.add(self.dicompileunit)
self._set_module_flags()
#
# Internal APIs
#
def _set_module_flags(self):
"""Set the module flags metadata
"""
module = self.module
mflags = cgutils.get_or_insert_named_metadata(module, 'llvm.module.flags')
# Set *require* behavior to warning
# See http://llvm.org/docs/LangRef.html#module-flags-metadata
require_warning_behavior = self._const_int(2)
if self.DWARF_VERSION is not None:
dwarf_version = module.add_metadata([
require_warning_behavior,
"Dwarf Version",
self._const_int(self.DWARF_VERSION)
])
if dwarf_version not in mflags.operands:
mflags.add(dwarf_version)
debuginfo_version = module.add_metadata([
require_warning_behavior,
"Debug Info Version",
self._const_int(self.DEBUG_INFO_VERSION)
])
if debuginfo_version not in mflags.operands:
mflags.add(debuginfo_version)
def _add_subprogram(self, name, linkagename, line, function, argmap):
"""Emit subprogram metadata
"""
subp = self._di_subprogram(name, linkagename, line, function, argmap)
self.subprograms.append(subp)
return subp
def _add_location(self, line):
"""Emit location metatdaa
"""
loc = self._di_location(line)
return loc
@classmethod
def _const_int(cls, num, bits=32):
"""Util to create constant int in metadata
"""
return ir.IntType(bits)(num)
@classmethod
def _const_bool(cls, boolean):
"""Util to create constant boolean in metadata
"""
return ir.IntType(1)(boolean)
#
# Helpers to emit the metadata nodes
#
def _di_file(self):
return self.module.add_debug_info('DIFile', {
'directory': os.path.dirname(self.filepath),
'filename': os.path.basename(self.filepath),
})
def _di_compile_unit(self):
return self.module.add_debug_info('DICompileUnit', {
'language': ir.DIToken('DW_LANG_C_plus_plus'),
'file': self.difile,
# Numba has to pretend to be clang to ensure the prologue is skipped
# correctly in gdb. See:
# https://sourceware.org/git/?p=binutils-gdb.git;a=blob;f=gdb/amd64-tdep.c;h=e563d369d8cb3eb3c2f732c2fa850ec70ba8d63b;hb=a4b0231e179607e47b1cdf1fe15c5dc25e482fad#l2521
# Note the "producer_is_llvm" call to specialise the prologue
# handling, this is defined here:
# https://sourceware.org/git/?p=binutils-gdb.git;a=blob;f=gdb/producer.c;h=cdfd80d904c09394febd18749bb90359b2d128cc;hb=a4b0231e179607e47b1cdf1fe15c5dc25e482fad#l124
# and to get a match for this condition the 'producer' must start
# with "clang ", hence the following...
'producer': 'clang (Numba)',
'runtimeVersion': 0,
'isOptimized': config.OPT != 0,
'emissionKind': ir.DIToken(self.emission_kind),
}, is_distinct=True)
def _di_subroutine_type(self, line, function, argmap):
# The function call conv needs encoding.
llfunc = function
md = []
for idx, llarg in enumerate(llfunc.args):
if not llarg.name.startswith('arg.'):
name = llarg.name.replace('.', '$') # for gdb to work correctly
lltype = llarg.type
size = self.cgctx.get_abi_sizeof(lltype)
mdtype = self._var_type(lltype, size, datamodel=None)
md.append(mdtype)
for idx, (name, nbtype) in enumerate(argmap.items()):
name = name.replace('.', '$') # for gdb to work correctly
datamodel = self.cgctx.data_model_manager[nbtype]
lltype = self.cgctx.get_value_type(nbtype)
size = self.cgctx.get_abi_sizeof(lltype)
mdtype = self._var_type(lltype, size, datamodel=datamodel)
md.append(mdtype)
return self.module.add_debug_info('DISubroutineType', {
'types': self.module.add_metadata(md),
})
def _di_subprogram(self, name, linkagename, line, function, argmap):
return self.module.add_debug_info('DISubprogram', {
'name': name,
'linkageName': linkagename,
'scope': self.difile,
'file': self.difile,
'line': line,
'type': self._di_subroutine_type(line, function, argmap),
'isLocal': False,
'isDefinition': True,
'scopeLine': line,
'isOptimized': config.OPT != 0,
'unit': self.dicompileunit,
}, is_distinct=True)
def _di_location(self, line):
return self.module.add_debug_info('DILocation', {
'line': line,
'column': 1,
'scope': self.subprograms[-1],
})