1/*
2 * Copyright (c) 2010-2012 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating
9 * to a hardware implementation of the functionality of the software
10 * licensed hereunder. You may use the software subject to the license
11 * terms below provided that you ensure that this notice is replicated

--- 195 unchanged lines hidden (view full) ---

207 .desc("number of times the floating registers were read")
208 ;
209
210 numFpRegWrites
211 .name(name() + ".num_fp_register_writes")
212 .desc("number of times the floating registers were written")
213 ;
214
215 numCCRegReads
216 .name(name() + ".num_cc_register_reads")
217 .desc("number of times the CC registers were read")
218 .flags(nozero)
219 ;
220
221 numCCRegWrites
222 .name(name() + ".num_cc_register_writes")
223 .desc("number of times the CC registers were written")
224 .flags(nozero)
225 ;
226
227 numMemRefs
228 .name(name()+".num_mem_refs")
229 .desc("number of memory refs")
230 ;
231
232 numStoreInsts
233 .name(name() + ".num_store_insts")
234 .desc("Number of store instructions")

--- 302 unchanged lines hidden ---