Added -O3 optimization option to g++

This commit is contained in:
mariusmonton 2018-09-15 11:43:33 +02:00
parent 53b6234ecb
commit c5ec56ec08
2 changed files with 16 additions and 11 deletions

View File

@ -5,7 +5,7 @@ TARGET_ARCH=linux64
CC = g++
# compiling flags here
CFLAGS = -Wall -I.
CFLAGS = -Wall -I. -O3
LINKER = g++
# linking flags here

View File

@ -13,13 +13,18 @@ Brief description of the modules:
* Instruction: Decodes instruction and acces to any instruction field
* Simulation: Top-level entity that builds & starts the simulation
Current performance is about 166000 instructions / sec in a Core-i5@2.2Ghz
Current performance is about 284500 instructions / sec in a Core-i5@2.2Ghz
Helper classes:
* Performance: Performance indicators stores here (singleton class)
* Log: Log class to log them all (singleton class)
### Structure
## TODO
This is a preliminar and incomplete version.