@@ -5649,8 +5649,8 @@ static std::pair<std::unique_ptr<Module>, jl_llvm_functions_t>
5649
5649
}
5650
5650
else if (jl_array_len(src->linetable) > 0) {
5651
5651
jl_value_t *locinfo = jl_array_ptr_ref(src->linetable, 0);
5652
- ctx.file = jl_symbol_name((jl_sym_t*)jl_fieldref_noalloc(locinfo, 1 ));
5653
- toplineno = jl_unbox_long(jl_fieldref(locinfo, 2 ));
5652
+ ctx.file = jl_symbol_name((jl_sym_t*)jl_fieldref_noalloc(locinfo, 2 ));
5653
+ toplineno = jl_unbox_long(jl_fieldref(locinfo, 3 ));
5654
5654
}
5655
5655
if (ctx.file.empty())
5656
5656
ctx.file = "<missing>";
@@ -6268,40 +6268,44 @@ static std::pair<std::unique_ptr<Module>, jl_llvm_functions_t>
6268
6268
ssize_t line;
6269
6269
bool is_user_code;
6270
6270
unsigned inlined_at;
6271
+ bool operator ==(const DebugLineTable &other) const {
6272
+ return other.loc == loc && other.file == file && other.line == line && other.is_user_code == is_user_code && other.inlined_at == inlined_at;
6273
+ }
6271
6274
};
6272
6275
std::vector<DebugLineTable> linetable;
6273
- {
6276
+ { // populate the linetable data format
6274
6277
assert(jl_is_array(src->linetable));
6275
6278
size_t nlocs = jl_array_len(src->linetable);
6276
6279
std::map<std::tuple<StringRef, StringRef>, DISubprogram*> subprograms;
6277
6280
linetable.resize(nlocs + 1);
6281
+ DebugLineTable &topinfo = linetable[0];
6282
+ topinfo.file = ctx.file;
6283
+ topinfo.line = toplineno;
6284
+ topinfo.is_user_code = mod_is_user_mod;
6285
+ topinfo.inlined_at = 0;
6286
+ topinfo.loc = topdebugloc;
6278
6287
for (size_t i = 0; i < nlocs; i++) {
6279
6288
// LineInfoNode(mod::Module, method::Any, file::Symbol, line::Int, inlined_at::Int)
6280
6289
jl_value_t *locinfo = jl_array_ptr_ref(src->linetable, i);
6281
6290
DebugLineTable &info = linetable[i + 1];
6282
6291
assert(jl_typeis(locinfo, jl_lineinfonode_type));
6283
- jl_value_t *method = jl_fieldref_noalloc(locinfo, 0);
6284
- if (jl_is_method_instance(method))
6285
- method = ((jl_method_instance_t*)method)->def.value;
6286
- jl_sym_t *filesym = (jl_sym_t*)jl_fieldref_noalloc(locinfo, 1);
6287
- info.line = jl_unbox_long(jl_fieldref(locinfo, 2));
6288
- info.inlined_at = jl_unbox_long(jl_fieldref(locinfo, 3));
6292
+ jl_module_t *module = (jl_module_t*)jl_fieldref_noalloc(locinfo, 0);
6293
+ jl_value_t *method = jl_fieldref_noalloc(locinfo, 1);
6294
+ jl_sym_t *filesym = (jl_sym_t*)jl_fieldref_noalloc(locinfo, 2);
6295
+ info.line = jl_unbox_long(jl_fieldref(locinfo, 3));
6296
+ info.inlined_at = jl_unbox_long(jl_fieldref(locinfo, 4));
6289
6297
assert(info.inlined_at <= i);
6290
- if (jl_is_method(method)) {
6291
- jl_module_t *module = ((jl_method_t*)method)->module;
6292
- if (module == ctx.module)
6293
- info.is_user_code = mod_is_user_mod;
6294
- else
6295
- info.is_user_code = in_user_mod(module);
6296
- }
6297
- else {
6298
- info.is_user_code = (info.inlined_at == 0) ? mod_is_user_mod : linetable.at(info.inlined_at).is_user_code;
6299
- }
6298
+ if (module == ctx.module)
6299
+ info.is_user_code = mod_is_user_mod;
6300
+ else
6301
+ info.is_user_code = in_user_mod(module);
6300
6302
info.file = jl_symbol_name(filesym);
6301
6303
if (info.file.empty())
6302
6304
info.file = "<missing>";
6303
6305
if (ctx.debug_enabled) {
6304
6306
StringRef fname;
6307
+ if (jl_is_method_instance(method))
6308
+ method = ((jl_method_instance_t*)method)->def.value;
6305
6309
if (jl_is_method(method))
6306
6310
method = (jl_value_t*)((jl_method_t*)method)->name;
6307
6311
if (jl_is_symbol(method))
@@ -6512,6 +6516,13 @@ static std::pair<std::unique_ptr<Module>, jl_llvm_functions_t>
6512
6516
Value *sync_bytes = nullptr;
6513
6517
if (do_malloc_log(true))
6514
6518
sync_bytes = ctx.builder.CreateCall(prepare_call(diff_gc_total_bytes_func), {});
6519
+ { // coverage for the function definition line number
6520
+ const auto &topinfo = linetable.at(0);
6521
+ if (topinfo == linetable.at(1))
6522
+ current_lineinfo.push_back(1);
6523
+ if (do_coverage(topinfo.is_user_code))
6524
+ coverageVisitLine(ctx, topinfo.file, topinfo.line);
6525
+ }
6515
6526
6516
6527
find_next_stmt(0);
6517
6528
while (cursor != -1) {
0 commit comments