Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Remove memory allocation for ELF sections #270

Merged
merged 1 commit into from
Nov 22, 2023

Conversation

LambertWSJ
Copy link
Collaborator

Since the section headers of ELF are continuous, all headers can be accessed by getting the starting address, so there is no need to allocate memory for this.

@jserv jserv requested a review from henrybear327 November 19, 2023 16:14
Copy link
Contributor

@jserv jserv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Eliminate the warnings reported by Codacy/Cppcheck.

@jserv
Copy link
Contributor

jserv commented Nov 20, 2023

Eliminate the warnings reported by Codacy/Cppcheck.

Reported by Cppcheck:

tools/rv_histogram.c:192:31: style: Parameter 'ir' can be declared as pointer to const [constParameterPointer]
void reg_hist_incr(rv_insn_t *ir)
                              ^
tools/rv_histogram.c:217:32: style: Parameter 'ir' can be declared as pointer to const. However it seems that 'insn_hist_incr' is a callback function, if 'ir' is declared with const you might also need to cast function pointer(s). [constParameterCallback]
void insn_hist_incr(rv_insn_t *ir)
                               ^
tools/rv_histogram.c:235:46: note: You might need to cast the function pointer here
    hist_record = show_reg ? reg_hist_incr : insn_hist_incr;
                                             ^
tools/rv_histogram.c:217:32: note: Parameter 'ir' can be declared as pointer to const
void insn_hist_incr(rv_insn_t *ir)
                               ^
tools/rv_histogram.c:253:28: style: Variable 'shdr' can be declared as pointer to const [constVariablePointer]
        struct Elf32_Shdr *shdr = (struct Elf32_Shdr *) shdrs + i;
                           ^
tools/rv_histogram.c:260:20: style: Variable 'exec_end_addr' can be declared as pointer to const [constVariablePointer]
        uintptr_t *exec_end_addr =
                   ^

@LambertWSJ, you may submit pull requests to eliminate the warnings reported by Cppcheck later.

goto decode;
}
#endif
insn = *((uint32_t *) ptr);
ptr = (uintptr_t *) ((uint8_t *) ptr + 4);
ptr += 4;

Check notice

Code scanning / Cppcheck (reported by Codacy)

MISRA 18.4 rule

MISRA 18.4 rule
* Since the section headers of ELF are continuous, all headers can be
accessed by getting the starting address, so there is no need to
allocate memory for this.

* Eliminate MISRA C warnings as possible and follow contribution guide
* Remove `getopt` and refactor `parse_args`, but the code is not elegant
enough
@jserv jserv merged commit 0a18104 into sysprog21:master Nov 22, 2023
vestata pushed a commit to vestata/rv32emu that referenced this pull request Jan 24, 2025
Remove memory allocation for ELF sections
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants