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

Subversion Repositories ao486

[/] [ao486/] [trunk/] [rtl/] [ao486/] [pipeline/] [write_stack.v] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 alfik
/*
2
 * Copyright (c) 2014, Aleksander Osman
3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions are met:
7
 *
8
 * * Redistributions of source code must retain the above copyright notice, this
9
 *   list of conditions and the following disclaimer.
10
 *
11
 * * Redistributions in binary form must reproduce the above copyright notice,
12
 *   this list of conditions and the following disclaimer in the documentation
13
 *   and/or other materials provided with the distribution.
14
 *
15
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
19
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
22
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
 */
26
 
27
`include "defines.v"
28
 
29
module write_stack(
30
 
31
 
32
    input       [63:0]  glob_descriptor,
33
 
34
    input       [31:0]  esp,
35
 
36
    input       [63:0]  ss_cache,
37
    input       [31:0]  ss_base,
38
    input       [31:0]  ss_limit,
39
 
40
    input       [31:0]  glob_desc_base,
41
    input       [31:0]  glob_desc_limit,
42
 
43
    input               wr_operand_16bit,
44
    input       [31:0]  wr_stack_offset,
45
 
46
    input               wr_new_push_ss_fault_check,
47
    input               wr_push_length_word,
48
    input               wr_push_length_dword,
49
 
50
    input               wr_push_ss_fault_check,
51
 
52
    //output
53
 
54
    output      [31:0]  wr_stack_esp,
55
    output      [31:0]  wr_push_linear,
56
 
57
    output      [31:0]  wr_new_stack_esp,
58
    output      [31:0]  wr_new_push_linear,
59
 
60
    output      [2:0]   wr_push_length,
61
 
62
    output              wr_push_ss_fault,
63
    output              wr_new_push_ss_fault
64
);
65
 
66
//------------------------------------------------------------------------------ stack
67
 
68
wire [2:0]  wr_push_length_minus_1;
69
 
70
assign wr_stack_esp = (ss_cache[`DESC_BIT_D_B])? wr_stack_offset : { esp[31:16], wr_stack_offset[15:0] };
71
 
72
assign wr_push_linear = ss_base + wr_stack_offset;
73
 
74
assign wr_push_length = (wr_push_length_word || (~(wr_push_length_dword) && wr_operand_16bit))?  3'd2 : 3'd4;
75
 
76
assign wr_push_length_minus_1 =  wr_push_length - 3'd1;
77
 
78
//------------------------------------------------------------------------------ write_new_stack_virtual
79
 
80
wire [31:0] w_new_upper_limit;
81
wire        w_new_push_not_fit;
82
wire        w_new_push_limit_overflow;
83
 
84
assign wr_new_stack_esp = (glob_descriptor[`DESC_BIT_D_B])? wr_stack_offset : { esp[31:16], wr_stack_offset[15:0] };
85
 
86
assign wr_new_push_linear = glob_desc_base + wr_stack_offset;
87
 
88
 
89
assign w_new_upper_limit = (glob_descriptor[`DESC_BIT_D_B])? 32'hFFFFFFFF : 32'h0000FFFF; //d-b
90
 
91
// (CODE or not EXPAND-DOWN)
92
assign w_new_push_not_fit = (glob_descriptor[43] || ~(glob_descriptor[42]))?
93
    glob_desc_limit   - wr_stack_offset < { 29'd0, wr_push_length_minus_1 } :
94
    w_new_upper_limit - wr_stack_offset < { 29'd0, wr_push_length_minus_1 };
95
 
96
assign w_new_push_limit_overflow =
97
    ((glob_descriptor[43] || !glob_descriptor[42]) &&  wr_stack_offset >  glob_desc_limit) ||
98
    (!glob_descriptor[43] &&  glob_descriptor[42]  && (wr_stack_offset <= glob_desc_limit || wr_stack_offset > w_new_upper_limit));
99
 
100
// code or read-only
101
assign wr_new_push_ss_fault = wr_new_push_ss_fault_check &&
102
    (glob_descriptor[43] || ~glob_descriptor[41] || w_new_push_not_fit || w_new_push_limit_overflow);
103
 
104
//------------------------------------------------------------------------------
105
 
106
wire [31:0] w_upper_limit;
107
wire        w_push_not_fit;
108
wire        w_push_limit_overflow;
109
 
110
assign w_upper_limit = (ss_cache[`DESC_BIT_D_B])? 32'hFFFFFFFF : 32'h0000FFFF;
111
 
112
// (CODE or not EXPAND-DOWN)
113
assign w_push_not_fit = (ss_cache[43] || ~(ss_cache[42]))?
114
    ss_limit      - wr_stack_offset < { 29'd0, wr_push_length_minus_1 } :
115
    w_upper_limit - wr_stack_offset < { 29'd0, wr_push_length_minus_1 };
116
 
117
assign w_push_limit_overflow =
118
    ((ss_cache[43] || !ss_cache[42]) && wr_stack_offset > ss_limit) || (!ss_cache[43] && ss_cache[42] && (wr_stack_offset <= ss_limit || wr_stack_offset > w_upper_limit));
119
 
120
assign wr_push_ss_fault = wr_push_ss_fault_check && (w_push_not_fit || w_push_limit_overflow);
121
 
122
//------------------------------------------------------------------------------
123
 
124
// synthesis translate_off
125
wire _unused_ok = &{ 1'b0, glob_descriptor[63:55], glob_descriptor[53:44], glob_descriptor[40:0], esp[15:0], ss_cache[63:55], ss_cache[53:44], ss_cache[41:0], 1'b0 };
126
// synthesis translate_on
127
 
128
//------------------------------------------------------------------------------
129
 
130
endmodule
131
 

powered by: WebSVN 2.1.0

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