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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-6.8/] [sim/] [common/] [cgen-par.h] - Diff between revs 827 and 840

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

Rev 827 Rev 840
/* Simulator header for cgen parallel support.
/* Simulator header for cgen parallel support.
   Copyright (C) 1999, 2000, 2007, 2008 Free Software Foundation, Inc.
   Copyright (C) 1999, 2000, 2007, 2008 Free Software Foundation, Inc.
   Contributed by Cygnus Solutions.
   Contributed by Cygnus Solutions.
 
 
This file is part of the GNU instruction set simulator.
This file is part of the GNU instruction set 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 3 of the License, or
the Free Software Foundation; either version 3 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, see <http://www.gnu.org/licenses/>.  */
along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
#ifndef CGEN_PAR_H
#ifndef CGEN_PAR_H
#define CGEN_PAR_H
#define CGEN_PAR_H
 
 
/* Kinds of writes stored on the write queue.  */
/* Kinds of writes stored on the write queue.  */
enum cgen_write_queue_kind {
enum cgen_write_queue_kind {
  CGEN_BI_WRITE, CGEN_QI_WRITE, CGEN_SI_WRITE, CGEN_SF_WRITE,
  CGEN_BI_WRITE, CGEN_QI_WRITE, CGEN_SI_WRITE, CGEN_SF_WRITE,
  CGEN_PC_WRITE,
  CGEN_PC_WRITE,
  CGEN_FN_HI_WRITE, CGEN_FN_SI_WRITE, CGEN_FN_SF_WRITE,
  CGEN_FN_HI_WRITE, CGEN_FN_SI_WRITE, CGEN_FN_SF_WRITE,
  CGEN_FN_DI_WRITE, CGEN_FN_DF_WRITE,
  CGEN_FN_DI_WRITE, CGEN_FN_DF_WRITE,
  CGEN_FN_XI_WRITE, CGEN_FN_PC_WRITE,
  CGEN_FN_XI_WRITE, CGEN_FN_PC_WRITE,
  CGEN_MEM_QI_WRITE, CGEN_MEM_HI_WRITE, CGEN_MEM_SI_WRITE, CGEN_MEM_DI_WRITE,
  CGEN_MEM_QI_WRITE, CGEN_MEM_HI_WRITE, CGEN_MEM_SI_WRITE, CGEN_MEM_DI_WRITE,
  CGEN_MEM_DF_WRITE, CGEN_MEM_XI_WRITE,
  CGEN_MEM_DF_WRITE, CGEN_MEM_XI_WRITE,
  CGEN_FN_MEM_QI_WRITE, CGEN_FN_MEM_HI_WRITE, CGEN_FN_MEM_SI_WRITE,
  CGEN_FN_MEM_QI_WRITE, CGEN_FN_MEM_HI_WRITE, CGEN_FN_MEM_SI_WRITE,
  CGEN_FN_MEM_DI_WRITE, CGEN_FN_MEM_DF_WRITE, CGEN_FN_MEM_XI_WRITE,
  CGEN_FN_MEM_DI_WRITE, CGEN_FN_MEM_DF_WRITE, CGEN_FN_MEM_XI_WRITE,
  CGEN_NUM_WRITE_KINDS
  CGEN_NUM_WRITE_KINDS
};
};
 
 
/* Element of the write queue.  */
/* Element of the write queue.  */
typedef struct {
typedef struct {
  enum cgen_write_queue_kind kind; /* Used to select union member below.  */
  enum cgen_write_queue_kind kind; /* Used to select union member below.  */
  IADDR insn_address;       /* Address of the insn performing the write.  */
  IADDR insn_address;       /* Address of the insn performing the write.  */
  unsigned32 flags;         /* Target specific flags.  */
  unsigned32 flags;         /* Target specific flags.  */
  long       word1;         /* Target specific field.  */
  long       word1;         /* Target specific field.  */
  union {
  union {
    struct {
    struct {
      BI  *target;
      BI  *target;
      BI   value;
      BI   value;
    } bi_write;
    } bi_write;
    struct {
    struct {
      UQI *target;
      UQI *target;
      QI   value;
      QI   value;
    } qi_write;
    } qi_write;
    struct {
    struct {
      SI *target;
      SI *target;
      SI  value;
      SI  value;
    } si_write;
    } si_write;
    struct {
    struct {
      SI *target;
      SI *target;
      SF  value;
      SF  value;
    } sf_write;
    } sf_write;
    struct {
    struct {
      USI value;
      USI value;
    } pc_write;
    } pc_write;
    struct {
    struct {
      UINT regno;
      UINT regno;
      UHI   value;
      UHI   value;
      void (*function)(SIM_CPU *, UINT, UHI);
      void (*function)(SIM_CPU *, UINT, UHI);
    } fn_hi_write;
    } fn_hi_write;
    struct {
    struct {
      UINT regno;
      UINT regno;
      SI   value;
      SI   value;
      void (*function)(SIM_CPU *, UINT, USI);
      void (*function)(SIM_CPU *, UINT, USI);
    } fn_si_write;
    } fn_si_write;
    struct {
    struct {
      UINT regno;
      UINT regno;
      SF   value;
      SF   value;
      void (*function)(SIM_CPU *, UINT, SF);
      void (*function)(SIM_CPU *, UINT, SF);
    } fn_sf_write;
    } fn_sf_write;
    struct {
    struct {
      UINT regno;
      UINT regno;
      DI   value;
      DI   value;
      void (*function)(SIM_CPU *, UINT, DI);
      void (*function)(SIM_CPU *, UINT, DI);
    } fn_di_write;
    } fn_di_write;
    struct {
    struct {
      UINT regno;
      UINT regno;
      DF   value;
      DF   value;
      void (*function)(SIM_CPU *, UINT, DF);
      void (*function)(SIM_CPU *, UINT, DF);
    } fn_df_write;
    } fn_df_write;
    struct {
    struct {
      UINT regno;
      UINT regno;
      SI   value[4];
      SI   value[4];
      void (*function)(SIM_CPU *, UINT, SI *);
      void (*function)(SIM_CPU *, UINT, SI *);
    } fn_xi_write;
    } fn_xi_write;
    struct {
    struct {
      USI  value;
      USI  value;
      void (*function)(SIM_CPU *, USI);
      void (*function)(SIM_CPU *, USI);
    } fn_pc_write;
    } fn_pc_write;
    struct {
    struct {
      SI   address;
      SI   address;
      QI   value;
      QI   value;
    } mem_qi_write;
    } mem_qi_write;
    struct {
    struct {
      SI   address;
      SI   address;
      HI   value;
      HI   value;
    } mem_hi_write;
    } mem_hi_write;
    struct {
    struct {
      SI   address;
      SI   address;
      SI   value;
      SI   value;
    } mem_si_write;
    } mem_si_write;
    struct {
    struct {
      SI   address;
      SI   address;
      DI   value;
      DI   value;
    } mem_di_write;
    } mem_di_write;
    struct {
    struct {
      SI   address;
      SI   address;
      DF   value;
      DF   value;
    } mem_df_write;
    } mem_df_write;
    struct {
    struct {
      SI   address;
      SI   address;
      SI   value[4];
      SI   value[4];
    } mem_xi_write;
    } mem_xi_write;
    struct {
    struct {
      SI   address;
      SI   address;
      QI   value;
      QI   value;
      void (*function)(SIM_CPU *, IADDR, SI, QI);
      void (*function)(SIM_CPU *, IADDR, SI, QI);
    } fn_mem_qi_write;
    } fn_mem_qi_write;
    struct {
    struct {
      SI   address;
      SI   address;
      HI   value;
      HI   value;
      void (*function)(SIM_CPU *, IADDR, SI, HI);
      void (*function)(SIM_CPU *, IADDR, SI, HI);
    } fn_mem_hi_write;
    } fn_mem_hi_write;
    struct {
    struct {
      SI   address;
      SI   address;
      SI   value;
      SI   value;
      void (*function)(SIM_CPU *, IADDR, SI, SI);
      void (*function)(SIM_CPU *, IADDR, SI, SI);
    } fn_mem_si_write;
    } fn_mem_si_write;
    struct {
    struct {
      SI   address;
      SI   address;
      DI   value;
      DI   value;
      void (*function)(SIM_CPU *, IADDR, SI, DI);
      void (*function)(SIM_CPU *, IADDR, SI, DI);
    } fn_mem_di_write;
    } fn_mem_di_write;
    struct {
    struct {
      SI   address;
      SI   address;
      DF   value;
      DF   value;
      void (*function)(SIM_CPU *, IADDR, SI, DF);
      void (*function)(SIM_CPU *, IADDR, SI, DF);
    } fn_mem_df_write;
    } fn_mem_df_write;
    struct {
    struct {
      SI   address;
      SI   address;
      SI   value[4];
      SI   value[4];
      void (*function)(SIM_CPU *, IADDR, SI, SI *);
      void (*function)(SIM_CPU *, IADDR, SI, SI *);
    } fn_mem_xi_write;
    } fn_mem_xi_write;
  } kinds;
  } kinds;
} CGEN_WRITE_QUEUE_ELEMENT;
} CGEN_WRITE_QUEUE_ELEMENT;
 
 
#define CGEN_WRITE_QUEUE_ELEMENT_KIND(element) ((element)->kind)
#define CGEN_WRITE_QUEUE_ELEMENT_KIND(element) ((element)->kind)
#define CGEN_WRITE_QUEUE_ELEMENT_IADDR(element) ((element)->insn_address)
#define CGEN_WRITE_QUEUE_ELEMENT_IADDR(element) ((element)->insn_address)
#define CGEN_WRITE_QUEUE_ELEMENT_FLAGS(element) ((element)->flags)
#define CGEN_WRITE_QUEUE_ELEMENT_FLAGS(element) ((element)->flags)
#define CGEN_WRITE_QUEUE_ELEMENT_WORD1(element) ((element)->word1)
#define CGEN_WRITE_QUEUE_ELEMENT_WORD1(element) ((element)->word1)
 
 
extern void cgen_write_queue_element_execute (
extern void cgen_write_queue_element_execute (
  SIM_CPU *, CGEN_WRITE_QUEUE_ELEMENT *
  SIM_CPU *, CGEN_WRITE_QUEUE_ELEMENT *
);
);
 
 
/* Instance of the queue for parallel write-after support.  */
/* Instance of the queue for parallel write-after support.  */
/* FIXME: Should be dynamic?  */
/* FIXME: Should be dynamic?  */
#define CGEN_WRITE_QUEUE_SIZE (64 * 4) /* 64 writes x 4 insns -- for now.  */
#define CGEN_WRITE_QUEUE_SIZE (64 * 4) /* 64 writes x 4 insns -- for now.  */
 
 
typedef struct {
typedef struct {
  int index;
  int index;
  CGEN_WRITE_QUEUE_ELEMENT q[CGEN_WRITE_QUEUE_SIZE];
  CGEN_WRITE_QUEUE_ELEMENT q[CGEN_WRITE_QUEUE_SIZE];
} CGEN_WRITE_QUEUE;
} CGEN_WRITE_QUEUE;
 
 
#define CGEN_WRITE_QUEUE_CLEAR(queue)       ((queue)->index = 0)
#define CGEN_WRITE_QUEUE_CLEAR(queue)       ((queue)->index = 0)
#define CGEN_WRITE_QUEUE_INDEX(queue)       ((queue)->index)
#define CGEN_WRITE_QUEUE_INDEX(queue)       ((queue)->index)
#define CGEN_WRITE_QUEUE_ELEMENT(queue, ix) (&(queue)->q[(ix)])
#define CGEN_WRITE_QUEUE_ELEMENT(queue, ix) (&(queue)->q[(ix)])
 
 
#define CGEN_WRITE_QUEUE_NEXT(queue) (   \
#define CGEN_WRITE_QUEUE_NEXT(queue) (   \
  (queue)->index < CGEN_WRITE_QUEUE_SIZE \
  (queue)->index < CGEN_WRITE_QUEUE_SIZE \
    ? &(queue)->q[(queue)->index++]      \
    ? &(queue)->q[(queue)->index++]      \
    : cgen_write_queue_overflow (queue)  \
    : cgen_write_queue_overflow (queue)  \
)
)
 
 
extern CGEN_WRITE_QUEUE_ELEMENT *cgen_write_queue_overflow (CGEN_WRITE_QUEUE *);
extern CGEN_WRITE_QUEUE_ELEMENT *cgen_write_queue_overflow (CGEN_WRITE_QUEUE *);
 
 
/* Functions for queuing writes.  Used by semantic code.  */
/* Functions for queuing writes.  Used by semantic code.  */
extern void sim_queue_bi_write (SIM_CPU *, BI *, BI);
extern void sim_queue_bi_write (SIM_CPU *, BI *, BI);
extern void sim_queue_qi_write (SIM_CPU *, UQI *, UQI);
extern void sim_queue_qi_write (SIM_CPU *, UQI *, UQI);
extern void sim_queue_si_write (SIM_CPU *, SI *, SI);
extern void sim_queue_si_write (SIM_CPU *, SI *, SI);
extern void sim_queue_sf_write (SIM_CPU *, SI *, SF);
extern void sim_queue_sf_write (SIM_CPU *, SI *, SF);
 
 
extern void sim_queue_pc_write (SIM_CPU *, USI);
extern void sim_queue_pc_write (SIM_CPU *, USI);
 
 
extern void sim_queue_fn_hi_write (SIM_CPU *, void (*)(SIM_CPU *, UINT, UHI), UINT, UHI);
extern void sim_queue_fn_hi_write (SIM_CPU *, void (*)(SIM_CPU *, UINT, UHI), UINT, UHI);
extern void sim_queue_fn_si_write (SIM_CPU *, void (*)(SIM_CPU *, UINT, USI), UINT, USI);
extern void sim_queue_fn_si_write (SIM_CPU *, void (*)(SIM_CPU *, UINT, USI), UINT, USI);
extern void sim_queue_fn_sf_write (SIM_CPU *, void (*)(SIM_CPU *, UINT, SF), UINT, SF);
extern void sim_queue_fn_sf_write (SIM_CPU *, void (*)(SIM_CPU *, UINT, SF), UINT, SF);
extern void sim_queue_fn_di_write (SIM_CPU *, void (*)(SIM_CPU *, UINT, DI), UINT, DI);
extern void sim_queue_fn_di_write (SIM_CPU *, void (*)(SIM_CPU *, UINT, DI), UINT, DI);
extern void sim_queue_fn_df_write (SIM_CPU *, void (*)(SIM_CPU *, UINT, DF), UINT, DF);
extern void sim_queue_fn_df_write (SIM_CPU *, void (*)(SIM_CPU *, UINT, DF), UINT, DF);
extern void sim_queue_fn_xi_write (SIM_CPU *, void (*)(SIM_CPU *, UINT, SI *), UINT, SI *);
extern void sim_queue_fn_xi_write (SIM_CPU *, void (*)(SIM_CPU *, UINT, SI *), UINT, SI *);
extern void sim_queue_fn_pc_write (SIM_CPU *, void (*)(SIM_CPU *, USI), USI);
extern void sim_queue_fn_pc_write (SIM_CPU *, void (*)(SIM_CPU *, USI), USI);
 
 
extern void sim_queue_mem_qi_write (SIM_CPU *, SI, QI);
extern void sim_queue_mem_qi_write (SIM_CPU *, SI, QI);
extern void sim_queue_mem_hi_write (SIM_CPU *, SI, HI);
extern void sim_queue_mem_hi_write (SIM_CPU *, SI, HI);
extern void sim_queue_mem_si_write (SIM_CPU *, SI, SI);
extern void sim_queue_mem_si_write (SIM_CPU *, SI, SI);
extern void sim_queue_mem_di_write (SIM_CPU *, SI, DI);
extern void sim_queue_mem_di_write (SIM_CPU *, SI, DI);
extern void sim_queue_mem_df_write (SIM_CPU *, SI, DF);
extern void sim_queue_mem_df_write (SIM_CPU *, SI, DF);
extern void sim_queue_mem_xi_write (SIM_CPU *, SI, SI *);
extern void sim_queue_mem_xi_write (SIM_CPU *, SI, SI *);
 
 
extern void sim_queue_fn_mem_qi_write (SIM_CPU *, void (*)(SIM_CPU *, IADDR, SI, QI), SI, QI);
extern void sim_queue_fn_mem_qi_write (SIM_CPU *, void (*)(SIM_CPU *, IADDR, SI, QI), SI, QI);
extern void sim_queue_fn_mem_hi_write (SIM_CPU *, void (*)(SIM_CPU *, IADDR, SI, HI), SI, HI);
extern void sim_queue_fn_mem_hi_write (SIM_CPU *, void (*)(SIM_CPU *, IADDR, SI, HI), SI, HI);
extern void sim_queue_fn_mem_si_write (SIM_CPU *, void (*)(SIM_CPU *, IADDR, SI, SI), SI, SI);
extern void sim_queue_fn_mem_si_write (SIM_CPU *, void (*)(SIM_CPU *, IADDR, SI, SI), SI, SI);
extern void sim_queue_fn_mem_di_write (SIM_CPU *, void (*)(SIM_CPU *, IADDR, SI, DI), SI, DI);
extern void sim_queue_fn_mem_di_write (SIM_CPU *, void (*)(SIM_CPU *, IADDR, SI, DI), SI, DI);
extern void sim_queue_fn_mem_df_write (SIM_CPU *, void (*)(SIM_CPU *, IADDR, SI, DF), SI, DF);
extern void sim_queue_fn_mem_df_write (SIM_CPU *, void (*)(SIM_CPU *, IADDR, SI, DF), SI, DF);
extern void sim_queue_fn_mem_xi_write (SIM_CPU *, void (*)(SIM_CPU *, IADDR, SI, SI *), SI, SI *);
extern void sim_queue_fn_mem_xi_write (SIM_CPU *, void (*)(SIM_CPU *, IADDR, SI, SI *), SI, SI *);
 
 
#endif /* CGEN_PAR_H */
#endif /* CGEN_PAR_H */
 
 

powered by: WebSVN 2.1.0

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