Commit Graph

276 Commits

Author SHA1 Message Date
Éder Ferreira Zulian
a557e789ef Dir simconfigs removed 2015-06-08 13:51:09 +02:00
Éder Ferreira Zulian
3e15e0dd66 Merge remote branch 'upstream/master' 2015-06-05 17:02:53 +02:00
Matthias Jung
f47097d914 removed IFPOW macro 2015-06-05 15:08:34 +02:00
Matthias Jung
508dcd32d0 Merge branch 'master' of git.rhrk.uni-kl.de:EIT-Wehn/dram.vp.system
Conflicts:
	README.md
2015-06-05 13:52:47 +02:00
Éder Ferreira Zulian
1ebcd504e9 Small improvement on code readability.
Comparing the value returned from sqlite3_open() with proper value.
2015-06-05 12:32:31 +02:00
Matthias Jung
809c1fcb7d Merge pull request #10 from fzeder/master
One memory leak less.
2015-06-02 22:03:39 +02:00
Éder Ferreira Zulian
9998400a5d Readme file updated with information for syncng a fork to the main repo. after pull request approval.
Other cosmetic changes:
- removal of unused headers;
- space deletion.
2015-06-02 17:58:12 +02:00
Éder Ferreira Zulian
d454ed1a5b Memory leak fixed. 2015-06-02 17:56:57 +02:00
Matthias Jung
16d492edd9 Merge pull request #8 from fzeder/master
Please see the individual commits
2015-05-30 22:30:04 +02:00
Éder Ferreira Zulian
dd4dc7bcd6 Revert "Cosmetic changes only."
This reverts commit 707ce4da8d.
2015-05-28 17:51:44 +02:00
Éder Ferreira Zulian
e9a20b1ba6 Revert "Removal of files with all code commented"
This reverts commit 5675a3edfd.
2015-05-28 17:48:49 +02:00
Éder Ferreira Zulian
707ce4da8d Cosmetic changes only.
Removal of unused includes.
Some commented code cleaned up.
2015-05-28 14:54:29 +02:00
Éder Ferreira Zulian
48236a481e One memory leak less. 2015-05-28 14:52:42 +02:00
Éder Ferreira Zulian
5a64b4d0ad Scheduler is now FIFO_STRICT (Matthias' request). 2015-05-28 14:49:55 +02:00
Éder Ferreira Zulian
5675a3edfd Removal of files with all code commented 2015-05-26 17:29:05 +02:00
Éder Ferreira Zulian
b3d05926dd Added references to papers that describe some concepts for the first time 2015-05-26 16:42:50 +02:00
Éder Ferreira Zulian
2ae1f82b69 Using syntax highlight for blocks of code (bash and xml) 2015-05-26 14:39:23 +02:00
Éder Ferreira Zulian
76757e0025 Little clean up (as suggested in the code). 2015-05-21 17:06:24 +02:00
Éder Ferreira Zulian
14deacd665 Readme file updated 2015-05-21 17:03:25 +02:00
Éder Ferreira Zulian
30661b607b Including ".png" images instead of ".svg". 2015-05-20 13:57:18 +02:00
Éder Ferreira Zulian
d5b3ecc3ef Some about address mapping in README, but I'm still working on it. 2015-05-20 13:02:11 +02:00
Éder Ferreira Zulian
63abf994ce Removal of "analyzer/analyzer/thirdParty".
The code contained in this directory was not being used (eng_format.[cpp,h]).

If one needs this code in the future it is possible to add the thirdy party
repository "https://github.com/martinmoene/EngFormat-Cpp.git" as a submodule.
2015-05-18 16:10:59 +02:00
Matthias Jung
d0465e976b Merge pull request #7 from fzeder/master
License header added to files.
2015-05-18 14:21:37 +02:00
Éder Ferreira Zulian
ae5a1ff76f Janik Schlemminger and Robert Gernhardt added as authors.
Matthias Jung, Janik Schlemminger and Robert Gernhardt were used as authors
for all files wihout an author/header.

Also, removed headers from files that already had a license statement:
dram.vp.system/analyzer/analyzer/thirdParty/*
2015-05-18 12:48:20 +02:00
Éder Ferreira Zulian
0edd064ee5 Janik Schlemminger and Robert Gernhardt added as authors.
Matthias Jung, Janik Schlemminger and Robert Gernhardt were used as authors
for all files which did not have an author/header.
2015-05-18 12:06:58 +02:00
Éder Ferreira Zulian
fb08bf981a Merge remote branch 'upstream/master' 2015-05-18 10:21:41 +02:00
Matthias Jung
939e971445 Change readme accoring to submodules 2015-05-13 16:52:26 +02:00
Matthias Jung
6d818f40a9 removed obsolete install script 2015-05-13 16:09:41 +02:00
Matthias Jung
f74350a750 get tinyxml as submodule and build DRAMPower with qmake 2015-05-13 15:55:07 +02:00
Matthias Jung
be408a65bf get DRAMPower as submodule 2015-05-13 15:04:50 +02:00
Matthias Jung
18fc703b53 removed DRAMPower folder to get it as submodule 2015-05-13 15:01:37 +02:00
Éder Ferreira Zulian
6f8653e699 License header added to files. 2015-05-13 12:26:21 +02:00
Matthias Jung
5f246d8d50 Merge pull request #6 from fzeder/master
Please see the individual commits
2015-05-11 14:50:38 +02:00
Éder Ferreira Zulian
9846a56da4 Some names slightly changed to better describe their purpose.
ChipSeed --> ErrorChipSeed
csvfile --> ErrorCSVFile
StorMo --> ErrorStoreMode
StorMode --> ErrorStoreMode
StorageMode --> ErrorStorageMode

(Changes after code review)
2015-05-11 14:08:39 +02:00
Éder Ferreira Zulian
0fc640ad0d Enum class <-> string macro improved.
The macro generates code for two functions: EnumToString() and StringToEnum().

Notes:
1. this macro creates a scoped enumeration (enum class) which favors code
readability;

2. this implementation does not support assignment of values to enumerators
and also does not support multiple enumerators with the same value. The first
enumerator value is 0, the next is 1, and so on. Nevertheless, it is still
useful for many cases;

3. if an invalid string is passed to StringToEnum() the program will be
aborted and an error message describing the error will be displayed in the
standard output.
2015-05-11 12:46:21 +02:00
Éder Ferreira Zulian
48154a356d Added macro that creates enums with string conversion function automatically. 2015-05-08 16:00:50 +02:00
Éder Ferreira Zulian
6ee652bdca Typo fixed (PowerAnalysys --> PowerAnalysis) 2015-05-08 15:55:27 +02:00
Éder Ferreira Zulian
b3c5bf12b0 Directory dram-power-original removed from repository.
Its content was a duplicate of "dram.vp.system/dram/src/common/third_party/DRAMPower/memspecs".
2015-05-08 14:18:50 +02:00
Éder Ferreira Zulian
19d682c0ca Typo fixed (PowerAnalysys --> PowerAnalysis) 2015-05-08 14:04:59 +02:00
Éder Ferreira Zulian
cd8aeebe6f Created an enumeration to the possible values of storage mode. 2015-05-08 12:52:49 +02:00
Éder Ferreira Zulian
fd371795c7 Using relative paths instead of absolute paths in configuration files 2015-05-06 11:33:58 +02:00
Éder Ferreira Zulian
16cbd15f47 Readme file updated with information about dramSys configuration 2015-05-06 10:51:07 +02:00
Matthias Jung
310e443776 Merge pull request #5 from fzeder/master
Removed Warnings and updated Readmefile
2015-04-27 15:20:19 +02:00
Éder Ferreira Zulian
41993d87b5 Segfalut caused by misuse of sc_assert() fixed. 2015-04-27 14:36:09 +02:00
Éder Ferreira Zulian
18025343cd Warnings eliminated.
Variables initialized.

Variables removed with small changes in the code accordingly.

Some warnings suppressed with __attribute__((unused)).
2015-04-24 11:20:44 +02:00
Éder Ferreira Zulian
6cf6c6be95 Warnings eliminated.
Variable surrounded by IFPOW() macro since it is only needed for power simulations.

Unused variable removed.

Warning suppressed with __attribute__((__unused__)). The variable was not
removed because of its type: sc_module_name. It may be useful.

Other changes:
cscope* added to gitignore.
2015-04-24 09:11:25 +02:00
Éder Ferreira Zulian
ce7f85c3e1 Some fixes after review. 2015-04-21 16:54:07 +02:00
Éder Ferreira Zulian
5898be7c67 Text enhanced 2015-04-21 16:08:22 +02:00
Éder Ferreira Zulian
378544be26 Minor changes in text 2015-04-21 16:03:40 +02:00
Éder Ferreira Zulian
1cb13725e2 Text enhanced. 2015-04-21 15:58:28 +02:00