remove icache.h code that was added for studies in trace cache

This commit is contained in:
Stanislav Shwartsman 2011-04-15 04:48:37 +00:00
parent 74792e6841
commit 9aaeea3fda

View File

@ -114,7 +114,6 @@ struct bxICacheEntry_c
Bit32u traceMask; Bit32u traceMask;
#if BX_SUPPORT_TRACE_CACHE #if BX_SUPPORT_TRACE_CACHE
Bit32u used;
Bit32u tlen; // Trace length in instructions Bit32u tlen; // Trace length in instructions
bxInstruction_c *i; bxInstruction_c *i;
#else #else
@ -164,7 +163,6 @@ public:
} }
e->i = &mpool[mpindex]; e->i = &mpool[mpindex];
e->tlen = 0; e->tlen = 0;
e->used = 0;
} }
BX_CPP_INLINE void commit_trace(unsigned len) { mpindex += len; } BX_CPP_INLINE void commit_trace(unsigned len) { mpindex += len; }