forked from OCamlPro/gnucobol
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
90ffc14
commit f890dd6
Showing
4 changed files
with
20 additions
and
2 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,6 @@ | ||
2023-09-04 Emilien Lemaire <[email protected]> | ||
|
||
* configure.ac: check for libxlsxwriter | ||
|
||
2023-07-28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
2023-09-04 Emilien Lemaire <[email protected]> | ||
|
||
* parser.y: save the names of the procedures in global variables. | ||
* parser.y: generate `cob_perf_enter` and `cob_perf_exit` calls when | ||
needed | ||
* flag.def: add `-fperf` to enable profiling | ||
* cobc.h: add a `cb_any_list` struct, a linked list with `void*` type data | ||
and global variables of this type, used for profiling | ||
* typeck.c (emit_stop_run): add a call to `cob_perf_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2023-09-04 Emilien Lemaire <[email protected]> | ||
|
||
* Makefile.am: add `cobperf.c` and `cobperf.h` in sources and headers | ||
* cobperf.c, cobperf.h: implement profiling functions (time spent in each | ||
procedure of the program) | ||
* common.c: include `cobperf.h` | ||
|
||
2023-07-28 Simon Sobisch <[email protected]> | ||
|
||
|