From 386b7d3366f1359a265da207a9cafa3edf553b64 Mon Sep 17 00:00:00 2001 From: Joshua Bakita Date: Mon, 7 Oct 2019 19:13:39 -0400 Subject: Reorganize and commit all the modified TACLeBench code and run scripts --- all_pairs/source/mpeg2/ChangeLog.txt | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 all_pairs/source/mpeg2/ChangeLog.txt (limited to 'all_pairs/source/mpeg2/ChangeLog.txt') diff --git a/all_pairs/source/mpeg2/ChangeLog.txt b/all_pairs/source/mpeg2/ChangeLog.txt new file mode 100644 index 0000000..f644576 --- /dev/null +++ b/all_pairs/source/mpeg2/ChangeLog.txt @@ -0,0 +1,35 @@ +File: mpeg2.c +Original provenience: MediaBench II benchmark suite, + http://euler.slu.edu/~fritts/mediabench (mirror) + +2015-11-05: +- Removed original header comment, replaced by TACLeBench header. +- Removed unnecessary preprocessor macros, integrated required preprocessor + macros directly in the source code. +- Added prefix "mpeg2_" to all global symbols. +- Added explicit forward declarations of functions. +- Added TACLeBench-compliant initialization code. +- Added new function mpeg2_return producing a checksum as return value. +- Added new function mpeg2_main according to TACLeBench guidelines. + mpeg2_main is annotated as entry-point for timing analysis. +- Applied code formatting according to the following rules + - Lines shall not be wider than 80 characters; whenever possible, appropriate + line breaks shall be inserted to keep lines below 80 characters + - Indentation is done using whitespaces only, no tabs. Code is indented by + two whitespaces + - Two empty lines are put between any two functions + - In non-empty lists or index expressions, opening '(' and '[' are followed by + one whitespace, closing ')' and ']' are preceded by one whitespace + - In comma- or colon-separated argument lists, one whitespace is put after + each comma/colon + - Names of functions and global variables all start with a benchmark-specific + prefix (here: bs_) followed by lowercase letter (e.g., bs_square) + - For pointer types, one whitespace is put before the '*' + - Operators within expressions shall be preceded and followed by one + whitespace + - Code of then- and else-parts of if-then-else statements shall be put in + separate lines, not in the same lines as the if-condition or the keyword + "else" + - Opening braces '{' denoting the beginning of code for some if-else or loop + body shall be put at the end of the same line where the keywords "if", + "else", "for", "while" etc. occur -- cgit v1.2.2