[gem5-users] Re: Implicit Register Dependencies in x86

2021-07-21 Thread mohit.gambhir84--- via gem5-users
Hi Ayaz, Thanks for your reply. You are right that they do get renamed and are assigned a different destination physical register for each instruction. But, as you see below, IMPLICIT(0) and IMPLICIT(1) are both source and destination for IMUL_R_R instruction. So each instruction is still wait

[gem5-users] Re: How to redirect the fopen to open a different file instead of specifed filename in the program binary given as input to gem5 simulator in SE mode

2021-07-21 Thread mohit.gambhir84--- via gem5-users
Hi gogineni, You will have to modify the hello world program to take in a command line argument and use that instead of hard coded file name. Something like this fp = fopen( argv[1] , "w" ); In gem5, if your se.py equivalent system is using the default set of command line parameters defined i