|  | // Generator : SpinalHDL v1.3.6    git head : 9bf01e7f360e003fac1dd5ca8b8f4bffec0e52b8 | 
|  | // Date      : 16/06/2019, 23:18:37 | 
|  | // Component : VexRiscv | 
|  |  | 
|  |  | 
|  | `define AluCtrlEnum_defaultEncoding_type [1:0] | 
|  | `define AluCtrlEnum_defaultEncoding_ADD_SUB 2'b00 | 
|  | `define AluCtrlEnum_defaultEncoding_SLT_SLTU 2'b01 | 
|  | `define AluCtrlEnum_defaultEncoding_BITWISE 2'b10 | 
|  |  | 
|  | `define AluBitwiseCtrlEnum_defaultEncoding_type [1:0] | 
|  | `define AluBitwiseCtrlEnum_defaultEncoding_XOR_1 2'b00 | 
|  | `define AluBitwiseCtrlEnum_defaultEncoding_OR_1 2'b01 | 
|  | `define AluBitwiseCtrlEnum_defaultEncoding_AND_1 2'b10 | 
|  |  | 
|  | `define Src2CtrlEnum_defaultEncoding_type [1:0] | 
|  | `define Src2CtrlEnum_defaultEncoding_RS 2'b00 | 
|  | `define Src2CtrlEnum_defaultEncoding_IMI 2'b01 | 
|  | `define Src2CtrlEnum_defaultEncoding_IMS 2'b10 | 
|  | `define Src2CtrlEnum_defaultEncoding_PC 2'b11 | 
|  |  | 
|  | `define BranchCtrlEnum_defaultEncoding_type [1:0] | 
|  | `define BranchCtrlEnum_defaultEncoding_INC 2'b00 | 
|  | `define BranchCtrlEnum_defaultEncoding_B 2'b01 | 
|  | `define BranchCtrlEnum_defaultEncoding_JAL 2'b10 | 
|  | `define BranchCtrlEnum_defaultEncoding_JALR 2'b11 | 
|  |  | 
|  | `define Src1CtrlEnum_defaultEncoding_type [1:0] | 
|  | `define Src1CtrlEnum_defaultEncoding_RS 2'b00 | 
|  | `define Src1CtrlEnum_defaultEncoding_IMU 2'b01 | 
|  | `define Src1CtrlEnum_defaultEncoding_PC_INCREMENT 2'b10 | 
|  | `define Src1CtrlEnum_defaultEncoding_URS1 2'b11 | 
|  |  | 
|  | `define EnvCtrlEnum_defaultEncoding_type [0:0] | 
|  | `define EnvCtrlEnum_defaultEncoding_NONE 1'b0 | 
|  | `define EnvCtrlEnum_defaultEncoding_XRET 1'b1 | 
|  |  | 
|  | `define ShiftCtrlEnum_defaultEncoding_type [1:0] | 
|  | `define ShiftCtrlEnum_defaultEncoding_DISABLE_1 2'b00 | 
|  | `define ShiftCtrlEnum_defaultEncoding_SLL_1 2'b01 | 
|  | `define ShiftCtrlEnum_defaultEncoding_SRL_1 2'b10 | 
|  | `define ShiftCtrlEnum_defaultEncoding_SRA_1 2'b11 | 
|  |  | 
|  | module InstructionCache ( | 
|  | input   io_flush, | 
|  | input   io_cpu_prefetch_isValid, | 
|  | output reg  io_cpu_prefetch_haltIt, | 
|  | input  [31:0] io_cpu_prefetch_pc, | 
|  | input   io_cpu_fetch_isValid, | 
|  | input   io_cpu_fetch_isStuck, | 
|  | input   io_cpu_fetch_isRemoved, | 
|  | input  [31:0] io_cpu_fetch_pc, | 
|  | output [31:0] io_cpu_fetch_data, | 
|  | input   io_cpu_fetch_dataBypassValid, | 
|  | input  [31:0] io_cpu_fetch_dataBypass, | 
|  | output  io_cpu_fetch_mmuBus_cmd_isValid, | 
|  | output [31:0] io_cpu_fetch_mmuBus_cmd_virtualAddress, | 
|  | output  io_cpu_fetch_mmuBus_cmd_bypassTranslation, | 
|  | input  [31:0] io_cpu_fetch_mmuBus_rsp_physicalAddress, | 
|  | input   io_cpu_fetch_mmuBus_rsp_isIoAccess, | 
|  | input   io_cpu_fetch_mmuBus_rsp_allowRead, | 
|  | input   io_cpu_fetch_mmuBus_rsp_allowWrite, | 
|  | input   io_cpu_fetch_mmuBus_rsp_allowExecute, | 
|  | input   io_cpu_fetch_mmuBus_rsp_exception, | 
|  | input   io_cpu_fetch_mmuBus_rsp_refilling, | 
|  | output  io_cpu_fetch_mmuBus_end, | 
|  | input   io_cpu_fetch_mmuBus_busy, | 
|  | output [31:0] io_cpu_fetch_physicalAddress, | 
|  | output  io_cpu_fetch_haltIt, | 
|  | input   io_cpu_decode_isValid, | 
|  | input   io_cpu_decode_isStuck, | 
|  | input  [31:0] io_cpu_decode_pc, | 
|  | output [31:0] io_cpu_decode_physicalAddress, | 
|  | output [31:0] io_cpu_decode_data, | 
|  | output  io_cpu_decode_cacheMiss, | 
|  | output  io_cpu_decode_error, | 
|  | output  io_cpu_decode_mmuRefilling, | 
|  | output  io_cpu_decode_mmuException, | 
|  | input   io_cpu_decode_isUser, | 
|  | input   io_cpu_fill_valid, | 
|  | input  [31:0] io_cpu_fill_payload, | 
|  | output  io_mem_cmd_valid, | 
|  | input   io_mem_cmd_ready, | 
|  | output [31:0] io_mem_cmd_payload_address, | 
|  | output [2:0] io_mem_cmd_payload_size, | 
|  | input   io_mem_rsp_valid, | 
|  | input  [31:0] io_mem_rsp_payload_data, | 
|  | input   io_mem_rsp_payload_error, | 
|  | input   clk, | 
|  | input   reset); | 
|  | reg [22:0] _zz_10_; | 
|  | reg [31:0] _zz_11_; | 
|  | wire  _zz_12_; | 
|  | wire  _zz_13_; | 
|  | wire [0:0] _zz_14_; | 
|  | wire [0:0] _zz_15_; | 
|  | wire [22:0] _zz_16_; | 
|  | reg  _zz_1_; | 
|  | reg  _zz_2_; | 
|  | reg  lineLoader_fire; | 
|  | reg  lineLoader_valid; | 
|  | reg [31:0] lineLoader_address; | 
|  | reg  lineLoader_hadError; | 
|  | reg  lineLoader_flushPending; | 
|  | reg [6:0] lineLoader_flushCounter; | 
|  | reg  _zz_3_; | 
|  | reg  lineLoader_cmdSent; | 
|  | reg  lineLoader_wayToAllocate_willIncrement; | 
|  | wire  lineLoader_wayToAllocate_willClear; | 
|  | wire  lineLoader_wayToAllocate_willOverflowIfInc; | 
|  | wire  lineLoader_wayToAllocate_willOverflow; | 
|  | reg [2:0] lineLoader_wordIndex; | 
|  | wire  lineLoader_write_tag_0_valid; | 
|  | wire [5:0] lineLoader_write_tag_0_payload_address; | 
|  | wire  lineLoader_write_tag_0_payload_data_valid; | 
|  | wire  lineLoader_write_tag_0_payload_data_error; | 
|  | wire [20:0] lineLoader_write_tag_0_payload_data_address; | 
|  | wire  lineLoader_write_data_0_valid; | 
|  | wire [8:0] lineLoader_write_data_0_payload_address; | 
|  | wire [31:0] lineLoader_write_data_0_payload_data; | 
|  | wire  _zz_4_; | 
|  | wire [5:0] _zz_5_; | 
|  | wire  _zz_6_; | 
|  | wire  fetchStage_read_waysValues_0_tag_valid; | 
|  | wire  fetchStage_read_waysValues_0_tag_error; | 
|  | wire [20:0] fetchStage_read_waysValues_0_tag_address; | 
|  | wire [22:0] _zz_7_; | 
|  | wire [8:0] _zz_8_; | 
|  | wire  _zz_9_; | 
|  | wire [31:0] fetchStage_read_waysValues_0_data; | 
|  | wire  fetchStage_hit_hits_0; | 
|  | wire  fetchStage_hit_valid; | 
|  | wire  fetchStage_hit_error; | 
|  | wire [31:0] fetchStage_hit_data; | 
|  | wire [31:0] fetchStage_hit_word; | 
|  | reg [31:0] io_cpu_fetch_data_regNextWhen; | 
|  | reg [31:0] decodeStage_mmuRsp_physicalAddress; | 
|  | reg  decodeStage_mmuRsp_isIoAccess; | 
|  | reg  decodeStage_mmuRsp_allowRead; | 
|  | reg  decodeStage_mmuRsp_allowWrite; | 
|  | reg  decodeStage_mmuRsp_allowExecute; | 
|  | reg  decodeStage_mmuRsp_exception; | 
|  | reg  decodeStage_mmuRsp_refilling; | 
|  | reg  decodeStage_hit_valid; | 
|  | reg  decodeStage_hit_error; | 
|  | (* ram_style = "block" *) reg [22:0] ways_0_tags [0:63]; | 
|  | (* ram_style = "block" *) reg [31:0] ways_0_datas [0:511]; | 
|  | assign _zz_12_ = (! lineLoader_flushCounter[6]); | 
|  | assign _zz_13_ = (lineLoader_flushPending && (! (lineLoader_valid || io_cpu_fetch_isValid))); | 
|  | assign _zz_14_ = _zz_7_[0 : 0]; | 
|  | assign _zz_15_ = _zz_7_[1 : 1]; | 
|  | assign _zz_16_ = {lineLoader_write_tag_0_payload_data_address,{lineLoader_write_tag_0_payload_data_error,lineLoader_write_tag_0_payload_data_valid}}; | 
|  | always @ (posedge clk) begin | 
|  | if(_zz_2_) begin | 
|  | ways_0_tags[lineLoader_write_tag_0_payload_address] <= _zz_16_; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (posedge clk) begin | 
|  | if(_zz_6_) begin | 
|  | _zz_10_ <= ways_0_tags[_zz_5_]; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (posedge clk) begin | 
|  | if(_zz_1_) begin | 
|  | ways_0_datas[lineLoader_write_data_0_payload_address] <= lineLoader_write_data_0_payload_data; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (posedge clk) begin | 
|  | if(_zz_9_) begin | 
|  | _zz_11_ <= ways_0_datas[_zz_8_]; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | _zz_1_ = 1'b0; | 
|  | if(lineLoader_write_data_0_valid)begin | 
|  | _zz_1_ = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | _zz_2_ = 1'b0; | 
|  | if(lineLoader_write_tag_0_valid)begin | 
|  | _zz_2_ = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign io_cpu_fetch_haltIt = io_cpu_fetch_mmuBus_busy; | 
|  | always @ (*) begin | 
|  | lineLoader_fire = 1'b0; | 
|  | if(io_mem_rsp_valid)begin | 
|  | if((lineLoader_wordIndex == (3'b111)))begin | 
|  | lineLoader_fire = 1'b1; | 
|  | end | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | io_cpu_prefetch_haltIt = (lineLoader_valid || lineLoader_flushPending); | 
|  | if(_zz_12_)begin | 
|  | io_cpu_prefetch_haltIt = 1'b1; | 
|  | end | 
|  | if((! _zz_3_))begin | 
|  | io_cpu_prefetch_haltIt = 1'b1; | 
|  | end | 
|  | if(io_flush)begin | 
|  | io_cpu_prefetch_haltIt = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign io_mem_cmd_valid = (lineLoader_valid && (! lineLoader_cmdSent)); | 
|  | assign io_mem_cmd_payload_address = {lineLoader_address[31 : 5],(5'b00000)}; | 
|  | assign io_mem_cmd_payload_size = (3'b101); | 
|  | always @ (*) begin | 
|  | lineLoader_wayToAllocate_willIncrement = 1'b0; | 
|  | if((! lineLoader_valid))begin | 
|  | lineLoader_wayToAllocate_willIncrement = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign lineLoader_wayToAllocate_willClear = 1'b0; | 
|  | assign lineLoader_wayToAllocate_willOverflowIfInc = 1'b1; | 
|  | assign lineLoader_wayToAllocate_willOverflow = (lineLoader_wayToAllocate_willOverflowIfInc && lineLoader_wayToAllocate_willIncrement); | 
|  | assign _zz_4_ = 1'b1; | 
|  | assign lineLoader_write_tag_0_valid = ((_zz_4_ && lineLoader_fire) || (! lineLoader_flushCounter[6])); | 
|  | assign lineLoader_write_tag_0_payload_address = (lineLoader_flushCounter[6] ? lineLoader_address[10 : 5] : lineLoader_flushCounter[5 : 0]); | 
|  | assign lineLoader_write_tag_0_payload_data_valid = lineLoader_flushCounter[6]; | 
|  | assign lineLoader_write_tag_0_payload_data_error = (lineLoader_hadError || io_mem_rsp_payload_error); | 
|  | assign lineLoader_write_tag_0_payload_data_address = lineLoader_address[31 : 11]; | 
|  | assign lineLoader_write_data_0_valid = (io_mem_rsp_valid && _zz_4_); | 
|  | assign lineLoader_write_data_0_payload_address = {lineLoader_address[10 : 5],lineLoader_wordIndex}; | 
|  | assign lineLoader_write_data_0_payload_data = io_mem_rsp_payload_data; | 
|  | assign _zz_5_ = io_cpu_prefetch_pc[10 : 5]; | 
|  | assign _zz_6_ = (! io_cpu_fetch_isStuck); | 
|  | assign _zz_7_ = _zz_10_; | 
|  | assign fetchStage_read_waysValues_0_tag_valid = _zz_14_[0]; | 
|  | assign fetchStage_read_waysValues_0_tag_error = _zz_15_[0]; | 
|  | assign fetchStage_read_waysValues_0_tag_address = _zz_7_[22 : 2]; | 
|  | assign _zz_8_ = io_cpu_prefetch_pc[10 : 2]; | 
|  | assign _zz_9_ = (! io_cpu_fetch_isStuck); | 
|  | assign fetchStage_read_waysValues_0_data = _zz_11_; | 
|  | assign fetchStage_hit_hits_0 = (fetchStage_read_waysValues_0_tag_valid && (fetchStage_read_waysValues_0_tag_address == io_cpu_fetch_mmuBus_rsp_physicalAddress[31 : 11])); | 
|  | assign fetchStage_hit_valid = (fetchStage_hit_hits_0 != (1'b0)); | 
|  | assign fetchStage_hit_error = fetchStage_read_waysValues_0_tag_error; | 
|  | assign fetchStage_hit_data = fetchStage_read_waysValues_0_data; | 
|  | assign fetchStage_hit_word = fetchStage_hit_data[31 : 0]; | 
|  | assign io_cpu_fetch_data = (io_cpu_fetch_dataBypassValid ? io_cpu_fetch_dataBypass : fetchStage_hit_word); | 
|  | assign io_cpu_decode_data = io_cpu_fetch_data_regNextWhen; | 
|  | assign io_cpu_fetch_mmuBus_cmd_isValid = io_cpu_fetch_isValid; | 
|  | assign io_cpu_fetch_mmuBus_cmd_virtualAddress = io_cpu_fetch_pc; | 
|  | assign io_cpu_fetch_mmuBus_cmd_bypassTranslation = 1'b0; | 
|  | assign io_cpu_fetch_mmuBus_end = ((! io_cpu_fetch_isStuck) || io_cpu_fetch_isRemoved); | 
|  | assign io_cpu_fetch_physicalAddress = io_cpu_fetch_mmuBus_rsp_physicalAddress; | 
|  | assign io_cpu_decode_cacheMiss = (! decodeStage_hit_valid); | 
|  | assign io_cpu_decode_error = decodeStage_hit_error; | 
|  | assign io_cpu_decode_mmuRefilling = decodeStage_mmuRsp_refilling; | 
|  | assign io_cpu_decode_mmuException = ((! decodeStage_mmuRsp_refilling) && (decodeStage_mmuRsp_exception || (! decodeStage_mmuRsp_allowExecute))); | 
|  | assign io_cpu_decode_physicalAddress = decodeStage_mmuRsp_physicalAddress; | 
|  | always @ (posedge clk) begin | 
|  | if(reset) begin | 
|  | lineLoader_valid <= 1'b0; | 
|  | lineLoader_hadError <= 1'b0; | 
|  | lineLoader_flushPending <= 1'b1; | 
|  | lineLoader_cmdSent <= 1'b0; | 
|  | lineLoader_wordIndex <= (3'b000); | 
|  | end else begin | 
|  | if(lineLoader_fire)begin | 
|  | lineLoader_valid <= 1'b0; | 
|  | end | 
|  | if(lineLoader_fire)begin | 
|  | lineLoader_hadError <= 1'b0; | 
|  | end | 
|  | if(io_cpu_fill_valid)begin | 
|  | lineLoader_valid <= 1'b1; | 
|  | end | 
|  | if(io_flush)begin | 
|  | lineLoader_flushPending <= 1'b1; | 
|  | end | 
|  | if(_zz_13_)begin | 
|  | lineLoader_flushPending <= 1'b0; | 
|  | end | 
|  | if((io_mem_cmd_valid && io_mem_cmd_ready))begin | 
|  | lineLoader_cmdSent <= 1'b1; | 
|  | end | 
|  | if(lineLoader_fire)begin | 
|  | lineLoader_cmdSent <= 1'b0; | 
|  | end | 
|  | if(io_mem_rsp_valid)begin | 
|  | lineLoader_wordIndex <= (lineLoader_wordIndex + (3'b001)); | 
|  | if(io_mem_rsp_payload_error)begin | 
|  | lineLoader_hadError <= 1'b1; | 
|  | end | 
|  | end | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (posedge clk) begin | 
|  | if(io_cpu_fill_valid)begin | 
|  | lineLoader_address <= io_cpu_fill_payload; | 
|  | end | 
|  | if(_zz_12_)begin | 
|  | lineLoader_flushCounter <= (lineLoader_flushCounter + (7'b0000001)); | 
|  | end | 
|  | _zz_3_ <= lineLoader_flushCounter[6]; | 
|  | if(_zz_13_)begin | 
|  | lineLoader_flushCounter <= (7'b0000000); | 
|  | end | 
|  | if((! io_cpu_decode_isStuck))begin | 
|  | io_cpu_fetch_data_regNextWhen <= io_cpu_fetch_data; | 
|  | end | 
|  | if((! io_cpu_decode_isStuck))begin | 
|  | decodeStage_mmuRsp_physicalAddress <= io_cpu_fetch_mmuBus_rsp_physicalAddress; | 
|  | decodeStage_mmuRsp_isIoAccess <= io_cpu_fetch_mmuBus_rsp_isIoAccess; | 
|  | decodeStage_mmuRsp_allowRead <= io_cpu_fetch_mmuBus_rsp_allowRead; | 
|  | decodeStage_mmuRsp_allowWrite <= io_cpu_fetch_mmuBus_rsp_allowWrite; | 
|  | decodeStage_mmuRsp_allowExecute <= io_cpu_fetch_mmuBus_rsp_allowExecute; | 
|  | decodeStage_mmuRsp_exception <= io_cpu_fetch_mmuBus_rsp_exception; | 
|  | decodeStage_mmuRsp_refilling <= io_cpu_fetch_mmuBus_rsp_refilling; | 
|  | end | 
|  | if((! io_cpu_decode_isStuck))begin | 
|  | decodeStage_hit_valid <= fetchStage_hit_valid; | 
|  | end | 
|  | if((! io_cpu_decode_isStuck))begin | 
|  | decodeStage_hit_error <= fetchStage_hit_error; | 
|  | end | 
|  | end | 
|  |  | 
|  | endmodule | 
|  |  | 
|  | module VexRiscv ( | 
|  | input  [31:0] externalResetVector, | 
|  | input   timerInterrupt, | 
|  | input   softwareInterrupt, | 
|  | input  [31:0] externalInterruptArray, | 
|  | output reg  iBusWishbone_CYC, | 
|  | output reg  iBusWishbone_STB, | 
|  | input   iBusWishbone_ACK, | 
|  | output  iBusWishbone_WE, | 
|  | output [29:0] iBusWishbone_ADR, | 
|  | input  [31:0] iBusWishbone_DAT_MISO, | 
|  | output [31:0] iBusWishbone_DAT_MOSI, | 
|  | output [3:0] iBusWishbone_SEL, | 
|  | input   iBusWishbone_ERR, | 
|  | output [1:0] iBusWishbone_BTE, | 
|  | output [2:0] iBusWishbone_CTI, | 
|  | output  dBusWishbone_CYC, | 
|  | output  dBusWishbone_STB, | 
|  | input   dBusWishbone_ACK, | 
|  | output  dBusWishbone_WE, | 
|  | output [29:0] dBusWishbone_ADR, | 
|  | input  [31:0] dBusWishbone_DAT_MISO, | 
|  | output [31:0] dBusWishbone_DAT_MOSI, | 
|  | output reg [3:0] dBusWishbone_SEL, | 
|  | input   dBusWishbone_ERR, | 
|  | output [1:0] dBusWishbone_BTE, | 
|  | output [2:0] dBusWishbone_CTI, | 
|  | input   clk, | 
|  | input   reset); | 
|  | wire  _zz_205_; | 
|  | wire  _zz_206_; | 
|  | wire  _zz_207_; | 
|  | wire  _zz_208_; | 
|  | wire [31:0] _zz_209_; | 
|  | wire  _zz_210_; | 
|  | wire  _zz_211_; | 
|  | wire  _zz_212_; | 
|  | reg  _zz_213_; | 
|  | reg [31:0] _zz_214_; | 
|  | reg [31:0] _zz_215_; | 
|  | reg [31:0] _zz_216_; | 
|  | wire  IBusCachedPlugin_cache_io_cpu_prefetch_haltIt; | 
|  | wire [31:0] IBusCachedPlugin_cache_io_cpu_fetch_data; | 
|  | wire [31:0] IBusCachedPlugin_cache_io_cpu_fetch_physicalAddress; | 
|  | wire  IBusCachedPlugin_cache_io_cpu_fetch_haltIt; | 
|  | wire  IBusCachedPlugin_cache_io_cpu_fetch_mmuBus_cmd_isValid; | 
|  | wire [31:0] IBusCachedPlugin_cache_io_cpu_fetch_mmuBus_cmd_virtualAddress; | 
|  | wire  IBusCachedPlugin_cache_io_cpu_fetch_mmuBus_cmd_bypassTranslation; | 
|  | wire  IBusCachedPlugin_cache_io_cpu_fetch_mmuBus_end; | 
|  | wire  IBusCachedPlugin_cache_io_cpu_decode_error; | 
|  | wire  IBusCachedPlugin_cache_io_cpu_decode_mmuRefilling; | 
|  | wire  IBusCachedPlugin_cache_io_cpu_decode_mmuException; | 
|  | wire [31:0] IBusCachedPlugin_cache_io_cpu_decode_data; | 
|  | wire  IBusCachedPlugin_cache_io_cpu_decode_cacheMiss; | 
|  | wire [31:0] IBusCachedPlugin_cache_io_cpu_decode_physicalAddress; | 
|  | wire  IBusCachedPlugin_cache_io_mem_cmd_valid; | 
|  | wire [31:0] IBusCachedPlugin_cache_io_mem_cmd_payload_address; | 
|  | wire [2:0] IBusCachedPlugin_cache_io_mem_cmd_payload_size; | 
|  | wire  _zz_217_; | 
|  | wire  _zz_218_; | 
|  | wire  _zz_219_; | 
|  | wire  _zz_220_; | 
|  | wire  _zz_221_; | 
|  | wire  _zz_222_; | 
|  | wire  _zz_223_; | 
|  | wire  _zz_224_; | 
|  | wire  _zz_225_; | 
|  | wire  _zz_226_; | 
|  | wire  _zz_227_; | 
|  | wire  _zz_228_; | 
|  | wire  _zz_229_; | 
|  | wire  _zz_230_; | 
|  | wire  _zz_231_; | 
|  | wire  _zz_232_; | 
|  | wire  _zz_233_; | 
|  | wire  _zz_234_; | 
|  | wire  _zz_235_; | 
|  | wire [1:0] _zz_236_; | 
|  | wire  _zz_237_; | 
|  | wire  _zz_238_; | 
|  | wire  _zz_239_; | 
|  | wire  _zz_240_; | 
|  | wire  _zz_241_; | 
|  | wire  _zz_242_; | 
|  | wire  _zz_243_; | 
|  | wire  _zz_244_; | 
|  | wire  _zz_245_; | 
|  | wire  _zz_246_; | 
|  | wire  _zz_247_; | 
|  | wire  _zz_248_; | 
|  | wire  _zz_249_; | 
|  | wire  _zz_250_; | 
|  | wire  _zz_251_; | 
|  | wire  _zz_252_; | 
|  | wire [1:0] _zz_253_; | 
|  | wire  _zz_254_; | 
|  | wire [4:0] _zz_255_; | 
|  | wire [2:0] _zz_256_; | 
|  | wire [31:0] _zz_257_; | 
|  | wire [11:0] _zz_258_; | 
|  | wire [31:0] _zz_259_; | 
|  | wire [19:0] _zz_260_; | 
|  | wire [11:0] _zz_261_; | 
|  | wire [31:0] _zz_262_; | 
|  | wire [31:0] _zz_263_; | 
|  | wire [19:0] _zz_264_; | 
|  | wire [11:0] _zz_265_; | 
|  | wire [2:0] _zz_266_; | 
|  | wire [0:0] _zz_267_; | 
|  | wire [0:0] _zz_268_; | 
|  | wire [0:0] _zz_269_; | 
|  | wire [0:0] _zz_270_; | 
|  | wire [0:0] _zz_271_; | 
|  | wire [0:0] _zz_272_; | 
|  | wire [0:0] _zz_273_; | 
|  | wire [0:0] _zz_274_; | 
|  | wire [0:0] _zz_275_; | 
|  | wire [0:0] _zz_276_; | 
|  | wire [0:0] _zz_277_; | 
|  | wire [0:0] _zz_278_; | 
|  | wire [0:0] _zz_279_; | 
|  | wire [0:0] _zz_280_; | 
|  | wire [0:0] _zz_281_; | 
|  | wire [0:0] _zz_282_; | 
|  | wire [0:0] _zz_283_; | 
|  | wire [2:0] _zz_284_; | 
|  | wire [4:0] _zz_285_; | 
|  | wire [11:0] _zz_286_; | 
|  | wire [11:0] _zz_287_; | 
|  | wire [31:0] _zz_288_; | 
|  | wire [31:0] _zz_289_; | 
|  | wire [31:0] _zz_290_; | 
|  | wire [31:0] _zz_291_; | 
|  | wire [31:0] _zz_292_; | 
|  | wire [31:0] _zz_293_; | 
|  | wire [31:0] _zz_294_; | 
|  | wire [31:0] _zz_295_; | 
|  | wire [32:0] _zz_296_; | 
|  | wire [11:0] _zz_297_; | 
|  | wire [19:0] _zz_298_; | 
|  | wire [11:0] _zz_299_; | 
|  | wire [31:0] _zz_300_; | 
|  | wire [31:0] _zz_301_; | 
|  | wire [31:0] _zz_302_; | 
|  | wire [11:0] _zz_303_; | 
|  | wire [19:0] _zz_304_; | 
|  | wire [11:0] _zz_305_; | 
|  | wire [2:0] _zz_306_; | 
|  | wire [1:0] _zz_307_; | 
|  | wire [1:0] _zz_308_; | 
|  | wire [1:0] _zz_309_; | 
|  | wire [1:0] _zz_310_; | 
|  | wire [0:0] _zz_311_; | 
|  | wire [5:0] _zz_312_; | 
|  | wire [33:0] _zz_313_; | 
|  | wire [32:0] _zz_314_; | 
|  | wire [33:0] _zz_315_; | 
|  | wire [32:0] _zz_316_; | 
|  | wire [33:0] _zz_317_; | 
|  | wire [32:0] _zz_318_; | 
|  | wire [0:0] _zz_319_; | 
|  | wire [5:0] _zz_320_; | 
|  | wire [32:0] _zz_321_; | 
|  | wire [32:0] _zz_322_; | 
|  | wire [31:0] _zz_323_; | 
|  | wire [31:0] _zz_324_; | 
|  | wire [32:0] _zz_325_; | 
|  | wire [32:0] _zz_326_; | 
|  | wire [32:0] _zz_327_; | 
|  | wire [0:0] _zz_328_; | 
|  | wire [32:0] _zz_329_; | 
|  | wire [0:0] _zz_330_; | 
|  | wire [32:0] _zz_331_; | 
|  | wire [0:0] _zz_332_; | 
|  | wire [31:0] _zz_333_; | 
|  | wire [0:0] _zz_334_; | 
|  | wire [0:0] _zz_335_; | 
|  | wire [0:0] _zz_336_; | 
|  | wire [0:0] _zz_337_; | 
|  | wire [0:0] _zz_338_; | 
|  | wire [0:0] _zz_339_; | 
|  | wire [26:0] _zz_340_; | 
|  | wire [6:0] _zz_341_; | 
|  | wire  _zz_342_; | 
|  | wire  _zz_343_; | 
|  | wire [2:0] _zz_344_; | 
|  | wire  _zz_345_; | 
|  | wire  _zz_346_; | 
|  | wire  _zz_347_; | 
|  | wire  _zz_348_; | 
|  | wire [0:0] _zz_349_; | 
|  | wire [0:0] _zz_350_; | 
|  | wire [0:0] _zz_351_; | 
|  | wire [0:0] _zz_352_; | 
|  | wire  _zz_353_; | 
|  | wire [0:0] _zz_354_; | 
|  | wire [23:0] _zz_355_; | 
|  | wire [31:0] _zz_356_; | 
|  | wire [31:0] _zz_357_; | 
|  | wire  _zz_358_; | 
|  | wire [0:0] _zz_359_; | 
|  | wire [0:0] _zz_360_; | 
|  | wire [0:0] _zz_361_; | 
|  | wire [0:0] _zz_362_; | 
|  | wire [1:0] _zz_363_; | 
|  | wire [1:0] _zz_364_; | 
|  | wire  _zz_365_; | 
|  | wire [0:0] _zz_366_; | 
|  | wire [20:0] _zz_367_; | 
|  | wire [31:0] _zz_368_; | 
|  | wire [31:0] _zz_369_; | 
|  | wire [31:0] _zz_370_; | 
|  | wire [31:0] _zz_371_; | 
|  | wire  _zz_372_; | 
|  | wire [0:0] _zz_373_; | 
|  | wire [1:0] _zz_374_; | 
|  | wire [0:0] _zz_375_; | 
|  | wire [0:0] _zz_376_; | 
|  | wire  _zz_377_; | 
|  | wire [0:0] _zz_378_; | 
|  | wire [17:0] _zz_379_; | 
|  | wire [31:0] _zz_380_; | 
|  | wire [31:0] _zz_381_; | 
|  | wire [31:0] _zz_382_; | 
|  | wire [31:0] _zz_383_; | 
|  | wire [31:0] _zz_384_; | 
|  | wire [31:0] _zz_385_; | 
|  | wire [31:0] _zz_386_; | 
|  | wire [31:0] _zz_387_; | 
|  | wire [0:0] _zz_388_; | 
|  | wire [0:0] _zz_389_; | 
|  | wire [5:0] _zz_390_; | 
|  | wire [5:0] _zz_391_; | 
|  | wire  _zz_392_; | 
|  | wire [0:0] _zz_393_; | 
|  | wire [14:0] _zz_394_; | 
|  | wire [31:0] _zz_395_; | 
|  | wire [31:0] _zz_396_; | 
|  | wire  _zz_397_; | 
|  | wire [0:0] _zz_398_; | 
|  | wire [2:0] _zz_399_; | 
|  | wire  _zz_400_; | 
|  | wire  _zz_401_; | 
|  | wire [0:0] _zz_402_; | 
|  | wire [2:0] _zz_403_; | 
|  | wire [0:0] _zz_404_; | 
|  | wire [0:0] _zz_405_; | 
|  | wire  _zz_406_; | 
|  | wire [0:0] _zz_407_; | 
|  | wire [11:0] _zz_408_; | 
|  | wire [31:0] _zz_409_; | 
|  | wire [31:0] _zz_410_; | 
|  | wire [31:0] _zz_411_; | 
|  | wire  _zz_412_; | 
|  | wire [0:0] _zz_413_; | 
|  | wire [0:0] _zz_414_; | 
|  | wire [31:0] _zz_415_; | 
|  | wire [31:0] _zz_416_; | 
|  | wire [31:0] _zz_417_; | 
|  | wire [31:0] _zz_418_; | 
|  | wire  _zz_419_; | 
|  | wire [0:0] _zz_420_; | 
|  | wire [0:0] _zz_421_; | 
|  | wire [31:0] _zz_422_; | 
|  | wire [31:0] _zz_423_; | 
|  | wire [0:0] _zz_424_; | 
|  | wire [0:0] _zz_425_; | 
|  | wire [0:0] _zz_426_; | 
|  | wire [0:0] _zz_427_; | 
|  | wire  _zz_428_; | 
|  | wire [0:0] _zz_429_; | 
|  | wire [9:0] _zz_430_; | 
|  | wire [31:0] _zz_431_; | 
|  | wire [31:0] _zz_432_; | 
|  | wire [31:0] _zz_433_; | 
|  | wire [31:0] _zz_434_; | 
|  | wire [31:0] _zz_435_; | 
|  | wire [31:0] _zz_436_; | 
|  | wire [31:0] _zz_437_; | 
|  | wire [31:0] _zz_438_; | 
|  | wire [31:0] _zz_439_; | 
|  | wire [31:0] _zz_440_; | 
|  | wire [31:0] _zz_441_; | 
|  | wire [31:0] _zz_442_; | 
|  | wire [31:0] _zz_443_; | 
|  | wire [31:0] _zz_444_; | 
|  | wire  _zz_445_; | 
|  | wire [0:0] _zz_446_; | 
|  | wire [0:0] _zz_447_; | 
|  | wire  _zz_448_; | 
|  | wire [0:0] _zz_449_; | 
|  | wire [7:0] _zz_450_; | 
|  | wire  _zz_451_; | 
|  | wire [0:0] _zz_452_; | 
|  | wire [0:0] _zz_453_; | 
|  | wire [0:0] _zz_454_; | 
|  | wire [0:0] _zz_455_; | 
|  | wire [0:0] _zz_456_; | 
|  | wire [0:0] _zz_457_; | 
|  | wire  _zz_458_; | 
|  | wire [0:0] _zz_459_; | 
|  | wire [3:0] _zz_460_; | 
|  | wire [31:0] _zz_461_; | 
|  | wire [31:0] _zz_462_; | 
|  | wire [31:0] _zz_463_; | 
|  | wire [31:0] _zz_464_; | 
|  | wire [31:0] _zz_465_; | 
|  | wire  _zz_466_; | 
|  | wire  _zz_467_; | 
|  | wire [0:0] _zz_468_; | 
|  | wire [1:0] _zz_469_; | 
|  | wire [2:0] _zz_470_; | 
|  | wire [2:0] _zz_471_; | 
|  | wire  _zz_472_; | 
|  | wire [0:0] _zz_473_; | 
|  | wire [0:0] _zz_474_; | 
|  | wire [31:0] _zz_475_; | 
|  | wire [31:0] _zz_476_; | 
|  | wire [31:0] _zz_477_; | 
|  | wire [31:0] _zz_478_; | 
|  | wire [31:0] _zz_479_; | 
|  | wire  _zz_480_; | 
|  | wire  _zz_481_; | 
|  | wire [31:0] _zz_482_; | 
|  | wire [31:0] _zz_483_; | 
|  | wire [0:0] _zz_484_; | 
|  | wire [0:0] _zz_485_; | 
|  | wire  _zz_486_; | 
|  | wire [31:0] _zz_487_; | 
|  | wire [31:0] _zz_488_; | 
|  | wire [31:0] _zz_489_; | 
|  | wire  _zz_490_; | 
|  | wire [0:0] _zz_491_; | 
|  | wire [10:0] _zz_492_; | 
|  | wire [31:0] _zz_493_; | 
|  | wire [31:0] _zz_494_; | 
|  | wire [31:0] _zz_495_; | 
|  | wire  _zz_496_; | 
|  | wire [0:0] _zz_497_; | 
|  | wire [4:0] _zz_498_; | 
|  | wire [31:0] _zz_499_; | 
|  | wire [31:0] _zz_500_; | 
|  | wire [31:0] _zz_501_; | 
|  | wire [31:0] _zz_502_; | 
|  | wire [31:0] _zz_503_; | 
|  | wire  _zz_504_; | 
|  | wire  _zz_505_; | 
|  | wire  _zz_506_; | 
|  | wire `AluCtrlEnum_defaultEncoding_type decode_ALU_CTRL; | 
|  | wire `AluCtrlEnum_defaultEncoding_type _zz_1_; | 
|  | wire `AluCtrlEnum_defaultEncoding_type _zz_2_; | 
|  | wire `AluCtrlEnum_defaultEncoding_type _zz_3_; | 
|  | wire `AluBitwiseCtrlEnum_defaultEncoding_type decode_ALU_BITWISE_CTRL; | 
|  | wire `AluBitwiseCtrlEnum_defaultEncoding_type _zz_4_; | 
|  | wire `AluBitwiseCtrlEnum_defaultEncoding_type _zz_5_; | 
|  | wire `AluBitwiseCtrlEnum_defaultEncoding_type _zz_6_; | 
|  | wire `Src2CtrlEnum_defaultEncoding_type decode_SRC2_CTRL; | 
|  | wire `Src2CtrlEnum_defaultEncoding_type _zz_7_; | 
|  | wire `Src2CtrlEnum_defaultEncoding_type _zz_8_; | 
|  | wire `Src2CtrlEnum_defaultEncoding_type _zz_9_; | 
|  | wire  decode_IS_RS2_SIGNED; | 
|  | wire  decode_BYPASSABLE_EXECUTE_STAGE; | 
|  | wire  decode_IS_RS1_SIGNED; | 
|  | wire  decode_CSR_READ_OPCODE; | 
|  | wire  decode_IS_DIV; | 
|  | wire [1:0] memory_MEMORY_ADDRESS_LOW; | 
|  | wire [1:0] execute_MEMORY_ADDRESS_LOW; | 
|  | wire  decode_IS_MUL; | 
|  | wire [31:0] execute_BRANCH_CALC; | 
|  | wire `BranchCtrlEnum_defaultEncoding_type _zz_10_; | 
|  | wire `BranchCtrlEnum_defaultEncoding_type _zz_11_; | 
|  | wire `Src1CtrlEnum_defaultEncoding_type decode_SRC1_CTRL; | 
|  | wire `Src1CtrlEnum_defaultEncoding_type _zz_12_; | 
|  | wire `Src1CtrlEnum_defaultEncoding_type _zz_13_; | 
|  | wire `Src1CtrlEnum_defaultEncoding_type _zz_14_; | 
|  | wire  execute_BYPASSABLE_MEMORY_STAGE; | 
|  | wire  decode_BYPASSABLE_MEMORY_STAGE; | 
|  | wire  decode_SRC2_FORCE_ZERO; | 
|  | wire  decode_CSR_WRITE_OPCODE; | 
|  | wire [31:0] writeBack_REGFILE_WRITE_DATA; | 
|  | wire [31:0] execute_REGFILE_WRITE_DATA; | 
|  | wire  execute_BRANCH_DO; | 
|  | wire  decode_SRC_LESS_UNSIGNED; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type _zz_15_; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type _zz_16_; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type _zz_17_; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type _zz_18_; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type decode_ENV_CTRL; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type _zz_19_; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type _zz_20_; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type _zz_21_; | 
|  | wire [31:0] writeBack_FORMAL_PC_NEXT; | 
|  | wire [31:0] memory_FORMAL_PC_NEXT; | 
|  | wire [31:0] execute_FORMAL_PC_NEXT; | 
|  | wire [31:0] decode_FORMAL_PC_NEXT; | 
|  | wire  decode_MEMORY_STORE; | 
|  | wire  decode_PREDICTION_HAD_BRANCHED2; | 
|  | wire  decode_IS_CSR; | 
|  | wire `ShiftCtrlEnum_defaultEncoding_type decode_SHIFT_CTRL; | 
|  | wire `ShiftCtrlEnum_defaultEncoding_type _zz_22_; | 
|  | wire `ShiftCtrlEnum_defaultEncoding_type _zz_23_; | 
|  | wire `ShiftCtrlEnum_defaultEncoding_type _zz_24_; | 
|  | wire [31:0] memory_MEMORY_READ_DATA; | 
|  | wire  execute_IS_RS1_SIGNED; | 
|  | wire  execute_IS_DIV; | 
|  | wire  execute_IS_MUL; | 
|  | wire  execute_IS_RS2_SIGNED; | 
|  | wire  memory_IS_DIV; | 
|  | wire  memory_IS_MUL; | 
|  | wire  execute_CSR_READ_OPCODE; | 
|  | wire  execute_CSR_WRITE_OPCODE; | 
|  | wire  execute_IS_CSR; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type memory_ENV_CTRL; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type _zz_25_; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type execute_ENV_CTRL; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type _zz_26_; | 
|  | wire  _zz_27_; | 
|  | wire  _zz_28_; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type writeBack_ENV_CTRL; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type _zz_29_; | 
|  | wire [31:0] memory_BRANCH_CALC; | 
|  | wire  memory_BRANCH_DO; | 
|  | wire [31:0] _zz_30_; | 
|  | wire [31:0] execute_PC; | 
|  | wire  execute_PREDICTION_HAD_BRANCHED2; | 
|  | wire  _zz_31_; | 
|  | wire [31:0] execute_RS1; | 
|  | wire  execute_BRANCH_COND_RESULT; | 
|  | wire `BranchCtrlEnum_defaultEncoding_type execute_BRANCH_CTRL; | 
|  | wire `BranchCtrlEnum_defaultEncoding_type _zz_32_; | 
|  | wire  _zz_33_; | 
|  | wire  _zz_34_; | 
|  | wire  decode_RS2_USE; | 
|  | wire  decode_RS1_USE; | 
|  | wire  execute_REGFILE_WRITE_VALID; | 
|  | wire  execute_BYPASSABLE_EXECUTE_STAGE; | 
|  | reg [31:0] _zz_35_; | 
|  | wire  memory_REGFILE_WRITE_VALID; | 
|  | wire [31:0] memory_INSTRUCTION; | 
|  | wire  memory_BYPASSABLE_MEMORY_STAGE; | 
|  | wire  writeBack_REGFILE_WRITE_VALID; | 
|  | reg [31:0] decode_RS2; | 
|  | reg [31:0] decode_RS1; | 
|  | reg [31:0] _zz_36_; | 
|  | wire `ShiftCtrlEnum_defaultEncoding_type execute_SHIFT_CTRL; | 
|  | wire `ShiftCtrlEnum_defaultEncoding_type _zz_37_; | 
|  | wire  _zz_38_; | 
|  | wire [31:0] _zz_39_; | 
|  | wire [31:0] _zz_40_; | 
|  | wire  execute_SRC_LESS_UNSIGNED; | 
|  | wire  execute_SRC2_FORCE_ZERO; | 
|  | wire  execute_SRC_USE_SUB_LESS; | 
|  | wire [31:0] _zz_41_; | 
|  | wire `Src2CtrlEnum_defaultEncoding_type execute_SRC2_CTRL; | 
|  | wire `Src2CtrlEnum_defaultEncoding_type _zz_42_; | 
|  | wire [31:0] _zz_43_; | 
|  | wire `Src1CtrlEnum_defaultEncoding_type execute_SRC1_CTRL; | 
|  | wire `Src1CtrlEnum_defaultEncoding_type _zz_44_; | 
|  | wire [31:0] _zz_45_; | 
|  | wire  decode_SRC_USE_SUB_LESS; | 
|  | wire  decode_SRC_ADD_ZERO; | 
|  | wire  _zz_46_; | 
|  | wire [31:0] execute_SRC_ADD_SUB; | 
|  | wire  execute_SRC_LESS; | 
|  | wire `AluCtrlEnum_defaultEncoding_type execute_ALU_CTRL; | 
|  | wire `AluCtrlEnum_defaultEncoding_type _zz_47_; | 
|  | wire [31:0] _zz_48_; | 
|  | wire [31:0] execute_SRC2; | 
|  | wire [31:0] execute_SRC1; | 
|  | wire `AluBitwiseCtrlEnum_defaultEncoding_type execute_ALU_BITWISE_CTRL; | 
|  | wire `AluBitwiseCtrlEnum_defaultEncoding_type _zz_49_; | 
|  | wire [31:0] _zz_50_; | 
|  | wire  _zz_51_; | 
|  | reg  _zz_52_; | 
|  | wire [31:0] _zz_53_; | 
|  | wire [31:0] _zz_54_; | 
|  | wire [31:0] decode_INSTRUCTION_ANTICIPATED; | 
|  | reg  decode_REGFILE_WRITE_VALID; | 
|  | wire  decode_LEGAL_INSTRUCTION; | 
|  | wire  decode_INSTRUCTION_READY; | 
|  | wire  _zz_55_; | 
|  | wire `Src1CtrlEnum_defaultEncoding_type _zz_56_; | 
|  | wire  _zz_57_; | 
|  | wire  _zz_58_; | 
|  | wire `Src2CtrlEnum_defaultEncoding_type _zz_59_; | 
|  | wire  _zz_60_; | 
|  | wire  _zz_61_; | 
|  | wire  _zz_62_; | 
|  | wire  _zz_63_; | 
|  | wire  _zz_64_; | 
|  | wire  _zz_65_; | 
|  | wire  _zz_66_; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type _zz_67_; | 
|  | wire `BranchCtrlEnum_defaultEncoding_type _zz_68_; | 
|  | wire  _zz_69_; | 
|  | wire `AluBitwiseCtrlEnum_defaultEncoding_type _zz_70_; | 
|  | wire  _zz_71_; | 
|  | wire `AluCtrlEnum_defaultEncoding_type _zz_72_; | 
|  | wire `ShiftCtrlEnum_defaultEncoding_type _zz_73_; | 
|  | wire  _zz_74_; | 
|  | wire  _zz_75_; | 
|  | wire  _zz_76_; | 
|  | wire  _zz_77_; | 
|  | wire  _zz_78_; | 
|  | wire  writeBack_MEMORY_STORE; | 
|  | reg [31:0] _zz_79_; | 
|  | wire  writeBack_MEMORY_ENABLE; | 
|  | wire [1:0] writeBack_MEMORY_ADDRESS_LOW; | 
|  | wire [31:0] writeBack_MEMORY_READ_DATA; | 
|  | wire  memory_MMU_FAULT; | 
|  | wire [31:0] memory_MMU_RSP_physicalAddress; | 
|  | wire  memory_MMU_RSP_isIoAccess; | 
|  | wire  memory_MMU_RSP_allowRead; | 
|  | wire  memory_MMU_RSP_allowWrite; | 
|  | wire  memory_MMU_RSP_allowExecute; | 
|  | wire  memory_MMU_RSP_exception; | 
|  | wire  memory_MMU_RSP_refilling; | 
|  | wire [31:0] memory_PC; | 
|  | wire  memory_ALIGNEMENT_FAULT; | 
|  | wire [31:0] memory_REGFILE_WRITE_DATA; | 
|  | wire  memory_MEMORY_STORE; | 
|  | wire  memory_MEMORY_ENABLE; | 
|  | wire [31:0] _zz_80_; | 
|  | wire [31:0] _zz_81_; | 
|  | wire  _zz_82_; | 
|  | wire  _zz_83_; | 
|  | wire  _zz_84_; | 
|  | wire  _zz_85_; | 
|  | wire  _zz_86_; | 
|  | wire  _zz_87_; | 
|  | wire  execute_MMU_FAULT; | 
|  | wire [31:0] execute_MMU_RSP_physicalAddress; | 
|  | wire  execute_MMU_RSP_isIoAccess; | 
|  | wire  execute_MMU_RSP_allowRead; | 
|  | wire  execute_MMU_RSP_allowWrite; | 
|  | wire  execute_MMU_RSP_allowExecute; | 
|  | wire  execute_MMU_RSP_exception; | 
|  | wire  execute_MMU_RSP_refilling; | 
|  | wire  _zz_88_; | 
|  | wire [31:0] execute_SRC_ADD; | 
|  | wire [1:0] _zz_89_; | 
|  | wire [31:0] execute_RS2; | 
|  | wire [31:0] execute_INSTRUCTION; | 
|  | wire  execute_MEMORY_STORE; | 
|  | wire  execute_MEMORY_ENABLE; | 
|  | wire  execute_ALIGNEMENT_FAULT; | 
|  | wire  _zz_90_; | 
|  | wire  decode_MEMORY_ENABLE; | 
|  | wire  decode_FLUSH_ALL; | 
|  | reg  IBusCachedPlugin_rsp_issueDetected; | 
|  | reg  _zz_91_; | 
|  | reg  _zz_92_; | 
|  | reg  _zz_93_; | 
|  | wire [31:0] _zz_94_; | 
|  | wire `BranchCtrlEnum_defaultEncoding_type decode_BRANCH_CTRL; | 
|  | wire `BranchCtrlEnum_defaultEncoding_type _zz_95_; | 
|  | wire [31:0] decode_INSTRUCTION; | 
|  | reg [31:0] _zz_96_; | 
|  | reg [31:0] _zz_97_; | 
|  | wire [31:0] decode_PC; | 
|  | wire [31:0] _zz_98_; | 
|  | wire [31:0] _zz_99_; | 
|  | wire [31:0] _zz_100_; | 
|  | wire [31:0] writeBack_PC; | 
|  | wire [31:0] writeBack_INSTRUCTION; | 
|  | reg  decode_arbitration_haltItself; | 
|  | reg  decode_arbitration_haltByOther; | 
|  | reg  decode_arbitration_removeIt; | 
|  | wire  decode_arbitration_flushIt; | 
|  | reg  decode_arbitration_flushNext; | 
|  | wire  decode_arbitration_isValid; | 
|  | wire  decode_arbitration_isStuck; | 
|  | wire  decode_arbitration_isStuckByOthers; | 
|  | wire  decode_arbitration_isFlushed; | 
|  | wire  decode_arbitration_isMoving; | 
|  | wire  decode_arbitration_isFiring; | 
|  | reg  execute_arbitration_haltItself; | 
|  | wire  execute_arbitration_haltByOther; | 
|  | reg  execute_arbitration_removeIt; | 
|  | wire  execute_arbitration_flushIt; | 
|  | wire  execute_arbitration_flushNext; | 
|  | reg  execute_arbitration_isValid; | 
|  | wire  execute_arbitration_isStuck; | 
|  | wire  execute_arbitration_isStuckByOthers; | 
|  | wire  execute_arbitration_isFlushed; | 
|  | wire  execute_arbitration_isMoving; | 
|  | wire  execute_arbitration_isFiring; | 
|  | reg  memory_arbitration_haltItself; | 
|  | wire  memory_arbitration_haltByOther; | 
|  | reg  memory_arbitration_removeIt; | 
|  | reg  memory_arbitration_flushIt; | 
|  | reg  memory_arbitration_flushNext; | 
|  | reg  memory_arbitration_isValid; | 
|  | wire  memory_arbitration_isStuck; | 
|  | wire  memory_arbitration_isStuckByOthers; | 
|  | wire  memory_arbitration_isFlushed; | 
|  | wire  memory_arbitration_isMoving; | 
|  | wire  memory_arbitration_isFiring; | 
|  | wire  writeBack_arbitration_haltItself; | 
|  | wire  writeBack_arbitration_haltByOther; | 
|  | reg  writeBack_arbitration_removeIt; | 
|  | wire  writeBack_arbitration_flushIt; | 
|  | reg  writeBack_arbitration_flushNext; | 
|  | reg  writeBack_arbitration_isValid; | 
|  | wire  writeBack_arbitration_isStuck; | 
|  | wire  writeBack_arbitration_isStuckByOthers; | 
|  | wire  writeBack_arbitration_isFlushed; | 
|  | wire  writeBack_arbitration_isMoving; | 
|  | wire  writeBack_arbitration_isFiring; | 
|  | wire [31:0] lastStageInstruction /* verilator public */ ; | 
|  | wire [31:0] lastStagePc /* verilator public */ ; | 
|  | wire  lastStageIsValid /* verilator public */ ; | 
|  | wire  lastStageIsFiring /* verilator public */ ; | 
|  | reg  IBusCachedPlugin_fetcherHalt; | 
|  | reg  IBusCachedPlugin_fetcherflushIt; | 
|  | reg  IBusCachedPlugin_incomingInstruction; | 
|  | wire  IBusCachedPlugin_predictionJumpInterface_valid; | 
|  | (* syn_keep , keep *) wire [31:0] IBusCachedPlugin_predictionJumpInterface_payload /* synthesis syn_keep = 1 */ ; | 
|  | reg  IBusCachedPlugin_decodePrediction_cmd_hadBranch; | 
|  | wire  IBusCachedPlugin_decodePrediction_rsp_wasWrong; | 
|  | wire  IBusCachedPlugin_pcValids_0; | 
|  | wire  IBusCachedPlugin_pcValids_1; | 
|  | wire  IBusCachedPlugin_pcValids_2; | 
|  | wire  IBusCachedPlugin_pcValids_3; | 
|  | wire  IBusCachedPlugin_redoBranch_valid; | 
|  | wire [31:0] IBusCachedPlugin_redoBranch_payload; | 
|  | reg  IBusCachedPlugin_decodeExceptionPort_valid; | 
|  | reg [3:0] IBusCachedPlugin_decodeExceptionPort_payload_code; | 
|  | wire [31:0] IBusCachedPlugin_decodeExceptionPort_payload_badAddr; | 
|  | wire  IBusCachedPlugin_mmuBus_cmd_isValid; | 
|  | wire [31:0] IBusCachedPlugin_mmuBus_cmd_virtualAddress; | 
|  | wire  IBusCachedPlugin_mmuBus_cmd_bypassTranslation; | 
|  | wire [31:0] IBusCachedPlugin_mmuBus_rsp_physicalAddress; | 
|  | wire  IBusCachedPlugin_mmuBus_rsp_isIoAccess; | 
|  | wire  IBusCachedPlugin_mmuBus_rsp_allowRead; | 
|  | wire  IBusCachedPlugin_mmuBus_rsp_allowWrite; | 
|  | wire  IBusCachedPlugin_mmuBus_rsp_allowExecute; | 
|  | wire  IBusCachedPlugin_mmuBus_rsp_exception; | 
|  | wire  IBusCachedPlugin_mmuBus_rsp_refilling; | 
|  | wire  IBusCachedPlugin_mmuBus_end; | 
|  | wire  IBusCachedPlugin_mmuBus_busy; | 
|  | reg  DBusSimplePlugin_memoryExceptionPort_valid; | 
|  | reg [3:0] DBusSimplePlugin_memoryExceptionPort_payload_code; | 
|  | wire [31:0] DBusSimplePlugin_memoryExceptionPort_payload_badAddr; | 
|  | wire  DBusSimplePlugin_mmuBus_cmd_isValid; | 
|  | wire [31:0] DBusSimplePlugin_mmuBus_cmd_virtualAddress; | 
|  | wire  DBusSimplePlugin_mmuBus_cmd_bypassTranslation; | 
|  | wire [31:0] DBusSimplePlugin_mmuBus_rsp_physicalAddress; | 
|  | wire  DBusSimplePlugin_mmuBus_rsp_isIoAccess; | 
|  | wire  DBusSimplePlugin_mmuBus_rsp_allowRead; | 
|  | wire  DBusSimplePlugin_mmuBus_rsp_allowWrite; | 
|  | wire  DBusSimplePlugin_mmuBus_rsp_allowExecute; | 
|  | wire  DBusSimplePlugin_mmuBus_rsp_exception; | 
|  | wire  DBusSimplePlugin_mmuBus_rsp_refilling; | 
|  | wire  DBusSimplePlugin_mmuBus_end; | 
|  | wire  DBusSimplePlugin_mmuBus_busy; | 
|  | reg  DBusSimplePlugin_redoBranch_valid; | 
|  | wire [31:0] DBusSimplePlugin_redoBranch_payload; | 
|  | wire  decodeExceptionPort_valid; | 
|  | wire [3:0] decodeExceptionPort_payload_code; | 
|  | wire [31:0] decodeExceptionPort_payload_badAddr; | 
|  | wire  BranchPlugin_jumpInterface_valid; | 
|  | wire [31:0] BranchPlugin_jumpInterface_payload; | 
|  | wire  BranchPlugin_branchExceptionPort_valid; | 
|  | wire [3:0] BranchPlugin_branchExceptionPort_payload_code; | 
|  | wire [31:0] BranchPlugin_branchExceptionPort_payload_badAddr; | 
|  | reg  CsrPlugin_jumpInterface_valid; | 
|  | reg [31:0] CsrPlugin_jumpInterface_payload; | 
|  | wire  CsrPlugin_exceptionPendings_0; | 
|  | wire  CsrPlugin_exceptionPendings_1; | 
|  | wire  CsrPlugin_exceptionPendings_2; | 
|  | wire  CsrPlugin_exceptionPendings_3; | 
|  | wire  externalInterrupt; | 
|  | wire  contextSwitching; | 
|  | reg [1:0] CsrPlugin_privilege; | 
|  | wire  CsrPlugin_forceMachineWire; | 
|  | wire  CsrPlugin_allowInterrupts; | 
|  | wire  CsrPlugin_allowException; | 
|  | wire  IBusCachedPlugin_jump_pcLoad_valid; | 
|  | wire [31:0] IBusCachedPlugin_jump_pcLoad_payload; | 
|  | wire [4:0] _zz_101_; | 
|  | wire [4:0] _zz_102_; | 
|  | wire  _zz_103_; | 
|  | wire  _zz_104_; | 
|  | wire  _zz_105_; | 
|  | wire  _zz_106_; | 
|  | wire  IBusCachedPlugin_fetchPc_output_valid; | 
|  | wire  IBusCachedPlugin_fetchPc_output_ready; | 
|  | wire [31:0] IBusCachedPlugin_fetchPc_output_payload; | 
|  | reg [31:0] IBusCachedPlugin_fetchPc_pcReg /* verilator public */ ; | 
|  | reg  IBusCachedPlugin_fetchPc_corrected; | 
|  | reg  IBusCachedPlugin_fetchPc_pcRegPropagate; | 
|  | reg  IBusCachedPlugin_fetchPc_booted; | 
|  | reg  IBusCachedPlugin_fetchPc_inc; | 
|  | reg [31:0] IBusCachedPlugin_fetchPc_pc; | 
|  | wire  IBusCachedPlugin_iBusRsp_stages_0_input_valid; | 
|  | wire  IBusCachedPlugin_iBusRsp_stages_0_input_ready; | 
|  | wire [31:0] IBusCachedPlugin_iBusRsp_stages_0_input_payload; | 
|  | wire  IBusCachedPlugin_iBusRsp_stages_0_output_valid; | 
|  | wire  IBusCachedPlugin_iBusRsp_stages_0_output_ready; | 
|  | wire [31:0] IBusCachedPlugin_iBusRsp_stages_0_output_payload; | 
|  | reg  IBusCachedPlugin_iBusRsp_stages_0_halt; | 
|  | wire  IBusCachedPlugin_iBusRsp_stages_0_inputSample; | 
|  | wire  IBusCachedPlugin_iBusRsp_stages_1_input_valid; | 
|  | wire  IBusCachedPlugin_iBusRsp_stages_1_input_ready; | 
|  | wire [31:0] IBusCachedPlugin_iBusRsp_stages_1_input_payload; | 
|  | wire  IBusCachedPlugin_iBusRsp_stages_1_output_valid; | 
|  | wire  IBusCachedPlugin_iBusRsp_stages_1_output_ready; | 
|  | wire [31:0] IBusCachedPlugin_iBusRsp_stages_1_output_payload; | 
|  | reg  IBusCachedPlugin_iBusRsp_stages_1_halt; | 
|  | wire  IBusCachedPlugin_iBusRsp_stages_1_inputSample; | 
|  | wire  IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_valid; | 
|  | wire  IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_ready; | 
|  | wire [31:0] IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_payload; | 
|  | wire  IBusCachedPlugin_iBusRsp_cacheRspArbitration_output_valid; | 
|  | wire  IBusCachedPlugin_iBusRsp_cacheRspArbitration_output_ready; | 
|  | wire [31:0] IBusCachedPlugin_iBusRsp_cacheRspArbitration_output_payload; | 
|  | reg  IBusCachedPlugin_iBusRsp_cacheRspArbitration_halt; | 
|  | wire  IBusCachedPlugin_iBusRsp_cacheRspArbitration_inputSample; | 
|  | wire  _zz_107_; | 
|  | wire  _zz_108_; | 
|  | wire  _zz_109_; | 
|  | wire  _zz_110_; | 
|  | wire  _zz_111_; | 
|  | reg  _zz_112_; | 
|  | wire  _zz_113_; | 
|  | reg  _zz_114_; | 
|  | reg [31:0] _zz_115_; | 
|  | reg  IBusCachedPlugin_iBusRsp_readyForError; | 
|  | wire  IBusCachedPlugin_iBusRsp_decodeInput_valid; | 
|  | wire  IBusCachedPlugin_iBusRsp_decodeInput_ready; | 
|  | wire [31:0] IBusCachedPlugin_iBusRsp_decodeInput_payload_pc; | 
|  | wire  IBusCachedPlugin_iBusRsp_decodeInput_payload_rsp_error; | 
|  | wire [31:0] IBusCachedPlugin_iBusRsp_decodeInput_payload_rsp_inst; | 
|  | wire  IBusCachedPlugin_iBusRsp_decodeInput_payload_isRvc; | 
|  | reg  IBusCachedPlugin_injector_nextPcCalc_valids_0; | 
|  | reg  IBusCachedPlugin_injector_nextPcCalc_valids_1; | 
|  | reg  IBusCachedPlugin_injector_nextPcCalc_valids_2; | 
|  | reg  IBusCachedPlugin_injector_nextPcCalc_valids_3; | 
|  | reg  IBusCachedPlugin_injector_nextPcCalc_valids_4; | 
|  | reg  IBusCachedPlugin_injector_decodeRemoved; | 
|  | wire  _zz_116_; | 
|  | reg [18:0] _zz_117_; | 
|  | wire  _zz_118_; | 
|  | reg [10:0] _zz_119_; | 
|  | wire  _zz_120_; | 
|  | reg [18:0] _zz_121_; | 
|  | reg  _zz_122_; | 
|  | wire  _zz_123_; | 
|  | reg [10:0] _zz_124_; | 
|  | wire  _zz_125_; | 
|  | reg [18:0] _zz_126_; | 
|  | wire  iBus_cmd_valid; | 
|  | wire  iBus_cmd_ready; | 
|  | reg [31:0] iBus_cmd_payload_address; | 
|  | wire [2:0] iBus_cmd_payload_size; | 
|  | wire  iBus_rsp_valid; | 
|  | wire [31:0] iBus_rsp_payload_data; | 
|  | wire  iBus_rsp_payload_error; | 
|  | wire [31:0] _zz_127_; | 
|  | reg [31:0] IBusCachedPlugin_rspCounter; | 
|  | wire  IBusCachedPlugin_s0_tightlyCoupledHit; | 
|  | reg  IBusCachedPlugin_s1_tightlyCoupledHit; | 
|  | reg  IBusCachedPlugin_s2_tightlyCoupledHit; | 
|  | wire  IBusCachedPlugin_rsp_iBusRspOutputHalt; | 
|  | reg  IBusCachedPlugin_rsp_redoFetch; | 
|  | wire  dBus_cmd_valid; | 
|  | wire  dBus_cmd_ready; | 
|  | wire  dBus_cmd_payload_wr; | 
|  | wire [31:0] dBus_cmd_payload_address; | 
|  | wire [31:0] dBus_cmd_payload_data; | 
|  | wire [1:0] dBus_cmd_payload_size; | 
|  | wire  dBus_rsp_ready; | 
|  | wire  dBus_rsp_error; | 
|  | wire [31:0] dBus_rsp_data; | 
|  | wire  _zz_128_; | 
|  | reg  execute_DBusSimplePlugin_skipCmd; | 
|  | reg [31:0] _zz_129_; | 
|  | reg [3:0] _zz_130_; | 
|  | wire [3:0] execute_DBusSimplePlugin_formalMask; | 
|  | reg [31:0] writeBack_DBusSimplePlugin_rspShifted; | 
|  | wire  _zz_131_; | 
|  | reg [31:0] _zz_132_; | 
|  | wire  _zz_133_; | 
|  | reg [31:0] _zz_134_; | 
|  | reg [31:0] writeBack_DBusSimplePlugin_rspFormated; | 
|  | wire [29:0] _zz_135_; | 
|  | wire  _zz_136_; | 
|  | wire  _zz_137_; | 
|  | wire  _zz_138_; | 
|  | wire  _zz_139_; | 
|  | wire  _zz_140_; | 
|  | wire  _zz_141_; | 
|  | wire `ShiftCtrlEnum_defaultEncoding_type _zz_142_; | 
|  | wire `AluCtrlEnum_defaultEncoding_type _zz_143_; | 
|  | wire `AluBitwiseCtrlEnum_defaultEncoding_type _zz_144_; | 
|  | wire `BranchCtrlEnum_defaultEncoding_type _zz_145_; | 
|  | wire `EnvCtrlEnum_defaultEncoding_type _zz_146_; | 
|  | wire `Src2CtrlEnum_defaultEncoding_type _zz_147_; | 
|  | wire `Src1CtrlEnum_defaultEncoding_type _zz_148_; | 
|  | wire [4:0] decode_RegFilePlugin_regFileReadAddress1; | 
|  | wire [4:0] decode_RegFilePlugin_regFileReadAddress2; | 
|  | wire [31:0] decode_RegFilePlugin_rs1Data; | 
|  | wire [31:0] decode_RegFilePlugin_rs2Data; | 
|  | reg  lastStageRegFileWrite_valid /* verilator public */ ; | 
|  | wire [4:0] lastStageRegFileWrite_payload_address /* verilator public */ ; | 
|  | wire [31:0] lastStageRegFileWrite_payload_data /* verilator public */ ; | 
|  | reg  _zz_149_; | 
|  | reg [31:0] execute_IntAluPlugin_bitwise; | 
|  | reg [31:0] _zz_150_; | 
|  | reg [31:0] _zz_151_; | 
|  | wire  _zz_152_; | 
|  | reg [19:0] _zz_153_; | 
|  | wire  _zz_154_; | 
|  | reg [19:0] _zz_155_; | 
|  | reg [31:0] _zz_156_; | 
|  | reg [31:0] execute_SrcPlugin_addSub; | 
|  | wire  execute_SrcPlugin_less; | 
|  | reg  execute_LightShifterPlugin_isActive; | 
|  | wire  execute_LightShifterPlugin_isShift; | 
|  | reg [4:0] execute_LightShifterPlugin_amplitudeReg; | 
|  | wire [4:0] execute_LightShifterPlugin_amplitude; | 
|  | wire [31:0] execute_LightShifterPlugin_shiftInput; | 
|  | wire  execute_LightShifterPlugin_done; | 
|  | reg [31:0] _zz_157_; | 
|  | reg  _zz_158_; | 
|  | reg  _zz_159_; | 
|  | wire  _zz_160_; | 
|  | reg  _zz_161_; | 
|  | reg [4:0] _zz_162_; | 
|  | reg [31:0] _zz_163_; | 
|  | wire  _zz_164_; | 
|  | wire  _zz_165_; | 
|  | wire  _zz_166_; | 
|  | wire  _zz_167_; | 
|  | wire  _zz_168_; | 
|  | wire  _zz_169_; | 
|  | wire  execute_BranchPlugin_eq; | 
|  | wire [2:0] _zz_170_; | 
|  | reg  _zz_171_; | 
|  | reg  _zz_172_; | 
|  | wire  _zz_173_; | 
|  | reg [19:0] _zz_174_; | 
|  | wire  _zz_175_; | 
|  | reg [10:0] _zz_176_; | 
|  | wire  _zz_177_; | 
|  | reg [18:0] _zz_178_; | 
|  | reg  _zz_179_; | 
|  | wire  execute_BranchPlugin_missAlignedTarget; | 
|  | reg [31:0] execute_BranchPlugin_branch_src1; | 
|  | reg [31:0] execute_BranchPlugin_branch_src2; | 
|  | wire  _zz_180_; | 
|  | reg [19:0] _zz_181_; | 
|  | wire  _zz_182_; | 
|  | reg [10:0] _zz_183_; | 
|  | wire  _zz_184_; | 
|  | reg [18:0] _zz_185_; | 
|  | wire [31:0] execute_BranchPlugin_branchAdder; | 
|  | wire [1:0] CsrPlugin_misa_base; | 
|  | wire [25:0] CsrPlugin_misa_extensions; | 
|  | reg [1:0] CsrPlugin_mtvec_mode; | 
|  | reg [29:0] CsrPlugin_mtvec_base; | 
|  | reg [31:0] CsrPlugin_mepc; | 
|  | reg  CsrPlugin_mstatus_MIE; | 
|  | reg  CsrPlugin_mstatus_MPIE; | 
|  | reg [1:0] CsrPlugin_mstatus_MPP; | 
|  | reg  CsrPlugin_mip_MEIP; | 
|  | reg  CsrPlugin_mip_MTIP; | 
|  | reg  CsrPlugin_mip_MSIP; | 
|  | reg  CsrPlugin_mie_MEIE; | 
|  | reg  CsrPlugin_mie_MTIE; | 
|  | reg  CsrPlugin_mie_MSIE; | 
|  | reg  CsrPlugin_mcause_interrupt; | 
|  | reg [3:0] CsrPlugin_mcause_exceptionCode; | 
|  | reg [31:0] CsrPlugin_mtval; | 
|  | reg [63:0] CsrPlugin_mcycle = 64'b0000000000000000000000000000000000000000000000000000000000000000; | 
|  | reg [63:0] CsrPlugin_minstret = 64'b0000000000000000000000000000000000000000000000000000000000000000; | 
|  | wire  _zz_186_; | 
|  | wire  _zz_187_; | 
|  | wire  _zz_188_; | 
|  | reg  CsrPlugin_exceptionPortCtrl_exceptionValids_decode; | 
|  | reg  CsrPlugin_exceptionPortCtrl_exceptionValids_execute; | 
|  | reg  CsrPlugin_exceptionPortCtrl_exceptionValids_memory; | 
|  | reg  CsrPlugin_exceptionPortCtrl_exceptionValids_writeBack; | 
|  | reg  CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_decode; | 
|  | reg  CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_execute; | 
|  | reg  CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_memory; | 
|  | reg  CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_writeBack; | 
|  | reg [3:0] CsrPlugin_exceptionPortCtrl_exceptionContext_code; | 
|  | reg [31:0] CsrPlugin_exceptionPortCtrl_exceptionContext_badAddr; | 
|  | wire [1:0] CsrPlugin_exceptionPortCtrl_exceptionTargetPrivilegeUncapped; | 
|  | wire [1:0] CsrPlugin_exceptionPortCtrl_exceptionTargetPrivilege; | 
|  | wire [1:0] _zz_189_; | 
|  | wire  _zz_190_; | 
|  | wire [1:0] _zz_191_; | 
|  | wire  _zz_192_; | 
|  | reg  CsrPlugin_interrupt_valid; | 
|  | reg [3:0] CsrPlugin_interrupt_code /* verilator public */ ; | 
|  | reg [1:0] CsrPlugin_interrupt_targetPrivilege; | 
|  | wire  CsrPlugin_exception; | 
|  | wire  CsrPlugin_lastStageWasWfi; | 
|  | reg  CsrPlugin_pipelineLiberator_done; | 
|  | wire  CsrPlugin_interruptJump /* verilator public */ ; | 
|  | reg  CsrPlugin_hadException; | 
|  | reg [1:0] CsrPlugin_targetPrivilege; | 
|  | reg [3:0] CsrPlugin_trapCause; | 
|  | reg [1:0] CsrPlugin_xtvec_mode; | 
|  | reg [29:0] CsrPlugin_xtvec_base; | 
|  | wire  execute_CsrPlugin_inWfi /* verilator public */ ; | 
|  | reg  execute_CsrPlugin_wfiWake; | 
|  | wire  execute_CsrPlugin_blockedBySideEffects; | 
|  | reg  execute_CsrPlugin_illegalAccess; | 
|  | reg  execute_CsrPlugin_illegalInstruction; | 
|  | reg [31:0] execute_CsrPlugin_readData; | 
|  | wire  execute_CsrPlugin_writeInstruction; | 
|  | wire  execute_CsrPlugin_readInstruction; | 
|  | wire  execute_CsrPlugin_writeEnable; | 
|  | wire  execute_CsrPlugin_readEnable; | 
|  | wire [31:0] execute_CsrPlugin_readToWriteData; | 
|  | reg [31:0] execute_CsrPlugin_writeData; | 
|  | wire [11:0] execute_CsrPlugin_csrAddress; | 
|  | reg [32:0] memory_MulDivIterativePlugin_rs1; | 
|  | reg [31:0] memory_MulDivIterativePlugin_rs2; | 
|  | reg [64:0] memory_MulDivIterativePlugin_accumulator; | 
|  | reg  memory_MulDivIterativePlugin_mul_counter_willIncrement; | 
|  | reg  memory_MulDivIterativePlugin_mul_counter_willClear; | 
|  | reg [5:0] memory_MulDivIterativePlugin_mul_counter_valueNext; | 
|  | reg [5:0] memory_MulDivIterativePlugin_mul_counter_value; | 
|  | wire  memory_MulDivIterativePlugin_mul_willOverflowIfInc; | 
|  | wire  memory_MulDivIterativePlugin_mul_counter_willOverflow; | 
|  | reg  memory_MulDivIterativePlugin_div_needRevert; | 
|  | reg  memory_MulDivIterativePlugin_div_counter_willIncrement; | 
|  | reg  memory_MulDivIterativePlugin_div_counter_willClear; | 
|  | reg [5:0] memory_MulDivIterativePlugin_div_counter_valueNext; | 
|  | reg [5:0] memory_MulDivIterativePlugin_div_counter_value; | 
|  | wire  memory_MulDivIterativePlugin_div_counter_willOverflowIfInc; | 
|  | wire  memory_MulDivIterativePlugin_div_counter_willOverflow; | 
|  | reg  memory_MulDivIterativePlugin_div_done; | 
|  | reg [31:0] memory_MulDivIterativePlugin_div_result; | 
|  | wire [31:0] _zz_193_; | 
|  | wire [32:0] _zz_194_; | 
|  | wire [32:0] _zz_195_; | 
|  | wire [31:0] _zz_196_; | 
|  | wire  _zz_197_; | 
|  | wire  _zz_198_; | 
|  | reg [32:0] _zz_199_; | 
|  | reg [31:0] externalInterruptArray_regNext; | 
|  | reg [31:0] _zz_200_; | 
|  | wire [31:0] _zz_201_; | 
|  | reg [31:0] decode_to_execute_INSTRUCTION; | 
|  | reg [31:0] execute_to_memory_INSTRUCTION; | 
|  | reg [31:0] memory_to_writeBack_INSTRUCTION; | 
|  | reg  execute_to_memory_ALIGNEMENT_FAULT; | 
|  | reg [31:0] memory_to_writeBack_MEMORY_READ_DATA; | 
|  | reg `ShiftCtrlEnum_defaultEncoding_type decode_to_execute_SHIFT_CTRL; | 
|  | reg  decode_to_execute_IS_CSR; | 
|  | reg [31:0] decode_to_execute_PC; | 
|  | reg [31:0] execute_to_memory_PC; | 
|  | reg [31:0] memory_to_writeBack_PC; | 
|  | reg  decode_to_execute_PREDICTION_HAD_BRANCHED2; | 
|  | reg  decode_to_execute_MEMORY_STORE; | 
|  | reg  execute_to_memory_MEMORY_STORE; | 
|  | reg  memory_to_writeBack_MEMORY_STORE; | 
|  | reg [31:0] decode_to_execute_FORMAL_PC_NEXT; | 
|  | reg [31:0] execute_to_memory_FORMAL_PC_NEXT; | 
|  | reg [31:0] memory_to_writeBack_FORMAL_PC_NEXT; | 
|  | reg `EnvCtrlEnum_defaultEncoding_type decode_to_execute_ENV_CTRL; | 
|  | reg `EnvCtrlEnum_defaultEncoding_type execute_to_memory_ENV_CTRL; | 
|  | reg `EnvCtrlEnum_defaultEncoding_type memory_to_writeBack_ENV_CTRL; | 
|  | reg  decode_to_execute_REGFILE_WRITE_VALID; | 
|  | reg  execute_to_memory_REGFILE_WRITE_VALID; | 
|  | reg  memory_to_writeBack_REGFILE_WRITE_VALID; | 
|  | reg  decode_to_execute_SRC_LESS_UNSIGNED; | 
|  | reg  execute_to_memory_BRANCH_DO; | 
|  | reg [31:0] execute_to_memory_REGFILE_WRITE_DATA; | 
|  | reg [31:0] memory_to_writeBack_REGFILE_WRITE_DATA; | 
|  | reg  decode_to_execute_CSR_WRITE_OPCODE; | 
|  | reg [31:0] decode_to_execute_RS1; | 
|  | reg  decode_to_execute_SRC2_FORCE_ZERO; | 
|  | reg  decode_to_execute_BYPASSABLE_MEMORY_STAGE; | 
|  | reg  execute_to_memory_BYPASSABLE_MEMORY_STAGE; | 
|  | reg `Src1CtrlEnum_defaultEncoding_type decode_to_execute_SRC1_CTRL; | 
|  | reg `BranchCtrlEnum_defaultEncoding_type decode_to_execute_BRANCH_CTRL; | 
|  | reg  decode_to_execute_MEMORY_ENABLE; | 
|  | reg  execute_to_memory_MEMORY_ENABLE; | 
|  | reg  memory_to_writeBack_MEMORY_ENABLE; | 
|  | reg  decode_to_execute_SRC_USE_SUB_LESS; | 
|  | reg  execute_to_memory_MMU_FAULT; | 
|  | reg [31:0] execute_to_memory_BRANCH_CALC; | 
|  | reg [31:0] decode_to_execute_RS2; | 
|  | reg  decode_to_execute_IS_MUL; | 
|  | reg  execute_to_memory_IS_MUL; | 
|  | reg [1:0] execute_to_memory_MEMORY_ADDRESS_LOW; | 
|  | reg [1:0] memory_to_writeBack_MEMORY_ADDRESS_LOW; | 
|  | reg  decode_to_execute_IS_DIV; | 
|  | reg  execute_to_memory_IS_DIV; | 
|  | reg  decode_to_execute_CSR_READ_OPCODE; | 
|  | reg  decode_to_execute_IS_RS1_SIGNED; | 
|  | reg  decode_to_execute_BYPASSABLE_EXECUTE_STAGE; | 
|  | reg [31:0] execute_to_memory_MMU_RSP_physicalAddress; | 
|  | reg  execute_to_memory_MMU_RSP_isIoAccess; | 
|  | reg  execute_to_memory_MMU_RSP_allowRead; | 
|  | reg  execute_to_memory_MMU_RSP_allowWrite; | 
|  | reg  execute_to_memory_MMU_RSP_allowExecute; | 
|  | reg  execute_to_memory_MMU_RSP_exception; | 
|  | reg  execute_to_memory_MMU_RSP_refilling; | 
|  | reg  decode_to_execute_IS_RS2_SIGNED; | 
|  | reg `Src2CtrlEnum_defaultEncoding_type decode_to_execute_SRC2_CTRL; | 
|  | reg `AluBitwiseCtrlEnum_defaultEncoding_type decode_to_execute_ALU_BITWISE_CTRL; | 
|  | reg `AluCtrlEnum_defaultEncoding_type decode_to_execute_ALU_CTRL; | 
|  | reg [2:0] _zz_202_; | 
|  | reg  _zz_203_; | 
|  | reg [31:0] iBusWishbone_DAT_MISO_regNext; | 
|  | wire  dBus_cmd_halfPipe_valid; | 
|  | wire  dBus_cmd_halfPipe_ready; | 
|  | wire  dBus_cmd_halfPipe_payload_wr; | 
|  | wire [31:0] dBus_cmd_halfPipe_payload_address; | 
|  | wire [31:0] dBus_cmd_halfPipe_payload_data; | 
|  | wire [1:0] dBus_cmd_halfPipe_payload_size; | 
|  | reg  dBus_cmd_halfPipe_regs_valid; | 
|  | reg  dBus_cmd_halfPipe_regs_ready; | 
|  | reg  dBus_cmd_halfPipe_regs_payload_wr; | 
|  | reg [31:0] dBus_cmd_halfPipe_regs_payload_address; | 
|  | reg [31:0] dBus_cmd_halfPipe_regs_payload_data; | 
|  | reg [1:0] dBus_cmd_halfPipe_regs_payload_size; | 
|  | reg [3:0] _zz_204_; | 
|  | `ifndef SYNTHESIS | 
|  | reg [63:0] decode_ALU_CTRL_string; | 
|  | reg [63:0] _zz_1__string; | 
|  | reg [63:0] _zz_2__string; | 
|  | reg [63:0] _zz_3__string; | 
|  | reg [39:0] decode_ALU_BITWISE_CTRL_string; | 
|  | reg [39:0] _zz_4__string; | 
|  | reg [39:0] _zz_5__string; | 
|  | reg [39:0] _zz_6__string; | 
|  | reg [23:0] decode_SRC2_CTRL_string; | 
|  | reg [23:0] _zz_7__string; | 
|  | reg [23:0] _zz_8__string; | 
|  | reg [23:0] _zz_9__string; | 
|  | reg [31:0] _zz_10__string; | 
|  | reg [31:0] _zz_11__string; | 
|  | reg [95:0] decode_SRC1_CTRL_string; | 
|  | reg [95:0] _zz_12__string; | 
|  | reg [95:0] _zz_13__string; | 
|  | reg [95:0] _zz_14__string; | 
|  | reg [31:0] _zz_15__string; | 
|  | reg [31:0] _zz_16__string; | 
|  | reg [31:0] _zz_17__string; | 
|  | reg [31:0] _zz_18__string; | 
|  | reg [31:0] decode_ENV_CTRL_string; | 
|  | reg [31:0] _zz_19__string; | 
|  | reg [31:0] _zz_20__string; | 
|  | reg [31:0] _zz_21__string; | 
|  | reg [71:0] decode_SHIFT_CTRL_string; | 
|  | reg [71:0] _zz_22__string; | 
|  | reg [71:0] _zz_23__string; | 
|  | reg [71:0] _zz_24__string; | 
|  | reg [31:0] memory_ENV_CTRL_string; | 
|  | reg [31:0] _zz_25__string; | 
|  | reg [31:0] execute_ENV_CTRL_string; | 
|  | reg [31:0] _zz_26__string; | 
|  | reg [31:0] writeBack_ENV_CTRL_string; | 
|  | reg [31:0] _zz_29__string; | 
|  | reg [31:0] execute_BRANCH_CTRL_string; | 
|  | reg [31:0] _zz_32__string; | 
|  | reg [71:0] execute_SHIFT_CTRL_string; | 
|  | reg [71:0] _zz_37__string; | 
|  | reg [23:0] execute_SRC2_CTRL_string; | 
|  | reg [23:0] _zz_42__string; | 
|  | reg [95:0] execute_SRC1_CTRL_string; | 
|  | reg [95:0] _zz_44__string; | 
|  | reg [63:0] execute_ALU_CTRL_string; | 
|  | reg [63:0] _zz_47__string; | 
|  | reg [39:0] execute_ALU_BITWISE_CTRL_string; | 
|  | reg [39:0] _zz_49__string; | 
|  | reg [95:0] _zz_56__string; | 
|  | reg [23:0] _zz_59__string; | 
|  | reg [31:0] _zz_67__string; | 
|  | reg [31:0] _zz_68__string; | 
|  | reg [39:0] _zz_70__string; | 
|  | reg [63:0] _zz_72__string; | 
|  | reg [71:0] _zz_73__string; | 
|  | reg [31:0] decode_BRANCH_CTRL_string; | 
|  | reg [31:0] _zz_95__string; | 
|  | reg [71:0] _zz_142__string; | 
|  | reg [63:0] _zz_143__string; | 
|  | reg [39:0] _zz_144__string; | 
|  | reg [31:0] _zz_145__string; | 
|  | reg [31:0] _zz_146__string; | 
|  | reg [23:0] _zz_147__string; | 
|  | reg [95:0] _zz_148__string; | 
|  | reg [71:0] decode_to_execute_SHIFT_CTRL_string; | 
|  | reg [31:0] decode_to_execute_ENV_CTRL_string; | 
|  | reg [31:0] execute_to_memory_ENV_CTRL_string; | 
|  | reg [31:0] memory_to_writeBack_ENV_CTRL_string; | 
|  | reg [95:0] decode_to_execute_SRC1_CTRL_string; | 
|  | reg [31:0] decode_to_execute_BRANCH_CTRL_string; | 
|  | reg [23:0] decode_to_execute_SRC2_CTRL_string; | 
|  | reg [39:0] decode_to_execute_ALU_BITWISE_CTRL_string; | 
|  | reg [63:0] decode_to_execute_ALU_CTRL_string; | 
|  | `endif | 
|  |  | 
|  | (* ram_style = "block" *) reg [31:0] RegFilePlugin_regFile [0:31] /* verilator public */ ; | 
|  | assign _zz_217_ = (memory_arbitration_isValid && memory_IS_MUL); | 
|  | assign _zz_218_ = (memory_arbitration_isValid && memory_IS_DIV); | 
|  | assign _zz_219_ = (writeBack_arbitration_isValid && writeBack_REGFILE_WRITE_VALID); | 
|  | assign _zz_220_ = 1'b1; | 
|  | assign _zz_221_ = (memory_arbitration_isValid && memory_REGFILE_WRITE_VALID); | 
|  | assign _zz_222_ = (execute_arbitration_isValid && execute_REGFILE_WRITE_VALID); | 
|  | assign _zz_223_ = ((execute_arbitration_isValid && execute_LightShifterPlugin_isShift) && (execute_SRC2[4 : 0] != (5'b00000))); | 
|  | assign _zz_224_ = (execute_arbitration_isValid && execute_IS_CSR); | 
|  | assign _zz_225_ = ((_zz_210_ && IBusCachedPlugin_cache_io_cpu_decode_error) && (! _zz_91_)); | 
|  | assign _zz_226_ = ((_zz_210_ && IBusCachedPlugin_cache_io_cpu_decode_cacheMiss) && (! _zz_92_)); | 
|  | assign _zz_227_ = ((_zz_210_ && IBusCachedPlugin_cache_io_cpu_decode_mmuException) && (! _zz_93_)); | 
|  | assign _zz_228_ = ((_zz_210_ && IBusCachedPlugin_cache_io_cpu_decode_mmuRefilling) && (! 1'b0)); | 
|  | assign _zz_229_ = ({decodeExceptionPort_valid,IBusCachedPlugin_decodeExceptionPort_valid} != (2'b00)); | 
|  | assign _zz_230_ = (! execute_arbitration_isStuckByOthers); | 
|  | assign _zz_231_ = (! memory_MulDivIterativePlugin_mul_willOverflowIfInc); | 
|  | assign _zz_232_ = (! memory_MulDivIterativePlugin_div_done); | 
|  | assign _zz_233_ = ({BranchPlugin_branchExceptionPort_valid,DBusSimplePlugin_memoryExceptionPort_valid} != (2'b00)); | 
|  | assign _zz_234_ = (CsrPlugin_hadException || CsrPlugin_interruptJump); | 
|  | assign _zz_235_ = (writeBack_arbitration_isValid && (writeBack_ENV_CTRL == `EnvCtrlEnum_defaultEncoding_XRET)); | 
|  | assign _zz_236_ = writeBack_INSTRUCTION[29 : 28]; | 
|  | assign _zz_237_ = (! IBusCachedPlugin_iBusRsp_readyForError); | 
|  | assign _zz_238_ = ((dBus_rsp_ready && dBus_rsp_error) && (! memory_MEMORY_STORE)); | 
|  | assign _zz_239_ = (! ((memory_arbitration_isValid && memory_MEMORY_ENABLE) && (1'b1 || (! memory_arbitration_isStuckByOthers)))); | 
|  | assign _zz_240_ = (writeBack_arbitration_isValid && writeBack_REGFILE_WRITE_VALID); | 
|  | assign _zz_241_ = (1'b0 || (! 1'b1)); | 
|  | assign _zz_242_ = (memory_arbitration_isValid && memory_REGFILE_WRITE_VALID); | 
|  | assign _zz_243_ = (1'b0 || (! memory_BYPASSABLE_MEMORY_STAGE)); | 
|  | assign _zz_244_ = (execute_arbitration_isValid && execute_REGFILE_WRITE_VALID); | 
|  | assign _zz_245_ = (1'b0 || (! execute_BYPASSABLE_EXECUTE_STAGE)); | 
|  | assign _zz_246_ = (! memory_arbitration_isStuck); | 
|  | assign _zz_247_ = (iBus_cmd_valid || (_zz_202_ != (3'b000))); | 
|  | assign _zz_248_ = (CsrPlugin_mstatus_MIE || (CsrPlugin_privilege < (2'b11))); | 
|  | assign _zz_249_ = ((_zz_186_ && 1'b1) && (! 1'b0)); | 
|  | assign _zz_250_ = ((_zz_187_ && 1'b1) && (! 1'b0)); | 
|  | assign _zz_251_ = ((_zz_188_ && 1'b1) && (! 1'b0)); | 
|  | assign _zz_252_ = (! dBus_cmd_halfPipe_regs_valid); | 
|  | assign _zz_253_ = writeBack_INSTRUCTION[13 : 12]; | 
|  | assign _zz_254_ = execute_INSTRUCTION[13]; | 
|  | assign _zz_255_ = (_zz_101_ - (5'b00001)); | 
|  | assign _zz_256_ = {IBusCachedPlugin_fetchPc_inc,(2'b00)}; | 
|  | assign _zz_257_ = {29'd0, _zz_256_}; | 
|  | assign _zz_258_ = {{{decode_INSTRUCTION[31],decode_INSTRUCTION[7]},decode_INSTRUCTION[30 : 25]},decode_INSTRUCTION[11 : 8]}; | 
|  | assign _zz_259_ = {{_zz_117_,{{{decode_INSTRUCTION[31],decode_INSTRUCTION[7]},decode_INSTRUCTION[30 : 25]},decode_INSTRUCTION[11 : 8]}},1'b0}; | 
|  | assign _zz_260_ = {{{decode_INSTRUCTION[31],decode_INSTRUCTION[19 : 12]},decode_INSTRUCTION[20]},decode_INSTRUCTION[30 : 21]}; | 
|  | assign _zz_261_ = {{{decode_INSTRUCTION[31],decode_INSTRUCTION[7]},decode_INSTRUCTION[30 : 25]},decode_INSTRUCTION[11 : 8]}; | 
|  | assign _zz_262_ = {{_zz_119_,{{{decode_INSTRUCTION[31],decode_INSTRUCTION[19 : 12]},decode_INSTRUCTION[20]},decode_INSTRUCTION[30 : 21]}},1'b0}; | 
|  | assign _zz_263_ = {{_zz_121_,{{{decode_INSTRUCTION[31],decode_INSTRUCTION[7]},decode_INSTRUCTION[30 : 25]},decode_INSTRUCTION[11 : 8]}},1'b0}; | 
|  | assign _zz_264_ = {{{decode_INSTRUCTION[31],decode_INSTRUCTION[19 : 12]},decode_INSTRUCTION[20]},decode_INSTRUCTION[30 : 21]}; | 
|  | assign _zz_265_ = {{{decode_INSTRUCTION[31],decode_INSTRUCTION[7]},decode_INSTRUCTION[30 : 25]},decode_INSTRUCTION[11 : 8]}; | 
|  | assign _zz_266_ = (memory_MEMORY_STORE ? (3'b110) : (3'b100)); | 
|  | assign _zz_267_ = _zz_135_[0 : 0]; | 
|  | assign _zz_268_ = _zz_135_[1 : 1]; | 
|  | assign _zz_269_ = _zz_135_[2 : 2]; | 
|  | assign _zz_270_ = _zz_135_[3 : 3]; | 
|  | assign _zz_271_ = _zz_135_[8 : 8]; | 
|  | assign _zz_272_ = _zz_135_[11 : 11]; | 
|  | assign _zz_273_ = _zz_135_[15 : 15]; | 
|  | assign _zz_274_ = _zz_135_[16 : 16]; | 
|  | assign _zz_275_ = _zz_135_[17 : 17]; | 
|  | assign _zz_276_ = _zz_135_[18 : 18]; | 
|  | assign _zz_277_ = _zz_135_[19 : 19]; | 
|  | assign _zz_278_ = _zz_135_[20 : 20]; | 
|  | assign _zz_279_ = _zz_135_[21 : 21]; | 
|  | assign _zz_280_ = _zz_135_[24 : 24]; | 
|  | assign _zz_281_ = _zz_135_[26 : 26]; | 
|  | assign _zz_282_ = _zz_135_[29 : 29]; | 
|  | assign _zz_283_ = execute_SRC_LESS; | 
|  | assign _zz_284_ = (3'b100); | 
|  | assign _zz_285_ = execute_INSTRUCTION[19 : 15]; | 
|  | assign _zz_286_ = execute_INSTRUCTION[31 : 20]; | 
|  | assign _zz_287_ = {execute_INSTRUCTION[31 : 25],execute_INSTRUCTION[11 : 7]}; | 
|  | assign _zz_288_ = ($signed(_zz_289_) + $signed(_zz_292_)); | 
|  | assign _zz_289_ = ($signed(_zz_290_) + $signed(_zz_291_)); | 
|  | assign _zz_290_ = execute_SRC1; | 
|  | assign _zz_291_ = (execute_SRC_USE_SUB_LESS ? (~ execute_SRC2) : execute_SRC2); | 
|  | assign _zz_292_ = (execute_SRC_USE_SUB_LESS ? _zz_293_ : _zz_294_); | 
|  | assign _zz_293_ = (32'b00000000000000000000000000000001); | 
|  | assign _zz_294_ = (32'b00000000000000000000000000000000); | 
|  | assign _zz_295_ = (_zz_296_ >>> 1); | 
|  | assign _zz_296_ = {((execute_SHIFT_CTRL == `ShiftCtrlEnum_defaultEncoding_SRA_1) && execute_LightShifterPlugin_shiftInput[31]),execute_LightShifterPlugin_shiftInput}; | 
|  | assign _zz_297_ = execute_INSTRUCTION[31 : 20]; | 
|  | assign _zz_298_ = {{{execute_INSTRUCTION[31],execute_INSTRUCTION[19 : 12]},execute_INSTRUCTION[20]},execute_INSTRUCTION[30 : 21]}; | 
|  | assign _zz_299_ = {{{execute_INSTRUCTION[31],execute_INSTRUCTION[7]},execute_INSTRUCTION[30 : 25]},execute_INSTRUCTION[11 : 8]}; | 
|  | assign _zz_300_ = {_zz_174_,execute_INSTRUCTION[31 : 20]}; | 
|  | assign _zz_301_ = {{_zz_176_,{{{execute_INSTRUCTION[31],execute_INSTRUCTION[19 : 12]},execute_INSTRUCTION[20]},execute_INSTRUCTION[30 : 21]}},1'b0}; | 
|  | assign _zz_302_ = {{_zz_178_,{{{execute_INSTRUCTION[31],execute_INSTRUCTION[7]},execute_INSTRUCTION[30 : 25]},execute_INSTRUCTION[11 : 8]}},1'b0}; | 
|  | assign _zz_303_ = execute_INSTRUCTION[31 : 20]; | 
|  | assign _zz_304_ = {{{execute_INSTRUCTION[31],execute_INSTRUCTION[19 : 12]},execute_INSTRUCTION[20]},execute_INSTRUCTION[30 : 21]}; | 
|  | assign _zz_305_ = {{{execute_INSTRUCTION[31],execute_INSTRUCTION[7]},execute_INSTRUCTION[30 : 25]},execute_INSTRUCTION[11 : 8]}; | 
|  | assign _zz_306_ = (3'b100); | 
|  | assign _zz_307_ = (_zz_189_ & (~ _zz_308_)); | 
|  | assign _zz_308_ = (_zz_189_ - (2'b01)); | 
|  | assign _zz_309_ = (_zz_191_ & (~ _zz_310_)); | 
|  | assign _zz_310_ = (_zz_191_ - (2'b01)); | 
|  | assign _zz_311_ = memory_MulDivIterativePlugin_mul_counter_willIncrement; | 
|  | assign _zz_312_ = {5'd0, _zz_311_}; | 
|  | assign _zz_313_ = (_zz_315_ + _zz_317_); | 
|  | assign _zz_314_ = (memory_MulDivIterativePlugin_rs2[0] ? memory_MulDivIterativePlugin_rs1 : (33'b000000000000000000000000000000000)); | 
|  | assign _zz_315_ = {{1{_zz_314_[32]}}, _zz_314_}; | 
|  | assign _zz_316_ = _zz_318_; | 
|  | assign _zz_317_ = {{1{_zz_316_[32]}}, _zz_316_}; | 
|  | assign _zz_318_ = (memory_MulDivIterativePlugin_accumulator >>> 32); | 
|  | assign _zz_319_ = memory_MulDivIterativePlugin_div_counter_willIncrement; | 
|  | assign _zz_320_ = {5'd0, _zz_319_}; | 
|  | assign _zz_321_ = {1'd0, memory_MulDivIterativePlugin_rs2}; | 
|  | assign _zz_322_ = {_zz_193_,(! _zz_195_[32])}; | 
|  | assign _zz_323_ = _zz_195_[31:0]; | 
|  | assign _zz_324_ = _zz_194_[31:0]; | 
|  | assign _zz_325_ = _zz_326_; | 
|  | assign _zz_326_ = _zz_327_; | 
|  | assign _zz_327_ = ({1'b0,(memory_MulDivIterativePlugin_div_needRevert ? (~ _zz_196_) : _zz_196_)} + _zz_329_); | 
|  | assign _zz_328_ = memory_MulDivIterativePlugin_div_needRevert; | 
|  | assign _zz_329_ = {32'd0, _zz_328_}; | 
|  | assign _zz_330_ = _zz_198_; | 
|  | assign _zz_331_ = {32'd0, _zz_330_}; | 
|  | assign _zz_332_ = _zz_197_; | 
|  | assign _zz_333_ = {31'd0, _zz_332_}; | 
|  | assign _zz_334_ = execute_CsrPlugin_writeData[7 : 7]; | 
|  | assign _zz_335_ = execute_CsrPlugin_writeData[3 : 3]; | 
|  | assign _zz_336_ = execute_CsrPlugin_writeData[3 : 3]; | 
|  | assign _zz_337_ = execute_CsrPlugin_writeData[11 : 11]; | 
|  | assign _zz_338_ = execute_CsrPlugin_writeData[7 : 7]; | 
|  | assign _zz_339_ = execute_CsrPlugin_writeData[3 : 3]; | 
|  | assign _zz_340_ = (iBus_cmd_payload_address >>> 5); | 
|  | assign _zz_341_ = ({3'd0,_zz_204_} <<< dBus_cmd_halfPipe_payload_address[1 : 0]); | 
|  | assign _zz_342_ = 1'b1; | 
|  | assign _zz_343_ = 1'b1; | 
|  | assign _zz_344_ = {_zz_104_,{_zz_106_,_zz_105_}}; | 
|  | assign _zz_345_ = decode_INSTRUCTION[31]; | 
|  | assign _zz_346_ = decode_INSTRUCTION[31]; | 
|  | assign _zz_347_ = decode_INSTRUCTION[7]; | 
|  | assign _zz_348_ = ((decode_INSTRUCTION & (32'b00000000000000000000000000010100)) == (32'b00000000000000000000000000000100)); | 
|  | assign _zz_349_ = ((decode_INSTRUCTION & _zz_356_) == (32'b00000000000000000000000000000100)); | 
|  | assign _zz_350_ = _zz_141_; | 
|  | assign _zz_351_ = ((decode_INSTRUCTION & _zz_357_) == (32'b00000010000000000100000000100000)); | 
|  | assign _zz_352_ = (1'b0); | 
|  | assign _zz_353_ = ({_zz_358_,{_zz_359_,_zz_360_}} != (3'b000)); | 
|  | assign _zz_354_ = ({_zz_361_,_zz_362_} != (2'b00)); | 
|  | assign _zz_355_ = {(_zz_363_ != _zz_364_),{_zz_365_,{_zz_366_,_zz_367_}}}; | 
|  | assign _zz_356_ = (32'b00000000000000000000000001000100); | 
|  | assign _zz_357_ = (32'b00000010000000000100000001100100); | 
|  | assign _zz_358_ = ((decode_INSTRUCTION & (32'b00000000000000000000000001010000)) == (32'b00000000000000000000000001000000)); | 
|  | assign _zz_359_ = ((decode_INSTRUCTION & _zz_368_) == (32'b00000000000000000000000001000000)); | 
|  | assign _zz_360_ = ((decode_INSTRUCTION & _zz_369_) == (32'b00000000000000000000000000000000)); | 
|  | assign _zz_361_ = _zz_140_; | 
|  | assign _zz_362_ = _zz_139_; | 
|  | assign _zz_363_ = {_zz_136_,(_zz_370_ == _zz_371_)}; | 
|  | assign _zz_364_ = (2'b00); | 
|  | assign _zz_365_ = ({_zz_136_,_zz_372_} != (2'b00)); | 
|  | assign _zz_366_ = ({_zz_373_,_zz_374_} != (3'b000)); | 
|  | assign _zz_367_ = {(_zz_375_ != _zz_376_),{_zz_377_,{_zz_378_,_zz_379_}}}; | 
|  | assign _zz_368_ = (32'b00000000000000000011000001000000); | 
|  | assign _zz_369_ = (32'b00000000000000000000000000111000); | 
|  | assign _zz_370_ = (decode_INSTRUCTION & (32'b00000000000000000000000001110000)); | 
|  | assign _zz_371_ = (32'b00000000000000000000000000100000); | 
|  | assign _zz_372_ = ((decode_INSTRUCTION & (32'b00000000000000000000000000100000)) == (32'b00000000000000000000000000000000)); | 
|  | assign _zz_373_ = ((decode_INSTRUCTION & _zz_380_) == (32'b00000000000000000000000001000000)); | 
|  | assign _zz_374_ = {(_zz_381_ == _zz_382_),(_zz_383_ == _zz_384_)}; | 
|  | assign _zz_375_ = ((decode_INSTRUCTION & _zz_385_) == (32'b00000000000000000000000000100000)); | 
|  | assign _zz_376_ = (1'b0); | 
|  | assign _zz_377_ = ((_zz_386_ == _zz_387_) != (1'b0)); | 
|  | assign _zz_378_ = ({_zz_388_,_zz_389_} != (2'b00)); | 
|  | assign _zz_379_ = {(_zz_390_ != _zz_391_),{_zz_392_,{_zz_393_,_zz_394_}}}; | 
|  | assign _zz_380_ = (32'b00000000000000000000000001000100); | 
|  | assign _zz_381_ = (decode_INSTRUCTION & (32'b00000000000000000010000000010100)); | 
|  | assign _zz_382_ = (32'b00000000000000000010000000010000); | 
|  | assign _zz_383_ = (decode_INSTRUCTION & (32'b01000000000000000100000000110100)); | 
|  | assign _zz_384_ = (32'b01000000000000000000000000110000); | 
|  | assign _zz_385_ = (32'b00000000000000000000000000100000); | 
|  | assign _zz_386_ = (decode_INSTRUCTION & (32'b00000000000000000001000001001000)); | 
|  | assign _zz_387_ = (32'b00000000000000000001000000001000); | 
|  | assign _zz_388_ = ((decode_INSTRUCTION & _zz_395_) == (32'b00000000000000000000000000100000)); | 
|  | assign _zz_389_ = ((decode_INSTRUCTION & _zz_396_) == (32'b00000000000000000000000000100000)); | 
|  | assign _zz_390_ = {_zz_138_,{_zz_397_,{_zz_398_,_zz_399_}}}; | 
|  | assign _zz_391_ = (6'b000000); | 
|  | assign _zz_392_ = ({_zz_400_,_zz_401_} != (2'b00)); | 
|  | assign _zz_393_ = ({_zz_402_,_zz_403_} != (4'b0000)); | 
|  | assign _zz_394_ = {(_zz_404_ != _zz_405_),{_zz_406_,{_zz_407_,_zz_408_}}}; | 
|  | assign _zz_395_ = (32'b00000000000000000000000000110100); | 
|  | assign _zz_396_ = (32'b00000000000000000000000001100100); | 
|  | assign _zz_397_ = ((decode_INSTRUCTION & _zz_409_) == (32'b00000000000000000001000000010000)); | 
|  | assign _zz_398_ = (_zz_410_ == _zz_411_); | 
|  | assign _zz_399_ = {_zz_412_,{_zz_413_,_zz_414_}}; | 
|  | assign _zz_400_ = ((decode_INSTRUCTION & _zz_415_) == (32'b00000000000000000010000000000000)); | 
|  | assign _zz_401_ = ((decode_INSTRUCTION & _zz_416_) == (32'b00000000000000000001000000000000)); | 
|  | assign _zz_402_ = (_zz_417_ == _zz_418_); | 
|  | assign _zz_403_ = {_zz_419_,{_zz_420_,_zz_421_}}; | 
|  | assign _zz_404_ = (_zz_422_ == _zz_423_); | 
|  | assign _zz_405_ = (1'b0); | 
|  | assign _zz_406_ = ({_zz_424_,_zz_425_} != (2'b00)); | 
|  | assign _zz_407_ = (_zz_426_ != _zz_427_); | 
|  | assign _zz_408_ = {_zz_428_,{_zz_429_,_zz_430_}}; | 
|  | assign _zz_409_ = (32'b00000000000000000001000000010000); | 
|  | assign _zz_410_ = (decode_INSTRUCTION & (32'b00000000000000000010000000010000)); | 
|  | assign _zz_411_ = (32'b00000000000000000010000000010000); | 
|  | assign _zz_412_ = ((decode_INSTRUCTION & _zz_431_) == (32'b00000000000000000000000000010000)); | 
|  | assign _zz_413_ = (_zz_432_ == _zz_433_); | 
|  | assign _zz_414_ = (_zz_434_ == _zz_435_); | 
|  | assign _zz_415_ = (32'b00000000000000000010000000010000); | 
|  | assign _zz_416_ = (32'b00000000000000000101000000000000); | 
|  | assign _zz_417_ = (decode_INSTRUCTION & (32'b00000000000000000000000001000100)); | 
|  | assign _zz_418_ = (32'b00000000000000000000000000000000); | 
|  | assign _zz_419_ = ((decode_INSTRUCTION & _zz_436_) == (32'b00000000000000000000000000000000)); | 
|  | assign _zz_420_ = (_zz_437_ == _zz_438_); | 
|  | assign _zz_421_ = (_zz_439_ == _zz_440_); | 
|  | assign _zz_422_ = (decode_INSTRUCTION & (32'b00000000000000000011000001010000)); | 
|  | assign _zz_423_ = (32'b00000000000000000000000001010000); | 
|  | assign _zz_424_ = _zz_138_; | 
|  | assign _zz_425_ = (_zz_441_ == _zz_442_); | 
|  | assign _zz_426_ = (_zz_443_ == _zz_444_); | 
|  | assign _zz_427_ = (1'b0); | 
|  | assign _zz_428_ = (_zz_445_ != (1'b0)); | 
|  | assign _zz_429_ = (_zz_446_ != _zz_447_); | 
|  | assign _zz_430_ = {_zz_448_,{_zz_449_,_zz_450_}}; | 
|  | assign _zz_431_ = (32'b00000000000000000000000001010000); | 
|  | assign _zz_432_ = (decode_INSTRUCTION & (32'b00000000000000000000000000001100)); | 
|  | assign _zz_433_ = (32'b00000000000000000000000000000100); | 
|  | assign _zz_434_ = (decode_INSTRUCTION & (32'b00000000000000000000000000101000)); | 
|  | assign _zz_435_ = (32'b00000000000000000000000000000000); | 
|  | assign _zz_436_ = (32'b00000000000000000000000000011000); | 
|  | assign _zz_437_ = (decode_INSTRUCTION & (32'b00000000000000000110000000000100)); | 
|  | assign _zz_438_ = (32'b00000000000000000010000000000000); | 
|  | assign _zz_439_ = (decode_INSTRUCTION & (32'b00000000000000000101000000000100)); | 
|  | assign _zz_440_ = (32'b00000000000000000001000000000000); | 
|  | assign _zz_441_ = (decode_INSTRUCTION & (32'b00000000000000000000000000011100)); | 
|  | assign _zz_442_ = (32'b00000000000000000000000000000100); | 
|  | assign _zz_443_ = (decode_INSTRUCTION & (32'b00000000000000000000000001011000)); | 
|  | assign _zz_444_ = (32'b00000000000000000000000001000000); | 
|  | assign _zz_445_ = ((decode_INSTRUCTION & (32'b00000010000000000100000001110100)) == (32'b00000010000000000000000000110000)); | 
|  | assign _zz_446_ = ((decode_INSTRUCTION & (32'b00000000000000000001000000000000)) == (32'b00000000000000000001000000000000)); | 
|  | assign _zz_447_ = (1'b0); | 
|  | assign _zz_448_ = (_zz_137_ != (1'b0)); | 
|  | assign _zz_449_ = ({_zz_451_,{_zz_452_,_zz_453_}} != (3'b000)); | 
|  | assign _zz_450_ = {({_zz_454_,_zz_455_} != (2'b00)),{(_zz_456_ != _zz_457_),{_zz_458_,{_zz_459_,_zz_460_}}}}; | 
|  | assign _zz_451_ = ((decode_INSTRUCTION & (32'b00000000000000000000000001100100)) == (32'b00000000000000000000000000100100)); | 
|  | assign _zz_452_ = ((decode_INSTRUCTION & _zz_461_) == (32'b00000000000000000001000000010000)); | 
|  | assign _zz_453_ = ((decode_INSTRUCTION & _zz_462_) == (32'b00000000000000000001000000010000)); | 
|  | assign _zz_454_ = ((decode_INSTRUCTION & _zz_463_) == (32'b00000000000000000110000000010000)); | 
|  | assign _zz_455_ = ((decode_INSTRUCTION & _zz_464_) == (32'b00000000000000000100000000010000)); | 
|  | assign _zz_456_ = ((decode_INSTRUCTION & _zz_465_) == (32'b00000000000000000010000000010000)); | 
|  | assign _zz_457_ = (1'b0); | 
|  | assign _zz_458_ = ({_zz_466_,_zz_467_} != (2'b00)); | 
|  | assign _zz_459_ = ({_zz_468_,_zz_469_} != (3'b000)); | 
|  | assign _zz_460_ = {(_zz_470_ != _zz_471_),{_zz_472_,{_zz_473_,_zz_474_}}}; | 
|  | assign _zz_461_ = (32'b00000000000000000011000000110100); | 
|  | assign _zz_462_ = (32'b00000010000000000011000001010100); | 
|  | assign _zz_463_ = (32'b00000000000000000110000000010100); | 
|  | assign _zz_464_ = (32'b00000000000000000101000000010100); | 
|  | assign _zz_465_ = (32'b00000000000000000110000000010100); | 
|  | assign _zz_466_ = ((decode_INSTRUCTION & (32'b00000000000000000111000000110100)) == (32'b00000000000000000101000000010000)); | 
|  | assign _zz_467_ = ((decode_INSTRUCTION & (32'b00000010000000000111000001100100)) == (32'b00000000000000000101000000100000)); | 
|  | assign _zz_468_ = ((decode_INSTRUCTION & _zz_475_) == (32'b01000000000000000001000000010000)); | 
|  | assign _zz_469_ = {(_zz_476_ == _zz_477_),(_zz_478_ == _zz_479_)}; | 
|  | assign _zz_470_ = {_zz_136_,{_zz_480_,_zz_481_}}; | 
|  | assign _zz_471_ = (3'b000); | 
|  | assign _zz_472_ = ((_zz_482_ == _zz_483_) != (1'b0)); | 
|  | assign _zz_473_ = ({_zz_484_,_zz_485_} != (2'b00)); | 
|  | assign _zz_474_ = (_zz_486_ != (1'b0)); | 
|  | assign _zz_475_ = (32'b01000000000000000011000001010100); | 
|  | assign _zz_476_ = (decode_INSTRUCTION & (32'b00000000000000000111000000110100)); | 
|  | assign _zz_477_ = (32'b00000000000000000001000000010000); | 
|  | assign _zz_478_ = (decode_INSTRUCTION & (32'b00000010000000000111000001010100)); | 
|  | assign _zz_479_ = (32'b00000000000000000001000000010000); | 
|  | assign _zz_480_ = ((decode_INSTRUCTION & (32'b00000000000000000000000000110000)) == (32'b00000000000000000000000000010000)); | 
|  | assign _zz_481_ = ((decode_INSTRUCTION & (32'b00000010000000000000000001100000)) == (32'b00000000000000000000000000100000)); | 
|  | assign _zz_482_ = (decode_INSTRUCTION & (32'b00000000000000000000000001011000)); | 
|  | assign _zz_483_ = (32'b00000000000000000000000000000000); | 
|  | assign _zz_484_ = ((decode_INSTRUCTION & (32'b00000000000000000001000001010000)) == (32'b00000000000000000001000001010000)); | 
|  | assign _zz_485_ = ((decode_INSTRUCTION & (32'b00000000000000000010000001010000)) == (32'b00000000000000000010000001010000)); | 
|  | assign _zz_486_ = ((decode_INSTRUCTION & (32'b00000000000000000000000000010000)) == (32'b00000000000000000000000000010000)); | 
|  | assign _zz_487_ = (32'b00000000000000000001000001111111); | 
|  | assign _zz_488_ = (decode_INSTRUCTION & (32'b00000000000000000010000001111111)); | 
|  | assign _zz_489_ = (32'b00000000000000000010000001110011); | 
|  | assign _zz_490_ = ((decode_INSTRUCTION & (32'b00000000000000000100000001111111)) == (32'b00000000000000000100000001100011)); | 
|  | assign _zz_491_ = ((decode_INSTRUCTION & (32'b00000000000000000010000001111111)) == (32'b00000000000000000010000000010011)); | 
|  | assign _zz_492_ = {((decode_INSTRUCTION & (32'b00000000000000000110000000111111)) == (32'b00000000000000000000000000100011)),{((decode_INSTRUCTION & (32'b00000000000000000010000001111111)) == (32'b00000000000000000000000000000011)),{((decode_INSTRUCTION & _zz_493_) == (32'b00000000000000000000000000000011)),{(_zz_494_ == _zz_495_),{_zz_496_,{_zz_497_,_zz_498_}}}}}}; | 
|  | assign _zz_493_ = (32'b00000000000000000101000001011111); | 
|  | assign _zz_494_ = (decode_INSTRUCTION & (32'b00000000000000000111000001111011)); | 
|  | assign _zz_495_ = (32'b00000000000000000000000001100011); | 
|  | assign _zz_496_ = ((decode_INSTRUCTION & (32'b00000000000000000110000001111111)) == (32'b00000000000000000000000000001111)); | 
|  | assign _zz_497_ = ((decode_INSTRUCTION & (32'b11111100000000000000000001111111)) == (32'b00000000000000000000000000110011)); | 
|  | assign _zz_498_ = {((decode_INSTRUCTION & (32'b11111100000000000011000001011111)) == (32'b00000000000000000001000000010011)),{((decode_INSTRUCTION & (32'b10111100000000000111000001111111)) == (32'b00000000000000000101000000010011)),{((decode_INSTRUCTION & _zz_499_) == (32'b00000000000000000101000000110011)),{(_zz_500_ == _zz_501_),(_zz_502_ == _zz_503_)}}}}; | 
|  | assign _zz_499_ = (32'b10111110000000000111000001111111); | 
|  | assign _zz_500_ = (decode_INSTRUCTION & (32'b10111110000000000111000001111111)); | 
|  | assign _zz_501_ = (32'b00000000000000000000000000110011); | 
|  | assign _zz_502_ = (decode_INSTRUCTION & (32'b11011111111111111111111111111111)); | 
|  | assign _zz_503_ = (32'b00010000001000000000000001110011); | 
|  | assign _zz_504_ = execute_INSTRUCTION[31]; | 
|  | assign _zz_505_ = execute_INSTRUCTION[31]; | 
|  | assign _zz_506_ = execute_INSTRUCTION[7]; | 
|  | always @ (posedge clk) begin | 
|  | if(_zz_52_) begin | 
|  | RegFilePlugin_regFile[lastStageRegFileWrite_payload_address] <= lastStageRegFileWrite_payload_data; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (posedge clk) begin | 
|  | if(_zz_342_) begin | 
|  | _zz_214_ <= RegFilePlugin_regFile[decode_RegFilePlugin_regFileReadAddress1]; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (posedge clk) begin | 
|  | if(_zz_343_) begin | 
|  | _zz_215_ <= RegFilePlugin_regFile[decode_RegFilePlugin_regFileReadAddress2]; | 
|  | end | 
|  | end | 
|  |  | 
|  | InstructionCache IBusCachedPlugin_cache ( | 
|  | .io_flush(_zz_205_), | 
|  | .io_cpu_prefetch_isValid(_zz_206_), | 
|  | .io_cpu_prefetch_haltIt(IBusCachedPlugin_cache_io_cpu_prefetch_haltIt), | 
|  | .io_cpu_prefetch_pc(IBusCachedPlugin_iBusRsp_stages_0_input_payload), | 
|  | .io_cpu_fetch_isValid(_zz_207_), | 
|  | .io_cpu_fetch_isStuck(_zz_208_), | 
|  | .io_cpu_fetch_isRemoved(IBusCachedPlugin_fetcherflushIt), | 
|  | .io_cpu_fetch_pc(IBusCachedPlugin_iBusRsp_stages_1_input_payload), | 
|  | .io_cpu_fetch_data(IBusCachedPlugin_cache_io_cpu_fetch_data), | 
|  | .io_cpu_fetch_dataBypassValid(IBusCachedPlugin_s1_tightlyCoupledHit), | 
|  | .io_cpu_fetch_dataBypass(_zz_209_), | 
|  | .io_cpu_fetch_mmuBus_cmd_isValid(IBusCachedPlugin_cache_io_cpu_fetch_mmuBus_cmd_isValid), | 
|  | .io_cpu_fetch_mmuBus_cmd_virtualAddress(IBusCachedPlugin_cache_io_cpu_fetch_mmuBus_cmd_virtualAddress), | 
|  | .io_cpu_fetch_mmuBus_cmd_bypassTranslation(IBusCachedPlugin_cache_io_cpu_fetch_mmuBus_cmd_bypassTranslation), | 
|  | .io_cpu_fetch_mmuBus_rsp_physicalAddress(IBusCachedPlugin_mmuBus_rsp_physicalAddress), | 
|  | .io_cpu_fetch_mmuBus_rsp_isIoAccess(IBusCachedPlugin_mmuBus_rsp_isIoAccess), | 
|  | .io_cpu_fetch_mmuBus_rsp_allowRead(IBusCachedPlugin_mmuBus_rsp_allowRead), | 
|  | .io_cpu_fetch_mmuBus_rsp_allowWrite(IBusCachedPlugin_mmuBus_rsp_allowWrite), | 
|  | .io_cpu_fetch_mmuBus_rsp_allowExecute(IBusCachedPlugin_mmuBus_rsp_allowExecute), | 
|  | .io_cpu_fetch_mmuBus_rsp_exception(IBusCachedPlugin_mmuBus_rsp_exception), | 
|  | .io_cpu_fetch_mmuBus_rsp_refilling(IBusCachedPlugin_mmuBus_rsp_refilling), | 
|  | .io_cpu_fetch_mmuBus_end(IBusCachedPlugin_cache_io_cpu_fetch_mmuBus_end), | 
|  | .io_cpu_fetch_mmuBus_busy(IBusCachedPlugin_mmuBus_busy), | 
|  | .io_cpu_fetch_physicalAddress(IBusCachedPlugin_cache_io_cpu_fetch_physicalAddress), | 
|  | .io_cpu_fetch_haltIt(IBusCachedPlugin_cache_io_cpu_fetch_haltIt), | 
|  | .io_cpu_decode_isValid(_zz_210_), | 
|  | .io_cpu_decode_isStuck(_zz_211_), | 
|  | .io_cpu_decode_pc(IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_payload), | 
|  | .io_cpu_decode_physicalAddress(IBusCachedPlugin_cache_io_cpu_decode_physicalAddress), | 
|  | .io_cpu_decode_data(IBusCachedPlugin_cache_io_cpu_decode_data), | 
|  | .io_cpu_decode_cacheMiss(IBusCachedPlugin_cache_io_cpu_decode_cacheMiss), | 
|  | .io_cpu_decode_error(IBusCachedPlugin_cache_io_cpu_decode_error), | 
|  | .io_cpu_decode_mmuRefilling(IBusCachedPlugin_cache_io_cpu_decode_mmuRefilling), | 
|  | .io_cpu_decode_mmuException(IBusCachedPlugin_cache_io_cpu_decode_mmuException), | 
|  | .io_cpu_decode_isUser(_zz_212_), | 
|  | .io_cpu_fill_valid(_zz_213_), | 
|  | .io_cpu_fill_payload(IBusCachedPlugin_cache_io_cpu_decode_physicalAddress), | 
|  | .io_mem_cmd_valid(IBusCachedPlugin_cache_io_mem_cmd_valid), | 
|  | .io_mem_cmd_ready(iBus_cmd_ready), | 
|  | .io_mem_cmd_payload_address(IBusCachedPlugin_cache_io_mem_cmd_payload_address), | 
|  | .io_mem_cmd_payload_size(IBusCachedPlugin_cache_io_mem_cmd_payload_size), | 
|  | .io_mem_rsp_valid(iBus_rsp_valid), | 
|  | .io_mem_rsp_payload_data(iBus_rsp_payload_data), | 
|  | .io_mem_rsp_payload_error(iBus_rsp_payload_error), | 
|  | .clk(clk), | 
|  | .reset(reset) | 
|  | ); | 
|  | always @(*) begin | 
|  | case(_zz_344_) | 
|  | 3'b000 : begin | 
|  | _zz_216_ = CsrPlugin_jumpInterface_payload; | 
|  | end | 
|  | 3'b001 : begin | 
|  | _zz_216_ = DBusSimplePlugin_redoBranch_payload; | 
|  | end | 
|  | 3'b010 : begin | 
|  | _zz_216_ = BranchPlugin_jumpInterface_payload; | 
|  | end | 
|  | 3'b011 : begin | 
|  | _zz_216_ = IBusCachedPlugin_redoBranch_payload; | 
|  | end | 
|  | default : begin | 
|  | _zz_216_ = IBusCachedPlugin_predictionJumpInterface_payload; | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | `ifndef SYNTHESIS | 
|  | always @(*) begin | 
|  | case(decode_ALU_CTRL) | 
|  | `AluCtrlEnum_defaultEncoding_ADD_SUB : decode_ALU_CTRL_string = "ADD_SUB "; | 
|  | `AluCtrlEnum_defaultEncoding_SLT_SLTU : decode_ALU_CTRL_string = "SLT_SLTU"; | 
|  | `AluCtrlEnum_defaultEncoding_BITWISE : decode_ALU_CTRL_string = "BITWISE "; | 
|  | default : decode_ALU_CTRL_string = "????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_1_) | 
|  | `AluCtrlEnum_defaultEncoding_ADD_SUB : _zz_1__string = "ADD_SUB "; | 
|  | `AluCtrlEnum_defaultEncoding_SLT_SLTU : _zz_1__string = "SLT_SLTU"; | 
|  | `AluCtrlEnum_defaultEncoding_BITWISE : _zz_1__string = "BITWISE "; | 
|  | default : _zz_1__string = "????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_2_) | 
|  | `AluCtrlEnum_defaultEncoding_ADD_SUB : _zz_2__string = "ADD_SUB "; | 
|  | `AluCtrlEnum_defaultEncoding_SLT_SLTU : _zz_2__string = "SLT_SLTU"; | 
|  | `AluCtrlEnum_defaultEncoding_BITWISE : _zz_2__string = "BITWISE "; | 
|  | default : _zz_2__string = "????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_3_) | 
|  | `AluCtrlEnum_defaultEncoding_ADD_SUB : _zz_3__string = "ADD_SUB "; | 
|  | `AluCtrlEnum_defaultEncoding_SLT_SLTU : _zz_3__string = "SLT_SLTU"; | 
|  | `AluCtrlEnum_defaultEncoding_BITWISE : _zz_3__string = "BITWISE "; | 
|  | default : _zz_3__string = "????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(decode_ALU_BITWISE_CTRL) | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_XOR_1 : decode_ALU_BITWISE_CTRL_string = "XOR_1"; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_OR_1 : decode_ALU_BITWISE_CTRL_string = "OR_1 "; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_AND_1 : decode_ALU_BITWISE_CTRL_string = "AND_1"; | 
|  | default : decode_ALU_BITWISE_CTRL_string = "?????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_4_) | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_XOR_1 : _zz_4__string = "XOR_1"; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_OR_1 : _zz_4__string = "OR_1 "; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_AND_1 : _zz_4__string = "AND_1"; | 
|  | default : _zz_4__string = "?????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_5_) | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_XOR_1 : _zz_5__string = "XOR_1"; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_OR_1 : _zz_5__string = "OR_1 "; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_AND_1 : _zz_5__string = "AND_1"; | 
|  | default : _zz_5__string = "?????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_6_) | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_XOR_1 : _zz_6__string = "XOR_1"; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_OR_1 : _zz_6__string = "OR_1 "; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_AND_1 : _zz_6__string = "AND_1"; | 
|  | default : _zz_6__string = "?????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(decode_SRC2_CTRL) | 
|  | `Src2CtrlEnum_defaultEncoding_RS : decode_SRC2_CTRL_string = "RS "; | 
|  | `Src2CtrlEnum_defaultEncoding_IMI : decode_SRC2_CTRL_string = "IMI"; | 
|  | `Src2CtrlEnum_defaultEncoding_IMS : decode_SRC2_CTRL_string = "IMS"; | 
|  | `Src2CtrlEnum_defaultEncoding_PC : decode_SRC2_CTRL_string = "PC "; | 
|  | default : decode_SRC2_CTRL_string = "???"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_7_) | 
|  | `Src2CtrlEnum_defaultEncoding_RS : _zz_7__string = "RS "; | 
|  | `Src2CtrlEnum_defaultEncoding_IMI : _zz_7__string = "IMI"; | 
|  | `Src2CtrlEnum_defaultEncoding_IMS : _zz_7__string = "IMS"; | 
|  | `Src2CtrlEnum_defaultEncoding_PC : _zz_7__string = "PC "; | 
|  | default : _zz_7__string = "???"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_8_) | 
|  | `Src2CtrlEnum_defaultEncoding_RS : _zz_8__string = "RS "; | 
|  | `Src2CtrlEnum_defaultEncoding_IMI : _zz_8__string = "IMI"; | 
|  | `Src2CtrlEnum_defaultEncoding_IMS : _zz_8__string = "IMS"; | 
|  | `Src2CtrlEnum_defaultEncoding_PC : _zz_8__string = "PC "; | 
|  | default : _zz_8__string = "???"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_9_) | 
|  | `Src2CtrlEnum_defaultEncoding_RS : _zz_9__string = "RS "; | 
|  | `Src2CtrlEnum_defaultEncoding_IMI : _zz_9__string = "IMI"; | 
|  | `Src2CtrlEnum_defaultEncoding_IMS : _zz_9__string = "IMS"; | 
|  | `Src2CtrlEnum_defaultEncoding_PC : _zz_9__string = "PC "; | 
|  | default : _zz_9__string = "???"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_10_) | 
|  | `BranchCtrlEnum_defaultEncoding_INC : _zz_10__string = "INC "; | 
|  | `BranchCtrlEnum_defaultEncoding_B : _zz_10__string = "B   "; | 
|  | `BranchCtrlEnum_defaultEncoding_JAL : _zz_10__string = "JAL "; | 
|  | `BranchCtrlEnum_defaultEncoding_JALR : _zz_10__string = "JALR"; | 
|  | default : _zz_10__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_11_) | 
|  | `BranchCtrlEnum_defaultEncoding_INC : _zz_11__string = "INC "; | 
|  | `BranchCtrlEnum_defaultEncoding_B : _zz_11__string = "B   "; | 
|  | `BranchCtrlEnum_defaultEncoding_JAL : _zz_11__string = "JAL "; | 
|  | `BranchCtrlEnum_defaultEncoding_JALR : _zz_11__string = "JALR"; | 
|  | default : _zz_11__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(decode_SRC1_CTRL) | 
|  | `Src1CtrlEnum_defaultEncoding_RS : decode_SRC1_CTRL_string = "RS          "; | 
|  | `Src1CtrlEnum_defaultEncoding_IMU : decode_SRC1_CTRL_string = "IMU         "; | 
|  | `Src1CtrlEnum_defaultEncoding_PC_INCREMENT : decode_SRC1_CTRL_string = "PC_INCREMENT"; | 
|  | `Src1CtrlEnum_defaultEncoding_URS1 : decode_SRC1_CTRL_string = "URS1        "; | 
|  | default : decode_SRC1_CTRL_string = "????????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_12_) | 
|  | `Src1CtrlEnum_defaultEncoding_RS : _zz_12__string = "RS          "; | 
|  | `Src1CtrlEnum_defaultEncoding_IMU : _zz_12__string = "IMU         "; | 
|  | `Src1CtrlEnum_defaultEncoding_PC_INCREMENT : _zz_12__string = "PC_INCREMENT"; | 
|  | `Src1CtrlEnum_defaultEncoding_URS1 : _zz_12__string = "URS1        "; | 
|  | default : _zz_12__string = "????????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_13_) | 
|  | `Src1CtrlEnum_defaultEncoding_RS : _zz_13__string = "RS          "; | 
|  | `Src1CtrlEnum_defaultEncoding_IMU : _zz_13__string = "IMU         "; | 
|  | `Src1CtrlEnum_defaultEncoding_PC_INCREMENT : _zz_13__string = "PC_INCREMENT"; | 
|  | `Src1CtrlEnum_defaultEncoding_URS1 : _zz_13__string = "URS1        "; | 
|  | default : _zz_13__string = "????????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_14_) | 
|  | `Src1CtrlEnum_defaultEncoding_RS : _zz_14__string = "RS          "; | 
|  | `Src1CtrlEnum_defaultEncoding_IMU : _zz_14__string = "IMU         "; | 
|  | `Src1CtrlEnum_defaultEncoding_PC_INCREMENT : _zz_14__string = "PC_INCREMENT"; | 
|  | `Src1CtrlEnum_defaultEncoding_URS1 : _zz_14__string = "URS1        "; | 
|  | default : _zz_14__string = "????????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_15_) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : _zz_15__string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : _zz_15__string = "XRET"; | 
|  | default : _zz_15__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_16_) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : _zz_16__string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : _zz_16__string = "XRET"; | 
|  | default : _zz_16__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_17_) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : _zz_17__string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : _zz_17__string = "XRET"; | 
|  | default : _zz_17__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_18_) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : _zz_18__string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : _zz_18__string = "XRET"; | 
|  | default : _zz_18__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(decode_ENV_CTRL) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : decode_ENV_CTRL_string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : decode_ENV_CTRL_string = "XRET"; | 
|  | default : decode_ENV_CTRL_string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_19_) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : _zz_19__string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : _zz_19__string = "XRET"; | 
|  | default : _zz_19__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_20_) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : _zz_20__string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : _zz_20__string = "XRET"; | 
|  | default : _zz_20__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_21_) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : _zz_21__string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : _zz_21__string = "XRET"; | 
|  | default : _zz_21__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(decode_SHIFT_CTRL) | 
|  | `ShiftCtrlEnum_defaultEncoding_DISABLE_1 : decode_SHIFT_CTRL_string = "DISABLE_1"; | 
|  | `ShiftCtrlEnum_defaultEncoding_SLL_1 : decode_SHIFT_CTRL_string = "SLL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRL_1 : decode_SHIFT_CTRL_string = "SRL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRA_1 : decode_SHIFT_CTRL_string = "SRA_1    "; | 
|  | default : decode_SHIFT_CTRL_string = "?????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_22_) | 
|  | `ShiftCtrlEnum_defaultEncoding_DISABLE_1 : _zz_22__string = "DISABLE_1"; | 
|  | `ShiftCtrlEnum_defaultEncoding_SLL_1 : _zz_22__string = "SLL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRL_1 : _zz_22__string = "SRL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRA_1 : _zz_22__string = "SRA_1    "; | 
|  | default : _zz_22__string = "?????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_23_) | 
|  | `ShiftCtrlEnum_defaultEncoding_DISABLE_1 : _zz_23__string = "DISABLE_1"; | 
|  | `ShiftCtrlEnum_defaultEncoding_SLL_1 : _zz_23__string = "SLL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRL_1 : _zz_23__string = "SRL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRA_1 : _zz_23__string = "SRA_1    "; | 
|  | default : _zz_23__string = "?????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_24_) | 
|  | `ShiftCtrlEnum_defaultEncoding_DISABLE_1 : _zz_24__string = "DISABLE_1"; | 
|  | `ShiftCtrlEnum_defaultEncoding_SLL_1 : _zz_24__string = "SLL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRL_1 : _zz_24__string = "SRL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRA_1 : _zz_24__string = "SRA_1    "; | 
|  | default : _zz_24__string = "?????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(memory_ENV_CTRL) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : memory_ENV_CTRL_string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : memory_ENV_CTRL_string = "XRET"; | 
|  | default : memory_ENV_CTRL_string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_25_) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : _zz_25__string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : _zz_25__string = "XRET"; | 
|  | default : _zz_25__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(execute_ENV_CTRL) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : execute_ENV_CTRL_string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : execute_ENV_CTRL_string = "XRET"; | 
|  | default : execute_ENV_CTRL_string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_26_) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : _zz_26__string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : _zz_26__string = "XRET"; | 
|  | default : _zz_26__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(writeBack_ENV_CTRL) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : writeBack_ENV_CTRL_string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : writeBack_ENV_CTRL_string = "XRET"; | 
|  | default : writeBack_ENV_CTRL_string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_29_) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : _zz_29__string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : _zz_29__string = "XRET"; | 
|  | default : _zz_29__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(execute_BRANCH_CTRL) | 
|  | `BranchCtrlEnum_defaultEncoding_INC : execute_BRANCH_CTRL_string = "INC "; | 
|  | `BranchCtrlEnum_defaultEncoding_B : execute_BRANCH_CTRL_string = "B   "; | 
|  | `BranchCtrlEnum_defaultEncoding_JAL : execute_BRANCH_CTRL_string = "JAL "; | 
|  | `BranchCtrlEnum_defaultEncoding_JALR : execute_BRANCH_CTRL_string = "JALR"; | 
|  | default : execute_BRANCH_CTRL_string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_32_) | 
|  | `BranchCtrlEnum_defaultEncoding_INC : _zz_32__string = "INC "; | 
|  | `BranchCtrlEnum_defaultEncoding_B : _zz_32__string = "B   "; | 
|  | `BranchCtrlEnum_defaultEncoding_JAL : _zz_32__string = "JAL "; | 
|  | `BranchCtrlEnum_defaultEncoding_JALR : _zz_32__string = "JALR"; | 
|  | default : _zz_32__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(execute_SHIFT_CTRL) | 
|  | `ShiftCtrlEnum_defaultEncoding_DISABLE_1 : execute_SHIFT_CTRL_string = "DISABLE_1"; | 
|  | `ShiftCtrlEnum_defaultEncoding_SLL_1 : execute_SHIFT_CTRL_string = "SLL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRL_1 : execute_SHIFT_CTRL_string = "SRL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRA_1 : execute_SHIFT_CTRL_string = "SRA_1    "; | 
|  | default : execute_SHIFT_CTRL_string = "?????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_37_) | 
|  | `ShiftCtrlEnum_defaultEncoding_DISABLE_1 : _zz_37__string = "DISABLE_1"; | 
|  | `ShiftCtrlEnum_defaultEncoding_SLL_1 : _zz_37__string = "SLL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRL_1 : _zz_37__string = "SRL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRA_1 : _zz_37__string = "SRA_1    "; | 
|  | default : _zz_37__string = "?????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(execute_SRC2_CTRL) | 
|  | `Src2CtrlEnum_defaultEncoding_RS : execute_SRC2_CTRL_string = "RS "; | 
|  | `Src2CtrlEnum_defaultEncoding_IMI : execute_SRC2_CTRL_string = "IMI"; | 
|  | `Src2CtrlEnum_defaultEncoding_IMS : execute_SRC2_CTRL_string = "IMS"; | 
|  | `Src2CtrlEnum_defaultEncoding_PC : execute_SRC2_CTRL_string = "PC "; | 
|  | default : execute_SRC2_CTRL_string = "???"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_42_) | 
|  | `Src2CtrlEnum_defaultEncoding_RS : _zz_42__string = "RS "; | 
|  | `Src2CtrlEnum_defaultEncoding_IMI : _zz_42__string = "IMI"; | 
|  | `Src2CtrlEnum_defaultEncoding_IMS : _zz_42__string = "IMS"; | 
|  | `Src2CtrlEnum_defaultEncoding_PC : _zz_42__string = "PC "; | 
|  | default : _zz_42__string = "???"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(execute_SRC1_CTRL) | 
|  | `Src1CtrlEnum_defaultEncoding_RS : execute_SRC1_CTRL_string = "RS          "; | 
|  | `Src1CtrlEnum_defaultEncoding_IMU : execute_SRC1_CTRL_string = "IMU         "; | 
|  | `Src1CtrlEnum_defaultEncoding_PC_INCREMENT : execute_SRC1_CTRL_string = "PC_INCREMENT"; | 
|  | `Src1CtrlEnum_defaultEncoding_URS1 : execute_SRC1_CTRL_string = "URS1        "; | 
|  | default : execute_SRC1_CTRL_string = "????????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_44_) | 
|  | `Src1CtrlEnum_defaultEncoding_RS : _zz_44__string = "RS          "; | 
|  | `Src1CtrlEnum_defaultEncoding_IMU : _zz_44__string = "IMU         "; | 
|  | `Src1CtrlEnum_defaultEncoding_PC_INCREMENT : _zz_44__string = "PC_INCREMENT"; | 
|  | `Src1CtrlEnum_defaultEncoding_URS1 : _zz_44__string = "URS1        "; | 
|  | default : _zz_44__string = "????????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(execute_ALU_CTRL) | 
|  | `AluCtrlEnum_defaultEncoding_ADD_SUB : execute_ALU_CTRL_string = "ADD_SUB "; | 
|  | `AluCtrlEnum_defaultEncoding_SLT_SLTU : execute_ALU_CTRL_string = "SLT_SLTU"; | 
|  | `AluCtrlEnum_defaultEncoding_BITWISE : execute_ALU_CTRL_string = "BITWISE "; | 
|  | default : execute_ALU_CTRL_string = "????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_47_) | 
|  | `AluCtrlEnum_defaultEncoding_ADD_SUB : _zz_47__string = "ADD_SUB "; | 
|  | `AluCtrlEnum_defaultEncoding_SLT_SLTU : _zz_47__string = "SLT_SLTU"; | 
|  | `AluCtrlEnum_defaultEncoding_BITWISE : _zz_47__string = "BITWISE "; | 
|  | default : _zz_47__string = "????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(execute_ALU_BITWISE_CTRL) | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_XOR_1 : execute_ALU_BITWISE_CTRL_string = "XOR_1"; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_OR_1 : execute_ALU_BITWISE_CTRL_string = "OR_1 "; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_AND_1 : execute_ALU_BITWISE_CTRL_string = "AND_1"; | 
|  | default : execute_ALU_BITWISE_CTRL_string = "?????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_49_) | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_XOR_1 : _zz_49__string = "XOR_1"; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_OR_1 : _zz_49__string = "OR_1 "; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_AND_1 : _zz_49__string = "AND_1"; | 
|  | default : _zz_49__string = "?????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_56_) | 
|  | `Src1CtrlEnum_defaultEncoding_RS : _zz_56__string = "RS          "; | 
|  | `Src1CtrlEnum_defaultEncoding_IMU : _zz_56__string = "IMU         "; | 
|  | `Src1CtrlEnum_defaultEncoding_PC_INCREMENT : _zz_56__string = "PC_INCREMENT"; | 
|  | `Src1CtrlEnum_defaultEncoding_URS1 : _zz_56__string = "URS1        "; | 
|  | default : _zz_56__string = "????????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_59_) | 
|  | `Src2CtrlEnum_defaultEncoding_RS : _zz_59__string = "RS "; | 
|  | `Src2CtrlEnum_defaultEncoding_IMI : _zz_59__string = "IMI"; | 
|  | `Src2CtrlEnum_defaultEncoding_IMS : _zz_59__string = "IMS"; | 
|  | `Src2CtrlEnum_defaultEncoding_PC : _zz_59__string = "PC "; | 
|  | default : _zz_59__string = "???"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_67_) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : _zz_67__string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : _zz_67__string = "XRET"; | 
|  | default : _zz_67__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_68_) | 
|  | `BranchCtrlEnum_defaultEncoding_INC : _zz_68__string = "INC "; | 
|  | `BranchCtrlEnum_defaultEncoding_B : _zz_68__string = "B   "; | 
|  | `BranchCtrlEnum_defaultEncoding_JAL : _zz_68__string = "JAL "; | 
|  | `BranchCtrlEnum_defaultEncoding_JALR : _zz_68__string = "JALR"; | 
|  | default : _zz_68__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_70_) | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_XOR_1 : _zz_70__string = "XOR_1"; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_OR_1 : _zz_70__string = "OR_1 "; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_AND_1 : _zz_70__string = "AND_1"; | 
|  | default : _zz_70__string = "?????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_72_) | 
|  | `AluCtrlEnum_defaultEncoding_ADD_SUB : _zz_72__string = "ADD_SUB "; | 
|  | `AluCtrlEnum_defaultEncoding_SLT_SLTU : _zz_72__string = "SLT_SLTU"; | 
|  | `AluCtrlEnum_defaultEncoding_BITWISE : _zz_72__string = "BITWISE "; | 
|  | default : _zz_72__string = "????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_73_) | 
|  | `ShiftCtrlEnum_defaultEncoding_DISABLE_1 : _zz_73__string = "DISABLE_1"; | 
|  | `ShiftCtrlEnum_defaultEncoding_SLL_1 : _zz_73__string = "SLL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRL_1 : _zz_73__string = "SRL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRA_1 : _zz_73__string = "SRA_1    "; | 
|  | default : _zz_73__string = "?????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(decode_BRANCH_CTRL) | 
|  | `BranchCtrlEnum_defaultEncoding_INC : decode_BRANCH_CTRL_string = "INC "; | 
|  | `BranchCtrlEnum_defaultEncoding_B : decode_BRANCH_CTRL_string = "B   "; | 
|  | `BranchCtrlEnum_defaultEncoding_JAL : decode_BRANCH_CTRL_string = "JAL "; | 
|  | `BranchCtrlEnum_defaultEncoding_JALR : decode_BRANCH_CTRL_string = "JALR"; | 
|  | default : decode_BRANCH_CTRL_string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_95_) | 
|  | `BranchCtrlEnum_defaultEncoding_INC : _zz_95__string = "INC "; | 
|  | `BranchCtrlEnum_defaultEncoding_B : _zz_95__string = "B   "; | 
|  | `BranchCtrlEnum_defaultEncoding_JAL : _zz_95__string = "JAL "; | 
|  | `BranchCtrlEnum_defaultEncoding_JALR : _zz_95__string = "JALR"; | 
|  | default : _zz_95__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_142_) | 
|  | `ShiftCtrlEnum_defaultEncoding_DISABLE_1 : _zz_142__string = "DISABLE_1"; | 
|  | `ShiftCtrlEnum_defaultEncoding_SLL_1 : _zz_142__string = "SLL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRL_1 : _zz_142__string = "SRL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRA_1 : _zz_142__string = "SRA_1    "; | 
|  | default : _zz_142__string = "?????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_143_) | 
|  | `AluCtrlEnum_defaultEncoding_ADD_SUB : _zz_143__string = "ADD_SUB "; | 
|  | `AluCtrlEnum_defaultEncoding_SLT_SLTU : _zz_143__string = "SLT_SLTU"; | 
|  | `AluCtrlEnum_defaultEncoding_BITWISE : _zz_143__string = "BITWISE "; | 
|  | default : _zz_143__string = "????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_144_) | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_XOR_1 : _zz_144__string = "XOR_1"; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_OR_1 : _zz_144__string = "OR_1 "; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_AND_1 : _zz_144__string = "AND_1"; | 
|  | default : _zz_144__string = "?????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_145_) | 
|  | `BranchCtrlEnum_defaultEncoding_INC : _zz_145__string = "INC "; | 
|  | `BranchCtrlEnum_defaultEncoding_B : _zz_145__string = "B   "; | 
|  | `BranchCtrlEnum_defaultEncoding_JAL : _zz_145__string = "JAL "; | 
|  | `BranchCtrlEnum_defaultEncoding_JALR : _zz_145__string = "JALR"; | 
|  | default : _zz_145__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_146_) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : _zz_146__string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : _zz_146__string = "XRET"; | 
|  | default : _zz_146__string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_147_) | 
|  | `Src2CtrlEnum_defaultEncoding_RS : _zz_147__string = "RS "; | 
|  | `Src2CtrlEnum_defaultEncoding_IMI : _zz_147__string = "IMI"; | 
|  | `Src2CtrlEnum_defaultEncoding_IMS : _zz_147__string = "IMS"; | 
|  | `Src2CtrlEnum_defaultEncoding_PC : _zz_147__string = "PC "; | 
|  | default : _zz_147__string = "???"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(_zz_148_) | 
|  | `Src1CtrlEnum_defaultEncoding_RS : _zz_148__string = "RS          "; | 
|  | `Src1CtrlEnum_defaultEncoding_IMU : _zz_148__string = "IMU         "; | 
|  | `Src1CtrlEnum_defaultEncoding_PC_INCREMENT : _zz_148__string = "PC_INCREMENT"; | 
|  | `Src1CtrlEnum_defaultEncoding_URS1 : _zz_148__string = "URS1        "; | 
|  | default : _zz_148__string = "????????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(decode_to_execute_SHIFT_CTRL) | 
|  | `ShiftCtrlEnum_defaultEncoding_DISABLE_1 : decode_to_execute_SHIFT_CTRL_string = "DISABLE_1"; | 
|  | `ShiftCtrlEnum_defaultEncoding_SLL_1 : decode_to_execute_SHIFT_CTRL_string = "SLL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRL_1 : decode_to_execute_SHIFT_CTRL_string = "SRL_1    "; | 
|  | `ShiftCtrlEnum_defaultEncoding_SRA_1 : decode_to_execute_SHIFT_CTRL_string = "SRA_1    "; | 
|  | default : decode_to_execute_SHIFT_CTRL_string = "?????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(decode_to_execute_ENV_CTRL) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : decode_to_execute_ENV_CTRL_string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : decode_to_execute_ENV_CTRL_string = "XRET"; | 
|  | default : decode_to_execute_ENV_CTRL_string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(execute_to_memory_ENV_CTRL) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : execute_to_memory_ENV_CTRL_string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : execute_to_memory_ENV_CTRL_string = "XRET"; | 
|  | default : execute_to_memory_ENV_CTRL_string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(memory_to_writeBack_ENV_CTRL) | 
|  | `EnvCtrlEnum_defaultEncoding_NONE : memory_to_writeBack_ENV_CTRL_string = "NONE"; | 
|  | `EnvCtrlEnum_defaultEncoding_XRET : memory_to_writeBack_ENV_CTRL_string = "XRET"; | 
|  | default : memory_to_writeBack_ENV_CTRL_string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(decode_to_execute_SRC1_CTRL) | 
|  | `Src1CtrlEnum_defaultEncoding_RS : decode_to_execute_SRC1_CTRL_string = "RS          "; | 
|  | `Src1CtrlEnum_defaultEncoding_IMU : decode_to_execute_SRC1_CTRL_string = "IMU         "; | 
|  | `Src1CtrlEnum_defaultEncoding_PC_INCREMENT : decode_to_execute_SRC1_CTRL_string = "PC_INCREMENT"; | 
|  | `Src1CtrlEnum_defaultEncoding_URS1 : decode_to_execute_SRC1_CTRL_string = "URS1        "; | 
|  | default : decode_to_execute_SRC1_CTRL_string = "????????????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(decode_to_execute_BRANCH_CTRL) | 
|  | `BranchCtrlEnum_defaultEncoding_INC : decode_to_execute_BRANCH_CTRL_string = "INC "; | 
|  | `BranchCtrlEnum_defaultEncoding_B : decode_to_execute_BRANCH_CTRL_string = "B   "; | 
|  | `BranchCtrlEnum_defaultEncoding_JAL : decode_to_execute_BRANCH_CTRL_string = "JAL "; | 
|  | `BranchCtrlEnum_defaultEncoding_JALR : decode_to_execute_BRANCH_CTRL_string = "JALR"; | 
|  | default : decode_to_execute_BRANCH_CTRL_string = "????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(decode_to_execute_SRC2_CTRL) | 
|  | `Src2CtrlEnum_defaultEncoding_RS : decode_to_execute_SRC2_CTRL_string = "RS "; | 
|  | `Src2CtrlEnum_defaultEncoding_IMI : decode_to_execute_SRC2_CTRL_string = "IMI"; | 
|  | `Src2CtrlEnum_defaultEncoding_IMS : decode_to_execute_SRC2_CTRL_string = "IMS"; | 
|  | `Src2CtrlEnum_defaultEncoding_PC : decode_to_execute_SRC2_CTRL_string = "PC "; | 
|  | default : decode_to_execute_SRC2_CTRL_string = "???"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(decode_to_execute_ALU_BITWISE_CTRL) | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_XOR_1 : decode_to_execute_ALU_BITWISE_CTRL_string = "XOR_1"; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_OR_1 : decode_to_execute_ALU_BITWISE_CTRL_string = "OR_1 "; | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_AND_1 : decode_to_execute_ALU_BITWISE_CTRL_string = "AND_1"; | 
|  | default : decode_to_execute_ALU_BITWISE_CTRL_string = "?????"; | 
|  | endcase | 
|  | end | 
|  | always @(*) begin | 
|  | case(decode_to_execute_ALU_CTRL) | 
|  | `AluCtrlEnum_defaultEncoding_ADD_SUB : decode_to_execute_ALU_CTRL_string = "ADD_SUB "; | 
|  | `AluCtrlEnum_defaultEncoding_SLT_SLTU : decode_to_execute_ALU_CTRL_string = "SLT_SLTU"; | 
|  | `AluCtrlEnum_defaultEncoding_BITWISE : decode_to_execute_ALU_CTRL_string = "BITWISE "; | 
|  | default : decode_to_execute_ALU_CTRL_string = "????????"; | 
|  | endcase | 
|  | end | 
|  | `endif | 
|  |  | 
|  | assign decode_ALU_CTRL = _zz_1_; | 
|  | assign _zz_2_ = _zz_3_; | 
|  | assign decode_ALU_BITWISE_CTRL = _zz_4_; | 
|  | assign _zz_5_ = _zz_6_; | 
|  | assign decode_SRC2_CTRL = _zz_7_; | 
|  | assign _zz_8_ = _zz_9_; | 
|  | assign decode_IS_RS2_SIGNED = _zz_58_; | 
|  | assign decode_BYPASSABLE_EXECUTE_STAGE = _zz_74_; | 
|  | assign decode_IS_RS1_SIGNED = _zz_55_; | 
|  | assign decode_CSR_READ_OPCODE = _zz_27_; | 
|  | assign decode_IS_DIV = _zz_57_; | 
|  | assign memory_MEMORY_ADDRESS_LOW = execute_to_memory_MEMORY_ADDRESS_LOW; | 
|  | assign execute_MEMORY_ADDRESS_LOW = _zz_89_; | 
|  | assign decode_IS_MUL = _zz_69_; | 
|  | assign execute_BRANCH_CALC = _zz_30_; | 
|  | assign _zz_10_ = _zz_11_; | 
|  | assign decode_SRC1_CTRL = _zz_12_; | 
|  | assign _zz_13_ = _zz_14_; | 
|  | assign execute_BYPASSABLE_MEMORY_STAGE = decode_to_execute_BYPASSABLE_MEMORY_STAGE; | 
|  | assign decode_BYPASSABLE_MEMORY_STAGE = _zz_77_; | 
|  | assign decode_SRC2_FORCE_ZERO = _zz_46_; | 
|  | assign decode_CSR_WRITE_OPCODE = _zz_28_; | 
|  | assign writeBack_REGFILE_WRITE_DATA = memory_to_writeBack_REGFILE_WRITE_DATA; | 
|  | assign execute_REGFILE_WRITE_DATA = _zz_48_; | 
|  | assign execute_BRANCH_DO = _zz_31_; | 
|  | assign decode_SRC_LESS_UNSIGNED = _zz_65_; | 
|  | assign _zz_15_ = _zz_16_; | 
|  | assign _zz_17_ = _zz_18_; | 
|  | assign decode_ENV_CTRL = _zz_19_; | 
|  | assign _zz_20_ = _zz_21_; | 
|  | assign writeBack_FORMAL_PC_NEXT = memory_to_writeBack_FORMAL_PC_NEXT; | 
|  | assign memory_FORMAL_PC_NEXT = execute_to_memory_FORMAL_PC_NEXT; | 
|  | assign execute_FORMAL_PC_NEXT = decode_to_execute_FORMAL_PC_NEXT; | 
|  | assign decode_FORMAL_PC_NEXT = _zz_98_; | 
|  | assign decode_MEMORY_STORE = _zz_61_; | 
|  | assign decode_PREDICTION_HAD_BRANCHED2 = _zz_34_; | 
|  | assign decode_IS_CSR = _zz_76_; | 
|  | assign decode_SHIFT_CTRL = _zz_22_; | 
|  | assign _zz_23_ = _zz_24_; | 
|  | assign memory_MEMORY_READ_DATA = _zz_80_; | 
|  | assign execute_IS_RS1_SIGNED = decode_to_execute_IS_RS1_SIGNED; | 
|  | assign execute_IS_DIV = decode_to_execute_IS_DIV; | 
|  | assign execute_IS_MUL = decode_to_execute_IS_MUL; | 
|  | assign execute_IS_RS2_SIGNED = decode_to_execute_IS_RS2_SIGNED; | 
|  | assign memory_IS_DIV = execute_to_memory_IS_DIV; | 
|  | assign memory_IS_MUL = execute_to_memory_IS_MUL; | 
|  | assign execute_CSR_READ_OPCODE = decode_to_execute_CSR_READ_OPCODE; | 
|  | assign execute_CSR_WRITE_OPCODE = decode_to_execute_CSR_WRITE_OPCODE; | 
|  | assign execute_IS_CSR = decode_to_execute_IS_CSR; | 
|  | assign memory_ENV_CTRL = _zz_25_; | 
|  | assign execute_ENV_CTRL = _zz_26_; | 
|  | assign writeBack_ENV_CTRL = _zz_29_; | 
|  | assign memory_BRANCH_CALC = execute_to_memory_BRANCH_CALC; | 
|  | assign memory_BRANCH_DO = execute_to_memory_BRANCH_DO; | 
|  | assign execute_PC = decode_to_execute_PC; | 
|  | assign execute_PREDICTION_HAD_BRANCHED2 = decode_to_execute_PREDICTION_HAD_BRANCHED2; | 
|  | assign execute_RS1 = decode_to_execute_RS1; | 
|  | assign execute_BRANCH_COND_RESULT = _zz_33_; | 
|  | assign execute_BRANCH_CTRL = _zz_32_; | 
|  | assign decode_RS2_USE = _zz_63_; | 
|  | assign decode_RS1_USE = _zz_66_; | 
|  | assign execute_REGFILE_WRITE_VALID = decode_to_execute_REGFILE_WRITE_VALID; | 
|  | assign execute_BYPASSABLE_EXECUTE_STAGE = decode_to_execute_BYPASSABLE_EXECUTE_STAGE; | 
|  | always @ (*) begin | 
|  | _zz_35_ = memory_REGFILE_WRITE_DATA; | 
|  | if(_zz_217_)begin | 
|  | _zz_35_ = ((memory_INSTRUCTION[13 : 12] == (2'b00)) ? memory_MulDivIterativePlugin_accumulator[31 : 0] : memory_MulDivIterativePlugin_accumulator[63 : 32]); | 
|  | end | 
|  | if(_zz_218_)begin | 
|  | _zz_35_ = memory_MulDivIterativePlugin_div_result; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign memory_REGFILE_WRITE_VALID = execute_to_memory_REGFILE_WRITE_VALID; | 
|  | assign memory_INSTRUCTION = execute_to_memory_INSTRUCTION; | 
|  | assign memory_BYPASSABLE_MEMORY_STAGE = execute_to_memory_BYPASSABLE_MEMORY_STAGE; | 
|  | assign writeBack_REGFILE_WRITE_VALID = memory_to_writeBack_REGFILE_WRITE_VALID; | 
|  | always @ (*) begin | 
|  | decode_RS2 = _zz_53_; | 
|  | if(_zz_161_)begin | 
|  | if((_zz_162_ == decode_INSTRUCTION[24 : 20]))begin | 
|  | decode_RS2 = _zz_163_; | 
|  | end | 
|  | end | 
|  | if(_zz_219_)begin | 
|  | if(_zz_220_)begin | 
|  | if(_zz_165_)begin | 
|  | decode_RS2 = _zz_79_; | 
|  | end | 
|  | end | 
|  | end | 
|  | if(_zz_221_)begin | 
|  | if(memory_BYPASSABLE_MEMORY_STAGE)begin | 
|  | if(_zz_167_)begin | 
|  | decode_RS2 = _zz_35_; | 
|  | end | 
|  | end | 
|  | end | 
|  | if(_zz_222_)begin | 
|  | if(execute_BYPASSABLE_EXECUTE_STAGE)begin | 
|  | if(_zz_169_)begin | 
|  | decode_RS2 = _zz_36_; | 
|  | end | 
|  | end | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | decode_RS1 = _zz_54_; | 
|  | if(_zz_161_)begin | 
|  | if((_zz_162_ == decode_INSTRUCTION[19 : 15]))begin | 
|  | decode_RS1 = _zz_163_; | 
|  | end | 
|  | end | 
|  | if(_zz_219_)begin | 
|  | if(_zz_220_)begin | 
|  | if(_zz_164_)begin | 
|  | decode_RS1 = _zz_79_; | 
|  | end | 
|  | end | 
|  | end | 
|  | if(_zz_221_)begin | 
|  | if(memory_BYPASSABLE_MEMORY_STAGE)begin | 
|  | if(_zz_166_)begin | 
|  | decode_RS1 = _zz_35_; | 
|  | end | 
|  | end | 
|  | end | 
|  | if(_zz_222_)begin | 
|  | if(execute_BYPASSABLE_EXECUTE_STAGE)begin | 
|  | if(_zz_168_)begin | 
|  | decode_RS1 = _zz_36_; | 
|  | end | 
|  | end | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | _zz_36_ = execute_REGFILE_WRITE_DATA; | 
|  | if(_zz_223_)begin | 
|  | _zz_36_ = _zz_157_; | 
|  | end | 
|  | if(_zz_224_)begin | 
|  | _zz_36_ = execute_CsrPlugin_readData; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign execute_SHIFT_CTRL = _zz_37_; | 
|  | assign execute_SRC_LESS_UNSIGNED = decode_to_execute_SRC_LESS_UNSIGNED; | 
|  | assign execute_SRC2_FORCE_ZERO = decode_to_execute_SRC2_FORCE_ZERO; | 
|  | assign execute_SRC_USE_SUB_LESS = decode_to_execute_SRC_USE_SUB_LESS; | 
|  | assign _zz_41_ = execute_PC; | 
|  | assign execute_SRC2_CTRL = _zz_42_; | 
|  | assign execute_SRC1_CTRL = _zz_44_; | 
|  | assign decode_SRC_USE_SUB_LESS = _zz_60_; | 
|  | assign decode_SRC_ADD_ZERO = _zz_71_; | 
|  | assign execute_SRC_ADD_SUB = _zz_40_; | 
|  | assign execute_SRC_LESS = _zz_38_; | 
|  | assign execute_ALU_CTRL = _zz_47_; | 
|  | assign execute_SRC2 = _zz_43_; | 
|  | assign execute_SRC1 = _zz_45_; | 
|  | assign execute_ALU_BITWISE_CTRL = _zz_49_; | 
|  | assign _zz_50_ = writeBack_INSTRUCTION; | 
|  | assign _zz_51_ = writeBack_REGFILE_WRITE_VALID; | 
|  | always @ (*) begin | 
|  | _zz_52_ = 1'b0; | 
|  | if(lastStageRegFileWrite_valid)begin | 
|  | _zz_52_ = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign decode_INSTRUCTION_ANTICIPATED = _zz_94_; | 
|  | always @ (*) begin | 
|  | decode_REGFILE_WRITE_VALID = _zz_64_; | 
|  | if((decode_INSTRUCTION[11 : 7] == (5'b00000)))begin | 
|  | decode_REGFILE_WRITE_VALID = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign decode_LEGAL_INSTRUCTION = _zz_78_; | 
|  | assign decode_INSTRUCTION_READY = 1'b1; | 
|  | assign writeBack_MEMORY_STORE = memory_to_writeBack_MEMORY_STORE; | 
|  | always @ (*) begin | 
|  | _zz_79_ = writeBack_REGFILE_WRITE_DATA; | 
|  | if((writeBack_arbitration_isValid && writeBack_MEMORY_ENABLE))begin | 
|  | _zz_79_ = writeBack_DBusSimplePlugin_rspFormated; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign writeBack_MEMORY_ENABLE = memory_to_writeBack_MEMORY_ENABLE; | 
|  | assign writeBack_MEMORY_ADDRESS_LOW = memory_to_writeBack_MEMORY_ADDRESS_LOW; | 
|  | assign writeBack_MEMORY_READ_DATA = memory_to_writeBack_MEMORY_READ_DATA; | 
|  | assign memory_MMU_FAULT = execute_to_memory_MMU_FAULT; | 
|  | assign memory_MMU_RSP_physicalAddress = execute_to_memory_MMU_RSP_physicalAddress; | 
|  | assign memory_MMU_RSP_isIoAccess = execute_to_memory_MMU_RSP_isIoAccess; | 
|  | assign memory_MMU_RSP_allowRead = execute_to_memory_MMU_RSP_allowRead; | 
|  | assign memory_MMU_RSP_allowWrite = execute_to_memory_MMU_RSP_allowWrite; | 
|  | assign memory_MMU_RSP_allowExecute = execute_to_memory_MMU_RSP_allowExecute; | 
|  | assign memory_MMU_RSP_exception = execute_to_memory_MMU_RSP_exception; | 
|  | assign memory_MMU_RSP_refilling = execute_to_memory_MMU_RSP_refilling; | 
|  | assign memory_PC = execute_to_memory_PC; | 
|  | assign memory_ALIGNEMENT_FAULT = execute_to_memory_ALIGNEMENT_FAULT; | 
|  | assign memory_REGFILE_WRITE_DATA = execute_to_memory_REGFILE_WRITE_DATA; | 
|  | assign memory_MEMORY_STORE = execute_to_memory_MEMORY_STORE; | 
|  | assign memory_MEMORY_ENABLE = execute_to_memory_MEMORY_ENABLE; | 
|  | assign execute_MMU_FAULT = _zz_88_; | 
|  | assign execute_MMU_RSP_physicalAddress = _zz_81_; | 
|  | assign execute_MMU_RSP_isIoAccess = _zz_82_; | 
|  | assign execute_MMU_RSP_allowRead = _zz_83_; | 
|  | assign execute_MMU_RSP_allowWrite = _zz_84_; | 
|  | assign execute_MMU_RSP_allowExecute = _zz_85_; | 
|  | assign execute_MMU_RSP_exception = _zz_86_; | 
|  | assign execute_MMU_RSP_refilling = _zz_87_; | 
|  | assign execute_SRC_ADD = _zz_39_; | 
|  | assign execute_RS2 = decode_to_execute_RS2; | 
|  | assign execute_INSTRUCTION = decode_to_execute_INSTRUCTION; | 
|  | assign execute_MEMORY_STORE = decode_to_execute_MEMORY_STORE; | 
|  | assign execute_MEMORY_ENABLE = decode_to_execute_MEMORY_ENABLE; | 
|  | assign execute_ALIGNEMENT_FAULT = _zz_90_; | 
|  | assign decode_MEMORY_ENABLE = _zz_75_; | 
|  | assign decode_FLUSH_ALL = _zz_62_; | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_rsp_issueDetected = _zz_91_; | 
|  | if(_zz_225_)begin | 
|  | IBusCachedPlugin_rsp_issueDetected = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | _zz_91_ = _zz_92_; | 
|  | if(_zz_226_)begin | 
|  | _zz_91_ = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | _zz_92_ = _zz_93_; | 
|  | if(_zz_227_)begin | 
|  | _zz_92_ = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | _zz_93_ = 1'b0; | 
|  | if(_zz_228_)begin | 
|  | _zz_93_ = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign decode_BRANCH_CTRL = _zz_95_; | 
|  | assign decode_INSTRUCTION = _zz_99_; | 
|  | always @ (*) begin | 
|  | _zz_96_ = memory_FORMAL_PC_NEXT; | 
|  | if(DBusSimplePlugin_redoBranch_valid)begin | 
|  | _zz_96_ = DBusSimplePlugin_redoBranch_payload; | 
|  | end | 
|  | if(BranchPlugin_jumpInterface_valid)begin | 
|  | _zz_96_ = BranchPlugin_jumpInterface_payload; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | _zz_97_ = decode_FORMAL_PC_NEXT; | 
|  | if(IBusCachedPlugin_predictionJumpInterface_valid)begin | 
|  | _zz_97_ = IBusCachedPlugin_predictionJumpInterface_payload; | 
|  | end | 
|  | if(IBusCachedPlugin_redoBranch_valid)begin | 
|  | _zz_97_ = IBusCachedPlugin_redoBranch_payload; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign decode_PC = _zz_100_; | 
|  | assign writeBack_PC = memory_to_writeBack_PC; | 
|  | assign writeBack_INSTRUCTION = memory_to_writeBack_INSTRUCTION; | 
|  | always @ (*) begin | 
|  | decode_arbitration_haltItself = 1'b0; | 
|  | if(((DBusSimplePlugin_mmuBus_busy && decode_arbitration_isValid) && decode_MEMORY_ENABLE))begin | 
|  | decode_arbitration_haltItself = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | decode_arbitration_haltByOther = 1'b0; | 
|  | if((decode_arbitration_isValid && (_zz_158_ || _zz_159_)))begin | 
|  | decode_arbitration_haltByOther = 1'b1; | 
|  | end | 
|  | if((CsrPlugin_interrupt_valid && CsrPlugin_allowInterrupts))begin | 
|  | decode_arbitration_haltByOther = decode_arbitration_isValid; | 
|  | end | 
|  | if(({(writeBack_arbitration_isValid && (writeBack_ENV_CTRL == `EnvCtrlEnum_defaultEncoding_XRET)),{(memory_arbitration_isValid && (memory_ENV_CTRL == `EnvCtrlEnum_defaultEncoding_XRET)),(execute_arbitration_isValid && (execute_ENV_CTRL == `EnvCtrlEnum_defaultEncoding_XRET))}} != (3'b000)))begin | 
|  | decode_arbitration_haltByOther = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | decode_arbitration_removeIt = 1'b0; | 
|  | if(_zz_229_)begin | 
|  | decode_arbitration_removeIt = 1'b1; | 
|  | end | 
|  | if(decode_arbitration_isFlushed)begin | 
|  | decode_arbitration_removeIt = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign decode_arbitration_flushIt = 1'b0; | 
|  | always @ (*) begin | 
|  | decode_arbitration_flushNext = 1'b0; | 
|  | if(IBusCachedPlugin_redoBranch_valid)begin | 
|  | decode_arbitration_flushNext = 1'b1; | 
|  | end | 
|  | if(_zz_229_)begin | 
|  | decode_arbitration_flushNext = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | execute_arbitration_haltItself = 1'b0; | 
|  | if(((((execute_arbitration_isValid && execute_MEMORY_ENABLE) && (! dBus_cmd_ready)) && (! execute_DBusSimplePlugin_skipCmd)) && (! _zz_128_)))begin | 
|  | execute_arbitration_haltItself = 1'b1; | 
|  | end | 
|  | if(_zz_223_)begin | 
|  | if(_zz_230_)begin | 
|  | if(! execute_LightShifterPlugin_done) begin | 
|  | execute_arbitration_haltItself = 1'b1; | 
|  | end | 
|  | end | 
|  | end | 
|  | if(_zz_224_)begin | 
|  | if(execute_CsrPlugin_blockedBySideEffects)begin | 
|  | execute_arbitration_haltItself = 1'b1; | 
|  | end | 
|  | end | 
|  | end | 
|  |  | 
|  | assign execute_arbitration_haltByOther = 1'b0; | 
|  | always @ (*) begin | 
|  | execute_arbitration_removeIt = 1'b0; | 
|  | if(execute_arbitration_isFlushed)begin | 
|  | execute_arbitration_removeIt = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign execute_arbitration_flushIt = 1'b0; | 
|  | assign execute_arbitration_flushNext = 1'b0; | 
|  | always @ (*) begin | 
|  | memory_arbitration_haltItself = 1'b0; | 
|  | if((((memory_arbitration_isValid && memory_MEMORY_ENABLE) && (! memory_MEMORY_STORE)) && ((! dBus_rsp_ready) || 1'b0)))begin | 
|  | memory_arbitration_haltItself = 1'b1; | 
|  | end | 
|  | if(_zz_217_)begin | 
|  | if(_zz_231_)begin | 
|  | memory_arbitration_haltItself = 1'b1; | 
|  | end | 
|  | end | 
|  | if(_zz_218_)begin | 
|  | if(_zz_232_)begin | 
|  | memory_arbitration_haltItself = 1'b1; | 
|  | end | 
|  | end | 
|  | end | 
|  |  | 
|  | assign memory_arbitration_haltByOther = 1'b0; | 
|  | always @ (*) begin | 
|  | memory_arbitration_removeIt = 1'b0; | 
|  | if(_zz_233_)begin | 
|  | memory_arbitration_removeIt = 1'b1; | 
|  | end | 
|  | if(memory_arbitration_isFlushed)begin | 
|  | memory_arbitration_removeIt = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | memory_arbitration_flushIt = 1'b0; | 
|  | if(DBusSimplePlugin_redoBranch_valid)begin | 
|  | memory_arbitration_flushIt = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | memory_arbitration_flushNext = 1'b0; | 
|  | if(DBusSimplePlugin_redoBranch_valid)begin | 
|  | memory_arbitration_flushNext = 1'b1; | 
|  | end | 
|  | if(BranchPlugin_jumpInterface_valid)begin | 
|  | memory_arbitration_flushNext = 1'b1; | 
|  | end | 
|  | if(_zz_233_)begin | 
|  | memory_arbitration_flushNext = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign writeBack_arbitration_haltItself = 1'b0; | 
|  | assign writeBack_arbitration_haltByOther = 1'b0; | 
|  | always @ (*) begin | 
|  | writeBack_arbitration_removeIt = 1'b0; | 
|  | if(writeBack_arbitration_isFlushed)begin | 
|  | writeBack_arbitration_removeIt = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign writeBack_arbitration_flushIt = 1'b0; | 
|  | always @ (*) begin | 
|  | writeBack_arbitration_flushNext = 1'b0; | 
|  | if(_zz_234_)begin | 
|  | writeBack_arbitration_flushNext = 1'b1; | 
|  | end | 
|  | if(_zz_235_)begin | 
|  | writeBack_arbitration_flushNext = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign lastStageInstruction = writeBack_INSTRUCTION; | 
|  | assign lastStagePc = writeBack_PC; | 
|  | assign lastStageIsValid = writeBack_arbitration_isValid; | 
|  | assign lastStageIsFiring = writeBack_arbitration_isFiring; | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_fetcherHalt = 1'b0; | 
|  | if(({CsrPlugin_exceptionPortCtrl_exceptionValids_writeBack,{CsrPlugin_exceptionPortCtrl_exceptionValids_memory,{CsrPlugin_exceptionPortCtrl_exceptionValids_execute,CsrPlugin_exceptionPortCtrl_exceptionValids_decode}}} != (4'b0000)))begin | 
|  | IBusCachedPlugin_fetcherHalt = 1'b1; | 
|  | end | 
|  | if(_zz_234_)begin | 
|  | IBusCachedPlugin_fetcherHalt = 1'b1; | 
|  | end | 
|  | if(_zz_235_)begin | 
|  | IBusCachedPlugin_fetcherHalt = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_fetcherflushIt = 1'b0; | 
|  | if(({writeBack_arbitration_flushNext,{memory_arbitration_flushNext,{execute_arbitration_flushNext,decode_arbitration_flushNext}}} != (4'b0000)))begin | 
|  | IBusCachedPlugin_fetcherflushIt = 1'b1; | 
|  | end | 
|  | if((IBusCachedPlugin_predictionJumpInterface_valid && decode_arbitration_isFiring))begin | 
|  | IBusCachedPlugin_fetcherflushIt = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_incomingInstruction = 1'b0; | 
|  | if((IBusCachedPlugin_iBusRsp_stages_1_input_valid || IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_valid))begin | 
|  | IBusCachedPlugin_incomingInstruction = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | CsrPlugin_jumpInterface_valid = 1'b0; | 
|  | if(_zz_234_)begin | 
|  | CsrPlugin_jumpInterface_valid = 1'b1; | 
|  | end | 
|  | if(_zz_235_)begin | 
|  | CsrPlugin_jumpInterface_valid = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | CsrPlugin_jumpInterface_payload = (32'bxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx); | 
|  | if(_zz_234_)begin | 
|  | CsrPlugin_jumpInterface_payload = {CsrPlugin_xtvec_base,(2'b00)}; | 
|  | end | 
|  | if(_zz_235_)begin | 
|  | case(_zz_236_) | 
|  | 2'b11 : begin | 
|  | CsrPlugin_jumpInterface_payload = CsrPlugin_mepc; | 
|  | end | 
|  | default : begin | 
|  | end | 
|  | endcase | 
|  | end | 
|  | end | 
|  |  | 
|  | assign CsrPlugin_forceMachineWire = 1'b0; | 
|  | assign CsrPlugin_allowInterrupts = 1'b1; | 
|  | assign CsrPlugin_allowException = 1'b1; | 
|  | assign IBusCachedPlugin_jump_pcLoad_valid = ({CsrPlugin_jumpInterface_valid,{BranchPlugin_jumpInterface_valid,{DBusSimplePlugin_redoBranch_valid,{IBusCachedPlugin_redoBranch_valid,IBusCachedPlugin_predictionJumpInterface_valid}}}} != (5'b00000)); | 
|  | assign _zz_101_ = {IBusCachedPlugin_predictionJumpInterface_valid,{IBusCachedPlugin_redoBranch_valid,{BranchPlugin_jumpInterface_valid,{DBusSimplePlugin_redoBranch_valid,CsrPlugin_jumpInterface_valid}}}}; | 
|  | assign _zz_102_ = (_zz_101_ & (~ _zz_255_)); | 
|  | assign _zz_103_ = _zz_102_[3]; | 
|  | assign _zz_104_ = _zz_102_[4]; | 
|  | assign _zz_105_ = (_zz_102_[1] || _zz_103_); | 
|  | assign _zz_106_ = (_zz_102_[2] || _zz_103_); | 
|  | assign IBusCachedPlugin_jump_pcLoad_payload = _zz_216_; | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_fetchPc_corrected = 1'b0; | 
|  | if(IBusCachedPlugin_jump_pcLoad_valid)begin | 
|  | IBusCachedPlugin_fetchPc_corrected = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_fetchPc_pcRegPropagate = 1'b0; | 
|  | if(IBusCachedPlugin_iBusRsp_stages_1_input_ready)begin | 
|  | IBusCachedPlugin_fetchPc_pcRegPropagate = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_fetchPc_pc = (IBusCachedPlugin_fetchPc_pcReg + _zz_257_); | 
|  | if(IBusCachedPlugin_jump_pcLoad_valid)begin | 
|  | IBusCachedPlugin_fetchPc_pc = IBusCachedPlugin_jump_pcLoad_payload; | 
|  | end | 
|  | IBusCachedPlugin_fetchPc_pc[0] = 1'b0; | 
|  | IBusCachedPlugin_fetchPc_pc[1] = 1'b0; | 
|  | end | 
|  |  | 
|  | assign IBusCachedPlugin_fetchPc_output_valid = ((! IBusCachedPlugin_fetcherHalt) && IBusCachedPlugin_fetchPc_booted); | 
|  | assign IBusCachedPlugin_fetchPc_output_payload = IBusCachedPlugin_fetchPc_pc; | 
|  | assign IBusCachedPlugin_iBusRsp_stages_0_input_valid = IBusCachedPlugin_fetchPc_output_valid; | 
|  | assign IBusCachedPlugin_fetchPc_output_ready = IBusCachedPlugin_iBusRsp_stages_0_input_ready; | 
|  | assign IBusCachedPlugin_iBusRsp_stages_0_input_payload = IBusCachedPlugin_fetchPc_output_payload; | 
|  | assign IBusCachedPlugin_iBusRsp_stages_0_inputSample = 1'b1; | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_iBusRsp_stages_0_halt = 1'b0; | 
|  | if(IBusCachedPlugin_cache_io_cpu_prefetch_haltIt)begin | 
|  | IBusCachedPlugin_iBusRsp_stages_0_halt = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign _zz_107_ = (! IBusCachedPlugin_iBusRsp_stages_0_halt); | 
|  | assign IBusCachedPlugin_iBusRsp_stages_0_input_ready = (IBusCachedPlugin_iBusRsp_stages_0_output_ready && _zz_107_); | 
|  | assign IBusCachedPlugin_iBusRsp_stages_0_output_valid = (IBusCachedPlugin_iBusRsp_stages_0_input_valid && _zz_107_); | 
|  | assign IBusCachedPlugin_iBusRsp_stages_0_output_payload = IBusCachedPlugin_iBusRsp_stages_0_input_payload; | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_iBusRsp_stages_1_halt = 1'b0; | 
|  | if(IBusCachedPlugin_cache_io_cpu_fetch_haltIt)begin | 
|  | IBusCachedPlugin_iBusRsp_stages_1_halt = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign _zz_108_ = (! IBusCachedPlugin_iBusRsp_stages_1_halt); | 
|  | assign IBusCachedPlugin_iBusRsp_stages_1_input_ready = (IBusCachedPlugin_iBusRsp_stages_1_output_ready && _zz_108_); | 
|  | assign IBusCachedPlugin_iBusRsp_stages_1_output_valid = (IBusCachedPlugin_iBusRsp_stages_1_input_valid && _zz_108_); | 
|  | assign IBusCachedPlugin_iBusRsp_stages_1_output_payload = IBusCachedPlugin_iBusRsp_stages_1_input_payload; | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_iBusRsp_cacheRspArbitration_halt = 1'b0; | 
|  | if((IBusCachedPlugin_rsp_issueDetected || IBusCachedPlugin_rsp_iBusRspOutputHalt))begin | 
|  | IBusCachedPlugin_iBusRsp_cacheRspArbitration_halt = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign _zz_109_ = (! IBusCachedPlugin_iBusRsp_cacheRspArbitration_halt); | 
|  | assign IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_ready = (IBusCachedPlugin_iBusRsp_cacheRspArbitration_output_ready && _zz_109_); | 
|  | assign IBusCachedPlugin_iBusRsp_cacheRspArbitration_output_valid = (IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_valid && _zz_109_); | 
|  | assign IBusCachedPlugin_iBusRsp_cacheRspArbitration_output_payload = IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_payload; | 
|  | assign IBusCachedPlugin_iBusRsp_stages_0_output_ready = _zz_110_; | 
|  | assign _zz_110_ = ((1'b0 && (! _zz_111_)) || IBusCachedPlugin_iBusRsp_stages_1_input_ready); | 
|  | assign _zz_111_ = _zz_112_; | 
|  | assign IBusCachedPlugin_iBusRsp_stages_1_input_valid = _zz_111_; | 
|  | assign IBusCachedPlugin_iBusRsp_stages_1_input_payload = IBusCachedPlugin_fetchPc_pcReg; | 
|  | assign IBusCachedPlugin_iBusRsp_stages_1_output_ready = ((1'b0 && (! _zz_113_)) || IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_ready); | 
|  | assign _zz_113_ = _zz_114_; | 
|  | assign IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_valid = _zz_113_; | 
|  | assign IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_payload = _zz_115_; | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_iBusRsp_readyForError = 1'b1; | 
|  | if((! IBusCachedPlugin_pcValids_0))begin | 
|  | IBusCachedPlugin_iBusRsp_readyForError = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign IBusCachedPlugin_pcValids_0 = IBusCachedPlugin_injector_nextPcCalc_valids_1; | 
|  | assign IBusCachedPlugin_pcValids_1 = IBusCachedPlugin_injector_nextPcCalc_valids_2; | 
|  | assign IBusCachedPlugin_pcValids_2 = IBusCachedPlugin_injector_nextPcCalc_valids_3; | 
|  | assign IBusCachedPlugin_pcValids_3 = IBusCachedPlugin_injector_nextPcCalc_valids_4; | 
|  | assign IBusCachedPlugin_iBusRsp_decodeInput_ready = (! decode_arbitration_isStuck); | 
|  | assign decode_arbitration_isValid = (IBusCachedPlugin_iBusRsp_decodeInput_valid && (! IBusCachedPlugin_injector_decodeRemoved)); | 
|  | assign _zz_100_ = IBusCachedPlugin_iBusRsp_decodeInput_payload_pc; | 
|  | assign _zz_99_ = IBusCachedPlugin_iBusRsp_decodeInput_payload_rsp_inst; | 
|  | assign _zz_98_ = (decode_PC + (32'b00000000000000000000000000000100)); | 
|  | assign _zz_116_ = _zz_258_[11]; | 
|  | always @ (*) begin | 
|  | _zz_117_[18] = _zz_116_; | 
|  | _zz_117_[17] = _zz_116_; | 
|  | _zz_117_[16] = _zz_116_; | 
|  | _zz_117_[15] = _zz_116_; | 
|  | _zz_117_[14] = _zz_116_; | 
|  | _zz_117_[13] = _zz_116_; | 
|  | _zz_117_[12] = _zz_116_; | 
|  | _zz_117_[11] = _zz_116_; | 
|  | _zz_117_[10] = _zz_116_; | 
|  | _zz_117_[9] = _zz_116_; | 
|  | _zz_117_[8] = _zz_116_; | 
|  | _zz_117_[7] = _zz_116_; | 
|  | _zz_117_[6] = _zz_116_; | 
|  | _zz_117_[5] = _zz_116_; | 
|  | _zz_117_[4] = _zz_116_; | 
|  | _zz_117_[3] = _zz_116_; | 
|  | _zz_117_[2] = _zz_116_; | 
|  | _zz_117_[1] = _zz_116_; | 
|  | _zz_117_[0] = _zz_116_; | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_decodePrediction_cmd_hadBranch = ((decode_BRANCH_CTRL == `BranchCtrlEnum_defaultEncoding_JAL) || ((decode_BRANCH_CTRL == `BranchCtrlEnum_defaultEncoding_B) && _zz_259_[31])); | 
|  | if(_zz_122_)begin | 
|  | IBusCachedPlugin_decodePrediction_cmd_hadBranch = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign _zz_118_ = _zz_260_[19]; | 
|  | always @ (*) begin | 
|  | _zz_119_[10] = _zz_118_; | 
|  | _zz_119_[9] = _zz_118_; | 
|  | _zz_119_[8] = _zz_118_; | 
|  | _zz_119_[7] = _zz_118_; | 
|  | _zz_119_[6] = _zz_118_; | 
|  | _zz_119_[5] = _zz_118_; | 
|  | _zz_119_[4] = _zz_118_; | 
|  | _zz_119_[3] = _zz_118_; | 
|  | _zz_119_[2] = _zz_118_; | 
|  | _zz_119_[1] = _zz_118_; | 
|  | _zz_119_[0] = _zz_118_; | 
|  | end | 
|  |  | 
|  | assign _zz_120_ = _zz_261_[11]; | 
|  | always @ (*) begin | 
|  | _zz_121_[18] = _zz_120_; | 
|  | _zz_121_[17] = _zz_120_; | 
|  | _zz_121_[16] = _zz_120_; | 
|  | _zz_121_[15] = _zz_120_; | 
|  | _zz_121_[14] = _zz_120_; | 
|  | _zz_121_[13] = _zz_120_; | 
|  | _zz_121_[12] = _zz_120_; | 
|  | _zz_121_[11] = _zz_120_; | 
|  | _zz_121_[10] = _zz_120_; | 
|  | _zz_121_[9] = _zz_120_; | 
|  | _zz_121_[8] = _zz_120_; | 
|  | _zz_121_[7] = _zz_120_; | 
|  | _zz_121_[6] = _zz_120_; | 
|  | _zz_121_[5] = _zz_120_; | 
|  | _zz_121_[4] = _zz_120_; | 
|  | _zz_121_[3] = _zz_120_; | 
|  | _zz_121_[2] = _zz_120_; | 
|  | _zz_121_[1] = _zz_120_; | 
|  | _zz_121_[0] = _zz_120_; | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | case(decode_BRANCH_CTRL) | 
|  | `BranchCtrlEnum_defaultEncoding_JAL : begin | 
|  | _zz_122_ = _zz_262_[1]; | 
|  | end | 
|  | default : begin | 
|  | _zz_122_ = _zz_263_[1]; | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign IBusCachedPlugin_predictionJumpInterface_valid = (decode_arbitration_isValid && IBusCachedPlugin_decodePrediction_cmd_hadBranch); | 
|  | assign _zz_123_ = _zz_264_[19]; | 
|  | always @ (*) begin | 
|  | _zz_124_[10] = _zz_123_; | 
|  | _zz_124_[9] = _zz_123_; | 
|  | _zz_124_[8] = _zz_123_; | 
|  | _zz_124_[7] = _zz_123_; | 
|  | _zz_124_[6] = _zz_123_; | 
|  | _zz_124_[5] = _zz_123_; | 
|  | _zz_124_[4] = _zz_123_; | 
|  | _zz_124_[3] = _zz_123_; | 
|  | _zz_124_[2] = _zz_123_; | 
|  | _zz_124_[1] = _zz_123_; | 
|  | _zz_124_[0] = _zz_123_; | 
|  | end | 
|  |  | 
|  | assign _zz_125_ = _zz_265_[11]; | 
|  | always @ (*) begin | 
|  | _zz_126_[18] = _zz_125_; | 
|  | _zz_126_[17] = _zz_125_; | 
|  | _zz_126_[16] = _zz_125_; | 
|  | _zz_126_[15] = _zz_125_; | 
|  | _zz_126_[14] = _zz_125_; | 
|  | _zz_126_[13] = _zz_125_; | 
|  | _zz_126_[12] = _zz_125_; | 
|  | _zz_126_[11] = _zz_125_; | 
|  | _zz_126_[10] = _zz_125_; | 
|  | _zz_126_[9] = _zz_125_; | 
|  | _zz_126_[8] = _zz_125_; | 
|  | _zz_126_[7] = _zz_125_; | 
|  | _zz_126_[6] = _zz_125_; | 
|  | _zz_126_[5] = _zz_125_; | 
|  | _zz_126_[4] = _zz_125_; | 
|  | _zz_126_[3] = _zz_125_; | 
|  | _zz_126_[2] = _zz_125_; | 
|  | _zz_126_[1] = _zz_125_; | 
|  | _zz_126_[0] = _zz_125_; | 
|  | end | 
|  |  | 
|  | assign IBusCachedPlugin_predictionJumpInterface_payload = (decode_PC + ((decode_BRANCH_CTRL == `BranchCtrlEnum_defaultEncoding_JAL) ? {{_zz_124_,{{{_zz_345_,decode_INSTRUCTION[19 : 12]},decode_INSTRUCTION[20]},decode_INSTRUCTION[30 : 21]}},1'b0} : {{_zz_126_,{{{_zz_346_,_zz_347_},decode_INSTRUCTION[30 : 25]},decode_INSTRUCTION[11 : 8]}},1'b0})); | 
|  | assign iBus_cmd_valid = IBusCachedPlugin_cache_io_mem_cmd_valid; | 
|  | always @ (*) begin | 
|  | iBus_cmd_payload_address = IBusCachedPlugin_cache_io_mem_cmd_payload_address; | 
|  | iBus_cmd_payload_address = IBusCachedPlugin_cache_io_mem_cmd_payload_address; | 
|  | end | 
|  |  | 
|  | assign iBus_cmd_payload_size = IBusCachedPlugin_cache_io_mem_cmd_payload_size; | 
|  | assign IBusCachedPlugin_s0_tightlyCoupledHit = 1'b0; | 
|  | assign _zz_206_ = (IBusCachedPlugin_iBusRsp_stages_0_input_valid && (! IBusCachedPlugin_s0_tightlyCoupledHit)); | 
|  | assign _zz_209_ = (32'b00000000000000000000000000000000); | 
|  | assign _zz_207_ = (IBusCachedPlugin_iBusRsp_stages_1_input_valid && (! IBusCachedPlugin_s1_tightlyCoupledHit)); | 
|  | assign _zz_208_ = (! IBusCachedPlugin_iBusRsp_stages_1_input_ready); | 
|  | assign _zz_210_ = (IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_valid && (! IBusCachedPlugin_s2_tightlyCoupledHit)); | 
|  | assign _zz_211_ = (! IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_ready); | 
|  | assign _zz_212_ = (CsrPlugin_privilege == (2'b00)); | 
|  | assign _zz_94_ = (decode_arbitration_isStuck ? decode_INSTRUCTION : IBusCachedPlugin_cache_io_cpu_fetch_data); | 
|  | assign IBusCachedPlugin_rsp_iBusRspOutputHalt = 1'b0; | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_rsp_redoFetch = 1'b0; | 
|  | if(_zz_228_)begin | 
|  | IBusCachedPlugin_rsp_redoFetch = 1'b1; | 
|  | end | 
|  | if(_zz_226_)begin | 
|  | IBusCachedPlugin_rsp_redoFetch = 1'b1; | 
|  | end | 
|  | if(_zz_237_)begin | 
|  | IBusCachedPlugin_rsp_redoFetch = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | _zz_213_ = (IBusCachedPlugin_rsp_redoFetch && (! IBusCachedPlugin_cache_io_cpu_decode_mmuRefilling)); | 
|  | if(_zz_226_)begin | 
|  | _zz_213_ = 1'b1; | 
|  | end | 
|  | if(_zz_237_)begin | 
|  | _zz_213_ = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_decodeExceptionPort_valid = 1'b0; | 
|  | if(_zz_227_)begin | 
|  | IBusCachedPlugin_decodeExceptionPort_valid = IBusCachedPlugin_iBusRsp_readyForError; | 
|  | end | 
|  | if(_zz_225_)begin | 
|  | IBusCachedPlugin_decodeExceptionPort_valid = IBusCachedPlugin_iBusRsp_readyForError; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | IBusCachedPlugin_decodeExceptionPort_payload_code = (4'bxxxx); | 
|  | if(_zz_227_)begin | 
|  | IBusCachedPlugin_decodeExceptionPort_payload_code = (4'b1100); | 
|  | end | 
|  | if(_zz_225_)begin | 
|  | IBusCachedPlugin_decodeExceptionPort_payload_code = (4'b0001); | 
|  | end | 
|  | end | 
|  |  | 
|  | assign IBusCachedPlugin_decodeExceptionPort_payload_badAddr = {IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_payload[31 : 2],(2'b00)}; | 
|  | assign IBusCachedPlugin_redoBranch_valid = IBusCachedPlugin_rsp_redoFetch; | 
|  | assign IBusCachedPlugin_redoBranch_payload = IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_payload; | 
|  | assign IBusCachedPlugin_iBusRsp_decodeInput_valid = IBusCachedPlugin_iBusRsp_cacheRspArbitration_output_valid; | 
|  | assign IBusCachedPlugin_iBusRsp_cacheRspArbitration_output_ready = IBusCachedPlugin_iBusRsp_decodeInput_ready; | 
|  | assign IBusCachedPlugin_iBusRsp_decodeInput_payload_rsp_inst = IBusCachedPlugin_cache_io_cpu_decode_data; | 
|  | assign IBusCachedPlugin_iBusRsp_decodeInput_payload_pc = IBusCachedPlugin_iBusRsp_cacheRspArbitration_output_payload; | 
|  | assign IBusCachedPlugin_mmuBus_cmd_isValid = IBusCachedPlugin_cache_io_cpu_fetch_mmuBus_cmd_isValid; | 
|  | assign IBusCachedPlugin_mmuBus_cmd_virtualAddress = IBusCachedPlugin_cache_io_cpu_fetch_mmuBus_cmd_virtualAddress; | 
|  | assign IBusCachedPlugin_mmuBus_cmd_bypassTranslation = IBusCachedPlugin_cache_io_cpu_fetch_mmuBus_cmd_bypassTranslation; | 
|  | assign IBusCachedPlugin_mmuBus_end = IBusCachedPlugin_cache_io_cpu_fetch_mmuBus_end; | 
|  | assign _zz_205_ = (decode_arbitration_isValid && decode_FLUSH_ALL); | 
|  | assign _zz_128_ = 1'b0; | 
|  | assign _zz_90_ = (((dBus_cmd_payload_size == (2'b10)) && (dBus_cmd_payload_address[1 : 0] != (2'b00))) || ((dBus_cmd_payload_size == (2'b01)) && (dBus_cmd_payload_address[0 : 0] != (1'b0)))); | 
|  | always @ (*) begin | 
|  | execute_DBusSimplePlugin_skipCmd = 1'b0; | 
|  | if(execute_ALIGNEMENT_FAULT)begin | 
|  | execute_DBusSimplePlugin_skipCmd = 1'b1; | 
|  | end | 
|  | if((execute_MMU_FAULT || execute_MMU_RSP_refilling))begin | 
|  | execute_DBusSimplePlugin_skipCmd = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign dBus_cmd_valid = (((((execute_arbitration_isValid && execute_MEMORY_ENABLE) && (! execute_arbitration_isStuckByOthers)) && (! execute_arbitration_isFlushed)) && (! execute_DBusSimplePlugin_skipCmd)) && (! _zz_128_)); | 
|  | assign dBus_cmd_payload_wr = execute_MEMORY_STORE; | 
|  | assign dBus_cmd_payload_size = execute_INSTRUCTION[13 : 12]; | 
|  | always @ (*) begin | 
|  | case(dBus_cmd_payload_size) | 
|  | 2'b00 : begin | 
|  | _zz_129_ = {{{execute_RS2[7 : 0],execute_RS2[7 : 0]},execute_RS2[7 : 0]},execute_RS2[7 : 0]}; | 
|  | end | 
|  | 2'b01 : begin | 
|  | _zz_129_ = {execute_RS2[15 : 0],execute_RS2[15 : 0]}; | 
|  | end | 
|  | default : begin | 
|  | _zz_129_ = execute_RS2[31 : 0]; | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign dBus_cmd_payload_data = _zz_129_; | 
|  | assign _zz_89_ = dBus_cmd_payload_address[1 : 0]; | 
|  | always @ (*) begin | 
|  | case(dBus_cmd_payload_size) | 
|  | 2'b00 : begin | 
|  | _zz_130_ = (4'b0001); | 
|  | end | 
|  | 2'b01 : begin | 
|  | _zz_130_ = (4'b0011); | 
|  | end | 
|  | default : begin | 
|  | _zz_130_ = (4'b1111); | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign execute_DBusSimplePlugin_formalMask = (_zz_130_ <<< dBus_cmd_payload_address[1 : 0]); | 
|  | assign DBusSimplePlugin_mmuBus_cmd_isValid = (execute_arbitration_isValid && execute_MEMORY_ENABLE); | 
|  | assign DBusSimplePlugin_mmuBus_cmd_virtualAddress = execute_SRC_ADD; | 
|  | assign DBusSimplePlugin_mmuBus_cmd_bypassTranslation = 1'b0; | 
|  | assign DBusSimplePlugin_mmuBus_end = ((! execute_arbitration_isStuck) || execute_arbitration_removeIt); | 
|  | assign dBus_cmd_payload_address = DBusSimplePlugin_mmuBus_rsp_physicalAddress; | 
|  | assign _zz_88_ = ((execute_MMU_RSP_exception || ((! execute_MMU_RSP_allowWrite) && execute_MEMORY_STORE)) || ((! execute_MMU_RSP_allowRead) && (! execute_MEMORY_STORE))); | 
|  | assign _zz_81_ = DBusSimplePlugin_mmuBus_rsp_physicalAddress; | 
|  | assign _zz_82_ = DBusSimplePlugin_mmuBus_rsp_isIoAccess; | 
|  | assign _zz_83_ = DBusSimplePlugin_mmuBus_rsp_allowRead; | 
|  | assign _zz_84_ = DBusSimplePlugin_mmuBus_rsp_allowWrite; | 
|  | assign _zz_85_ = DBusSimplePlugin_mmuBus_rsp_allowExecute; | 
|  | assign _zz_86_ = DBusSimplePlugin_mmuBus_rsp_exception; | 
|  | assign _zz_87_ = DBusSimplePlugin_mmuBus_rsp_refilling; | 
|  | assign _zz_80_ = dBus_rsp_data; | 
|  | always @ (*) begin | 
|  | DBusSimplePlugin_memoryExceptionPort_valid = 1'b0; | 
|  | if(_zz_238_)begin | 
|  | DBusSimplePlugin_memoryExceptionPort_valid = 1'b1; | 
|  | end | 
|  | if(memory_ALIGNEMENT_FAULT)begin | 
|  | DBusSimplePlugin_memoryExceptionPort_valid = 1'b1; | 
|  | end | 
|  | if(memory_MMU_RSP_refilling)begin | 
|  | DBusSimplePlugin_memoryExceptionPort_valid = 1'b0; | 
|  | end else begin | 
|  | if(memory_MMU_FAULT)begin | 
|  | DBusSimplePlugin_memoryExceptionPort_valid = 1'b1; | 
|  | end | 
|  | end | 
|  | if(_zz_239_)begin | 
|  | DBusSimplePlugin_memoryExceptionPort_valid = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | DBusSimplePlugin_memoryExceptionPort_payload_code = (4'bxxxx); | 
|  | if(_zz_238_)begin | 
|  | DBusSimplePlugin_memoryExceptionPort_payload_code = (4'b0101); | 
|  | end | 
|  | if(memory_ALIGNEMENT_FAULT)begin | 
|  | DBusSimplePlugin_memoryExceptionPort_payload_code = {1'd0, _zz_266_}; | 
|  | end | 
|  | if(! memory_MMU_RSP_refilling) begin | 
|  | if(memory_MMU_FAULT)begin | 
|  | DBusSimplePlugin_memoryExceptionPort_payload_code = (memory_MEMORY_STORE ? (4'b1111) : (4'b1101)); | 
|  | end | 
|  | end | 
|  | end | 
|  |  | 
|  | assign DBusSimplePlugin_memoryExceptionPort_payload_badAddr = memory_REGFILE_WRITE_DATA; | 
|  | always @ (*) begin | 
|  | DBusSimplePlugin_redoBranch_valid = 1'b0; | 
|  | if(memory_MMU_RSP_refilling)begin | 
|  | DBusSimplePlugin_redoBranch_valid = 1'b1; | 
|  | end | 
|  | if(_zz_239_)begin | 
|  | DBusSimplePlugin_redoBranch_valid = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign DBusSimplePlugin_redoBranch_payload = memory_PC; | 
|  | always @ (*) begin | 
|  | writeBack_DBusSimplePlugin_rspShifted = writeBack_MEMORY_READ_DATA; | 
|  | case(writeBack_MEMORY_ADDRESS_LOW) | 
|  | 2'b01 : begin | 
|  | writeBack_DBusSimplePlugin_rspShifted[7 : 0] = writeBack_MEMORY_READ_DATA[15 : 8]; | 
|  | end | 
|  | 2'b10 : begin | 
|  | writeBack_DBusSimplePlugin_rspShifted[15 : 0] = writeBack_MEMORY_READ_DATA[31 : 16]; | 
|  | end | 
|  | 2'b11 : begin | 
|  | writeBack_DBusSimplePlugin_rspShifted[7 : 0] = writeBack_MEMORY_READ_DATA[31 : 24]; | 
|  | end | 
|  | default : begin | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign _zz_131_ = (writeBack_DBusSimplePlugin_rspShifted[7] && (! writeBack_INSTRUCTION[14])); | 
|  | always @ (*) begin | 
|  | _zz_132_[31] = _zz_131_; | 
|  | _zz_132_[30] = _zz_131_; | 
|  | _zz_132_[29] = _zz_131_; | 
|  | _zz_132_[28] = _zz_131_; | 
|  | _zz_132_[27] = _zz_131_; | 
|  | _zz_132_[26] = _zz_131_; | 
|  | _zz_132_[25] = _zz_131_; | 
|  | _zz_132_[24] = _zz_131_; | 
|  | _zz_132_[23] = _zz_131_; | 
|  | _zz_132_[22] = _zz_131_; | 
|  | _zz_132_[21] = _zz_131_; | 
|  | _zz_132_[20] = _zz_131_; | 
|  | _zz_132_[19] = _zz_131_; | 
|  | _zz_132_[18] = _zz_131_; | 
|  | _zz_132_[17] = _zz_131_; | 
|  | _zz_132_[16] = _zz_131_; | 
|  | _zz_132_[15] = _zz_131_; | 
|  | _zz_132_[14] = _zz_131_; | 
|  | _zz_132_[13] = _zz_131_; | 
|  | _zz_132_[12] = _zz_131_; | 
|  | _zz_132_[11] = _zz_131_; | 
|  | _zz_132_[10] = _zz_131_; | 
|  | _zz_132_[9] = _zz_131_; | 
|  | _zz_132_[8] = _zz_131_; | 
|  | _zz_132_[7 : 0] = writeBack_DBusSimplePlugin_rspShifted[7 : 0]; | 
|  | end | 
|  |  | 
|  | assign _zz_133_ = (writeBack_DBusSimplePlugin_rspShifted[15] && (! writeBack_INSTRUCTION[14])); | 
|  | always @ (*) begin | 
|  | _zz_134_[31] = _zz_133_; | 
|  | _zz_134_[30] = _zz_133_; | 
|  | _zz_134_[29] = _zz_133_; | 
|  | _zz_134_[28] = _zz_133_; | 
|  | _zz_134_[27] = _zz_133_; | 
|  | _zz_134_[26] = _zz_133_; | 
|  | _zz_134_[25] = _zz_133_; | 
|  | _zz_134_[24] = _zz_133_; | 
|  | _zz_134_[23] = _zz_133_; | 
|  | _zz_134_[22] = _zz_133_; | 
|  | _zz_134_[21] = _zz_133_; | 
|  | _zz_134_[20] = _zz_133_; | 
|  | _zz_134_[19] = _zz_133_; | 
|  | _zz_134_[18] = _zz_133_; | 
|  | _zz_134_[17] = _zz_133_; | 
|  | _zz_134_[16] = _zz_133_; | 
|  | _zz_134_[15 : 0] = writeBack_DBusSimplePlugin_rspShifted[15 : 0]; | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | case(_zz_253_) | 
|  | 2'b00 : begin | 
|  | writeBack_DBusSimplePlugin_rspFormated = _zz_132_; | 
|  | end | 
|  | 2'b01 : begin | 
|  | writeBack_DBusSimplePlugin_rspFormated = _zz_134_; | 
|  | end | 
|  | default : begin | 
|  | writeBack_DBusSimplePlugin_rspFormated = writeBack_DBusSimplePlugin_rspShifted; | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign IBusCachedPlugin_mmuBus_rsp_physicalAddress = IBusCachedPlugin_mmuBus_cmd_virtualAddress; | 
|  | assign IBusCachedPlugin_mmuBus_rsp_allowRead = 1'b1; | 
|  | assign IBusCachedPlugin_mmuBus_rsp_allowWrite = 1'b1; | 
|  | assign IBusCachedPlugin_mmuBus_rsp_allowExecute = 1'b1; | 
|  | assign IBusCachedPlugin_mmuBus_rsp_isIoAccess = IBusCachedPlugin_mmuBus_rsp_physicalAddress[31]; | 
|  | assign IBusCachedPlugin_mmuBus_rsp_exception = 1'b0; | 
|  | assign IBusCachedPlugin_mmuBus_rsp_refilling = 1'b0; | 
|  | assign IBusCachedPlugin_mmuBus_busy = 1'b0; | 
|  | assign DBusSimplePlugin_mmuBus_rsp_physicalAddress = DBusSimplePlugin_mmuBus_cmd_virtualAddress; | 
|  | assign DBusSimplePlugin_mmuBus_rsp_allowRead = 1'b1; | 
|  | assign DBusSimplePlugin_mmuBus_rsp_allowWrite = 1'b1; | 
|  | assign DBusSimplePlugin_mmuBus_rsp_allowExecute = 1'b1; | 
|  | assign DBusSimplePlugin_mmuBus_rsp_isIoAccess = DBusSimplePlugin_mmuBus_rsp_physicalAddress[31]; | 
|  | assign DBusSimplePlugin_mmuBus_rsp_exception = 1'b0; | 
|  | assign DBusSimplePlugin_mmuBus_rsp_refilling = 1'b0; | 
|  | assign DBusSimplePlugin_mmuBus_busy = 1'b0; | 
|  | assign _zz_136_ = ((decode_INSTRUCTION & (32'b00000000000000000000000000000100)) == (32'b00000000000000000000000000000100)); | 
|  | assign _zz_137_ = ((decode_INSTRUCTION & (32'b00000000000000000011000000000000)) == (32'b00000000000000000010000000000000)); | 
|  | assign _zz_138_ = ((decode_INSTRUCTION & (32'b00000000000000000000000001001000)) == (32'b00000000000000000000000001001000)); | 
|  | assign _zz_139_ = ((decode_INSTRUCTION & (32'b00000000000000000111000000000000)) == (32'b00000000000000000001000000000000)); | 
|  | assign _zz_140_ = ((decode_INSTRUCTION & (32'b00000000000000000101000000000000)) == (32'b00000000000000000100000000000000)); | 
|  | assign _zz_141_ = ((decode_INSTRUCTION & (32'b00000000000000000100000001010000)) == (32'b00000000000000000100000001010000)); | 
|  | assign _zz_135_ = {({_zz_140_,{_zz_137_,_zz_139_}} != (3'b000)),{({_zz_348_,_zz_141_} != (2'b00)),{({_zz_349_,_zz_350_} != (2'b00)),{(_zz_351_ != _zz_352_),{_zz_353_,{_zz_354_,_zz_355_}}}}}}; | 
|  | assign _zz_78_ = ({((decode_INSTRUCTION & (32'b00000000000000000000000001011111)) == (32'b00000000000000000000000000010111)),{((decode_INSTRUCTION & (32'b00000000000000000000000001111111)) == (32'b00000000000000000000000001101111)),{((decode_INSTRUCTION & (32'b00000000000000000001000001101111)) == (32'b00000000000000000000000000000011)),{((decode_INSTRUCTION & _zz_487_) == (32'b00000000000000000001000001110011)),{(_zz_488_ == _zz_489_),{_zz_490_,{_zz_491_,_zz_492_}}}}}}} != (18'b000000000000000000)); | 
|  | assign _zz_77_ = _zz_267_[0]; | 
|  | assign _zz_76_ = _zz_268_[0]; | 
|  | assign _zz_75_ = _zz_269_[0]; | 
|  | assign _zz_74_ = _zz_270_[0]; | 
|  | assign _zz_142_ = _zz_135_[5 : 4]; | 
|  | assign _zz_73_ = _zz_142_; | 
|  | assign _zz_143_ = _zz_135_[7 : 6]; | 
|  | assign _zz_72_ = _zz_143_; | 
|  | assign _zz_71_ = _zz_271_[0]; | 
|  | assign _zz_144_ = _zz_135_[10 : 9]; | 
|  | assign _zz_70_ = _zz_144_; | 
|  | assign _zz_69_ = _zz_272_[0]; | 
|  | assign _zz_145_ = _zz_135_[13 : 12]; | 
|  | assign _zz_68_ = _zz_145_; | 
|  | assign _zz_146_ = _zz_135_[14 : 14]; | 
|  | assign _zz_67_ = _zz_146_; | 
|  | assign _zz_66_ = _zz_273_[0]; | 
|  | assign _zz_65_ = _zz_274_[0]; | 
|  | assign _zz_64_ = _zz_275_[0]; | 
|  | assign _zz_63_ = _zz_276_[0]; | 
|  | assign _zz_62_ = _zz_277_[0]; | 
|  | assign _zz_61_ = _zz_278_[0]; | 
|  | assign _zz_60_ = _zz_279_[0]; | 
|  | assign _zz_147_ = _zz_135_[23 : 22]; | 
|  | assign _zz_59_ = _zz_147_; | 
|  | assign _zz_58_ = _zz_280_[0]; | 
|  | assign _zz_57_ = _zz_281_[0]; | 
|  | assign _zz_148_ = _zz_135_[28 : 27]; | 
|  | assign _zz_56_ = _zz_148_; | 
|  | assign _zz_55_ = _zz_282_[0]; | 
|  | assign decodeExceptionPort_valid = ((decode_arbitration_isValid && decode_INSTRUCTION_READY) && (! decode_LEGAL_INSTRUCTION)); | 
|  | assign decodeExceptionPort_payload_code = (4'b0010); | 
|  | assign decodeExceptionPort_payload_badAddr = decode_INSTRUCTION; | 
|  | assign decode_RegFilePlugin_regFileReadAddress1 = decode_INSTRUCTION_ANTICIPATED[19 : 15]; | 
|  | assign decode_RegFilePlugin_regFileReadAddress2 = decode_INSTRUCTION_ANTICIPATED[24 : 20]; | 
|  | assign decode_RegFilePlugin_rs1Data = _zz_214_; | 
|  | assign decode_RegFilePlugin_rs2Data = _zz_215_; | 
|  | assign _zz_54_ = decode_RegFilePlugin_rs1Data; | 
|  | assign _zz_53_ = decode_RegFilePlugin_rs2Data; | 
|  | always @ (*) begin | 
|  | lastStageRegFileWrite_valid = (_zz_51_ && writeBack_arbitration_isFiring); | 
|  | if(_zz_149_)begin | 
|  | lastStageRegFileWrite_valid = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign lastStageRegFileWrite_payload_address = _zz_50_[11 : 7]; | 
|  | assign lastStageRegFileWrite_payload_data = _zz_79_; | 
|  | always @ (*) begin | 
|  | case(execute_ALU_BITWISE_CTRL) | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_AND_1 : begin | 
|  | execute_IntAluPlugin_bitwise = (execute_SRC1 & execute_SRC2); | 
|  | end | 
|  | `AluBitwiseCtrlEnum_defaultEncoding_OR_1 : begin | 
|  | execute_IntAluPlugin_bitwise = (execute_SRC1 | execute_SRC2); | 
|  | end | 
|  | default : begin | 
|  | execute_IntAluPlugin_bitwise = (execute_SRC1 ^ execute_SRC2); | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | case(execute_ALU_CTRL) | 
|  | `AluCtrlEnum_defaultEncoding_BITWISE : begin | 
|  | _zz_150_ = execute_IntAluPlugin_bitwise; | 
|  | end | 
|  | `AluCtrlEnum_defaultEncoding_SLT_SLTU : begin | 
|  | _zz_150_ = {31'd0, _zz_283_}; | 
|  | end | 
|  | default : begin | 
|  | _zz_150_ = execute_SRC_ADD_SUB; | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign _zz_48_ = _zz_150_; | 
|  | assign _zz_46_ = (decode_SRC_ADD_ZERO && (! decode_SRC_USE_SUB_LESS)); | 
|  | always @ (*) begin | 
|  | case(execute_SRC1_CTRL) | 
|  | `Src1CtrlEnum_defaultEncoding_RS : begin | 
|  | _zz_151_ = execute_RS1; | 
|  | end | 
|  | `Src1CtrlEnum_defaultEncoding_PC_INCREMENT : begin | 
|  | _zz_151_ = {29'd0, _zz_284_}; | 
|  | end | 
|  | `Src1CtrlEnum_defaultEncoding_IMU : begin | 
|  | _zz_151_ = {execute_INSTRUCTION[31 : 12],(12'b000000000000)}; | 
|  | end | 
|  | default : begin | 
|  | _zz_151_ = {27'd0, _zz_285_}; | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign _zz_45_ = _zz_151_; | 
|  | assign _zz_152_ = _zz_286_[11]; | 
|  | always @ (*) begin | 
|  | _zz_153_[19] = _zz_152_; | 
|  | _zz_153_[18] = _zz_152_; | 
|  | _zz_153_[17] = _zz_152_; | 
|  | _zz_153_[16] = _zz_152_; | 
|  | _zz_153_[15] = _zz_152_; | 
|  | _zz_153_[14] = _zz_152_; | 
|  | _zz_153_[13] = _zz_152_; | 
|  | _zz_153_[12] = _zz_152_; | 
|  | _zz_153_[11] = _zz_152_; | 
|  | _zz_153_[10] = _zz_152_; | 
|  | _zz_153_[9] = _zz_152_; | 
|  | _zz_153_[8] = _zz_152_; | 
|  | _zz_153_[7] = _zz_152_; | 
|  | _zz_153_[6] = _zz_152_; | 
|  | _zz_153_[5] = _zz_152_; | 
|  | _zz_153_[4] = _zz_152_; | 
|  | _zz_153_[3] = _zz_152_; | 
|  | _zz_153_[2] = _zz_152_; | 
|  | _zz_153_[1] = _zz_152_; | 
|  | _zz_153_[0] = _zz_152_; | 
|  | end | 
|  |  | 
|  | assign _zz_154_ = _zz_287_[11]; | 
|  | always @ (*) begin | 
|  | _zz_155_[19] = _zz_154_; | 
|  | _zz_155_[18] = _zz_154_; | 
|  | _zz_155_[17] = _zz_154_; | 
|  | _zz_155_[16] = _zz_154_; | 
|  | _zz_155_[15] = _zz_154_; | 
|  | _zz_155_[14] = _zz_154_; | 
|  | _zz_155_[13] = _zz_154_; | 
|  | _zz_155_[12] = _zz_154_; | 
|  | _zz_155_[11] = _zz_154_; | 
|  | _zz_155_[10] = _zz_154_; | 
|  | _zz_155_[9] = _zz_154_; | 
|  | _zz_155_[8] = _zz_154_; | 
|  | _zz_155_[7] = _zz_154_; | 
|  | _zz_155_[6] = _zz_154_; | 
|  | _zz_155_[5] = _zz_154_; | 
|  | _zz_155_[4] = _zz_154_; | 
|  | _zz_155_[3] = _zz_154_; | 
|  | _zz_155_[2] = _zz_154_; | 
|  | _zz_155_[1] = _zz_154_; | 
|  | _zz_155_[0] = _zz_154_; | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | case(execute_SRC2_CTRL) | 
|  | `Src2CtrlEnum_defaultEncoding_RS : begin | 
|  | _zz_156_ = execute_RS2; | 
|  | end | 
|  | `Src2CtrlEnum_defaultEncoding_IMI : begin | 
|  | _zz_156_ = {_zz_153_,execute_INSTRUCTION[31 : 20]}; | 
|  | end | 
|  | `Src2CtrlEnum_defaultEncoding_IMS : begin | 
|  | _zz_156_ = {_zz_155_,{execute_INSTRUCTION[31 : 25],execute_INSTRUCTION[11 : 7]}}; | 
|  | end | 
|  | default : begin | 
|  | _zz_156_ = _zz_41_; | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign _zz_43_ = _zz_156_; | 
|  | always @ (*) begin | 
|  | execute_SrcPlugin_addSub = _zz_288_; | 
|  | if(execute_SRC2_FORCE_ZERO)begin | 
|  | execute_SrcPlugin_addSub = execute_SRC1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign execute_SrcPlugin_less = ((execute_SRC1[31] == execute_SRC2[31]) ? execute_SrcPlugin_addSub[31] : (execute_SRC_LESS_UNSIGNED ? execute_SRC2[31] : execute_SRC1[31])); | 
|  | assign _zz_40_ = execute_SrcPlugin_addSub; | 
|  | assign _zz_39_ = execute_SrcPlugin_addSub; | 
|  | assign _zz_38_ = execute_SrcPlugin_less; | 
|  | assign execute_LightShifterPlugin_isShift = (execute_SHIFT_CTRL != `ShiftCtrlEnum_defaultEncoding_DISABLE_1); | 
|  | assign execute_LightShifterPlugin_amplitude = (execute_LightShifterPlugin_isActive ? execute_LightShifterPlugin_amplitudeReg : execute_SRC2[4 : 0]); | 
|  | assign execute_LightShifterPlugin_shiftInput = (execute_LightShifterPlugin_isActive ? memory_REGFILE_WRITE_DATA : execute_SRC1); | 
|  | assign execute_LightShifterPlugin_done = (execute_LightShifterPlugin_amplitude[4 : 1] == (4'b0000)); | 
|  | always @ (*) begin | 
|  | case(execute_SHIFT_CTRL) | 
|  | `ShiftCtrlEnum_defaultEncoding_SLL_1 : begin | 
|  | _zz_157_ = (execute_LightShifterPlugin_shiftInput <<< 1); | 
|  | end | 
|  | default : begin | 
|  | _zz_157_ = _zz_295_; | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | _zz_158_ = 1'b0; | 
|  | if(_zz_240_)begin | 
|  | if(_zz_241_)begin | 
|  | if(_zz_164_)begin | 
|  | _zz_158_ = 1'b1; | 
|  | end | 
|  | end | 
|  | end | 
|  | if(_zz_242_)begin | 
|  | if(_zz_243_)begin | 
|  | if(_zz_166_)begin | 
|  | _zz_158_ = 1'b1; | 
|  | end | 
|  | end | 
|  | end | 
|  | if(_zz_244_)begin | 
|  | if(_zz_245_)begin | 
|  | if(_zz_168_)begin | 
|  | _zz_158_ = 1'b1; | 
|  | end | 
|  | end | 
|  | end | 
|  | if((! decode_RS1_USE))begin | 
|  | _zz_158_ = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | _zz_159_ = 1'b0; | 
|  | if(_zz_240_)begin | 
|  | if(_zz_241_)begin | 
|  | if(_zz_165_)begin | 
|  | _zz_159_ = 1'b1; | 
|  | end | 
|  | end | 
|  | end | 
|  | if(_zz_242_)begin | 
|  | if(_zz_243_)begin | 
|  | if(_zz_167_)begin | 
|  | _zz_159_ = 1'b1; | 
|  | end | 
|  | end | 
|  | end | 
|  | if(_zz_244_)begin | 
|  | if(_zz_245_)begin | 
|  | if(_zz_169_)begin | 
|  | _zz_159_ = 1'b1; | 
|  | end | 
|  | end | 
|  | end | 
|  | if((! decode_RS2_USE))begin | 
|  | _zz_159_ = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign _zz_160_ = (_zz_51_ && writeBack_arbitration_isFiring); | 
|  | assign _zz_164_ = (writeBack_INSTRUCTION[11 : 7] == decode_INSTRUCTION[19 : 15]); | 
|  | assign _zz_165_ = (writeBack_INSTRUCTION[11 : 7] == decode_INSTRUCTION[24 : 20]); | 
|  | assign _zz_166_ = (memory_INSTRUCTION[11 : 7] == decode_INSTRUCTION[19 : 15]); | 
|  | assign _zz_167_ = (memory_INSTRUCTION[11 : 7] == decode_INSTRUCTION[24 : 20]); | 
|  | assign _zz_168_ = (execute_INSTRUCTION[11 : 7] == decode_INSTRUCTION[19 : 15]); | 
|  | assign _zz_169_ = (execute_INSTRUCTION[11 : 7] == decode_INSTRUCTION[24 : 20]); | 
|  | assign _zz_34_ = IBusCachedPlugin_decodePrediction_cmd_hadBranch; | 
|  | assign execute_BranchPlugin_eq = (execute_SRC1 == execute_SRC2); | 
|  | assign _zz_170_ = execute_INSTRUCTION[14 : 12]; | 
|  | always @ (*) begin | 
|  | if((_zz_170_ == (3'b000))) begin | 
|  | _zz_171_ = execute_BranchPlugin_eq; | 
|  | end else if((_zz_170_ == (3'b001))) begin | 
|  | _zz_171_ = (! execute_BranchPlugin_eq); | 
|  | end else if((((_zz_170_ & (3'b101)) == (3'b101)))) begin | 
|  | _zz_171_ = (! execute_SRC_LESS); | 
|  | end else begin | 
|  | _zz_171_ = execute_SRC_LESS; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | case(execute_BRANCH_CTRL) | 
|  | `BranchCtrlEnum_defaultEncoding_INC : begin | 
|  | _zz_172_ = 1'b0; | 
|  | end | 
|  | `BranchCtrlEnum_defaultEncoding_JAL : begin | 
|  | _zz_172_ = 1'b1; | 
|  | end | 
|  | `BranchCtrlEnum_defaultEncoding_JALR : begin | 
|  | _zz_172_ = 1'b1; | 
|  | end | 
|  | default : begin | 
|  | _zz_172_ = _zz_171_; | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign _zz_33_ = _zz_172_; | 
|  | assign _zz_173_ = _zz_297_[11]; | 
|  | always @ (*) begin | 
|  | _zz_174_[19] = _zz_173_; | 
|  | _zz_174_[18] = _zz_173_; | 
|  | _zz_174_[17] = _zz_173_; | 
|  | _zz_174_[16] = _zz_173_; | 
|  | _zz_174_[15] = _zz_173_; | 
|  | _zz_174_[14] = _zz_173_; | 
|  | _zz_174_[13] = _zz_173_; | 
|  | _zz_174_[12] = _zz_173_; | 
|  | _zz_174_[11] = _zz_173_; | 
|  | _zz_174_[10] = _zz_173_; | 
|  | _zz_174_[9] = _zz_173_; | 
|  | _zz_174_[8] = _zz_173_; | 
|  | _zz_174_[7] = _zz_173_; | 
|  | _zz_174_[6] = _zz_173_; | 
|  | _zz_174_[5] = _zz_173_; | 
|  | _zz_174_[4] = _zz_173_; | 
|  | _zz_174_[3] = _zz_173_; | 
|  | _zz_174_[2] = _zz_173_; | 
|  | _zz_174_[1] = _zz_173_; | 
|  | _zz_174_[0] = _zz_173_; | 
|  | end | 
|  |  | 
|  | assign _zz_175_ = _zz_298_[19]; | 
|  | always @ (*) begin | 
|  | _zz_176_[10] = _zz_175_; | 
|  | _zz_176_[9] = _zz_175_; | 
|  | _zz_176_[8] = _zz_175_; | 
|  | _zz_176_[7] = _zz_175_; | 
|  | _zz_176_[6] = _zz_175_; | 
|  | _zz_176_[5] = _zz_175_; | 
|  | _zz_176_[4] = _zz_175_; | 
|  | _zz_176_[3] = _zz_175_; | 
|  | _zz_176_[2] = _zz_175_; | 
|  | _zz_176_[1] = _zz_175_; | 
|  | _zz_176_[0] = _zz_175_; | 
|  | end | 
|  |  | 
|  | assign _zz_177_ = _zz_299_[11]; | 
|  | always @ (*) begin | 
|  | _zz_178_[18] = _zz_177_; | 
|  | _zz_178_[17] = _zz_177_; | 
|  | _zz_178_[16] = _zz_177_; | 
|  | _zz_178_[15] = _zz_177_; | 
|  | _zz_178_[14] = _zz_177_; | 
|  | _zz_178_[13] = _zz_177_; | 
|  | _zz_178_[12] = _zz_177_; | 
|  | _zz_178_[11] = _zz_177_; | 
|  | _zz_178_[10] = _zz_177_; | 
|  | _zz_178_[9] = _zz_177_; | 
|  | _zz_178_[8] = _zz_177_; | 
|  | _zz_178_[7] = _zz_177_; | 
|  | _zz_178_[6] = _zz_177_; | 
|  | _zz_178_[5] = _zz_177_; | 
|  | _zz_178_[4] = _zz_177_; | 
|  | _zz_178_[3] = _zz_177_; | 
|  | _zz_178_[2] = _zz_177_; | 
|  | _zz_178_[1] = _zz_177_; | 
|  | _zz_178_[0] = _zz_177_; | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | case(execute_BRANCH_CTRL) | 
|  | `BranchCtrlEnum_defaultEncoding_JALR : begin | 
|  | _zz_179_ = (_zz_300_[1] ^ execute_RS1[1]); | 
|  | end | 
|  | `BranchCtrlEnum_defaultEncoding_JAL : begin | 
|  | _zz_179_ = _zz_301_[1]; | 
|  | end | 
|  | default : begin | 
|  | _zz_179_ = _zz_302_[1]; | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign execute_BranchPlugin_missAlignedTarget = (execute_BRANCH_COND_RESULT && _zz_179_); | 
|  | assign _zz_31_ = ((execute_PREDICTION_HAD_BRANCHED2 != execute_BRANCH_COND_RESULT) || execute_BranchPlugin_missAlignedTarget); | 
|  | always @ (*) begin | 
|  | case(execute_BRANCH_CTRL) | 
|  | `BranchCtrlEnum_defaultEncoding_JALR : begin | 
|  | execute_BranchPlugin_branch_src1 = execute_RS1; | 
|  | end | 
|  | default : begin | 
|  | execute_BranchPlugin_branch_src1 = execute_PC; | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign _zz_180_ = _zz_303_[11]; | 
|  | always @ (*) begin | 
|  | _zz_181_[19] = _zz_180_; | 
|  | _zz_181_[18] = _zz_180_; | 
|  | _zz_181_[17] = _zz_180_; | 
|  | _zz_181_[16] = _zz_180_; | 
|  | _zz_181_[15] = _zz_180_; | 
|  | _zz_181_[14] = _zz_180_; | 
|  | _zz_181_[13] = _zz_180_; | 
|  | _zz_181_[12] = _zz_180_; | 
|  | _zz_181_[11] = _zz_180_; | 
|  | _zz_181_[10] = _zz_180_; | 
|  | _zz_181_[9] = _zz_180_; | 
|  | _zz_181_[8] = _zz_180_; | 
|  | _zz_181_[7] = _zz_180_; | 
|  | _zz_181_[6] = _zz_180_; | 
|  | _zz_181_[5] = _zz_180_; | 
|  | _zz_181_[4] = _zz_180_; | 
|  | _zz_181_[3] = _zz_180_; | 
|  | _zz_181_[2] = _zz_180_; | 
|  | _zz_181_[1] = _zz_180_; | 
|  | _zz_181_[0] = _zz_180_; | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | case(execute_BRANCH_CTRL) | 
|  | `BranchCtrlEnum_defaultEncoding_JALR : begin | 
|  | execute_BranchPlugin_branch_src2 = {_zz_181_,execute_INSTRUCTION[31 : 20]}; | 
|  | end | 
|  | default : begin | 
|  | execute_BranchPlugin_branch_src2 = ((execute_BRANCH_CTRL == `BranchCtrlEnum_defaultEncoding_JAL) ? {{_zz_183_,{{{_zz_504_,execute_INSTRUCTION[19 : 12]},execute_INSTRUCTION[20]},execute_INSTRUCTION[30 : 21]}},1'b0} : {{_zz_185_,{{{_zz_505_,_zz_506_},execute_INSTRUCTION[30 : 25]},execute_INSTRUCTION[11 : 8]}},1'b0}); | 
|  | if(execute_PREDICTION_HAD_BRANCHED2)begin | 
|  | execute_BranchPlugin_branch_src2 = {29'd0, _zz_306_}; | 
|  | end | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign _zz_182_ = _zz_304_[19]; | 
|  | always @ (*) begin | 
|  | _zz_183_[10] = _zz_182_; | 
|  | _zz_183_[9] = _zz_182_; | 
|  | _zz_183_[8] = _zz_182_; | 
|  | _zz_183_[7] = _zz_182_; | 
|  | _zz_183_[6] = _zz_182_; | 
|  | _zz_183_[5] = _zz_182_; | 
|  | _zz_183_[4] = _zz_182_; | 
|  | _zz_183_[3] = _zz_182_; | 
|  | _zz_183_[2] = _zz_182_; | 
|  | _zz_183_[1] = _zz_182_; | 
|  | _zz_183_[0] = _zz_182_; | 
|  | end | 
|  |  | 
|  | assign _zz_184_ = _zz_305_[11]; | 
|  | always @ (*) begin | 
|  | _zz_185_[18] = _zz_184_; | 
|  | _zz_185_[17] = _zz_184_; | 
|  | _zz_185_[16] = _zz_184_; | 
|  | _zz_185_[15] = _zz_184_; | 
|  | _zz_185_[14] = _zz_184_; | 
|  | _zz_185_[13] = _zz_184_; | 
|  | _zz_185_[12] = _zz_184_; | 
|  | _zz_185_[11] = _zz_184_; | 
|  | _zz_185_[10] = _zz_184_; | 
|  | _zz_185_[9] = _zz_184_; | 
|  | _zz_185_[8] = _zz_184_; | 
|  | _zz_185_[7] = _zz_184_; | 
|  | _zz_185_[6] = _zz_184_; | 
|  | _zz_185_[5] = _zz_184_; | 
|  | _zz_185_[4] = _zz_184_; | 
|  | _zz_185_[3] = _zz_184_; | 
|  | _zz_185_[2] = _zz_184_; | 
|  | _zz_185_[1] = _zz_184_; | 
|  | _zz_185_[0] = _zz_184_; | 
|  | end | 
|  |  | 
|  | assign execute_BranchPlugin_branchAdder = (execute_BranchPlugin_branch_src1 + execute_BranchPlugin_branch_src2); | 
|  | assign _zz_30_ = {execute_BranchPlugin_branchAdder[31 : 1],(1'b0)}; | 
|  | assign BranchPlugin_jumpInterface_valid = ((memory_arbitration_isValid && memory_BRANCH_DO) && (! 1'b0)); | 
|  | assign BranchPlugin_jumpInterface_payload = memory_BRANCH_CALC; | 
|  | assign BranchPlugin_branchExceptionPort_valid = (memory_arbitration_isValid && (memory_BRANCH_DO && memory_BRANCH_CALC[1])); | 
|  | assign BranchPlugin_branchExceptionPort_payload_code = (4'b0000); | 
|  | assign BranchPlugin_branchExceptionPort_payload_badAddr = memory_BRANCH_CALC; | 
|  | assign IBusCachedPlugin_decodePrediction_rsp_wasWrong = BranchPlugin_jumpInterface_valid; | 
|  | always @ (*) begin | 
|  | CsrPlugin_privilege = (2'b11); | 
|  | if(CsrPlugin_forceMachineWire)begin | 
|  | CsrPlugin_privilege = (2'b11); | 
|  | end | 
|  | end | 
|  |  | 
|  | assign CsrPlugin_misa_base = (2'b01); | 
|  | assign CsrPlugin_misa_extensions = (26'b00000000000000000001000010); | 
|  | assign _zz_186_ = (CsrPlugin_mip_MTIP && CsrPlugin_mie_MTIE); | 
|  | assign _zz_187_ = (CsrPlugin_mip_MSIP && CsrPlugin_mie_MSIE); | 
|  | assign _zz_188_ = (CsrPlugin_mip_MEIP && CsrPlugin_mie_MEIE); | 
|  | assign CsrPlugin_exceptionPortCtrl_exceptionTargetPrivilegeUncapped = (2'b11); | 
|  | assign CsrPlugin_exceptionPortCtrl_exceptionTargetPrivilege = ((CsrPlugin_privilege < CsrPlugin_exceptionPortCtrl_exceptionTargetPrivilegeUncapped) ? CsrPlugin_exceptionPortCtrl_exceptionTargetPrivilegeUncapped : CsrPlugin_privilege); | 
|  | assign _zz_189_ = {decodeExceptionPort_valid,IBusCachedPlugin_decodeExceptionPort_valid}; | 
|  | assign _zz_190_ = _zz_307_[0]; | 
|  | assign _zz_191_ = {BranchPlugin_branchExceptionPort_valid,DBusSimplePlugin_memoryExceptionPort_valid}; | 
|  | assign _zz_192_ = _zz_309_[0]; | 
|  | always @ (*) begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValids_decode = CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_decode; | 
|  | if(_zz_229_)begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValids_decode = 1'b1; | 
|  | end | 
|  | if(decode_arbitration_isFlushed)begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValids_decode = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValids_execute = CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_execute; | 
|  | if(execute_arbitration_isFlushed)begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValids_execute = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValids_memory = CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_memory; | 
|  | if(_zz_233_)begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValids_memory = 1'b1; | 
|  | end | 
|  | if(memory_arbitration_isFlushed)begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValids_memory = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValids_writeBack = CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_writeBack; | 
|  | if(writeBack_arbitration_isFlushed)begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValids_writeBack = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign CsrPlugin_exceptionPendings_0 = CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_decode; | 
|  | assign CsrPlugin_exceptionPendings_1 = CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_execute; | 
|  | assign CsrPlugin_exceptionPendings_2 = CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_memory; | 
|  | assign CsrPlugin_exceptionPendings_3 = CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_writeBack; | 
|  | assign CsrPlugin_exception = (CsrPlugin_exceptionPortCtrl_exceptionValids_writeBack && CsrPlugin_allowException); | 
|  | assign CsrPlugin_lastStageWasWfi = 1'b0; | 
|  | always @ (*) begin | 
|  | CsrPlugin_pipelineLiberator_done = ((! ({writeBack_arbitration_isValid,{memory_arbitration_isValid,execute_arbitration_isValid}} != (3'b000))) && IBusCachedPlugin_pcValids_3); | 
|  | if(({CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_writeBack,{CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_memory,CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_execute}} != (3'b000)))begin | 
|  | CsrPlugin_pipelineLiberator_done = 1'b0; | 
|  | end | 
|  | if(CsrPlugin_hadException)begin | 
|  | CsrPlugin_pipelineLiberator_done = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign CsrPlugin_interruptJump = ((CsrPlugin_interrupt_valid && CsrPlugin_pipelineLiberator_done) && CsrPlugin_allowInterrupts); | 
|  | always @ (*) begin | 
|  | CsrPlugin_targetPrivilege = CsrPlugin_interrupt_targetPrivilege; | 
|  | if(CsrPlugin_hadException)begin | 
|  | CsrPlugin_targetPrivilege = CsrPlugin_exceptionPortCtrl_exceptionTargetPrivilege; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | CsrPlugin_trapCause = CsrPlugin_interrupt_code; | 
|  | if(CsrPlugin_hadException)begin | 
|  | CsrPlugin_trapCause = CsrPlugin_exceptionPortCtrl_exceptionContext_code; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | CsrPlugin_xtvec_mode = (2'bxx); | 
|  | case(CsrPlugin_targetPrivilege) | 
|  | 2'b11 : begin | 
|  | CsrPlugin_xtvec_mode = CsrPlugin_mtvec_mode; | 
|  | end | 
|  | default : begin | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | CsrPlugin_xtvec_base = (30'bxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx); | 
|  | case(CsrPlugin_targetPrivilege) | 
|  | 2'b11 : begin | 
|  | CsrPlugin_xtvec_base = CsrPlugin_mtvec_base; | 
|  | end | 
|  | default : begin | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign contextSwitching = CsrPlugin_jumpInterface_valid; | 
|  | assign _zz_28_ = (! (((decode_INSTRUCTION[14 : 13] == (2'b01)) && (decode_INSTRUCTION[19 : 15] == (5'b00000))) || ((decode_INSTRUCTION[14 : 13] == (2'b11)) && (decode_INSTRUCTION[19 : 15] == (5'b00000))))); | 
|  | assign _zz_27_ = (decode_INSTRUCTION[13 : 7] != (7'b0100000)); | 
|  | assign execute_CsrPlugin_inWfi = 1'b0; | 
|  | assign execute_CsrPlugin_blockedBySideEffects = ({writeBack_arbitration_isValid,memory_arbitration_isValid} != (2'b00)); | 
|  | always @ (*) begin | 
|  | execute_CsrPlugin_illegalAccess = 1'b1; | 
|  | case(execute_CsrPlugin_csrAddress) | 
|  | 12'b101111000000 : begin | 
|  | execute_CsrPlugin_illegalAccess = 1'b0; | 
|  | end | 
|  | 12'b001100000000 : begin | 
|  | execute_CsrPlugin_illegalAccess = 1'b0; | 
|  | end | 
|  | 12'b001101000001 : begin | 
|  | execute_CsrPlugin_illegalAccess = 1'b0; | 
|  | end | 
|  | 12'b001100000101 : begin | 
|  | if(execute_CSR_WRITE_OPCODE)begin | 
|  | execute_CsrPlugin_illegalAccess = 1'b0; | 
|  | end | 
|  | end | 
|  | 12'b001101000100 : begin | 
|  | execute_CsrPlugin_illegalAccess = 1'b0; | 
|  | end | 
|  | 12'b001101000011 : begin | 
|  | if(execute_CSR_READ_OPCODE)begin | 
|  | execute_CsrPlugin_illegalAccess = 1'b0; | 
|  | end | 
|  | end | 
|  | 12'b111111000000 : begin | 
|  | if(execute_CSR_READ_OPCODE)begin | 
|  | execute_CsrPlugin_illegalAccess = 1'b0; | 
|  | end | 
|  | end | 
|  | 12'b001100000100 : begin | 
|  | execute_CsrPlugin_illegalAccess = 1'b0; | 
|  | end | 
|  | 12'b001101000010 : begin | 
|  | if(execute_CSR_READ_OPCODE)begin | 
|  | execute_CsrPlugin_illegalAccess = 1'b0; | 
|  | end | 
|  | end | 
|  | default : begin | 
|  | end | 
|  | endcase | 
|  | if((CsrPlugin_privilege < execute_CsrPlugin_csrAddress[9 : 8]))begin | 
|  | execute_CsrPlugin_illegalAccess = 1'b1; | 
|  | end | 
|  | if(((! execute_arbitration_isValid) || (! execute_IS_CSR)))begin | 
|  | execute_CsrPlugin_illegalAccess = 1'b0; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | execute_CsrPlugin_illegalInstruction = 1'b0; | 
|  | if((execute_arbitration_isValid && (execute_ENV_CTRL == `EnvCtrlEnum_defaultEncoding_XRET)))begin | 
|  | if((CsrPlugin_privilege < execute_INSTRUCTION[29 : 28]))begin | 
|  | execute_CsrPlugin_illegalInstruction = 1'b1; | 
|  | end | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | execute_CsrPlugin_readData = (32'b00000000000000000000000000000000); | 
|  | case(execute_CsrPlugin_csrAddress) | 
|  | 12'b101111000000 : begin | 
|  | execute_CsrPlugin_readData[31 : 0] = _zz_200_; | 
|  | end | 
|  | 12'b001100000000 : begin | 
|  | execute_CsrPlugin_readData[12 : 11] = CsrPlugin_mstatus_MPP; | 
|  | execute_CsrPlugin_readData[7 : 7] = CsrPlugin_mstatus_MPIE; | 
|  | execute_CsrPlugin_readData[3 : 3] = CsrPlugin_mstatus_MIE; | 
|  | end | 
|  | 12'b001101000001 : begin | 
|  | execute_CsrPlugin_readData[31 : 0] = CsrPlugin_mepc; | 
|  | end | 
|  | 12'b001100000101 : begin | 
|  | end | 
|  | 12'b001101000100 : begin | 
|  | execute_CsrPlugin_readData[11 : 11] = CsrPlugin_mip_MEIP; | 
|  | execute_CsrPlugin_readData[7 : 7] = CsrPlugin_mip_MTIP; | 
|  | execute_CsrPlugin_readData[3 : 3] = CsrPlugin_mip_MSIP; | 
|  | end | 
|  | 12'b001101000011 : begin | 
|  | execute_CsrPlugin_readData[31 : 0] = CsrPlugin_mtval; | 
|  | end | 
|  | 12'b111111000000 : begin | 
|  | execute_CsrPlugin_readData[31 : 0] = _zz_201_; | 
|  | end | 
|  | 12'b001100000100 : begin | 
|  | execute_CsrPlugin_readData[11 : 11] = CsrPlugin_mie_MEIE; | 
|  | execute_CsrPlugin_readData[7 : 7] = CsrPlugin_mie_MTIE; | 
|  | execute_CsrPlugin_readData[3 : 3] = CsrPlugin_mie_MSIE; | 
|  | end | 
|  | 12'b001101000010 : begin | 
|  | execute_CsrPlugin_readData[31 : 31] = CsrPlugin_mcause_interrupt; | 
|  | execute_CsrPlugin_readData[3 : 0] = CsrPlugin_mcause_exceptionCode; | 
|  | end | 
|  | default : begin | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign execute_CsrPlugin_writeInstruction = ((execute_arbitration_isValid && execute_IS_CSR) && execute_CSR_WRITE_OPCODE); | 
|  | assign execute_CsrPlugin_readInstruction = ((execute_arbitration_isValid && execute_IS_CSR) && execute_CSR_READ_OPCODE); | 
|  | assign execute_CsrPlugin_writeEnable = ((execute_CsrPlugin_writeInstruction && (! execute_CsrPlugin_blockedBySideEffects)) && (! execute_arbitration_isStuckByOthers)); | 
|  | assign execute_CsrPlugin_readEnable = ((execute_CsrPlugin_readInstruction && (! execute_CsrPlugin_blockedBySideEffects)) && (! execute_arbitration_isStuckByOthers)); | 
|  | assign execute_CsrPlugin_readToWriteData = execute_CsrPlugin_readData; | 
|  | always @ (*) begin | 
|  | case(_zz_254_) | 
|  | 1'b0 : begin | 
|  | execute_CsrPlugin_writeData = execute_SRC1; | 
|  | end | 
|  | default : begin | 
|  | execute_CsrPlugin_writeData = (execute_INSTRUCTION[12] ? (execute_CsrPlugin_readToWriteData & (~ execute_SRC1)) : (execute_CsrPlugin_readToWriteData | execute_SRC1)); | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | assign execute_CsrPlugin_csrAddress = execute_INSTRUCTION[31 : 20]; | 
|  | always @ (*) begin | 
|  | memory_MulDivIterativePlugin_mul_counter_willIncrement = 1'b0; | 
|  | if(_zz_217_)begin | 
|  | if(_zz_231_)begin | 
|  | memory_MulDivIterativePlugin_mul_counter_willIncrement = 1'b1; | 
|  | end | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | memory_MulDivIterativePlugin_mul_counter_willClear = 1'b0; | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | memory_MulDivIterativePlugin_mul_counter_willClear = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign memory_MulDivIterativePlugin_mul_willOverflowIfInc = (memory_MulDivIterativePlugin_mul_counter_value == (6'b100000)); | 
|  | assign memory_MulDivIterativePlugin_mul_counter_willOverflow = (memory_MulDivIterativePlugin_mul_willOverflowIfInc && memory_MulDivIterativePlugin_mul_counter_willIncrement); | 
|  | always @ (*) begin | 
|  | if(memory_MulDivIterativePlugin_mul_counter_willOverflow)begin | 
|  | memory_MulDivIterativePlugin_mul_counter_valueNext = (6'b000000); | 
|  | end else begin | 
|  | memory_MulDivIterativePlugin_mul_counter_valueNext = (memory_MulDivIterativePlugin_mul_counter_value + _zz_312_); | 
|  | end | 
|  | if(memory_MulDivIterativePlugin_mul_counter_willClear)begin | 
|  | memory_MulDivIterativePlugin_mul_counter_valueNext = (6'b000000); | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | memory_MulDivIterativePlugin_div_counter_willIncrement = 1'b0; | 
|  | if(_zz_218_)begin | 
|  | if(_zz_232_)begin | 
|  | memory_MulDivIterativePlugin_div_counter_willIncrement = 1'b1; | 
|  | end | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | memory_MulDivIterativePlugin_div_counter_willClear = 1'b0; | 
|  | if(_zz_246_)begin | 
|  | memory_MulDivIterativePlugin_div_counter_willClear = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign memory_MulDivIterativePlugin_div_counter_willOverflowIfInc = (memory_MulDivIterativePlugin_div_counter_value == (6'b100001)); | 
|  | assign memory_MulDivIterativePlugin_div_counter_willOverflow = (memory_MulDivIterativePlugin_div_counter_willOverflowIfInc && memory_MulDivIterativePlugin_div_counter_willIncrement); | 
|  | always @ (*) begin | 
|  | if(memory_MulDivIterativePlugin_div_counter_willOverflow)begin | 
|  | memory_MulDivIterativePlugin_div_counter_valueNext = (6'b000000); | 
|  | end else begin | 
|  | memory_MulDivIterativePlugin_div_counter_valueNext = (memory_MulDivIterativePlugin_div_counter_value + _zz_320_); | 
|  | end | 
|  | if(memory_MulDivIterativePlugin_div_counter_willClear)begin | 
|  | memory_MulDivIterativePlugin_div_counter_valueNext = (6'b000000); | 
|  | end | 
|  | end | 
|  |  | 
|  | assign _zz_193_ = memory_MulDivIterativePlugin_rs1[31 : 0]; | 
|  | assign _zz_194_ = {memory_MulDivIterativePlugin_accumulator[31 : 0],_zz_193_[31]}; | 
|  | assign _zz_195_ = (_zz_194_ - _zz_321_); | 
|  | assign _zz_196_ = (memory_INSTRUCTION[13] ? memory_MulDivIterativePlugin_accumulator[31 : 0] : memory_MulDivIterativePlugin_rs1[31 : 0]); | 
|  | assign _zz_197_ = (execute_RS2[31] && execute_IS_RS2_SIGNED); | 
|  | assign _zz_198_ = ((execute_IS_MUL && _zz_197_) || ((execute_IS_DIV && execute_RS1[31]) && execute_IS_RS1_SIGNED)); | 
|  | always @ (*) begin | 
|  | _zz_199_[32] = (execute_IS_RS1_SIGNED && execute_RS1[31]); | 
|  | _zz_199_[31 : 0] = execute_RS1; | 
|  | end | 
|  |  | 
|  | assign _zz_201_ = (_zz_200_ & externalInterruptArray_regNext); | 
|  | assign externalInterrupt = (_zz_201_ != (32'b00000000000000000000000000000000)); | 
|  | assign _zz_24_ = decode_SHIFT_CTRL; | 
|  | assign _zz_22_ = _zz_73_; | 
|  | assign _zz_37_ = decode_to_execute_SHIFT_CTRL; | 
|  | assign _zz_21_ = decode_ENV_CTRL; | 
|  | assign _zz_18_ = execute_ENV_CTRL; | 
|  | assign _zz_16_ = memory_ENV_CTRL; | 
|  | assign _zz_19_ = _zz_67_; | 
|  | assign _zz_26_ = decode_to_execute_ENV_CTRL; | 
|  | assign _zz_25_ = execute_to_memory_ENV_CTRL; | 
|  | assign _zz_29_ = memory_to_writeBack_ENV_CTRL; | 
|  | assign _zz_14_ = decode_SRC1_CTRL; | 
|  | assign _zz_12_ = _zz_56_; | 
|  | assign _zz_44_ = decode_to_execute_SRC1_CTRL; | 
|  | assign _zz_11_ = decode_BRANCH_CTRL; | 
|  | assign _zz_95_ = _zz_68_; | 
|  | assign _zz_32_ = decode_to_execute_BRANCH_CTRL; | 
|  | assign _zz_9_ = decode_SRC2_CTRL; | 
|  | assign _zz_7_ = _zz_59_; | 
|  | assign _zz_42_ = decode_to_execute_SRC2_CTRL; | 
|  | assign _zz_6_ = decode_ALU_BITWISE_CTRL; | 
|  | assign _zz_4_ = _zz_70_; | 
|  | assign _zz_49_ = decode_to_execute_ALU_BITWISE_CTRL; | 
|  | assign _zz_3_ = decode_ALU_CTRL; | 
|  | assign _zz_1_ = _zz_72_; | 
|  | assign _zz_47_ = decode_to_execute_ALU_CTRL; | 
|  | assign decode_arbitration_isFlushed = (({writeBack_arbitration_flushNext,{memory_arbitration_flushNext,execute_arbitration_flushNext}} != (3'b000)) || ({writeBack_arbitration_flushIt,{memory_arbitration_flushIt,{execute_arbitration_flushIt,decode_arbitration_flushIt}}} != (4'b0000))); | 
|  | assign execute_arbitration_isFlushed = (({writeBack_arbitration_flushNext,memory_arbitration_flushNext} != (2'b00)) || ({writeBack_arbitration_flushIt,{memory_arbitration_flushIt,execute_arbitration_flushIt}} != (3'b000))); | 
|  | assign memory_arbitration_isFlushed = ((writeBack_arbitration_flushNext != (1'b0)) || ({writeBack_arbitration_flushIt,memory_arbitration_flushIt} != (2'b00))); | 
|  | assign writeBack_arbitration_isFlushed = (1'b0 || (writeBack_arbitration_flushIt != (1'b0))); | 
|  | assign decode_arbitration_isStuckByOthers = (decode_arbitration_haltByOther || (((1'b0 || execute_arbitration_isStuck) || memory_arbitration_isStuck) || writeBack_arbitration_isStuck)); | 
|  | assign decode_arbitration_isStuck = (decode_arbitration_haltItself || decode_arbitration_isStuckByOthers); | 
|  | assign decode_arbitration_isMoving = ((! decode_arbitration_isStuck) && (! decode_arbitration_removeIt)); | 
|  | assign decode_arbitration_isFiring = ((decode_arbitration_isValid && (! decode_arbitration_isStuck)) && (! decode_arbitration_removeIt)); | 
|  | assign execute_arbitration_isStuckByOthers = (execute_arbitration_haltByOther || ((1'b0 || memory_arbitration_isStuck) || writeBack_arbitration_isStuck)); | 
|  | assign execute_arbitration_isStuck = (execute_arbitration_haltItself || execute_arbitration_isStuckByOthers); | 
|  | assign execute_arbitration_isMoving = ((! execute_arbitration_isStuck) && (! execute_arbitration_removeIt)); | 
|  | assign execute_arbitration_isFiring = ((execute_arbitration_isValid && (! execute_arbitration_isStuck)) && (! execute_arbitration_removeIt)); | 
|  | assign memory_arbitration_isStuckByOthers = (memory_arbitration_haltByOther || (1'b0 || writeBack_arbitration_isStuck)); | 
|  | assign memory_arbitration_isStuck = (memory_arbitration_haltItself || memory_arbitration_isStuckByOthers); | 
|  | assign memory_arbitration_isMoving = ((! memory_arbitration_isStuck) && (! memory_arbitration_removeIt)); | 
|  | assign memory_arbitration_isFiring = ((memory_arbitration_isValid && (! memory_arbitration_isStuck)) && (! memory_arbitration_removeIt)); | 
|  | assign writeBack_arbitration_isStuckByOthers = (writeBack_arbitration_haltByOther || 1'b0); | 
|  | assign writeBack_arbitration_isStuck = (writeBack_arbitration_haltItself || writeBack_arbitration_isStuckByOthers); | 
|  | assign writeBack_arbitration_isMoving = ((! writeBack_arbitration_isStuck) && (! writeBack_arbitration_removeIt)); | 
|  | assign writeBack_arbitration_isFiring = ((writeBack_arbitration_isValid && (! writeBack_arbitration_isStuck)) && (! writeBack_arbitration_removeIt)); | 
|  | assign iBusWishbone_ADR = {_zz_340_,_zz_202_}; | 
|  | assign iBusWishbone_CTI = ((_zz_202_ == (3'b111)) ? (3'b111) : (3'b010)); | 
|  | assign iBusWishbone_BTE = (2'b00); | 
|  | assign iBusWishbone_SEL = (4'b1111); | 
|  | assign iBusWishbone_WE = 1'b0; | 
|  | assign iBusWishbone_DAT_MOSI = (32'bxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx); | 
|  | always @ (*) begin | 
|  | iBusWishbone_CYC = 1'b0; | 
|  | if(_zz_247_)begin | 
|  | iBusWishbone_CYC = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | iBusWishbone_STB = 1'b0; | 
|  | if(_zz_247_)begin | 
|  | iBusWishbone_STB = 1'b1; | 
|  | end | 
|  | end | 
|  |  | 
|  | assign iBus_cmd_ready = (iBus_cmd_valid && iBusWishbone_ACK); | 
|  | assign iBus_rsp_valid = _zz_203_; | 
|  | assign iBus_rsp_payload_data = iBusWishbone_DAT_MISO_regNext; | 
|  | assign iBus_rsp_payload_error = 1'b0; | 
|  | assign dBus_cmd_halfPipe_valid = dBus_cmd_halfPipe_regs_valid; | 
|  | assign dBus_cmd_halfPipe_payload_wr = dBus_cmd_halfPipe_regs_payload_wr; | 
|  | assign dBus_cmd_halfPipe_payload_address = dBus_cmd_halfPipe_regs_payload_address; | 
|  | assign dBus_cmd_halfPipe_payload_data = dBus_cmd_halfPipe_regs_payload_data; | 
|  | assign dBus_cmd_halfPipe_payload_size = dBus_cmd_halfPipe_regs_payload_size; | 
|  | assign dBus_cmd_ready = dBus_cmd_halfPipe_regs_ready; | 
|  | assign dBusWishbone_ADR = (dBus_cmd_halfPipe_payload_address >>> 2); | 
|  | assign dBusWishbone_CTI = (3'b000); | 
|  | assign dBusWishbone_BTE = (2'b00); | 
|  | always @ (*) begin | 
|  | case(dBus_cmd_halfPipe_payload_size) | 
|  | 2'b00 : begin | 
|  | _zz_204_ = (4'b0001); | 
|  | end | 
|  | 2'b01 : begin | 
|  | _zz_204_ = (4'b0011); | 
|  | end | 
|  | default : begin | 
|  | _zz_204_ = (4'b1111); | 
|  | end | 
|  | endcase | 
|  | end | 
|  |  | 
|  | always @ (*) begin | 
|  | dBusWishbone_SEL = _zz_341_[3:0]; | 
|  | if((! dBus_cmd_halfPipe_payload_wr))begin | 
|  | dBusWishbone_SEL = (4'b1111); | 
|  | end | 
|  | end | 
|  |  | 
|  | assign dBusWishbone_WE = dBus_cmd_halfPipe_payload_wr; | 
|  | assign dBusWishbone_DAT_MOSI = dBus_cmd_halfPipe_payload_data; | 
|  | assign dBus_cmd_halfPipe_ready = (dBus_cmd_halfPipe_valid && dBusWishbone_ACK); | 
|  | assign dBusWishbone_CYC = dBus_cmd_halfPipe_valid; | 
|  | assign dBusWishbone_STB = dBus_cmd_halfPipe_valid; | 
|  | assign dBus_rsp_ready = ((dBus_cmd_halfPipe_valid && (! dBusWishbone_WE)) && dBusWishbone_ACK); | 
|  | assign dBus_rsp_data = dBusWishbone_DAT_MISO; | 
|  | assign dBus_rsp_error = 1'b0; | 
|  | always @ (posedge clk) begin | 
|  | if(reset) begin | 
|  | IBusCachedPlugin_fetchPc_pcReg <= externalResetVector; | 
|  | IBusCachedPlugin_fetchPc_booted <= 1'b0; | 
|  | IBusCachedPlugin_fetchPc_inc <= 1'b0; | 
|  | _zz_112_ <= 1'b0; | 
|  | _zz_114_ <= 1'b0; | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_0 <= 1'b0; | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_1 <= 1'b0; | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_2 <= 1'b0; | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_3 <= 1'b0; | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_4 <= 1'b0; | 
|  | IBusCachedPlugin_injector_decodeRemoved <= 1'b0; | 
|  | IBusCachedPlugin_rspCounter <= _zz_127_; | 
|  | IBusCachedPlugin_rspCounter <= (32'b00000000000000000000000000000000); | 
|  | _zz_149_ <= 1'b1; | 
|  | execute_LightShifterPlugin_isActive <= 1'b0; | 
|  | _zz_161_ <= 1'b0; | 
|  | CsrPlugin_mstatus_MIE <= 1'b0; | 
|  | CsrPlugin_mstatus_MPIE <= 1'b0; | 
|  | CsrPlugin_mstatus_MPP <= (2'b11); | 
|  | CsrPlugin_mie_MEIE <= 1'b0; | 
|  | CsrPlugin_mie_MTIE <= 1'b0; | 
|  | CsrPlugin_mie_MSIE <= 1'b0; | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_decode <= 1'b0; | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_execute <= 1'b0; | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_memory <= 1'b0; | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_writeBack <= 1'b0; | 
|  | CsrPlugin_interrupt_valid <= 1'b0; | 
|  | CsrPlugin_hadException <= 1'b0; | 
|  | execute_CsrPlugin_wfiWake <= 1'b0; | 
|  | memory_MulDivIterativePlugin_mul_counter_value <= (6'b000000); | 
|  | memory_MulDivIterativePlugin_div_counter_value <= (6'b000000); | 
|  | _zz_200_ <= (32'b00000000000000000000000000000000); | 
|  | execute_arbitration_isValid <= 1'b0; | 
|  | memory_arbitration_isValid <= 1'b0; | 
|  | writeBack_arbitration_isValid <= 1'b0; | 
|  | memory_to_writeBack_REGFILE_WRITE_DATA <= (32'b00000000000000000000000000000000); | 
|  | memory_to_writeBack_INSTRUCTION <= (32'b00000000000000000000000000000000); | 
|  | _zz_202_ <= (3'b000); | 
|  | _zz_203_ <= 1'b0; | 
|  | dBus_cmd_halfPipe_regs_valid <= 1'b0; | 
|  | dBus_cmd_halfPipe_regs_ready <= 1'b1; | 
|  | end else begin | 
|  | IBusCachedPlugin_fetchPc_booted <= 1'b1; | 
|  | if((IBusCachedPlugin_fetchPc_corrected || IBusCachedPlugin_fetchPc_pcRegPropagate))begin | 
|  | IBusCachedPlugin_fetchPc_inc <= 1'b0; | 
|  | end | 
|  | if((IBusCachedPlugin_fetchPc_output_valid && IBusCachedPlugin_fetchPc_output_ready))begin | 
|  | IBusCachedPlugin_fetchPc_inc <= 1'b1; | 
|  | end | 
|  | if(((! IBusCachedPlugin_fetchPc_output_valid) && IBusCachedPlugin_fetchPc_output_ready))begin | 
|  | IBusCachedPlugin_fetchPc_inc <= 1'b0; | 
|  | end | 
|  | if((IBusCachedPlugin_fetchPc_booted && ((IBusCachedPlugin_fetchPc_output_ready || IBusCachedPlugin_fetcherflushIt) || IBusCachedPlugin_fetchPc_pcRegPropagate)))begin | 
|  | IBusCachedPlugin_fetchPc_pcReg <= IBusCachedPlugin_fetchPc_pc; | 
|  | end | 
|  | if(IBusCachedPlugin_fetcherflushIt)begin | 
|  | _zz_112_ <= 1'b0; | 
|  | end | 
|  | if(_zz_110_)begin | 
|  | _zz_112_ <= IBusCachedPlugin_iBusRsp_stages_0_output_valid; | 
|  | end | 
|  | if(IBusCachedPlugin_iBusRsp_stages_1_output_ready)begin | 
|  | _zz_114_ <= IBusCachedPlugin_iBusRsp_stages_1_output_valid; | 
|  | end | 
|  | if(IBusCachedPlugin_fetcherflushIt)begin | 
|  | _zz_114_ <= 1'b0; | 
|  | end | 
|  | if(IBusCachedPlugin_fetcherflushIt)begin | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_0 <= 1'b0; | 
|  | end | 
|  | if((! (! IBusCachedPlugin_iBusRsp_stages_1_input_ready)))begin | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_0 <= 1'b1; | 
|  | end | 
|  | if(IBusCachedPlugin_fetcherflushIt)begin | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_1 <= 1'b0; | 
|  | end | 
|  | if((! (! IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_ready)))begin | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_1 <= IBusCachedPlugin_injector_nextPcCalc_valids_0; | 
|  | end | 
|  | if(IBusCachedPlugin_fetcherflushIt)begin | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_1 <= 1'b0; | 
|  | end | 
|  | if(IBusCachedPlugin_fetcherflushIt)begin | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_2 <= 1'b0; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_2 <= IBusCachedPlugin_injector_nextPcCalc_valids_1; | 
|  | end | 
|  | if(IBusCachedPlugin_fetcherflushIt)begin | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_2 <= 1'b0; | 
|  | end | 
|  | if(IBusCachedPlugin_fetcherflushIt)begin | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_3 <= 1'b0; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_3 <= IBusCachedPlugin_injector_nextPcCalc_valids_2; | 
|  | end | 
|  | if(IBusCachedPlugin_fetcherflushIt)begin | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_3 <= 1'b0; | 
|  | end | 
|  | if(IBusCachedPlugin_fetcherflushIt)begin | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_4 <= 1'b0; | 
|  | end | 
|  | if((! writeBack_arbitration_isStuck))begin | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_4 <= IBusCachedPlugin_injector_nextPcCalc_valids_3; | 
|  | end | 
|  | if(IBusCachedPlugin_fetcherflushIt)begin | 
|  | IBusCachedPlugin_injector_nextPcCalc_valids_4 <= 1'b0; | 
|  | end | 
|  | if(decode_arbitration_removeIt)begin | 
|  | IBusCachedPlugin_injector_decodeRemoved <= 1'b1; | 
|  | end | 
|  | if(IBusCachedPlugin_fetcherflushIt)begin | 
|  | IBusCachedPlugin_injector_decodeRemoved <= 1'b0; | 
|  | end | 
|  | if(iBus_rsp_valid)begin | 
|  | IBusCachedPlugin_rspCounter <= (IBusCachedPlugin_rspCounter + (32'b00000000000000000000000000000001)); | 
|  | end | 
|  | _zz_149_ <= 1'b0; | 
|  | if(_zz_223_)begin | 
|  | if(_zz_230_)begin | 
|  | execute_LightShifterPlugin_isActive <= 1'b1; | 
|  | if(execute_LightShifterPlugin_done)begin | 
|  | execute_LightShifterPlugin_isActive <= 1'b0; | 
|  | end | 
|  | end | 
|  | end | 
|  | if(execute_arbitration_removeIt)begin | 
|  | execute_LightShifterPlugin_isActive <= 1'b0; | 
|  | end | 
|  | _zz_161_ <= _zz_160_; | 
|  | if((! decode_arbitration_isStuck))begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_decode <= 1'b0; | 
|  | end else begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_decode <= CsrPlugin_exceptionPortCtrl_exceptionValids_decode; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_execute <= (CsrPlugin_exceptionPortCtrl_exceptionValids_decode && (! decode_arbitration_isStuck)); | 
|  | end else begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_execute <= CsrPlugin_exceptionPortCtrl_exceptionValids_execute; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_memory <= (CsrPlugin_exceptionPortCtrl_exceptionValids_execute && (! execute_arbitration_isStuck)); | 
|  | end else begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_memory <= CsrPlugin_exceptionPortCtrl_exceptionValids_memory; | 
|  | end | 
|  | if((! writeBack_arbitration_isStuck))begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_writeBack <= (CsrPlugin_exceptionPortCtrl_exceptionValids_memory && (! memory_arbitration_isStuck)); | 
|  | end else begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionValidsRegs_writeBack <= 1'b0; | 
|  | end | 
|  | CsrPlugin_interrupt_valid <= 1'b0; | 
|  | if(_zz_248_)begin | 
|  | if(_zz_249_)begin | 
|  | CsrPlugin_interrupt_valid <= 1'b1; | 
|  | end | 
|  | if(_zz_250_)begin | 
|  | CsrPlugin_interrupt_valid <= 1'b1; | 
|  | end | 
|  | if(_zz_251_)begin | 
|  | CsrPlugin_interrupt_valid <= 1'b1; | 
|  | end | 
|  | end | 
|  | CsrPlugin_hadException <= CsrPlugin_exception; | 
|  | if(_zz_234_)begin | 
|  | case(CsrPlugin_targetPrivilege) | 
|  | 2'b11 : begin | 
|  | CsrPlugin_mstatus_MIE <= 1'b0; | 
|  | CsrPlugin_mstatus_MPIE <= CsrPlugin_mstatus_MIE; | 
|  | CsrPlugin_mstatus_MPP <= CsrPlugin_privilege; | 
|  | end | 
|  | default : begin | 
|  | end | 
|  | endcase | 
|  | end | 
|  | if(_zz_235_)begin | 
|  | case(_zz_236_) | 
|  | 2'b11 : begin | 
|  | CsrPlugin_mstatus_MPP <= (2'b00); | 
|  | CsrPlugin_mstatus_MIE <= CsrPlugin_mstatus_MPIE; | 
|  | CsrPlugin_mstatus_MPIE <= 1'b1; | 
|  | end | 
|  | default : begin | 
|  | end | 
|  | endcase | 
|  | end | 
|  | execute_CsrPlugin_wfiWake <= ({_zz_188_,{_zz_187_,_zz_186_}} != (3'b000)); | 
|  | memory_MulDivIterativePlugin_mul_counter_value <= memory_MulDivIterativePlugin_mul_counter_valueNext; | 
|  | memory_MulDivIterativePlugin_div_counter_value <= memory_MulDivIterativePlugin_div_counter_valueNext; | 
|  | if((! writeBack_arbitration_isStuck))begin | 
|  | memory_to_writeBack_INSTRUCTION <= memory_INSTRUCTION; | 
|  | end | 
|  | if((! writeBack_arbitration_isStuck))begin | 
|  | memory_to_writeBack_REGFILE_WRITE_DATA <= _zz_35_; | 
|  | end | 
|  | if(((! execute_arbitration_isStuck) || execute_arbitration_removeIt))begin | 
|  | execute_arbitration_isValid <= 1'b0; | 
|  | end | 
|  | if(((! decode_arbitration_isStuck) && (! decode_arbitration_removeIt)))begin | 
|  | execute_arbitration_isValid <= decode_arbitration_isValid; | 
|  | end | 
|  | if(((! memory_arbitration_isStuck) || memory_arbitration_removeIt))begin | 
|  | memory_arbitration_isValid <= 1'b0; | 
|  | end | 
|  | if(((! execute_arbitration_isStuck) && (! execute_arbitration_removeIt)))begin | 
|  | memory_arbitration_isValid <= execute_arbitration_isValid; | 
|  | end | 
|  | if(((! writeBack_arbitration_isStuck) || writeBack_arbitration_removeIt))begin | 
|  | writeBack_arbitration_isValid <= 1'b0; | 
|  | end | 
|  | if(((! memory_arbitration_isStuck) && (! memory_arbitration_removeIt)))begin | 
|  | writeBack_arbitration_isValid <= memory_arbitration_isValid; | 
|  | end | 
|  | case(execute_CsrPlugin_csrAddress) | 
|  | 12'b101111000000 : begin | 
|  | if(execute_CsrPlugin_writeEnable)begin | 
|  | _zz_200_ <= execute_CsrPlugin_writeData[31 : 0]; | 
|  | end | 
|  | end | 
|  | 12'b001100000000 : begin | 
|  | if(execute_CsrPlugin_writeEnable)begin | 
|  | CsrPlugin_mstatus_MPP <= execute_CsrPlugin_writeData[12 : 11]; | 
|  | CsrPlugin_mstatus_MPIE <= _zz_334_[0]; | 
|  | CsrPlugin_mstatus_MIE <= _zz_335_[0]; | 
|  | end | 
|  | end | 
|  | 12'b001101000001 : begin | 
|  | end | 
|  | 12'b001100000101 : begin | 
|  | end | 
|  | 12'b001101000100 : begin | 
|  | end | 
|  | 12'b001101000011 : begin | 
|  | end | 
|  | 12'b111111000000 : begin | 
|  | end | 
|  | 12'b001100000100 : begin | 
|  | if(execute_CsrPlugin_writeEnable)begin | 
|  | CsrPlugin_mie_MEIE <= _zz_337_[0]; | 
|  | CsrPlugin_mie_MTIE <= _zz_338_[0]; | 
|  | CsrPlugin_mie_MSIE <= _zz_339_[0]; | 
|  | end | 
|  | end | 
|  | 12'b001101000010 : begin | 
|  | end | 
|  | default : begin | 
|  | end | 
|  | endcase | 
|  | if(_zz_247_)begin | 
|  | if(iBusWishbone_ACK)begin | 
|  | _zz_202_ <= (_zz_202_ + (3'b001)); | 
|  | end | 
|  | end | 
|  | _zz_203_ <= (iBusWishbone_CYC && iBusWishbone_ACK); | 
|  | if(_zz_252_)begin | 
|  | dBus_cmd_halfPipe_regs_valid <= dBus_cmd_valid; | 
|  | dBus_cmd_halfPipe_regs_ready <= (! dBus_cmd_valid); | 
|  | end else begin | 
|  | dBus_cmd_halfPipe_regs_valid <= (! dBus_cmd_halfPipe_ready); | 
|  | dBus_cmd_halfPipe_regs_ready <= dBus_cmd_halfPipe_ready; | 
|  | end | 
|  | end | 
|  | end | 
|  |  | 
|  | always @ (posedge clk) begin | 
|  | if(IBusCachedPlugin_iBusRsp_stages_1_output_ready)begin | 
|  | _zz_115_ <= IBusCachedPlugin_iBusRsp_stages_1_output_payload; | 
|  | end | 
|  | if(IBusCachedPlugin_iBusRsp_stages_1_input_ready)begin | 
|  | IBusCachedPlugin_s1_tightlyCoupledHit <= IBusCachedPlugin_s0_tightlyCoupledHit; | 
|  | end | 
|  | if(IBusCachedPlugin_iBusRsp_cacheRspArbitration_input_ready)begin | 
|  | IBusCachedPlugin_s2_tightlyCoupledHit <= IBusCachedPlugin_s1_tightlyCoupledHit; | 
|  | end | 
|  | if(!(! (((dBus_rsp_ready && memory_MEMORY_ENABLE) && memory_arbitration_isValid) && memory_arbitration_isStuck))) begin | 
|  | $display("ERROR DBusSimplePlugin doesn't allow memory stage stall when read happend"); | 
|  | end | 
|  | if(!(! (((writeBack_arbitration_isValid && writeBack_MEMORY_ENABLE) && (! writeBack_MEMORY_STORE)) && writeBack_arbitration_isStuck))) begin | 
|  | $display("ERROR DBusSimplePlugin doesn't allow writeback stage stall when read happend"); | 
|  | end | 
|  | if(_zz_223_)begin | 
|  | if(_zz_230_)begin | 
|  | execute_LightShifterPlugin_amplitudeReg <= (execute_LightShifterPlugin_amplitude - (5'b00001)); | 
|  | end | 
|  | end | 
|  | if(_zz_160_)begin | 
|  | _zz_162_ <= _zz_50_[11 : 7]; | 
|  | _zz_163_ <= _zz_79_; | 
|  | end | 
|  | CsrPlugin_mip_MEIP <= externalInterrupt; | 
|  | CsrPlugin_mip_MTIP <= timerInterrupt; | 
|  | CsrPlugin_mip_MSIP <= softwareInterrupt; | 
|  | CsrPlugin_mcycle <= (CsrPlugin_mcycle + (64'b0000000000000000000000000000000000000000000000000000000000000001)); | 
|  | if(writeBack_arbitration_isFiring)begin | 
|  | CsrPlugin_minstret <= (CsrPlugin_minstret + (64'b0000000000000000000000000000000000000000000000000000000000000001)); | 
|  | end | 
|  | if(_zz_229_)begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionContext_code <= (_zz_190_ ? IBusCachedPlugin_decodeExceptionPort_payload_code : decodeExceptionPort_payload_code); | 
|  | CsrPlugin_exceptionPortCtrl_exceptionContext_badAddr <= (_zz_190_ ? IBusCachedPlugin_decodeExceptionPort_payload_badAddr : decodeExceptionPort_payload_badAddr); | 
|  | end | 
|  | if(_zz_233_)begin | 
|  | CsrPlugin_exceptionPortCtrl_exceptionContext_code <= (_zz_192_ ? DBusSimplePlugin_memoryExceptionPort_payload_code : BranchPlugin_branchExceptionPort_payload_code); | 
|  | CsrPlugin_exceptionPortCtrl_exceptionContext_badAddr <= (_zz_192_ ? DBusSimplePlugin_memoryExceptionPort_payload_badAddr : BranchPlugin_branchExceptionPort_payload_badAddr); | 
|  | end | 
|  | if(_zz_248_)begin | 
|  | if(_zz_249_)begin | 
|  | CsrPlugin_interrupt_code <= (4'b0111); | 
|  | CsrPlugin_interrupt_targetPrivilege <= (2'b11); | 
|  | end | 
|  | if(_zz_250_)begin | 
|  | CsrPlugin_interrupt_code <= (4'b0011); | 
|  | CsrPlugin_interrupt_targetPrivilege <= (2'b11); | 
|  | end | 
|  | if(_zz_251_)begin | 
|  | CsrPlugin_interrupt_code <= (4'b1011); | 
|  | CsrPlugin_interrupt_targetPrivilege <= (2'b11); | 
|  | end | 
|  | end | 
|  | if(_zz_234_)begin | 
|  | case(CsrPlugin_targetPrivilege) | 
|  | 2'b11 : begin | 
|  | CsrPlugin_mcause_interrupt <= (! CsrPlugin_hadException); | 
|  | CsrPlugin_mcause_exceptionCode <= CsrPlugin_trapCause; | 
|  | CsrPlugin_mepc <= writeBack_PC; | 
|  | if(CsrPlugin_hadException)begin | 
|  | CsrPlugin_mtval <= CsrPlugin_exceptionPortCtrl_exceptionContext_badAddr; | 
|  | end | 
|  | end | 
|  | default : begin | 
|  | end | 
|  | endcase | 
|  | end | 
|  | if(_zz_217_)begin | 
|  | if(_zz_231_)begin | 
|  | memory_MulDivIterativePlugin_rs2 <= (memory_MulDivIterativePlugin_rs2 >>> 1); | 
|  | memory_MulDivIterativePlugin_accumulator <= ({_zz_313_,memory_MulDivIterativePlugin_accumulator[31 : 0]} >>> 1); | 
|  | end | 
|  | end | 
|  | if((memory_MulDivIterativePlugin_div_counter_value == (6'b100000)))begin | 
|  | memory_MulDivIterativePlugin_div_done <= 1'b1; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | memory_MulDivIterativePlugin_div_done <= 1'b0; | 
|  | end | 
|  | if(_zz_218_)begin | 
|  | if(_zz_232_)begin | 
|  | memory_MulDivIterativePlugin_rs1[31 : 0] <= _zz_322_[31:0]; | 
|  | memory_MulDivIterativePlugin_accumulator[31 : 0] <= ((! _zz_195_[32]) ? _zz_323_ : _zz_324_); | 
|  | if((memory_MulDivIterativePlugin_div_counter_value == (6'b100000)))begin | 
|  | memory_MulDivIterativePlugin_div_result <= _zz_325_[31:0]; | 
|  | end | 
|  | end | 
|  | end | 
|  | if(_zz_246_)begin | 
|  | memory_MulDivIterativePlugin_accumulator <= (65'b00000000000000000000000000000000000000000000000000000000000000000); | 
|  | memory_MulDivIterativePlugin_rs1 <= ((_zz_198_ ? (~ _zz_199_) : _zz_199_) + _zz_331_); | 
|  | memory_MulDivIterativePlugin_rs2 <= ((_zz_197_ ? (~ execute_RS2) : execute_RS2) + _zz_333_); | 
|  | memory_MulDivIterativePlugin_div_needRevert <= ((_zz_198_ ^ (_zz_197_ && (! execute_INSTRUCTION[13]))) && (! (((execute_RS2 == (32'b00000000000000000000000000000000)) && execute_IS_RS2_SIGNED) && (! execute_INSTRUCTION[13])))); | 
|  | end | 
|  | externalInterruptArray_regNext <= externalInterruptArray; | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_INSTRUCTION <= decode_INSTRUCTION; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_INSTRUCTION <= execute_INSTRUCTION; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_ALIGNEMENT_FAULT <= execute_ALIGNEMENT_FAULT; | 
|  | end | 
|  | if((! writeBack_arbitration_isStuck))begin | 
|  | memory_to_writeBack_MEMORY_READ_DATA <= memory_MEMORY_READ_DATA; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_SHIFT_CTRL <= _zz_23_; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_IS_CSR <= decode_IS_CSR; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_PC <= decode_PC; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_PC <= _zz_41_; | 
|  | end | 
|  | if(((! writeBack_arbitration_isStuck) && (! CsrPlugin_exceptionPortCtrl_exceptionValids_writeBack)))begin | 
|  | memory_to_writeBack_PC <= memory_PC; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_PREDICTION_HAD_BRANCHED2 <= decode_PREDICTION_HAD_BRANCHED2; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_MEMORY_STORE <= decode_MEMORY_STORE; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_MEMORY_STORE <= execute_MEMORY_STORE; | 
|  | end | 
|  | if((! writeBack_arbitration_isStuck))begin | 
|  | memory_to_writeBack_MEMORY_STORE <= memory_MEMORY_STORE; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_FORMAL_PC_NEXT <= _zz_97_; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_FORMAL_PC_NEXT <= execute_FORMAL_PC_NEXT; | 
|  | end | 
|  | if((! writeBack_arbitration_isStuck))begin | 
|  | memory_to_writeBack_FORMAL_PC_NEXT <= _zz_96_; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_ENV_CTRL <= _zz_20_; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_ENV_CTRL <= _zz_17_; | 
|  | end | 
|  | if((! writeBack_arbitration_isStuck))begin | 
|  | memory_to_writeBack_ENV_CTRL <= _zz_15_; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_REGFILE_WRITE_VALID <= decode_REGFILE_WRITE_VALID; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_REGFILE_WRITE_VALID <= execute_REGFILE_WRITE_VALID; | 
|  | end | 
|  | if((! writeBack_arbitration_isStuck))begin | 
|  | memory_to_writeBack_REGFILE_WRITE_VALID <= memory_REGFILE_WRITE_VALID; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_SRC_LESS_UNSIGNED <= decode_SRC_LESS_UNSIGNED; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_BRANCH_DO <= execute_BRANCH_DO; | 
|  | end | 
|  | if(((! memory_arbitration_isStuck) && (! execute_arbitration_isStuckByOthers)))begin | 
|  | execute_to_memory_REGFILE_WRITE_DATA <= _zz_36_; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_CSR_WRITE_OPCODE <= decode_CSR_WRITE_OPCODE; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_RS1 <= decode_RS1; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_SRC2_FORCE_ZERO <= decode_SRC2_FORCE_ZERO; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_BYPASSABLE_MEMORY_STAGE <= decode_BYPASSABLE_MEMORY_STAGE; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_BYPASSABLE_MEMORY_STAGE <= execute_BYPASSABLE_MEMORY_STAGE; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_SRC1_CTRL <= _zz_13_; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_BRANCH_CTRL <= _zz_10_; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_MEMORY_ENABLE <= decode_MEMORY_ENABLE; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_MEMORY_ENABLE <= execute_MEMORY_ENABLE; | 
|  | end | 
|  | if((! writeBack_arbitration_isStuck))begin | 
|  | memory_to_writeBack_MEMORY_ENABLE <= memory_MEMORY_ENABLE; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_SRC_USE_SUB_LESS <= decode_SRC_USE_SUB_LESS; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_MMU_FAULT <= execute_MMU_FAULT; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_BRANCH_CALC <= execute_BRANCH_CALC; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_RS2 <= decode_RS2; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_IS_MUL <= decode_IS_MUL; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_IS_MUL <= execute_IS_MUL; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_MEMORY_ADDRESS_LOW <= execute_MEMORY_ADDRESS_LOW; | 
|  | end | 
|  | if((! writeBack_arbitration_isStuck))begin | 
|  | memory_to_writeBack_MEMORY_ADDRESS_LOW <= memory_MEMORY_ADDRESS_LOW; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_IS_DIV <= decode_IS_DIV; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_IS_DIV <= execute_IS_DIV; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_CSR_READ_OPCODE <= decode_CSR_READ_OPCODE; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_IS_RS1_SIGNED <= decode_IS_RS1_SIGNED; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_BYPASSABLE_EXECUTE_STAGE <= decode_BYPASSABLE_EXECUTE_STAGE; | 
|  | end | 
|  | if((! memory_arbitration_isStuck))begin | 
|  | execute_to_memory_MMU_RSP_physicalAddress <= execute_MMU_RSP_physicalAddress; | 
|  | execute_to_memory_MMU_RSP_isIoAccess <= execute_MMU_RSP_isIoAccess; | 
|  | execute_to_memory_MMU_RSP_allowRead <= execute_MMU_RSP_allowRead; | 
|  | execute_to_memory_MMU_RSP_allowWrite <= execute_MMU_RSP_allowWrite; | 
|  | execute_to_memory_MMU_RSP_allowExecute <= execute_MMU_RSP_allowExecute; | 
|  | execute_to_memory_MMU_RSP_exception <= execute_MMU_RSP_exception; | 
|  | execute_to_memory_MMU_RSP_refilling <= execute_MMU_RSP_refilling; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_IS_RS2_SIGNED <= decode_IS_RS2_SIGNED; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_SRC2_CTRL <= _zz_8_; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_ALU_BITWISE_CTRL <= _zz_5_; | 
|  | end | 
|  | if((! execute_arbitration_isStuck))begin | 
|  | decode_to_execute_ALU_CTRL <= _zz_2_; | 
|  | end | 
|  | case(execute_CsrPlugin_csrAddress) | 
|  | 12'b101111000000 : begin | 
|  | end | 
|  | 12'b001100000000 : begin | 
|  | end | 
|  | 12'b001101000001 : begin | 
|  | if(execute_CsrPlugin_writeEnable)begin | 
|  | CsrPlugin_mepc <= execute_CsrPlugin_writeData[31 : 0]; | 
|  | end | 
|  | end | 
|  | 12'b001100000101 : begin | 
|  | if(execute_CsrPlugin_writeEnable)begin | 
|  | CsrPlugin_mtvec_base <= execute_CsrPlugin_writeData[31 : 2]; | 
|  | CsrPlugin_mtvec_mode <= execute_CsrPlugin_writeData[1 : 0]; | 
|  | end | 
|  | end | 
|  | 12'b001101000100 : begin | 
|  | if(execute_CsrPlugin_writeEnable)begin | 
|  | CsrPlugin_mip_MSIP <= _zz_336_[0]; | 
|  | end | 
|  | end | 
|  | 12'b001101000011 : begin | 
|  | end | 
|  | 12'b111111000000 : begin | 
|  | end | 
|  | 12'b001100000100 : begin | 
|  | end | 
|  | 12'b001101000010 : begin | 
|  | end | 
|  | default : begin | 
|  | end | 
|  | endcase | 
|  | iBusWishbone_DAT_MISO_regNext <= iBusWishbone_DAT_MISO; | 
|  | if(_zz_252_)begin | 
|  | dBus_cmd_halfPipe_regs_payload_wr <= dBus_cmd_payload_wr; | 
|  | dBus_cmd_halfPipe_regs_payload_address <= dBus_cmd_payload_address; | 
|  | dBus_cmd_halfPipe_regs_payload_data <= dBus_cmd_payload_data; | 
|  | dBus_cmd_halfPipe_regs_payload_size <= dBus_cmd_payload_size; | 
|  | end | 
|  | end | 
|  |  | 
|  | endmodule | 
|  |  |