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

Subversion Repositories or1k

[/] [or1k/] [tags/] [stable_0_2_0_rc2/] [or1ksim/] [cpu/] [or32/] [dyn32_defs.h] - Rev 1549

Go to most recent revision | Compare with Previous | Blame | View Log

/* dyn32_defs.h -- Definitions for the dynamic execution model
   Copyright (C) 2005 György `nog' Jeney, nog@sdf.lonestar.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. */
 
 
struct op_queue {
  unsigned int num_ops;
  unsigned int ops_len;
  unsigned int *ops;
  unsigned int num_ops_param;
  unsigned int ops_param_len;
  unsigned int *ops_param;
  unsigned int jump_local; /* Parameter index that holds the location of the jump */
  oraddr_t jump_local_loc; /* Location to jump to (relative to start of page */
  unsigned int not_jump_loc; /* Location to jump if not jumping (l.bf/l.bnf) */
  int xref; /* Is this location cross referenced? */
  oraddr_t insn_addr; /* Physical address of the instruction */
  unsigned int reg_t[3]; /* Which registers are in the temporaries (before the instruction)? */
  unsigned int reg_t_d[3]; /* Which registers are in the temporaries (after the instruction? */
  struct op_queue *prev;
  struct op_queue *next;
};
 
void gen_l_add PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_addc PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_and PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_bf PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_bnf PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_cmov PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_cust1 PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_cust2 PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_cust3 PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_cust4 PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_div PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_divu PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_extbs PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_extbz PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_exths PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_exthz PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_extws PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_extwz PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_ff1 PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_j PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_jal PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_jr PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_jalr PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_lbs PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_lbz PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_lhs PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_lhz PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_lws PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_lwz PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_mac PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_macrc PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_mfspr PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_movhi PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_msb PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_mtspr PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_mul PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_mulu PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_nop PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_or PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_rfe PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sb PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sh PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sw PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sfeq PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sfges PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sfgeu PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sfgts PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sfgtu PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sfles PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sfleu PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sflts PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sfltu PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sfne PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sll PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sra PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_srl PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sub PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_sys PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_trap PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_xor PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_l_invalid PARAMS((struct op_queue *, int *, orreg_t *, int));
 
void gen_lf_add_s PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_lf_div_s PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_lf_ftoi_s PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_lf_itof_s PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_lf_madd_s PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_lf_mul_s PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_lf_rem_s PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_lf_sfeq_s PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_lf_sfge_s PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_lf_sfgt_s PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_lf_sfle_s PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_lf_sflt_s PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_lf_sfne_s PARAMS((struct op_queue *, int *, orreg_t *, int));
void gen_lf_sub_s PARAMS((struct op_queue *, int *, orreg_t *, int));
void l_none(struct op_queue *opq, int *param_t, orreg_t *param, int delay_slot);
 
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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