begin end
`DECODE_BRANCH:
begin
- if(!prevstall && !inbubble) begin
+ if(!inbubble) begin
jmppc = pc + op0 + 32'h8;
if(insn[24]) begin
next_write_reg = 1;
next_write_num = 4'hE; /* link register */
- next_write_data = pc + 32'h4;
+ next_write_data = pc - 32'h4;
end
jmp = 1'b1;
end
output reg [31:0] cpsr_out,
output reg setres
);
- wire [31:0] res;
- wire flag_n, flag_z, flag_c, flag_v, setres;
+ reg [31:0] res;
+ reg flag_n, flag_z, flag_c, flag_v;
wire [32:0] sum, diff, rdiff;
wire sum_v, diff_v, rdiff_v;
waiting_cpsr = use_cpsr & (cpsr_inflight[0] | cpsr_inflight[1]);
waiting_regs = |(use_regs & (regs_inflight[0] | regs_inflight[1]));
- outstall = (waiting && !inbubble) || stall; /* Happens in an always @*, because it is an exception. */
+ outstall = ((waiting && !inbubble) || stall) && !flush; /* Happens in an always @*, because it is an exception. */
end
/* Actually do the issue. */
wire [31:0] pc_out_fetch;
wire [31:0] pc_out_issue;
- wire execute_outflush = jmp;
- wire issue_flush = execute_outflush;
- wire execute_flush = 1'b0;
+ wire execute_out_backflush;
BusArbiter busarbiter(.bus_req(bus_req), .bus_ack(bus_ack));
Issue issue(
.clk(clk),
.Nrst(1'b1 /* XXX */),
- .stall(stall_cause_execute), .flush(issue_flush),
+ .stall(stall_cause_execute), .flush(execute_out_backflush),
.inbubble(bubble_out_fetch), .insn(insn_out_fetch),
.inpc(pc_out_fetch), .cpsr(32'b0 /* XXX */),
.outstall(stall_cause_issue), .outbubble(bubble_out_issue),
Execute execute(
.clk(clk), .Nrst(1'b0),
- .stall(1'b0 /* XXX */), .flush(execute_flush),
+ .stall(1'b0 /* XXX */), .flush(1'b0),
.inbubble(bubble_out_issue), .pc(pc_out_issue), .insn(insn_out_issue),
.cpsr(32'b0 /* XXX */), .spsr(decode_out_spsr), .op0(decode_out_op0), .op1(decode_out_op1),
.op2(decode_out_op2), .carry(decode_out_carry),
.write_data(execute_out_write_data),
.jmppc(jmppc),
.jmp(jmp));
+ assign execute_out_backflush = jmp;
reg [31:0] clockno = 0;
always @(posedge clk)