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

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_47/] [or1ksim/] [cache/] [icache_model.c] - Diff between revs 1419 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 1419 Rev 1765
/* icache_model.c -- instruction cache simulation
/* icache_model.c -- instruction cache simulation
   Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
   Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
 
 
This file is part of OpenRISC 1000 Architectural Simulator.
This file is part of OpenRISC 1000 Architectural Simulator.
 
 
This program is free software; you can redistribute it and/or modify
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
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
(at your option) any later version.
 
 
This program is distributed in the hope that it will be useful,
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public License for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
 
 
/* Cache functions.
/* Cache functions.
   At the moment this functions only simulate functionality of instruction
   At the moment this functions only simulate functionality of instruction
   caches and do not influence on fetche/decode/execute stages and timings.
   caches and do not influence on fetche/decode/execute stages and timings.
   They are here only to verify performance of various cache configurations.
   They are here only to verify performance of various cache configurations.
 */
 */
 
 
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <string.h>
#include <errno.h>
#include <errno.h>
#include <stdarg.h>
#include <stdarg.h>
 
 
#include "config.h"
#include "config.h"
 
 
#ifdef HAVE_INTTYPES_H
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#include <inttypes.h>
#endif
#endif
 
 
#include "port.h"
#include "port.h"
#include "arch.h"
#include "arch.h"
#include "abstract.h"
#include "abstract.h"
#include "icache_model.h"
#include "icache_model.h"
#include "except.h"
#include "except.h"
#include "opcode/or32.h"
#include "opcode/or32.h"
#include "stats.h"
#include "stats.h"
#include "sim-config.h"
#include "sim-config.h"
#include "spr_defs.h"
#include "spr_defs.h"
#include "sprs.h"
#include "sprs.h"
#include "sim-config.h"
#include "sim-config.h"
 
 
extern struct dev_memarea *cur_area;
extern struct dev_memarea *cur_area;
struct ic_set {
struct ic_set {
  struct {
  struct {
    uint32_t line[MAX_IC_BLOCK_SIZE];
    uint32_t line[MAX_IC_BLOCK_SIZE];
    oraddr_t tagaddr;  /* tag address */
    oraddr_t tagaddr;  /* tag address */
    int lru;    /* least recently used */
    int lru;    /* least recently used */
  } way[MAX_IC_WAYS];
  } way[MAX_IC_WAYS];
} ic[MAX_IC_SETS];
} ic[MAX_IC_SETS];
 
 
void ic_info()
void ic_info()
{
{
  if (!testsprbits(SPR_UPR, SPR_UPR_ICP)) {
  if (!testsprbits(SPR_UPR, SPR_UPR_ICP)) {
    PRINTF("ICache not implemented. Set UPR[ICP].\n");
    PRINTF("ICache not implemented. Set UPR[ICP].\n");
    return;
    return;
  }
  }
 
 
  PRINTF("Instruction cache %dKB: ", config.ic.nsets * config.ic.blocksize * config.ic.nways / 1024);
  PRINTF("Instruction cache %dKB: ", config.ic.nsets * config.ic.blocksize * config.ic.nways / 1024);
  PRINTF("%d ways, %d sets, block size %d bytes\n", config.ic.nways, config.ic.nsets, config.ic.blocksize);
  PRINTF("%d ways, %d sets, block size %d bytes\n", config.ic.nways, config.ic.nsets, config.ic.blocksize);
}
}
 
 
/* First check if instruction is already in the cache and if it is:
/* First check if instruction is already in the cache and if it is:
    - increment IC read hit stats,
    - increment IC read hit stats,
    - set 'lru' at this way to config.ic.ustates - 1 and
    - set 'lru' at this way to config.ic.ustates - 1 and
      decrement 'lru' of other ways unless they have reached 0,
      decrement 'lru' of other ways unless they have reached 0,
    - read insn from the cache line
    - read insn from the cache line
   and if not:
   and if not:
    - increment IC read miss stats
    - increment IC read miss stats
    - find lru way and entry and replace old tag with tag of the 'fetchaddr'
    - find lru way and entry and replace old tag with tag of the 'fetchaddr'
    - set 'lru' with config.ic.ustates - 1 and decrement 'lru' of other
    - set 'lru' with config.ic.ustates - 1 and decrement 'lru' of other
      ways unless they have reached 0
      ways unless they have reached 0
    - refill cache line
    - refill cache line
*/
*/
 
 
uint32_t ic_simulate_fetch(oraddr_t fetchaddr)
uint32_t ic_simulate_fetch(oraddr_t fetchaddr)
{
{
  int set, way = -1;
  int set, way = -1;
  int i;
  int i;
  oraddr_t tagaddr;
  oraddr_t tagaddr;
  uint32_t tmp;
  uint32_t tmp;
 
 
  /* ICache simulation enabled/disabled. */
  /* ICache simulation enabled/disabled. */
  if ((!testsprbits(SPR_UPR, SPR_UPR_ICP)) || (!testsprbits(SPR_SR, SPR_SR_ICE)) || insn_ci) {
  if ((!testsprbits(SPR_UPR, SPR_UPR_ICP)) || (!testsprbits(SPR_SR, SPR_SR_ICE)) || insn_ci) {
    tmp = evalsim_mem32(fetchaddr);
    tmp = evalsim_mem32(fetchaddr);
    if(!cur_area) {
    if(!cur_area) {
      printf("EXCEPTION: read out of memory (32-bit access to %"PRIxADDR")\n",
      printf("EXCEPTION: read out of memory (32-bit access to %"PRIxADDR")\n",
             fetchaddr);
             fetchaddr);
      except_handle(EXCEPT_BUSERR, cur_vadd);
      except_handle(EXCEPT_BUSERR, cur_vadd);
      return 0;
      return 0;
    } else if (cur_area->log)
    } else if (cur_area->log)
      fprintf (cur_area->log, "[%"PRIxADDR"] -> read %08"PRIx32"\n", fetchaddr,
      fprintf (cur_area->log, "[%"PRIxADDR"] -> read %08"PRIx32"\n", fetchaddr,
               tmp);
               tmp);
    return tmp;
    return tmp;
  }
  }
 
 
  /* Which set to check out? */
  /* Which set to check out? */
  set = (fetchaddr / config.ic.blocksize) % config.ic.nsets;
  set = (fetchaddr / config.ic.blocksize) % config.ic.nsets;
  tagaddr = (fetchaddr / config.ic.blocksize) / config.ic.nsets;
  tagaddr = (fetchaddr / config.ic.blocksize) / config.ic.nsets;
 
 
  /* Scan all ways and try to find a matching way. */
  /* Scan all ways and try to find a matching way. */
  for (i = 0; i < config.ic.nways; i++)
  for (i = 0; i < config.ic.nways; i++)
    if (ic[set].way[i].tagaddr == tagaddr)
    if (ic[set].way[i].tagaddr == tagaddr)
      way = i;
      way = i;
 
 
  /* Did we find our cached instruction? */
  /* Did we find our cached instruction? */
  if (way >= 0) { /* Yes, we did. */
  if (way >= 0) { /* Yes, we did. */
    ic_stats.readhit++;
    ic_stats.readhit++;
 
 
    for (i = 0; i < config.ic.nways; i++)
    for (i = 0; i < config.ic.nways; i++)
      if (ic[set].way[i].lru > ic[set].way[way].lru)
      if (ic[set].way[i].lru > ic[set].way[way].lru)
        ic[set].way[i].lru--;
        ic[set].way[i].lru--;
    ic[set].way[way].lru = config.ic.ustates - 1;
    ic[set].way[way].lru = config.ic.ustates - 1;
    runtime.sim.mem_cycles += config.ic.hitdelay;
    runtime.sim.mem_cycles += config.ic.hitdelay;
    return (ic[set].way[way].line[(fetchaddr & (config.ic.blocksize - 1)) >> 2]);
    return (ic[set].way[way].line[(fetchaddr & (config.ic.blocksize - 1)) >> 2]);
  }
  }
  else {  /* No, we didn't. */
  else {  /* No, we didn't. */
    int minlru = config.ic.ustates - 1;
    int minlru = config.ic.ustates - 1;
    int minway = 0;
    int minway = 0;
 
 
    ic_stats.readmiss++;
    ic_stats.readmiss++;
 
 
    for (i = 0; i < config.ic.nways; i++) {
    for (i = 0; i < config.ic.nways; i++) {
      if (ic[set].way[i].lru < minlru) {
      if (ic[set].way[i].lru < minlru) {
        minway = i;
        minway = i;
        minlru = ic[set].way[i].lru;
        minlru = ic[set].way[i].lru;
      }
      }
    }
    }
 
 
    for (i = 0; i < (config.ic.blocksize); i += 4) {
    for (i = 0; i < (config.ic.blocksize); i += 4) {
      tmp = ic[set].way[minway].line[((fetchaddr + i) & (config.ic.blocksize - 1)) >> 2] =
      tmp = ic[set].way[minway].line[((fetchaddr + i) & (config.ic.blocksize - 1)) >> 2] =
        evalsim_mem32((fetchaddr & ~(config.ic.blocksize - 1)) + ((fetchaddr + i) & (config.ic.blocksize - 1)));
        evalsim_mem32((fetchaddr & ~(config.ic.blocksize - 1)) + ((fetchaddr + i) & (config.ic.blocksize - 1)));
      if(!cur_area) {
      if(!cur_area) {
        ic[set].way[minway].tagaddr = -1;
        ic[set].way[minway].tagaddr = -1;
        ic[set].way[minway].lru = 0;
        ic[set].way[minway].lru = 0;
        printf("EXCEPTION: read out of memory (32-bit access to %"PRIxADDR")\n",
        printf("EXCEPTION: read out of memory (32-bit access to %"PRIxADDR")\n",
               fetchaddr);
               fetchaddr);
        except_handle(EXCEPT_BUSERR, cur_vadd);
        except_handle(EXCEPT_BUSERR, cur_vadd);
        return 0;
        return 0;
      } else if (cur_area->log)
      } else if (cur_area->log)
        fprintf (cur_area->log, "[%"PRIxADDR"] -> read %08"PRIx32"\n",
        fprintf (cur_area->log, "[%"PRIxADDR"] -> read %08"PRIx32"\n",
                 fetchaddr, tmp);
                 fetchaddr, tmp);
    }
    }
 
 
    ic[set].way[minway].tagaddr = tagaddr;
    ic[set].way[minway].tagaddr = tagaddr;
    for (i = 0; i < config.ic.nways; i++)
    for (i = 0; i < config.ic.nways; i++)
      if (ic[set].way[i].lru)
      if (ic[set].way[i].lru)
        ic[set].way[i].lru--;
        ic[set].way[i].lru--;
    ic[set].way[minway].lru = config.ic.ustates - 1;
    ic[set].way[minway].lru = config.ic.ustates - 1;
    runtime.sim.mem_cycles += config.ic.missdelay;
    runtime.sim.mem_cycles += config.ic.missdelay;
    return (ic[set].way[minway].line[(fetchaddr & (config.ic.blocksize - 1)) >> 2]);
    return (ic[set].way[minway].line[(fetchaddr & (config.ic.blocksize - 1)) >> 2]);
  }
  }
}
}
 
 
/* First check if data is already in the cache and if it is:
/* First check if data is already in the cache and if it is:
    - invalidate block if way isn't locked
    - invalidate block if way isn't locked
   otherwise don't do anything.
   otherwise don't do anything.
*/
*/
 
 
void ic_inv(oraddr_t dataaddr)
void ic_inv(oraddr_t dataaddr)
{
{
  int set, way = -1;
  int set, way = -1;
  int i;
  int i;
  oraddr_t tagaddr;
  oraddr_t tagaddr;
 
 
  if (!testsprbits(SPR_UPR, SPR_UPR_ICP))
  if (!testsprbits(SPR_UPR, SPR_UPR_ICP))
    return;
    return;
 
 
  /* Which set to check out? */
  /* Which set to check out? */
  set = (dataaddr / config.ic.blocksize) % config.ic.nsets;
  set = (dataaddr / config.ic.blocksize) % config.ic.nsets;
  tagaddr = (dataaddr / config.ic.blocksize) / config.ic.nsets;
  tagaddr = (dataaddr / config.ic.blocksize) / config.ic.nsets;
 
 
  if (!testsprbits(SPR_SR, SPR_SR_ICE)) {
  if (!testsprbits(SPR_SR, SPR_SR_ICE)) {
    for (i = 0; i < config.ic.nways; i++) {
    for (i = 0; i < config.ic.nways; i++) {
      ic[set].way[i].tagaddr = -1;
      ic[set].way[i].tagaddr = -1;
      ic[set].way[i].lru = 0;
      ic[set].way[i].lru = 0;
    }
    }
    return;
    return;
  }
  }
 
 
  /* Scan all ways and try to find a matching way. */
  /* Scan all ways and try to find a matching way. */
  for (i = 0; i < config.ic.nways; i++)
  for (i = 0; i < config.ic.nways; i++)
    if (ic[set].way[i].tagaddr == tagaddr)
    if (ic[set].way[i].tagaddr == tagaddr)
      way = i;
      way = i;
 
 
  /* Did we find our cached data? */
  /* Did we find our cached data? */
  if (way >= 0) { /* Yes, we did. */
  if (way >= 0) { /* Yes, we did. */
    ic[set].way[way].tagaddr = -1;
    ic[set].way[way].tagaddr = -1;
    ic[set].way[way].lru = 0;
    ic[set].way[way].lru = 0;
  }
  }
}
}
 
 
/*-----------------------------------------------------[ IC configuration ]---*/
/*-----------------------------------------------------[ IC configuration ]---*/
void ic_enabled(union param_val val, void *dat)
void ic_enabled(union param_val val, void *dat)
{
{
  config.ic.enabled = val.int_val;
  config.ic.enabled = val.int_val;
  setsprbits (SPR_UPR, SPR_UPR_ICP, val.int_val ? 1 : 0);
  setsprbits (SPR_UPR, SPR_UPR_ICP, val.int_val ? 1 : 0);
}
}
 
 
void ic_nsets(union param_val val, void *dat)
void ic_nsets(union param_val val, void *dat)
{
{
  if (is_power2(val.int_val) && val.int_val <= MAX_IC_SETS){
  if (is_power2(val.int_val) && val.int_val <= MAX_IC_SETS){
    config.ic.nsets = val.int_val;
    config.ic.nsets = val.int_val;
    setsprbits (SPR_ICCFGR, SPR_ICCFGR_NCS,log2(val.int_val));
    setsprbits (SPR_ICCFGR, SPR_ICCFGR_NCS,log2(val.int_val));
  }
  }
  else {
  else {
    char tmp[200];
    char tmp[200];
    sprintf (tmp, "value of power of two and lower or equal than %i expected.", MAX_IC_SETS);
    sprintf (tmp, "value of power of two and lower or equal than %i expected.", MAX_IC_SETS);
    CONFIG_ERROR(tmp);
    CONFIG_ERROR(tmp);
  }
  }
}
}
 
 
void ic_nways(union param_val val, void *dat)
void ic_nways(union param_val val, void *dat)
{
{
  if (is_power2(val.int_val) && val.int_val <= MAX_IC_WAYS) {
  if (is_power2(val.int_val) && val.int_val <= MAX_IC_WAYS) {
    config.ic.nways = val.int_val;
    config.ic.nways = val.int_val;
    setsprbits (SPR_ICCFGR, SPR_ICCFGR_NCW, log2(val.int_val));
    setsprbits (SPR_ICCFGR, SPR_ICCFGR_NCW, log2(val.int_val));
  }
  }
  else {
  else {
    char tmp[200];
    char tmp[200];
    sprintf (tmp, "value of power of two and lower or equal than %i expected.",
    sprintf (tmp, "value of power of two and lower or equal than %i expected.",
    MAX_IC_WAYS);
    MAX_IC_WAYS);
    CONFIG_ERROR(tmp);
    CONFIG_ERROR(tmp);
  }
  }
}
}
 
 
void ic_blocksize(union param_val val, void *dat)
void ic_blocksize(union param_val val, void *dat)
{
{
  if (is_power2(val.int_val)){
  if (is_power2(val.int_val)){
    config.ic.blocksize = val.int_val;
    config.ic.blocksize = val.int_val;
    setsprbits (SPR_ICCFGR, SPR_ICCFGR_CBS,log2(val.int_val));
    setsprbits (SPR_ICCFGR, SPR_ICCFGR_CBS,log2(val.int_val));
  } else
  } else
    CONFIG_ERROR("value of power of two expected.");
    CONFIG_ERROR("value of power of two expected.");
}
}
 
 
void ic_ustates(union param_val val, void *dat)
void ic_ustates(union param_val val, void *dat)
{
{
  if (val.int_val >= 2 && val.int_val <= 4)
  if (val.int_val >= 2 && val.int_val <= 4)
    config.ic.ustates = val.int_val;
    config.ic.ustates = val.int_val;
  else
  else
    CONFIG_ERROR("invalid USTATE.");
    CONFIG_ERROR("invalid USTATE.");
}
}
 
 
void ic_missdelay(union param_val val, void *dat)
void ic_missdelay(union param_val val, void *dat)
{
{
  config.ic.missdelay = val.int_val;
  config.ic.missdelay = val.int_val;
}
}
 
 
void ic_hitdelay(union param_val val, void *dat)
void ic_hitdelay(union param_val val, void *dat)
{
{
  config.ic.hitdelay = val.int_val;
  config.ic.hitdelay = val.int_val;
}
}
 
 
void reg_ic_sec(void)
void reg_ic_sec(void)
{
{
  struct config_section *sec = reg_config_sec("ic", NULL, NULL);
  struct config_section *sec = reg_config_sec("ic", NULL, NULL);
 
 
  reg_config_param(sec, "enabled", paramt_int, ic_enabled);
  reg_config_param(sec, "enabled", paramt_int, ic_enabled);
  reg_config_param(sec, "nsets", paramt_int, ic_nsets);
  reg_config_param(sec, "nsets", paramt_int, ic_nsets);
  reg_config_param(sec, "nways", paramt_int, ic_nways);
  reg_config_param(sec, "nways", paramt_int, ic_nways);
  reg_config_param(sec, "blocksize", paramt_int, ic_blocksize);
  reg_config_param(sec, "blocksize", paramt_int, ic_blocksize);
  reg_config_param(sec, "ustates", paramt_int, ic_ustates);
  reg_config_param(sec, "ustates", paramt_int, ic_ustates);
  reg_config_param(sec, "missdelay", paramt_int, ic_missdelay);
  reg_config_param(sec, "missdelay", paramt_int, ic_missdelay);
  reg_config_param(sec, "hitdelay", paramt_int, ic_hitdelay);
  reg_config_param(sec, "hitdelay", paramt_int, ic_hitdelay);
}
}
 
 

powered by: WebSVN 2.1.0

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