-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add time and counter profiling to CSV file
Initial work by Emilien Lemaire <[email protected]>
- Loading branch information
Showing
18 changed files
with
1,020 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
2023-09-04 Emilien Lemaire <[email protected]> | ||
|
||
* parser.y: add variables for profiling, and a `cb_test_list_add` function | ||
* parser.y: generate `cob_prof_enter` and `cob_prof_exit` calls when | ||
needed | ||
* flag.def: add `-fprof` to enable profiling | ||
* cobc.h: add an extern `cb_text_list` struct, to save the name of all | ||
created procedures and global variables of this type | ||
* typeck.c (emit_stop_run): add a call to `cob_prof_end` before the call | ||
to `cob_stop_run` | ||
* codegen.c: handle profiling code generation | ||
|
||
2023-07-26 Simon Sobisch <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
2023-09-07 Emilien Lemaire <[email protected]> | ||
|
||
* gnucobol.texi: document the profiling feature | ||
|
||
|
||
2023-07-10 Simon Sobisch <[email protected]> | ||
|
||
|
Oops, something went wrong.