OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 4 to Rev 5
    Reverse comparison

Rev 4 → Rev 5

/trunk/or1ksim/cache/icache_model.h
0,0 → 1,22
/* icache_model.h -- instruction cache header file
Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
This file is part of OpenRISC 1000 Architectural Simulator.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
 
/* more or less useless at the moment */
void icache_update(unsigned long addr, int taken);
/trunk/or1ksim/cache/dcache_model.c
0,0 → 1,166
/* dcache_model.c -- data cache simulation
Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
This file is part of OpenRISC 1000 Architectural Simulator.
 
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
 
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
 
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
 
/* Cache functions.
At the moment this functions only simulate functionality of data
caches and do not influence on fetche/decode/execute stages and timings.
They are here only to verify performance of various cache configurations.
*/
 
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdarg.h>
 
#include "dcache_model.h"
#include "abstract.h"
#include "stats.h"
 
/* Data cache */
 
/* Number of DC sets (power of 2) */
#define DC_SETS 256
 
/* Block size in bytes (1, 2, 4, 8, 16, 32 etc.) */
#define DC_BLOCK_SIZE 4
 
/* Number of DC ways (1, 2, 3 etc.). */
#define DC_WAYS 1
 
/* Number of usage states (2, 3, 4 etc.). */
#define DC_USTATES 2
 
struct dc_set {
struct {
unsigned long tagaddr; /* tag address */
int lru; /* least recently used */
} way[DC_WAYS];
} dc[DC_SETS];
 
void dc_info()
{
printf("Data cache %dKB: ", DC_SETS * DC_BLOCK_SIZE * DC_WAYS / 1024);
printf("%d ways, %d sets, block size %d bytes\n", DC_WAYS, DC_SETS, DC_BLOCK_SIZE);
}
 
/* First check if data is already in the cache and if it is:
- increment DC read hit stats,
- set 'lru' at this way to DC_USTATES - 1 and
decrement 'lru' of other ways unless they have reached 0,
and if not:
- increment DC read miss stats
- find lru way and entry and replace old tag with tag of the 'dataaddr'
- set 'lru' with DC_USTATES - 1 and decrement 'lru' of other
ways unless they have reached 0
*/
 
void dc_simulate_read(unsigned long dataaddr)
{
int set, way = -1;
int i;
unsigned long tagaddr;
/* Which set to check out? */
set = (dataaddr / DC_BLOCK_SIZE) % DC_SETS;
tagaddr = (dataaddr / DC_BLOCK_SIZE) / DC_SETS;
/* Scan all ways and try to find a matching way. */
for (i = 0; i < DC_WAYS; i++)
if (dc[set].way[i].tagaddr == tagaddr)
way = i;
/* Did we find our cached data? */
if (way >= 0) { /* Yes, we did. */
dc_stats.readhit++;
for (i = 0; i < DC_WAYS; i++)
if (dc[set].way[i].lru)
dc[set].way[i].lru--;
dc[set].way[way].lru = DC_USTATES - 1;
}
else { /* No, we didn't. */
int minlru = DC_USTATES - 1;
int minway = 0;
dc_stats.readmiss++;
for (i = 0; i < DC_WAYS; i++)
if (dc[set].way[i].lru < minlru)
minway = i;
dc[set].way[minway].tagaddr = tagaddr;
for (i = 0; i < DC_WAYS; i++)
if (dc[set].way[i].lru)
dc[set].way[i].lru--;
dc[set].way[minway].lru = DC_USTATES - 1;
}
}
 
/* First check if data is already in the cache and if it is:
- increment DC write hit stats,
- set 'lru' at this way to DC_USTATES - 1 and
decrement 'lru' of other ways unless they have reached 0,
and if not:
- increment DC write miss stats
- find lru way and entry and replace old tag with tag of the 'dataaddr'
- set 'lru' with DC_USTATES - 1 and decrement 'lru' of other
ways unless they have reached 0
*/
 
