static void micro_ops_warn(Int actual_size, Int used_size, Int line_size)
{
- VG_(message)(Vg_DebugMsg,
- "warning: Pentium 4 with %d KB micro-op instruction trace cache",
- actual_size);
- VG_(message)(Vg_DebugMsg,
- " Simulating a %d KB I-cache with %d B lines",
- used_size, line_size);
+ VG_(message)(Vg_DebugMsg,
+ "warning: Pentium 4 with %d KB micro-op instruction trace cache",
+ actual_size);
+ VG_(message)(Vg_DebugMsg,
+ " Simulating a %d KB I-cache with %d B lines",
+ used_size, line_size);
}
/* Intel method is truly wretched. We have to do an insane indexing into an
// For cache simulation
typedef struct {
- int size; // bytes
- int assoc;
- int line_size; // bytes
+ int size; // bytes
+ int assoc;
+ int line_size; // bytes
} cache_t;
// Gives the configuration of I1, D1 and L2 caches. They get overridden