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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [orpsocv2/] [bench/] [sysc/] [include/] [MemoryLoad.h] - Diff between revs 51 and 52

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

Rev 51 Rev 52
/* MemoryLoad.h -- Header file for parse.c
/* MemoryLoad.h -- Header file for parse.c
 
 
   Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
   Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
   Copyright (C) 2008 Embecosm Limited
   Copyright (C) 2008 Embecosm Limited
   Copyright (C) 2009 Julius Baxter, julius@orsoc.se
   Copyright (C) 2009 Julius Baxter, julius@orsoc.se
 
 
   Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
   Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
 
 
   This file is part of Or1ksim, the OpenRISC 1000 Architectural Simulator.
   This file is part of Or1ksim, the OpenRISC 1000 Architectural Simulator.
 
 
   This program is free software; you can redistribute it and/or modify it
   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
   under the terms of the GNU General Public License as published by the Free
   Software Foundation; either version 3 of the License, or (at your option)
   Software Foundation; either version 3 of the License, or (at your option)
   any later version.
   any later version.
 
 
   This program is distributed in the hope that it will be useful, but WITHOUT
   This program is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   more details.
   more details.
 
 
   You should have received a copy of the GNU General Public License along
   You should have received a copy of the GNU General Public License along
   with this program.  If not, see <http://www.gnu.org/licenses/>.  */
   with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
/* Here we define some often used caharcters in assembly files.  This wil
/* Here we define some often used caharcters in assembly files.  This wil
   probably go into architecture dependent directory. */
   probably go into architecture dependent directory. */
 
 
 
 