void dc_simulate_write(unsigned long dataaddr)
{
int set, way = -1;
int i;
unsigned long tagaddr;
/* Which set to check out? */
set = (dataaddr / DC_BLOCK_SIZE) % DC_SETS;
tagaddr = (dataaddr / DC_BLOCK_SIZE) / DC_SETS;
/* Scan all ways and try to find a matching way. */
for (i = 0; i < DC_WAYS; i++)
if (dc[set].way[i].tagaddr == tagaddr)
way = i;
/* Did we find our cached data? */
if (way >= 0) { /* Yes, we did. */
dc_stats.writehit++;
for (i = 0; i < DC_WAYS; i++)
if (dc[set].way[i].lru)
dc[set].way[i].lru--;
dc[set].way[way].lru = DC_USTATES - 1;
}
else { /* No, we didn't. */
int minlru = DC_USTATES - 1;
int minway = 0;
dc_stats.writemiss++;
for (i = 0; i < DC_WAYS; i++)
if (dc[set].way[i].lru < minlru)
minway = i;
dc[set].way[minway].tagaddr = tagaddr;
for (i = 0; i < DC_WAYS; i++)
if (dc[set].way[i].lru)
dc[set].way[i].lru--;
dc[set].way[minway].lru = DC_USTATES - 1;
}
}
/trunk/or1ksim/cache/icache_model.c
0,0 → 1,113
/* icache_model.c -- instruction cache simulation
Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
This file is part of OpenRISC 1000 Architectural Simulator.
 
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
 
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
 
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
 
/* Cache functions.
At the moment this functions only simulate functionality of instruction
caches and do not influence on fetche/decode/execute stages and timings.
They are here only to verify performance of various cache configurations.
*/
 
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdarg.h>
 
#include "icache_model.h"
#include "abstract.h"
#include "stats.h"
 
/* Instruction cache */
 
/* Number of IC sets (power of 2) */
#define IC_SETS 256
 
/* Block size in bytes (1, 2, 4, 8, 16, 32 etc.) */
#define IC_BLOCK_SIZE 4
 
/* Number of IC ways (1, 2, 3 etc.). */
#define IC_WAYS 1
 
/* Number of usage states (2, 3, 4 etc.). */
#define IC_USTATES 2
 
struct ic_set {
struct {
unsigned long tagaddr; /* tag address */
int lru; /* least recently used */
} way[IC_WAYS];
} ic[IC_SETS];
 
void ic_info()
{
printf("Instruction cache %dKB: ", IC_SETS * IC_BLOCK_SIZE * IC_WAYS / 1024);
printf("%d ways, %d sets, block size %d bytes\n", IC_WAYS, IC_SETS, IC_BLOCK_SIZE);
}
/* First check if instruction is already in the cache and if it is:
- increment IC read hit stats,
- set 'lru' at this way to IC_USTATES - 1 and
decrement 'lru' of other ways unless they have reached 0,
and if not:
- increment IC read miss stats
- find lru way and entry and replace old tag with tag of the 'fetchaddr'
- set 'lru' with IC_USTATES - 1 and decrement 'lru' of other
ways unless they have reached 0
*/
 
void ic_simulate(unsigned long fetchaddr)
{
int set, way = -1;
int i;
unsigned long tagaddr;
/* Which set to check out? */
set = (fetchaddr / IC_BLOCK_SIZE) % IC_SETS;
tagaddr = (fetchaddr / IC_BLOCK_SIZE) / IC_SETS;
/* Scan all ways and try to find a matching way. */
for (i = 0; i < IC_WAYS; i++)
if (ic[set].way[i].tagaddr == tagaddr)
way = i;
/* Did we find our cached instruction? */
if (way >= 0) { /* Yes, we did. */
ic_stats.readhit++;
for (i = 0; i < IC_WAYS; i++)
if (ic[set].way[i].lru)
ic[set].way[i].lru--;
ic[set].way[way].lru = IC_USTATES - 1;
}
else { /* No, we didn't. */
int minlru = IC_USTATES - 1;
int minway = 0;
ic_stats.readmiss++;
for (i = 0; i < IC_WAYS; i++)
if (ic[set].way[i].lru < minlru)
minway = i;
ic[set].way[minway].tagaddr = tagaddr;
for (i = 0; i < IC_WAYS; i++)
if (ic[set].way[i].lru)
ic[set].way[i].lru--;
ic[set].way[minway].lru = IC_USTATES - 1;
}
}
/trunk/or1ksim/cache/dcache_model.h
0,0 → 1,22
/* dcache_model.h -- data cache header file
Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
This file is part of OpenRISC 1000 Architectural Simulator.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
 
/* more or less useless at the moment */
void dcache_update(unsigned long addr, int taken);

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.