Hi Ken (I hope I got that right),

Are you adding any caches? The command line you include suggests not. If
you don¹t add any caches, then the method you have modified will never be
called.

Andreas

On 3/19/14, 4:08 AM, "Ken" <[email protected]> wrote:

>
>Hi All,
>
>I am a newbie of gem5.
>I set up the gem5 to run the parsec 2.1 in full simulation mode of Alpha.
>
>I am trying to trace the memory(L1 cache) access data.
>
>I added the CommMonitor between CPU and L1 cache in BaseCPU.py as
>follows:
>
>    def addPrivateSplitL1Caches(self, ic, dc, iwc = None, dwc = None):
>        self.icache = ic
>        self.dcache = dc
>        self.icache_port = ic.cpu_side
>        #self.dcache_port = dc.cpu_side
>        self.L1MONITOR = CommMonitor(trace_file="L1.txt")
>        self.dcache_port = self.L1MONITOR.slave
>        self.L1MONITOR.master = dc.cpu_side
>
>After adding it, I built again using command as follows:
>scons build/ALPHA/gem5.opt
>No warnings during this step.
>
>Then, command line is
>./build/ALPHA/gem5.opt ./configs/example/fs.py --
>script=./path/to/runscript.rcS
>
>But, I can't check if it's working or not in config.ini file and don't
>see
>any result files in m5out directory.
>
>How can I check? Where will the result files be generated?
>Any clues about this issue?
>Thank you in advance.
>
>
>
>_______________________________________________
>gem5-users mailing list
>[email protected]
>http://m5sim.org/cgi-bin/mailman/listinfo/gem5-users
>


-- IMPORTANT NOTICE: The contents of this email and any attachments are 
confidential and may also be privileged. If you are not the intended recipient, 
please notify the sender immediately and do not disclose the contents to any 
other person, use it for any purpose, or store or copy the information in any 
medium.  Thank you.

ARM Limited, Registered office 110 Fulbourn Road, Cambridge CB1 9NJ, Registered 
in England & Wales, Company No:  2557590
ARM Holdings plc, Registered office 110 Fulbourn Road, Cambridge CB1 9NJ, 
Registered in England & Wales, Company No:  2548782

_______________________________________________
gem5-users mailing list
[email protected]
http://m5sim.org/cgi-bin/mailman/listinfo/gem5-users

Reply via email to