README revision 13372
14202Sbinkertn@umich.eduThis directory contains a demo of C++ configuration of gem5. The intention 24202Sbinkertn@umich.eduis to provide a mechanism to allow pre-generated config.ini files generated 34202Sbinkertn@umich.eduby Python-based gem5 to be reloaded in library-base versions of gem5 44202Sbinkertn@umich.eduembedded in other systems using C++ calls for simulation control. 54202Sbinkertn@umich.edu 64202Sbinkertn@umich.eduThis directory contain a demo of hosting a C++ configured version of gem5 74202Sbinkertn@umich.eduonto SystemC's event loop. The hosting is achieved by replacing 'simulate' 84202Sbinkertn@umich.eduwith a SystemC object which implements an event loop using SystemC scheduler 94202Sbinkertn@umich.edumechanisms. 104202Sbinkertn@umich.edu 114202Sbinkertn@umich.eduThe sc_... files here should probably be hosted in a diferent directory and 124202Sbinkertn@umich.edubuildable as a library. 134202Sbinkertn@umich.edu 144202Sbinkertn@umich.eduFiles: 154202Sbinkertn@umich.edu 164202Sbinkertn@umich.edu main.cc -- demonstration top level 174202Sbinkertn@umich.edu sc_logger.{cc,hh} -- rehosting of DPRINTF onto SC_REPORT 184202Sbinkertn@umich.edu sc_module.{cc,hh} -- SystemC simulation loop base class 194202Sbinkertn@umich.edu sc_gem5_control.{cc,hh} -- Alternative extra wrapping to allow gem5 204202Sbinkertn@umich.edu Systems to be instantiated as single 214202Sbinkertn@umich.edu sc_module objects. 224202Sbinkertn@umich.edu stats.{cc,hh} -- Stats dumping (copied from util/cxx_config) 234202Sbinkertn@umich.edu 244202Sbinkertn@umich.eduRead main.cc for more details of the implementation and sc_... files for 254202Sbinkertn@umich.edu 264202Sbinkertn@umich.eduTo build: 274202Sbinkertn@umich.edu 284202Sbinkertn@umich.eduFirst build gem5 as a library with cxx-config support and (optionally) 294202Sbinkertn@umich.eduwithout python. Also build a normal gem5 (cxx-config not needed, Python 304202Sbinkertn@umich.eduneeded): 314202Sbinkertn@umich.edu 324202Sbinkertn@umich.edu> cd ../../.. 334486Sbinkertn@umich.edu> scons build/ARM/gem5.opt 344486Sbinkertn@umich.edu> scons --with-cxx-config --without-python build/ARM/libgem5_opt.so 354486Sbinkertn@umich.edu> cd util/systemc 364486Sbinkertn@umich.edu 374486Sbinkertn@umich.eduNote: For MAC / OSX this command should be used: 385400Ssaidi@eecs.umich.edu> scons --with-cxx-config --without-python build/ARM/libgem5_opt.dylib 395400Ssaidi@eecs.umich.edu 405398Ssaidi@eecs.umich.eduSet a proper LD_LIBRARY_PATH e.g. for bash: 415398Ssaidi@eecs.umich.edu> export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/path/to/gem5/build/ARM/" 424202Sbinkertn@umich.edu 434202Sbinkertn@umich.eduor for MAC / OSX: 444202Sbinkertn@umich.edu> export DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:/path/to/gem5/build/ARM/" 454202Sbinkertn@umich.edu 464202Sbinkertn@umich.edu 474202Sbinkertn@umich.eduThen edit the Makefile to set the paths for SystemC, e.g: 484202Sbinkertn@umich.edu 494202Sbinkertn@umich.edu Linux: 505650Sgblack@eecs.umich.edu SYSTEMC_INC = /opt/systemc/include 514202Sbinkertn@umich.edu SYSTEMC_LIB = /opt/systemc/lib-linux64 524202Sbinkertn@umich.edu 534202Sbinkertn@umich.edu MAC / OSX: 544202Sbinkertn@umich.edu SYSTEMC_INC = /opt/systemc/include 554202Sbinkertn@umich.edu SYSTEMC_LIB = /opt/systemc/lib-macosx64 564202Sbinkertn@umich.edu 575192Ssaidi@eecs.umich.eduThen run make: 585192Ssaidi@eecs.umich.edu 595192Ssaidi@eecs.umich.edu> make 605192Ssaidi@eecs.umich.edu 615192Ssaidi@eecs.umich.eduMake a config file for the C++-configured gem5 using normal gem5 625192Ssaidi@eecs.umich.edu 635192Ssaidi@eecs.umich.edu> ../../../build/ARM/gem5.opt ../../../configs/example/se.py -c \ 64> ../../../tests/test-progs/hello/bin/arm/linux/hello 65 66The binary 'gem5.opt.cxx' can now be used to load in the generated config 67file from the previous normal gem5 run. 68 69Try: 70 71> ./gem5.opt.cxx m5out/config.ini 72 73This should print: 74 75> Hello world! 76 77The .ini file can also be read by the Python .ini file reader example: 78 79> ../../../build/ARM/gem5.opt ../../../configs/example/read_ini.py \ 80> m5out/config.ini 81 82If you are interested in SystemC Transaction Level Modeling (TLM2) please have 83a look into /util/tlm. 84