|
|
|
library ieee;
|
|
|
|
use ieee.std_logic_1164.all;
|
|
|
|
|
|
|
|
package decode_types is
|
|
|
|
type insn_type_t is (OP_ILLEGAL, OP_NOP, OP_ADD,
|
|
|
|
OP_ADDPCIS, OP_AND, OP_ATTN, OP_B, OP_BC, OP_BCREG,
|
|
|
|
OP_BPERM, OP_CMP, OP_CMPB, OP_CMPEQB, OP_CMPL, OP_CMPRB,
|
|
|
|
OP_CNTZ, OP_CRAND,
|
|
|
|
OP_CRANDC, OP_CREQV, OP_CRNAND, OP_CRNOR, OP_CROR, OP_CRORC,
|
|
|
|
OP_CRXOR, OP_DARN, OP_DCBF, OP_DCBST, OP_DCBT, OP_DCBTST,
|
|
|
|
OP_DCBZ, OP_DIV, OP_EXTS,
|
|
|
|
OP_EXTSWSLI, OP_ICBI, OP_ICBT, OP_ISEL, OP_ISYNC,
|
|
|
|
OP_LOAD, OP_STORE, OP_MADDHD, OP_MADDHDU, OP_MADDLD, OP_MCRF,
|
|
|
|
OP_MCRXR, OP_MCRXRX, OP_MFCR, OP_MFSPR, OP_MOD,
|
|
|
|
OP_MTCRF, OP_MTSPR, OP_MUL_L64,
|
|
|
|
OP_MUL_H64, OP_MUL_H32, OP_OR,
|
|
|
|
OP_POPCNTB, OP_POPCNTD, OP_POPCNTW, OP_PRTYD,
|
Add a rotate/mask/shift unit and use it in execute1
This adds a new entity 'rotator' which contains combinatorial logic
for rotating and masking 64-bit values. It implements the operations
of the rlwinm, rlwnm, rlwimi, rldicl, rldicr, rldic, rldimi, rldcl,
rldcr, sld, slw, srd, srw, srad, sradi, sraw and srawi instructions.
It consists of a 3-stage 64-bit rotator using 4:1 multiplexors at
each stage, two mask generators, output logic and control logic.
The insn_type_t values used for these instructions have been reduced
to just 5: OP_RLC, OP_RLCL and OP_RLCR for the rotate and mask
instructions (clear both left and right, clear left, clear right
variants), OP_SHL for left shifts, and OP_SHR for right shifts.
The control signals for the rotator are derived from the opcode
and from the is_32bit and is_signed fields of the decode_rom_t.
The rotator is instantiated as an entity in execute1 so that we can
be sure we only have one of it.
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
5 years ago
|
|
|
OP_PRTYW, OP_RLC, OP_RLCL, OP_RLCR, OP_SETB,
|
|
|
|
OP_SHL, OP_SHR,
|
|
|
|
OP_SYNC, OP_TD, OP_TDI, OP_TW,
|
|
|
|
OP_TWI, OP_XOR, OP_SIM_CONFIG);
|
|
|
|
|
|
|
|
type input_reg_a_t is (NONE, RA, RA_OR_ZERO);
|
Add a rotate/mask/shift unit and use it in execute1
This adds a new entity 'rotator' which contains combinatorial logic
for rotating and masking 64-bit values. It implements the operations
of the rlwinm, rlwnm, rlwimi, rldicl, rldicr, rldic, rldimi, rldcl,
rldcr, sld, slw, srd, srw, srad, sradi, sraw and srawi instructions.
It consists of a 3-stage 64-bit rotator using 4:1 multiplexors at
each stage, two mask generators, output logic and control logic.
The insn_type_t values used for these instructions have been reduced
to just 5: OP_RLC, OP_RLCL and OP_RLCR for the rotate and mask
instructions (clear both left and right, clear left, clear right
variants), OP_SHL for left shifts, and OP_SHR for right shifts.
The control signals for the rotator are derived from the opcode
and from the is_32bit and is_signed fields of the decode_rom_t.
The rotator is instantiated as an entity in execute1 so that we can
be sure we only have one of it.
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
5 years ago
|
|
|
type input_reg_b_t is (NONE, RB, CONST_UI, CONST_SI, CONST_SI_HI, CONST_UI_HI, CONST_LI, CONST_BD, CONST_DS, CONST_M1, CONST_SH, CONST_SH32);
|
|
|
|
type input_reg_c_t is (NONE, RS);
|
|
|
|
type output_reg_a_t is (NONE, RT, RA);
|
|
|
|
type rc_t is (NONE, ONE, RC);
|
|
|
|
type carry_in_t is (ZERO, CA, ONE);
|
|
|
|
|
|
|
|
constant SH_OFFSET : integer := 0;
|
|
|
|
constant MB_OFFSET : integer := 1;
|
|
|
|
constant ME_OFFSET : integer := 1;
|
|
|
|
constant SH32_OFFSET : integer := 0;
|
|
|
|
constant MB32_OFFSET : integer := 1;
|
|
|
|
constant ME32_OFFSET : integer := 2;
|
|
|
|
|
|
|
|
constant FXM_OFFSET : integer := 0;
|
|
|
|
|
|
|
|
constant BO_OFFSET : integer := 0;
|
|
|
|
constant BI_OFFSET : integer := 1;
|
|
|
|
constant BH_OFFSET : integer := 2;
|
|
|
|
|
|
|
|
constant BF_OFFSET : integer := 0;
|
|
|
|
constant L_OFFSET : integer := 1;
|
|
|
|
|
|
|
|
constant TOO_OFFSET : integer := 0;
|
|
|
|
|
|
|
|
type unit_t is (NONE, ALU, LDST, MUL, DIV);
|
|
|
|
type length_t is (NONE, is1B, is2B, is4B, is8B);
|
|
|
|
|
|
|
|
type decode_rom_t is record
|
|
|
|
unit : unit_t;
|
|
|
|
insn_type : insn_type_t;
|
|
|
|
input_reg_a : input_reg_a_t;
|
|
|
|
input_reg_b : input_reg_b_t;
|
|
|
|
input_reg_c : input_reg_c_t;
|
|
|
|
output_reg_a : output_reg_a_t;
|
|
|
|
|
|
|
|
input_cr : std_ulogic;
|
|
|
|
output_cr : std_ulogic;
|
|
|
|
|
|
|
|
invert_a : std_ulogic;
|
|
|
|
invert_out : std_ulogic;
|
|
|
|
input_carry : carry_in_t;
|
|
|
|
output_carry : std_ulogic;
|
|
|
|
|
|
|
|
-- load/store signals
|
|
|
|
length : length_t;
|
|
|
|
byte_reverse : std_ulogic;
|
|
|
|
sign_extend : std_ulogic;
|
|
|
|
update : std_ulogic;
|
|
|
|
reserve : std_ulogic;
|
|
|
|
|
|
|
|
-- multiplier and ALU signals
|
|
|
|
is_32bit : std_ulogic;
|
|
|
|
is_signed : std_ulogic;
|
|
|
|
|
|
|
|
rc : rc_t;
|
|
|
|
lr : std_ulogic;
|
|
|
|
|
|
|
|
sgl_pipe : std_ulogic;
|
|
|
|
end record;
|
|
|
|
constant decode_rom_init : decode_rom_t := (unit => NONE,
|
|
|
|
insn_type => OP_ILLEGAL, input_reg_a => NONE,
|
|
|
|
input_reg_b => NONE, input_reg_c => NONE,
|
|
|
|
output_reg_a => NONE, input_cr => '0', output_cr => '0',
|
|
|
|
invert_a => '0', invert_out => '0', input_carry => ZERO, output_carry => '0',
|
|
|
|
length => NONE, byte_reverse => '0', sign_extend => '0',
|
|
|
|
update => '0', reserve => '0', is_32bit => '0',
|
|
|
|
is_signed => '0', rc => NONE, lr => '0', sgl_pipe => '0');
|
|
|
|
|
|
|
|
end decode_types;
|
|
|
|
|
|
|
|
package body decode_types is
|
|
|
|
end decode_types;
|