Changeset 001957b6 in mainline for kernel/generic/src/debug/line.c


Ignore:
Timestamp:
2023-10-26T20:20:55Z (13 months ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
master, topic/msim-upgrade, topic/simplify-dev-export
Children:
0373af9
Parents:
2fbb42f
Message:

ccheck

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/debug/line.c

    r2fbb42f r001957b6  
    195195                case DW_LNS_advance_pc:
    196196                        arg = read_uleb128(&program, program_end);
    197                         DEBUGF("%s(%"PRIu64")\n", opname, arg);
     197                        DEBUGF("%s(%" PRIu64 ")\n", opname, arg);
    198198                        lp->op_advance += arg;
    199199                        break;
     
    267267                        case DW_LNE_set_discriminator:
    268268                                uint64_t arg = read_uleb128(&program, program_end);
    269                                 DEBUGF("%s:%zu(%"PRIu64")\n", opname, length, arg);
     269                                DEBUGF("%s:%zu(%" PRIu64 ")\n", opname, length, arg);
    270270                                break;
    271271
     
    369369
    370370                print_format("directory_entry_format",
    371                         hdr->v5.directory_entry_format, hdr->v5.directory_entry_format_end);
     371                    hdr->v5.directory_entry_format, hdr->v5.directory_entry_format_end);
    372372
    373373                FIELD(v5.directories_count, PRIu64, read_uleb128(&data, data_end));
     
    375375                hdr->v5.directories = data;
    376376                skip_formatted_list(&data, data_end, hdr->v5.directories_count,
    377                         hdr->v5.directory_entry_format, hdr->v5.directory_entry_format_end, width);
     377                    hdr->v5.directory_entry_format, hdr->v5.directory_entry_format_end, width);
    378378                hdr->v5.directories_end = data;
    379379
    380380                print_formatted_list("directories", hdr->v5.directories, hdr->v5.directories_end,
    381                         hdr->v5.directory_entry_format, hdr->v5.directory_entry_format_end, width);
     381                    hdr->v5.directory_entry_format, hdr->v5.directory_entry_format_end, width);
    382382
    383383                FIELD(v5.file_name_entry_format_count, "u", read_byte(&data, data_end));
     
    388388
    389389                print_format("file_name_entry_format",
    390                         hdr->v5.file_name_entry_format, hdr->v5.file_name_entry_format_end);
     390                    hdr->v5.file_name_entry_format, hdr->v5.file_name_entry_format_end);
    391391
    392392                FIELD(v5.file_names_count, PRIu64, read_uleb128(&data, data_end));
     
    394394                hdr->v5.file_names = data;
    395395                skip_formatted_list(&data, data_end, hdr->v5.file_names_count,
    396                         hdr->v5.file_name_entry_format, hdr->v5.file_name_entry_format_end, width);
     396                    hdr->v5.file_name_entry_format, hdr->v5.file_name_entry_format_end, width);
    397397                hdr->v5.file_names_end = data;
    398398
    399399                print_formatted_list("file_names", hdr->v5.file_names, hdr->v5.file_names_end,
    400                         hdr->v5.file_name_entry_format, hdr->v5.file_name_entry_format_end, width);
     400                    hdr->v5.file_name_entry_format, hdr->v5.file_name_entry_format_end, width);
    401401        }
    402402}
     
    655655
    656656                        /*
    657                         if (!lp.end_sequence) {
    658                                 debug_line_program_skip_to_sequence_end(&lp);
    659                                 assert(lp.truncated || lp.end_sequence);
    660                         }
    661                         */
     657                         * if (!lp.end_sequence) {
     658                         * debug_line_program_skip_to_sequence_end(&lp);
     659                         * assert(lp.truncated || lp.end_sequence);
     660                         * }
     661                         */
    662662                }
    663663        }
     
    666666}
    667667
    668 static bool get_info(const struct debug_line_program_header *hdr, uintptr_t addr, int op_index, int *file, int *line, int *column) {
     668static bool get_info(const struct debug_line_program_header *hdr, uintptr_t addr, int op_index, int *file, int *line, int *column)
     669{
    669670        struct debug_line_program lp = debug_line_program_create(
    670                 hdr->header_end, hdr->unit_end, hdr);
     671            hdr->header_end, hdr->unit_end, hdr);
    671672
    672673        int last_file = 0;
     
    735736        return true;
    736737}
    737 
Note: See TracChangeset for help on using the changeset viewer.