1 | // ========== Copyright Header Begin ========================================== |
---|
2 | // |
---|
3 | // OpenSPARC T1 Processor File: sparc_exu_alulogic.v |
---|
4 | // Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved. |
---|
5 | // DO NOT ALTER OR REMOVE COPYRIGHT NOTICES. |
---|
6 | // |
---|
7 | // The above named program is free software; you can redistribute it and/or |
---|
8 | // modify it under the terms of the GNU General Public |
---|
9 | // License version 2 as published by the Free Software Foundation. |
---|
10 | // |
---|
11 | // The above named program is distributed in the hope that it will be |
---|
12 | // useful, but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
14 | // General Public License for more details. |
---|
15 | // |
---|
16 | // You should have received a copy of the GNU General Public |
---|
17 | // License along with this work; if not, write to the Free Software |
---|
18 | // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
19 | // |
---|
20 | // ========== Copyright Header End ============================================ |
---|
21 | //////////////////////////////////////////////////////////////////////// |
---|
22 | /* |
---|
23 | // |
---|
24 | // Module Name: sparc_exu_alulogic |
---|
25 | // Description: This block implements and, or, xor, xnor, nand, nor |
---|
26 | // and pass_rs2_data. And, or, Xor and pass are muxed together |
---|
27 | // and then xored with an inversion signal to create |
---|
28 | // xnor, nand and nor. Both inputs are buffered before being |
---|
29 | // used and the rs2_data signal is buffered again before going |
---|
30 | // to the mux. |
---|
31 | */ |
---|
32 | |
---|
33 | module sparc_exu_alulogic (/*AUTOARG*/ |
---|
34 | // Outputs |
---|
35 | logic_out, |
---|
36 | // Inputs |
---|
37 | rs1_data, rs2_data, isand, isor, isxor, pass_rs2_data, inv_logic, |
---|
38 | ifu_exu_sethi_inst_e |
---|
39 | ); |
---|
40 | |
---|
41 | input [63:0] rs1_data; // 1st input operand |
---|
42 | input [63:0] rs2_data; // 2nd input operand |
---|
43 | input isand; |
---|
44 | input isor; |
---|
45 | input isxor; |
---|
46 | input pass_rs2_data; |
---|
47 | input inv_logic; |
---|
48 | input ifu_exu_sethi_inst_e; // zero out top half of rs2 on mov |
---|
49 | |
---|
50 | output [63:0] logic_out; // output of logic block |
---|
51 | |
---|
52 | wire [63:0] rs1_data_bf1; // buffered rs1_data |
---|
53 | wire [63:0] rs2_data_bf1; // buffered rs2_data |
---|
54 | wire [63:0] mov_data; |
---|
55 | wire [63:0] result_and; // rs1_data & rs2_data |
---|
56 | wire [63:0] result_or; // rs1_data | rs2_data |
---|
57 | wire [63:0] result_xor; // rs1_data ^ rs2_data |
---|
58 | wire [63:0] rs2_xor_invert; // output of mux between various results |
---|
59 | |
---|
60 | |
---|
61 | // mux between various results |
---|
62 | mux4ds #(64) logic_mux(.dout(logic_out[63:0]), |
---|
63 | .in0(result_and[63:0]), |
---|
64 | .in1(result_or[63:0]), |
---|
65 | .in2(result_xor[63:0]), |
---|
66 | .in3(mov_data[63:0]), |
---|
67 | .sel0(isand), |
---|
68 | .sel1(isor), |
---|
69 | .sel2(isxor), |
---|
70 | .sel3(pass_rs2_data)); |
---|
71 | |
---|
72 | // buffer inputs |
---|
73 | dp_buffer #(64) rs1_data_buf(.dout(rs1_data_bf1[63:0]), .in(rs1_data[63:0])); |
---|
74 | dp_buffer #(64) rs2_data_buf(.dout(rs2_data_bf1[63:0]), .in(rs2_data[63:0])); |
---|
75 | |
---|
76 | // zero out top of rs2 for sethi_inst |
---|
77 | assign mov_data[63:32] = rs2_data_bf1[63:32] & {32{~ifu_exu_sethi_inst_e}}; |
---|
78 | dp_buffer #(32) rs2_data_buf2(.dout(mov_data[31:0]), .in(rs2_data_bf1[31:0])); |
---|
79 | |
---|
80 | // invert input2 for andn, orn, xnor |
---|
81 | assign rs2_xor_invert[63:0] = rs2_data_bf1[63:0] ^ {64{inv_logic}}; |
---|
82 | |
---|
83 | // do boolean ops |
---|
84 | assign result_and = rs1_data_bf1 & rs2_xor_invert; |
---|
85 | assign result_or = rs1_data_bf1 | rs2_xor_invert; |
---|
86 | assign result_xor = rs1_data_bf1 ^ rs2_xor_invert; |
---|
87 | |
---|
88 | endmodule |
---|
89 | |
---|