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

Refine file naming scheme for profiling data #337

Merged
merged 1 commit into from
Jan 29, 2024

Conversation

ChinYikMing
Copy link
Collaborator

Close #336

@jserv jserv requested a review from qwe661234 January 27, 2024 14:17
src/main.c Outdated
char *prog_basename = basename(opt_prog_name);
prof_out_file = malloc(strlen(prog_basename) + 12 + 1);
assert(prof_out_file);
sprintf(prof_out_file, "./prof/%s.prof", prog_basename);
Copy link
Contributor

Choose a reason for hiding this comment

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

The leading prof/ directory name is not really making sense. Instead, let's place the profiling data in the same directory where the RV32 ELF file locates.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

I think you mean build directory

Copy link
Collaborator

Choose a reason for hiding this comment

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

I think putting it in the build directory is reasonable, we can distinguish the executable files and profiling data by filename extension.

@ChinYikMing
Copy link
Collaborator Author

ChinYikMing commented Jan 27, 2024

Note that the trailing spaces are removed automatically by editor when I motify "README" and "rv_profiler", not my primary intention.

@jserv jserv changed the title Fix incorrect basename generated by dynamic profiler Refine file naming scheme for profiling data Jan 28, 2024
src/main.c Outdated
char *prog_basename = basename(opt_prog_name);
prof_out_file = malloc(strlen(prog_basename) + 11 + 1);
assert(prof_out_file);
sprintf(prof_out_file, "build/%s.prof", prog_basename);
Copy link
Contributor

Choose a reason for hiding this comment

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

Is the leading build/ necessary?

Copy link
Collaborator Author

@ChinYikMing ChinYikMing Jan 29, 2024

Choose a reason for hiding this comment

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

It depends on working directory of rv32emu executable. There are 2 cases to run profiler:

// outside build directory
xxx/build/rv32emu -p xxx/build/xxx.elf
// inside build directory
./rv32emu -p xxx.elf

Without leading build/, the first case will always write to cwd which is parent directory of xxx. For second case, it is all right.

I think the new approach could be concatenating the cwd and relative path (e.g., xxx/build/ in first case and ./ in second case) to rv32emu executable. This concatenated path will always point to the build directory.

Copy link
Contributor

Choose a reason for hiding this comment

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

I think the new approach could be concatenating the cwd and relative path (e.g., xxx/build/ in first case and ./ in second case) to rv32emu executable. This concatenated path will always point to the build directory.

I think the new one is better, and I expect a cleaner and elegant implementation.

- fix incorrect basename generated by dynamic profiler
- force profiling data store in build directory regardless
  of the cwd
- update README

Close sysprog21#336
@jserv jserv merged commit 176e121 into sysprog21:master Jan 29, 2024
@jserv
Copy link
Contributor

jserv commented Jan 29, 2024

Thank @ChinYikMing for contributing!

@ChinYikMing ChinYikMing deleted the pf_basename branch January 29, 2024 07:47
vestata pushed a commit to vestata/rv32emu that referenced this pull request Jan 24, 2025
Refine file naming scheme for profiling data
# 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.

Incorrect basename generated by dynamic profiler
3 participants