#ifndef MEMORYLOAD__H
#ifndef MEMORYLOAD__H
#define MEMORYLOAD__H
#define MEMORYLOAD__H
 
 
/* Package includes */
/* Package includes */
//#include "sim-config.h"
//#include "sim-config.h"
#include <stdint.h>
#include <stdint.h>
 
 
#include "coff.h"
#include "coff.h"
#include "elf.h"
#include "elf.h"
 
 
#include "OrpsocAccess.h"
#include "OrpsocAccess.h"
 
 
//#define PRINTF(x...) fprintf(stdout,x)
//#define PRINTF(x...) fprintf(stdout,x)
#define PRINTF(x...)
#define PRINTF(x...)
 
 
/* Basic types for openrisc */
/* Basic types for openrisc */
typedef uint32_t  oraddr_t;     /*!< Address as addressed by openrisc */
typedef uint32_t  oraddr_t;     /*!< Address as addressed by openrisc */
typedef uint32_t  uorreg_t;     /*!< An unsigned register of openrisc */
typedef uint32_t  uorreg_t;     /*!< An unsigned register of openrisc */
typedef int32_t   orreg_t;      /*!< A signed register of openrisc */
typedef int32_t   orreg_t;      /*!< A signed register of openrisc */
 
 
/* From abstract.h */
/* From abstract.h */
#define DEFAULT_MEMORY_START         0
#define DEFAULT_MEMORY_START         0
#define DEFAULT_MEMORY_LEN    0x800000
//#define DEFAULT_MEMORY_LEN    0x800000
#define STACK_SIZE                  20
#define STACK_SIZE                  20
#define LABELNAME_LEN               50
#define LABELNAME_LEN               50
#define INSNAME_LEN                 15
#define INSNAME_LEN                 15
#define OPERANDNAME_LEN             50
#define OPERANDNAME_LEN             50
#define MAX_OPERANDS                 5
#define MAX_OPERANDS                 5
 
 
#define OP_MEM_ACCESS       0x80000000
#define OP_MEM_ACCESS       0x80000000
 
 
/* Cache tag types.  */
/* Cache tag types.  */
#define CT_NONE                      0
#define CT_NONE                      0
#define CT_VIRTUAL                   1
#define CT_VIRTUAL                   1
#define CT_PHYSICAL                  2
#define CT_PHYSICAL                  2
 
 
/* History of execution */
/* History of execution */
#define HISTEXEC_LEN               200
#define HISTEXEC_LEN               200
 
 
/* Added by MM */
/* Added by MM */
#ifndef LONGEST
#ifndef LONGEST
#define LONGEST long long
#define LONGEST long long
#endif /* LONGEST */
#endif /* LONGEST */
 
 
#ifndef ULONGEST
#ifndef ULONGEST
#define ULONGEST unsigned long long
#define ULONGEST unsigned long long
#endif /* ULONGEST */
#endif /* ULONGEST */
 
 
 
 
 
 
#define PRIx32 "x"
#define PRIx32 "x"
#define PRIx16 "hx"
#define PRIx16 "hx"
#define PRIx8 "hhx"
#define PRIx8 "hhx"
#define PRId32 "d"
#define PRId32 "d"
 
 
/* Strings for printing OpenRISC types */
/* Strings for printing OpenRISC types */
#define PRIxADDR  "08" PRIx32   /*!< print an openrisc address in hex */
#define PRIxADDR  "08" PRIx32   /*!< print an openrisc address in hex */
#define PRIxREG   "08" PRIx32   /*!< print an openrisc register in hex */
#define PRIxREG   "08" PRIx32   /*!< print an openrisc register in hex */
#define PRIdREG   PRId32        /*!< print an openrisc register in decimals */
#define PRIdREG   PRId32        /*!< print an openrisc register in decimals */
 
 
/* Endianness convenience macros */
/* Endianness convenience macros */
#define LE16(x) bswap_16(x)
#define LE16(x) bswap_16(x)
 
 
/*! Instruction queue */
/*! Instruction queue */
struct iqueue_entry
struct iqueue_entry
{
{
  int       insn_index;
  int       insn_index;
  uint32_t  insn;
  uint32_t  insn;
  oraddr_t  insn_addr;
  oraddr_t  insn_addr;
};
};
 
 
/*! Structure for holding one label per particular memory location */
/*! Structure for holding one label per particular memory location */
struct label_entry
struct label_entry
{
{
  char               *name;
  char               *name;
  oraddr_t            addr;
  oraddr_t            addr;
  struct label_entry *next;
  struct label_entry *next;
};
};
 
 
/* from arch sim cpu/or1k/opcode/or32.h */
/* from arch sim cpu/or1k/opcode/or32.h */
#define MAX_GPRS 32
#define MAX_GPRS 32
#define PAGE_SIZE 8192
#define PAGE_SIZE 8192
 
 
 
 
 
 
class MemoryLoad
class MemoryLoad
{
{
 public:
 public:
 
 
  // Constructor
  // Constructor
  MemoryLoad(OrpsocAccess            *_accessor);
  MemoryLoad(OrpsocAccess            *_accessor);
 
 
  // Label access function
  // Label access function
  struct label_entry* get_label (oraddr_t addr);
  struct label_entry* get_label (oraddr_t addr);
 
 
  uint32_t  loadcode (char     *filename,
  uint32_t  loadcode (char     *filename,
                      oraddr_t  startaddr,
                      oraddr_t  startaddr,
                      oraddr_t  virtphy_transl);
                      oraddr_t  virtphy_transl);
 
 
 
 
 private:
 private:
 
 
  //! The accessor for the Orpsoc instance
  //! The accessor for the Orpsoc instance
  OrpsocAccess *accessor;
  OrpsocAccess *accessor;
 
 
#define MEMORY_LEN  0x100000000ULL
#define MEMORY_LEN  0x100000000ULL
 
 
  /*!Whether to do immediate statistics. This seems to be for local debugging
  /*!Whether to do immediate statistics. This seems to be for local debugging
  of parse.c */
  of parse.c */
#define IMM_STATS 0
#define IMM_STATS 0
 
 
  /*!Unused mem memory marker. It is used when allocating program and data
  /*!Unused mem memory marker. It is used when allocating program and data
  memory during parsing */
  memory during parsing */
  unsigned int  freemem;
  unsigned int  freemem;
 
 
   /*!Translation table provided by microkernel. Only used if simulating
   /*!Translation table provided by microkernel. Only used if simulating
   microkernel. */
   microkernel. */
  oraddr_t  transl_table;
  oraddr_t  transl_table;
 
 
  /*!Used to signal whether during loading of programs a translation fault
  /*!Used to signal whether during loading of programs a translation fault
  occured. */
  occured. */
  uint32_t  transl_error;
  uint32_t  transl_error;
 
 
#if IMM_STATS
#if IMM_STATS
  int       bcnt[33][3] = { 0 };
  int       bcnt[33][3] = { 0 };
  int       bsum[3]     = { 0 };
  int       bsum[3]     = { 0 };
  uint32_t  movhi       = 0;
  uint32_t  movhi       = 0;
#endif  /* IMM_STATS */
#endif  /* IMM_STATS */
 
 
  // A large number, for the Linux kernel (~8000 functions)
  // A large number, for the Linux kernel (~8000 functions)
#define LABELS_HASH_SIZE 10000
#define LABELS_HASH_SIZE 10000
  /* Local list of labels (symbols) */
  /* Local list of labels (symbols) */
  struct label_entry *label_hash[LABELS_HASH_SIZE];
  struct label_entry *label_hash[LABELS_HASH_SIZE];
 
 
 
 
  /* Function prototypes for external use */
  /* Function prototypes for external use */
  char     *strstrip (char       *dst,
  char     *strstrip (char       *dst,
                      const char *src,
                      const char *src,
                      int         n);
                      int         n);
 
 
  oraddr_t translate (oraddr_t  laddr,
  oraddr_t translate (oraddr_t  laddr,
                      int      *breakpoint);
                      int      *breakpoint);
 
 
 
 
  int bits (uint32_t val);
  int bits (uint32_t val);
 
 
  void check_insn (uint32_t insn);
  void check_insn (uint32_t insn);
 
 
  void addprogram (oraddr_t  address,
  void addprogram (oraddr_t  address,
                   uint32_t  insn,
                   uint32_t  insn,
                   int      *breakpoint);
                   int      *breakpoint);
 
 
  void readfile_coff (char  *filename,
  void readfile_coff (char  *filename,
                      short  sections);
                      short  sections);
 
 
  void readsyms_coff (char *filename,
  void readsyms_coff (char *filename,
                      uint32_t symptr,
                      uint32_t symptr,
                      uint32_t syms);
                      uint32_t syms);
 
 
  void readfile_elf (char *filename);
  void readfile_elf (char *filename);
 
 
  void identifyfile (char *filename);
  void identifyfile (char *filename);
 
 
  void init_labels ();
  void init_labels ();
 
 
  void add_label (oraddr_t addr, char *name);
  void add_label (oraddr_t addr, char *name);
 
 
  struct label_entry* find_label (char *name);
  struct label_entry* find_label (char *name);
  oraddr_t eval_label (char *name);
  oraddr_t eval_label (char *name);
 
 
 
 
 
 
 
 
};
};
 
 
#endif  /* MEMORYLOAD__H */
#endif  /* MEMORYLOAD__H */
 
 

powered by: WebSVN 2.1.0

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