Re: [gem5-users] Execute function for instructions in O3 CPU model

2019-05-19 Thread Ciro Santilli
On Sun, May 19, 2019 at 8:04 PM Shyam Murthy wrote: > > Hi Gabe, > > Within the file src/cpu/o3/iew_impl.hh, there is a call made to execute > function within the dynamic inst class (inst->execute()). I was trying to > lookup the function definition for this, but I could only find the function

Re: [gem5-users] Execute function for instructions in O3 CPU model

2019-05-19 Thread Shyam Murthy
Thanks for the information Ciro. Thanks, Shyam On Sun, May 19, 2019 at 3:07 PM Ciro Santilli wrote: > On Sun, May 19, 2019 at 8:04 PM Shyam Murthy > wrote: > > > > Hi Gabe, > > > > Within the file src/cpu/o3/iew_impl.hh, there is a call made to execute > function within the dynamic inst class

[gem5-users] Execute function for instructions in O3 CPU model

2019-05-19 Thread Shyam Murthy
Hi Gabe, Within the file src/cpu/o3/iew_impl.hh, there is a call made to execute function within the dynamic inst class (inst->execute()). I was trying to lookup the function definition for this, but I could only find the function prototype within src/cpu/o3/dyn_inst.hh (Fault execute()). Where