From 283117d8df0c039477a5d8dc4c8d4943774a1d58 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Tue, 28 Apr 2026 00:33:43 -0700 Subject: [PATCH] add support for speculative loads --- crates/cpu/src/rename_execute_retire.rs | 792 +- .../src/rename_execute_retire/unit.mermaid | 41 + .../rename_execute_retire_fibonacci.vcd | 700420 +++++++++------ crates/cpu/tests/rename_execute_retire.rs | 1683 +- 4 files changed, 447663 insertions(+), 255273 deletions(-) create mode 100644 crates/cpu/src/rename_execute_retire/unit.mermaid diff --git a/crates/cpu/src/rename_execute_retire.rs b/crates/cpu/src/rename_execute_retire.rs index c9dfa12..602d113 100644 --- a/crates/cpu/src/rename_execute_retire.rs +++ b/crates/cpu/src/rename_execute_retire.rs @@ -1,6 +1,9 @@ // SPDX-License-Identifier: LGPL-3.0-or-later // See Notices.txt for copyright information +//! Rename/Execute/Retire Control System +//! [#8](https://git.libre-chip.org/libre-chip/grant-tracking/issues/8) + use crate::{ config::{ CpuConfig, CpuConfig2PowOutRegNumWidth, CpuConfigFetchWidth, CpuConfigPRegNumWidth, @@ -91,31 +94,48 @@ pub type RenamedMOp> = #[hdl] pub type RenamedSrcRegUInt> = UIntType>; +/// Enqueues happen in program order, they are not re-ordered by out-of-order execution. +/// the whole `MOpInstance` is sent again in [`UnitInputsReady`] so Units can just ignore all +/// [`UnitEnqueue`] messages if they don't need to keep track of program order -- so, pure computation +/// instructions. +/// Loads/Stores need to keep track of program order to ensure they properly handle memory dependencies. #[hdl(no_static)] -pub struct UnitStart> { +pub struct UnitEnqueue> { + pub mop: MOpInstance>, + pub config: C, +} + +#[hdl(no_static)] +pub struct UnitInputsReady> { + /// the whole `MOpInstance` is sent again so Units can just ignore all [`UnitEnqueue`] messages if desired. pub mop: MOpInstance>, pub src_values: Array, pub config: C, } #[hdl(no_static)] -pub struct UnitFinishedSuccessfully> { - pub dest: UnitOutRegNum, +pub struct UnitOutputReady> { + pub id: MOpId, pub dest_value: PRegValue, pub predictor_op: NextPcPredictorOp, } #[hdl(no_static)] pub struct UnitCausedCancel> { - pub id: MOpId, pub start_at_pc: UInt<64>, + /// `true` if this instruction should be retired and then cause a cancel + /// (e.g. a branch ran successfully but the next pc was mispredicted so the following instructions + /// needs to be canceled). + /// `false` if this instruction should be canceled without retiring it + /// (e.g. a load ran before a store it should have run after so it needs to retry after the memory + /// is in the right state). + pub cancel_after_retire: Bool, pub config: C, } #[hdl(no_static)] -pub struct UnitFinished> { +pub struct UnitFinishCauseCancel> { pub id: MOpId, - pub finished_successfully: HdlOption>, pub caused_cancel: HdlOption>, pub config: C, } @@ -132,15 +152,34 @@ pub struct UnitMOpCantCauseCancel> { pub config: C, } +/// Interface from the Rename/Execute/Retire control logic to a single Unit. +/// +/// ## State diagram for a single µOp in a Unit +/// Notes: +/// * The diagram ignores `cancel_all`. +/// * Multiple state transitions can happen in a single clock cycle. +/// * Any state marked "Can cause cancel", can immediately finish with [`Self::finish_cause_cancel`] where: +/// * [`UnitCausedCancel::cancel_after_retire`] must be `false` unless there's a "Finish" edge from this state. +/// * [`UnitFinishCauseCancel::caused_cancel`] must be `HdlSome` unless there's a "Finish" edge from this state. +#[doc = simple_mermaid::mermaid!("rename_execute_retire/unit.mermaid")] #[hdl(no_static)] pub struct ExecuteToUnitInterface> { - pub start: ReadyValid>, + /// Enqueues happen in program order, they are not re-ordered by out-of-order execution. + pub enqueue: ReadyValid>, + pub inputs_ready: HdlOption>, + pub is_no_longer_speculative: HdlOption>, + /// this uses [`Self::unit_outputs_ready`] as a shared ready flag + #[hdl(flip)] + pub cant_cause_cancel: HdlOption>, + /// this uses [`Self::unit_outputs_ready`] as a shared ready flag + #[hdl(flip)] + pub output_ready: HdlOption>, + /// this uses [`Self::unit_outputs_ready`] as a shared ready flag + #[hdl(flip)] + pub finish_cause_cancel: HdlOption>, + /// ready flag for [`Self::cant_cause_cancel`], [`Self::output_ready`], and [`Self::finish_cause_cancel`] + pub unit_outputs_ready: Bool, pub cancel_all: ReadyValid<()>, - pub is_no_longer_speculative: ReadyValid>, - #[hdl(flip)] - pub cant_cause_cancel: ReadyValid>, - #[hdl(flip)] - pub finished: ReadyValid>, pub config: C, } @@ -170,7 +209,7 @@ impl SimValueDefault for RenameExecuteRetireDebugState rename_delayed: zeroed(rename_delayed), rename_table: zeroed(rename_table), retire_rename_table: zeroed(retire_rename_table), - rob: zeroed(rob), + rob: rob.sim_value_default(), next_pc_canceling: zeroed(next_pc_canceling), unit_canceling: zeroed(unit_canceling), l1_reg_file: zeroed(l1_reg_file), @@ -331,63 +370,218 @@ impl RenameTable { } } -#[hdl(no_static)] -enum MOpExecutionProgressDebugState> { - NotStarted, - Started, - Finished(NextPcPredictorOp), - Canceled, +#[derive(Copy, Clone, PartialEq, Eq, Hash, serde::Serialize, serde::Deserialize, Default)] +enum MOpInUnitState { + #[default] + NotYetEnqueued, + InputsNotReadySpeculative { + can_cause_cancel: bool, + }, + InputsReady { + speculative: bool, + can_cause_cancel: bool, + }, + OutputReady { + speculative: bool, + can_cause_cancel: bool, + }, + FinishedAndOrCausedCancel, } +impl MOpInUnitState { + fn debug_str(self) -> &'static str { + match self { + Self::NotYetEnqueued => "NotYetEnqueued", + Self::InputsNotReadySpeculative { can_cause_cancel } => { + if can_cause_cancel { + "INR_S_C" + } else { + "INR_S" + } + } + Self::InputsReady { + speculative, + can_cause_cancel, + } => { + if speculative { + if can_cause_cancel { "IR_S_C" } else { "IR_S" } + } else { + if can_cause_cancel { "IR_C" } else { "IR" } + } + } + Self::OutputReady { + speculative, + can_cause_cancel, + } => { + if speculative { + if can_cause_cancel { "OR_S_C" } else { "OR_S" } + } else { + if can_cause_cancel { "OR_C" } else { "OR" } + } + } + Self::FinishedAndOrCausedCancel => "F_C", + } + } + #[must_use] + fn after_enqueue(self) -> Option { + match self { + Self::NotYetEnqueued => Some(Self::InputsNotReadySpeculative { + can_cause_cancel: true, + }), + _ => None, + } + } + #[must_use] + fn after_output_ready(self) -> Option { + match self { + Self::InputsReady { + speculative, + can_cause_cancel, + } => Some(Self::OutputReady { + speculative, + can_cause_cancel, + }), + _ => None, + } + } + #[must_use] + fn after_finish_cause_cancel( + self, + cancel_after_retire: bool, + cause_cancel: bool, + ) -> Option { + if cause_cancel && !cancel_after_retire { + match self { + Self::NotYetEnqueued => None, + Self::InputsNotReadySpeculative { can_cause_cancel } + | Self::InputsReady { + speculative: _, + can_cause_cancel, + } + | Self::OutputReady { + speculative: _, + can_cause_cancel, + } => can_cause_cancel.then_some(Self::FinishedAndOrCausedCancel), + Self::FinishedAndOrCausedCancel => todo!(), + } + } else { + assert!(cause_cancel == cancel_after_retire); + // see if we can eventually retire MOp + match self { + Self::OutputReady { + speculative: _, + can_cause_cancel, + } => { + if cause_cancel && !can_cause_cancel { + None + } else { + Some(Self::FinishedAndOrCausedCancel) + } + } + Self::NotYetEnqueued + | Self::InputsNotReadySpeculative { .. } + | Self::InputsReady { .. } + | Self::FinishedAndOrCausedCancel => None, + } + } + } + #[must_use] + fn with_inputs_ready(self) -> Option { + match self { + Self::InputsNotReadySpeculative { can_cause_cancel } => Some(Self::InputsReady { + speculative: true, + can_cause_cancel, + }), + _ => None, + } + } + #[must_use] + fn without_speculative(self) -> Option { + match self { + Self::NotYetEnqueued => None, + Self::InputsNotReadySpeculative { .. } => None, + Self::InputsReady { + speculative, + can_cause_cancel, + } => speculative.then_some(Self::InputsReady { + speculative: false, + can_cause_cancel, + }), + Self::OutputReady { + speculative, + can_cause_cancel, + } => speculative.then_some(Self::OutputReady { + speculative: false, + can_cause_cancel, + }), + Self::FinishedAndOrCausedCancel => None, + } + } + #[must_use] + fn with_cant_cause_cancel(self) -> Option { + match self { + Self::NotYetEnqueued => None, + Self::InputsNotReadySpeculative { can_cause_cancel } => { + can_cause_cancel.then_some(Self::InputsNotReadySpeculative { + can_cause_cancel: false, + }) + } + Self::InputsReady { + speculative, + can_cause_cancel, + } => can_cause_cancel.then_some(Self::InputsReady { + speculative, + can_cause_cancel: false, + }), + Self::OutputReady { + speculative, + can_cause_cancel, + } => can_cause_cancel.then_some(Self::OutputReady { + speculative, + can_cause_cancel: false, + }), + Self::FinishedAndOrCausedCancel => None, + } + } +} + +impl fmt::Debug for MOpInUnitState { + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { + f.write_str(self.debug_str()) + } +} + +#[hdl] +type SimOnlyMOpInUnitState = SimOnly; + #[hdl(no_static)] struct RobEntryDebugState> { mop: MOpInstance>, + mop_in_unit_state: SimOnlyMOpInUnitState, is_speculative: Bool, - sent_is_no_longer_speculative: Bool, - can_cause_cancel: Bool, - progress: MOpExecutionProgressDebugState, + finished: HdlOption>, caused_cancel: HdlOption>, } impl SimValueDefault for RobEntryDebugState { - fn sim_value_default(self) -> SimValue { - zeroed(self) - } -} - -#[derive(Clone, Debug)] -enum MOpExecutionProgress> { - NotStarted, - Started, - Finished(SimValue>), - Canceled, -} - -impl> MOpExecutionProgress { #[hdl] - fn debug_state(&self, config: C) -> SimValue> { - let ret_ty = MOpExecutionProgressDebugState[config]; - match self { - Self::NotStarted => - { - #[hdl(sim)] - ret_ty.NotStarted() - } - Self::Started => - { - #[hdl(sim)] - ret_ty.Started() - } - Self::Finished(v) => - { - #[hdl(sim)] - ret_ty.Finished(v) - } - Self::Canceled => - { - #[hdl(sim)] - ret_ty.Canceled() - } + fn sim_value_default(self) -> SimValue { + let Self { + mop, + mop_in_unit_state: _, + is_speculative: _, + finished, + caused_cancel, + } = self; + #[hdl(sim)] + Self { + mop: zeroed(mop), + mop_in_unit_state: SimOnlyValue::default(), + is_speculative: false, + finished: #[hdl(sim)] + finished.HdlNone(), + caused_cancel: #[hdl(sim)] + caused_cancel.HdlNone(), } } } @@ -395,10 +589,9 @@ impl> MOpExecutionProgress { #[derive(Debug)] struct RobEntry { mop: SimValue>>, + mop_in_unit_state: MOpInUnitState, is_speculative: bool, - sent_is_no_longer_speculative: bool, - can_cause_cancel: bool, - progress: MOpExecutionProgress, + finished: Option>>, caused_cancel: Option>>, } @@ -406,10 +599,9 @@ impl RobEntry { fn new(mop: SimValue>>) -> Self { Self { mop, + mop_in_unit_state: MOpInUnitState::NotYetEnqueued, is_speculative: true, - sent_is_no_longer_speculative: false, - can_cause_cancel: true, - progress: MOpExecutionProgress::NotStarted, + finished: None, caused_cancel: None, } } @@ -428,6 +620,37 @@ impl RobEntry { fn unit_out_reg_index(&self) -> usize { UnitOutRegNum::value_sim(&self.unit_out_reg()) } + #[hdl] + fn debug_state(&self, config: C) -> SimValue> { + let Self { + mop, + mop_in_unit_state, + is_speculative, + finished, + caused_cancel, + } = self; + let ret_ty = RobEntryDebugState[config]; + #[hdl(sim)] + RobEntryDebugState:: { + mop, + mop_in_unit_state: SimOnlyValue::new(*mop_in_unit_state), + is_speculative, + finished: if let Some(finished) = finished { + #[hdl(sim)] + (ret_ty.finished).HdlSome(finished) + } else { + #[hdl(sim)] + (ret_ty.finished).HdlNone() + }, + caused_cancel: if let Some(caused_cancel) = caused_cancel { + #[hdl(sim)] + (ret_ty.caused_cancel).HdlSome(caused_cancel) + } else { + #[hdl(sim)] + (ret_ty.caused_cancel).HdlNone() + }, + } + } } #[hdl] @@ -437,6 +660,21 @@ struct RobEntriesDebugState { renamed_entries_len: UInt<8>, } +impl SimValueDefault for RobEntriesDebugState { + #[hdl] + fn sim_value_default(self) -> SimValue { + let Self { + unrenamed, + renamed_entries_len, + } = self; + #[hdl(sim)] + Self { + unrenamed: zeroed(unrenamed), + renamed_entries_len: renamed_entries_len.sim_value_default(), + } + } +} + #[derive(Debug)] struct RobEntries { unrenamed: SimValue>, @@ -518,6 +756,27 @@ pub struct ReorderBufferDebugState> { config: C, } +impl SimValueDefault for ReorderBufferDebugState { + #[hdl] + fn sim_value_default(self) -> SimValue { + let Self { + next_renamed_mop_id, + entries, + incomplete_back_entry, + renamed, + config, + } = self; + #[hdl(sim)] + Self { + next_renamed_mop_id: next_renamed_mop_id.sim_value_default(), + entries: entries.sim_value_default(), + incomplete_back_entry: incomplete_back_entry.sim_value_default(), + renamed: renamed.sim_value_default(), + config, + } + } +} + #[derive(Debug)] struct ReorderBuffer { next_renamed_mop_id: SimValue, @@ -564,33 +823,8 @@ impl ReorderBuffer { renamed: ty .renamed .from_iter_sim( - zeroed(ty.renamed.element()), - self.renamed().map(|entry| { - let RobEntry { - mop, - is_speculative, - sent_is_no_longer_speculative, - can_cause_cancel, - progress, - caused_cancel, - } = entry; - let caused_cancel_ty = HdlOption[UnitCausedCancel[self.config]]; - #[hdl(sim)] - RobEntryDebugState::<_> { - mop, - is_speculative, - sent_is_no_longer_speculative, - can_cause_cancel, - progress: progress.debug_state(self.config), - caused_cancel: if let Some(caused_cancel) = caused_cancel { - #[hdl(sim)] - caused_cancel_ty.HdlSome(caused_cancel) - } else { - #[hdl(sim)] - caused_cancel_ty.HdlNone() - }, - } - }), + ty.renamed.element().sim_value_default(), + self.renamed().map(|v| v.debug_state(*config)), ) .ok() .expect("known to fit"), @@ -793,14 +1027,9 @@ impl RenameExecuteRetireState { for rob in self.rob.renamed() { let masked_id = rob.mop.id.as_int() as usize & mask; **retval[masked_id] = fmt::from_fn(|f| { - if rob.is_speculative { - f.write_str("(S)")?; - } - match rob.progress { - MOpExecutionProgress::NotStarted => f.write_str("NotStarted")?, - MOpExecutionProgress::Started => f.write_str("Started")?, - MOpExecutionProgress::Finished(_) => f.write_str("Finished")?, - MOpExecutionProgress::Canceled => f.write_str("Canceled")?, + f.write_str(rob.mop_in_unit_state.debug_str())?; + if rob.finished.is_some() { + f.write_str("(finished)")?; } if rob.caused_cancel.is_some() { f.write_str("(caused cancel)")?; @@ -1213,8 +1442,34 @@ impl RenameExecuteRetireState { Ok(()) } #[hdl] - fn get_unit_start(&self, unit_index: usize) -> SimValue>> { - let ret_ty = HdlOption[UnitStart[self.config]]; + fn get_unit_enqueue(&self, unit_index: usize) -> SimValue>> { + let ret_ty = HdlOption[UnitEnqueue[self.config]]; + if self.is_canceling() { + let retval = #[hdl(sim)] + ret_ty.HdlNone(); + return retval; // separate variable to work around rust-analyzer parse error + } + for rob in self.rob.renamed() { + if rob.unit_index() == unit_index + && let Some(_) = rob.mop_in_unit_state.after_enqueue() + { + let retval = #[hdl(sim)] + ret_ty.HdlSome( + #[hdl(sim)] + UnitEnqueue::<_> { + mop: &rob.mop, + config: self.config, + }, + ); + return retval; + } + } + #[hdl(sim)] + ret_ty.HdlNone() + } + #[hdl] + fn get_unit_inputs_ready(&self, unit_index: usize) -> SimValue>> { + let ret_ty = HdlOption[UnitInputsReady[self.config]]; if self.is_canceling() { let retval = #[hdl(sim)] ret_ty.HdlNone(); @@ -1223,8 +1478,8 @@ impl RenameExecuteRetireState { let zero_reg = PRegNum[self.config].const_zero().into_sim_value(); let zero_value = zeroed(PRegValue); for rob in self.rob.renamed() { - if let MOpExecutionProgress::NotStarted = rob.progress - && rob.unit_index() == unit_index + if rob.unit_index() == unit_index + && let Some(_) = rob.mop_in_unit_state.with_inputs_ready() { let mut src_values: [_; COMMON_MOP_SRC_LEN] = std::array::from_fn(|_| Some(zero_value.clone())); @@ -1249,7 +1504,7 @@ impl RenameExecuteRetireState { let retval = #[hdl(sim)] ret_ty.HdlSome( #[hdl(sim)] - UnitStart::<_> { + UnitInputsReady::<_> { mop: &rob.mop, src_values, config: self.config, @@ -1276,7 +1531,7 @@ impl RenameExecuteRetireState { for rob in self.rob.renamed() { if rob.unit_index() == unit_index && !rob.is_speculative - && !rob.sent_is_no_longer_speculative + && let Some(_) = rob.mop_in_unit_state.without_speculative() { let retval = #[hdl(sim)] ret_ty.HdlSome( @@ -1293,54 +1548,72 @@ impl RenameExecuteRetireState { ret_ty.HdlNone() } #[hdl] - fn unit_finished(&mut self, finished: SimValue>) { + fn unit_output_ready(&mut self, output_ready: SimValue>) { #[hdl(sim)] - let UnitFinished::<_> { + let UnitOutputReady::<_> { id, - finished_successfully, - caused_cancel: unit_caused_cancel, - config: _, - } = finished; + dest_value, + predictor_op, + } = output_ready; assert!(!self.is_canceling()); let rob = self.rob.renamed_by_id_mut(&id); let unit_index = rob.unit_index(); let out_reg_index = rob.unit_out_reg_index(); let RobEntry { mop: _, + mop_in_unit_state, is_speculative: _, - sent_is_no_longer_speculative: _, - can_cause_cancel, - progress, + finished, caused_cancel, } = rob; - assert!(matches!(progress, MOpExecutionProgress::Started)); + assert!(finished.is_none()); assert!(caused_cancel.is_none()); + let l1_reg = &mut self.l1_reg_file[unit_index][out_reg_index]; + assert!(l1_reg.is_none()); + *l1_reg = Some(dest_value); + *finished = Some(predictor_op); + *mop_in_unit_state = mop_in_unit_state + .after_output_ready() + .expect("should be valid state for output to become ready"); + } + #[hdl] + fn unit_finish_cause_cancel( + &mut self, + finish_cause_cancel: SimValue>, + ) { #[hdl(sim)] - if let HdlSome(finished_successfully) = finished_successfully { - #[hdl(sim)] - let UnitFinishedSuccessfully::<_> { - dest: _, - dest_value, - predictor_op, - } = finished_successfully; - let l1_reg = &mut self.l1_reg_file[unit_index][out_reg_index]; - assert!(l1_reg.is_none()); - *l1_reg = Some(dest_value); - *progress = MOpExecutionProgress::Finished(predictor_op); - } else { - *progress = MOpExecutionProgress::Canceled; - } + let UnitFinishCauseCancel::<_> { + id, + caused_cancel: unit_caused_cancel, + config: _, + } = finish_cause_cancel; + assert!(!self.is_canceling()); + let RobEntry { + mop: _, + mop_in_unit_state, + is_speculative: _, + finished, + caused_cancel, + } = self.rob.renamed_by_id_mut(&id); + assert!(caused_cancel.is_none()); + let cancel_after_retire; #[hdl(sim)] if let HdlSome(unit_caused_cancel) = unit_caused_cancel { - assert!( - *can_cause_cancel, - "MOp {id:?} said it won't cause a cancel, then caused a cancel: {unit_caused_cancel:#?}" - ); + cancel_after_retire = *unit_caused_cancel.cancel_after_retire; *caused_cancel = Some(unit_caused_cancel); } else { - assert!( - matches!(progress, MOpExecutionProgress::Finished(_)), - "MOp {id:?} must finish successfully and/or cause a cancel: progress={progress:?}", + cancel_after_retire = false; + } + if let Some(v) = mop_in_unit_state + .after_finish_cause_cancel(cancel_after_retire, caused_cancel.is_some()) + { + *mop_in_unit_state = v + } else { + panic!( + "MOp {id:?} made an invalid attempt to finish/cause a cancel:\n\ + mop_in_unit_state={mop_in_unit_state:?}\n\ + finished={finished:?}\n\ + caused_cancel={caused_cancel:?}" ); } } @@ -1388,7 +1661,7 @@ impl RenameExecuteRetireState { rob, next_pc_canceling, unit_canceling: _, - l1_reg_file, + l1_reg_file: _, l2_reg_file_unit_index: _, config: _, } = self; @@ -1414,7 +1687,7 @@ impl RenameExecuteRetireState { let mut retval = Vec::new(); let mut prev_caused_cancel = false; for RobEntries { - unrenamed, + unrenamed: _, rename_table_updates: _, renamed_entries, } in &self.rob.entries @@ -1435,13 +1708,15 @@ impl RenameExecuteRetireState { return retval; } if let RobEntry { - mop, - is_speculative, - sent_is_no_longer_speculative, - can_cause_cancel, - progress: MOpExecutionProgress::Finished(renamed_op), + mop: _, + mop_in_unit_state: MOpInUnitState::FinishedAndOrCausedCancel, + is_speculative: _, + finished: Some(renamed_op), caused_cancel, } = renamed + && caused_cancel + .as_ref() + .is_none_or(|caused_cancel| *caused_cancel.cancel_after_retire) { prev_caused_cancel = caused_cancel.is_some(); #[hdl(sim)] @@ -1520,15 +1795,15 @@ impl RenameExecuteRetireState { .for_each(|v| self.retire_rename_table.update(v, "retire_rename_table")); for RobEntry { mop: _, + mop_in_unit_state, is_speculative: _, - sent_is_no_longer_speculative: _, - can_cause_cancel: _, - progress, + finished: _, caused_cancel, } in renamed_entries { - assert!(matches!(progress, MOpExecutionProgress::Finished(_))); + assert_eq!(mop_in_unit_state, MOpInUnitState::FinishedAndOrCausedCancel); if let Some(caused_cancel) = caused_cancel { + assert!(*caused_cancel.cancel_after_retire); self.start_cancel(caused_cancel); return; } @@ -1539,8 +1814,8 @@ impl RenameExecuteRetireState { assert!(!self.is_canceling()); #[hdl(sim)] let UnitCausedCancel::<_> { - id: _, start_at_pc, + cancel_after_retire: _, config: _, } = caused_cancel; self.next_pc_canceling = Some(NextPcCancelingState::NeedSendCancel(start_at_pc.as_int())); @@ -1552,13 +1827,19 @@ impl RenameExecuteRetireState { return; } for renamed in self.rob.renamed_mut() { - let can_cause_cancel = match renamed.progress { - MOpExecutionProgress::NotStarted => break, - MOpExecutionProgress::Started => renamed.can_cause_cancel, - MOpExecutionProgress::Finished(_) => renamed.caused_cancel.is_some(), - MOpExecutionProgress::Canceled => true, + let can_cause_cancel = match renamed.mop_in_unit_state { + MOpInUnitState::NotYetEnqueued => true, + MOpInUnitState::InputsNotReadySpeculative { can_cause_cancel } => can_cause_cancel, + MOpInUnitState::InputsReady { + speculative: _, + can_cause_cancel, + } => can_cause_cancel, + MOpInUnitState::OutputReady { + speculative: _, + can_cause_cancel, + } => can_cause_cancel, + MOpInUnitState::FinishedAndOrCausedCancel => renamed.caused_cancel.is_some(), }; - renamed.can_cause_cancel = can_cause_cancel; renamed.is_speculative = false; if can_cause_cancel { break; @@ -1567,12 +1848,12 @@ impl RenameExecuteRetireState { let first_renamed = self.rob.renamed().next(); if let Some(RobEntry { mop: _, + mop_in_unit_state: MOpInUnitState::FinishedAndOrCausedCancel, is_speculative: _, - sent_is_no_longer_speculative: _, - can_cause_cancel: _, - progress: MOpExecutionProgress::Canceled, + finished: _, caused_cancel: Some(caused_cancel), }) = first_renamed + && !*caused_cancel.cancel_after_retire { let caused_cancel = caused_cancel.clone(); self.start_cancel(caused_cancel); @@ -1615,14 +1896,19 @@ async fn rename_execute_retire_run( { #[hdl] let ExecuteToUnitInterface::<_> { - start, - cancel_all, + enqueue, + inputs_ready, is_no_longer_speculative, - cant_cause_cancel, - finished, + cant_cause_cancel: _, + output_ready: _, + finish_cause_cancel: _, + unit_outputs_ready, + cancel_all, config: _, } = to_unit; - sim.write(start.data, state.get_unit_start(unit_index)) + sim.write(enqueue.data, state.get_unit_enqueue(unit_index)) + .await; + sim.write(inputs_ready, state.get_unit_inputs_ready(unit_index)) .await; sim.write( cancel_all.data, @@ -1636,12 +1922,11 @@ async fn rename_execute_retire_run( ) .await; sim.write( - is_no_longer_speculative.data, + is_no_longer_speculative, state.get_unit_mop_is_no_longer_speculative(unit_index), ) .await; - sim.write(cant_cause_cancel.ready, !is_canceling).await; - sim.write(finished.ready, !is_canceling).await; + sim.write(unit_outputs_ready, !is_canceling).await; } sim.wait_for_clock_edge(cd.clk).await; let from_post_decode_insns = sim.read_past(from_post_decode.insns, cd.clk).await; @@ -1657,28 +1942,96 @@ async fn rename_execute_retire_run( { #[hdl] let ExecuteToUnitInterface::<_> { - start, - cancel_all, + enqueue, + inputs_ready, is_no_longer_speculative, cant_cause_cancel, - finished, + output_ready, + finish_cause_cancel, + unit_outputs_ready, + cancel_all, config: _, } = to_unit; - if sim.read_past_bool(start.ready, cd.clk).await { + if sim.read_past_bool(enqueue.ready, cd.clk).await { #[hdl(sim)] - if let HdlSome(start) = sim.read_past(start.data, cd.clk).await { + if let HdlSome(enqueue) = sim.read_past(enqueue.data, cd.clk).await { assert!(!state.is_canceling()); let RobEntry { mop: _, + mop_in_unit_state, is_speculative: _, - sent_is_no_longer_speculative: _, - can_cause_cancel: _, - progress, + finished, caused_cancel, - } = state.rob.renamed_by_id_mut(&start.mop.id); + } = state.rob.renamed_by_id_mut(&enqueue.mop.id); + assert!(finished.is_none()); assert!(caused_cancel.is_none()); - assert!(matches!(progress, MOpExecutionProgress::NotStarted)); - *progress = MOpExecutionProgress::Started; + *mop_in_unit_state = mop_in_unit_state + .after_enqueue() + .expect("UnitEnqueue is known to be valid"); + } + } + #[hdl(sim)] + if let HdlSome(inputs_ready) = sim.read_past(inputs_ready, cd.clk).await { + assert!(!state.is_canceling()); + let RobEntry { + mop: _, + mop_in_unit_state, + is_speculative: _, + finished, + caused_cancel, + } = state.rob.renamed_by_id_mut(&inputs_ready.mop.id); + assert!(finished.is_none()); + assert!(caused_cancel.is_none()); + *mop_in_unit_state = mop_in_unit_state + .with_inputs_ready() + .expect("UnitInputsReady is known to be valid"); + } + #[hdl(sim)] + if let HdlSome(is_no_longer_speculative) = + sim.read_past(is_no_longer_speculative, cd.clk).await + { + assert!(!state.is_canceling()); + let RobEntry { + mop: _, + mop_in_unit_state, + is_speculative: _, + finished, + caused_cancel, + } = state.rob.renamed_by_id_mut(&is_no_longer_speculative.id); + assert!(finished.is_none()); + assert!(caused_cancel.is_none()); + *mop_in_unit_state = mop_in_unit_state + .without_speculative() + .expect("UnitMOpIsNoLongerSpeculative is known to be valid"); + } + if sim.read_past_bool(unit_outputs_ready, cd.clk).await { + #[hdl(sim)] + if let HdlSome(cant_cause_cancel) = sim.read_past(cant_cause_cancel, cd.clk).await { + #[hdl(sim)] + let UnitMOpCantCauseCancel::<_> { id, config: _ } = cant_cause_cancel; + assert!(!state.is_canceling()); + let RobEntry { + mop: _, + mop_in_unit_state, + is_speculative: _, + finished, + caused_cancel, + } = state.rob.renamed_by_id_mut(&id); + assert!(finished.is_none()); + assert!(caused_cancel.is_none()); + *mop_in_unit_state = mop_in_unit_state + .with_cant_cause_cancel() + .expect("UnitMOpCantCauseCancel should be valid"); + } + #[hdl(sim)] + if let HdlSome(output_ready) = sim.read_past(output_ready, cd.clk).await { + state.unit_output_ready(output_ready); + } + #[hdl(sim)] + if let HdlSome(finish_cause_cancel) = + sim.read_past(finish_cause_cancel, cd.clk).await + { + state.unit_finish_cause_cancel(finish_cause_cancel); } } if sim.read_past_bool(cancel_all.ready, cd.clk).await { @@ -1689,59 +2042,6 @@ async fn rename_execute_retire_run( state.unit_canceling[unit_index] = false; } } - if sim - .read_past_bool(is_no_longer_speculative.ready, cd.clk) - .await - { - #[hdl(sim)] - if let HdlSome(is_no_longer_speculative) = - sim.read_past(is_no_longer_speculative.data, cd.clk).await - { - assert!(!state.is_canceling()); - if let Some(RobEntry { - mop: _, - is_speculative, - sent_is_no_longer_speculative, - can_cause_cancel: _, - progress: _, - caused_cancel: _, - }) = state - .rob - .try_renamed_by_id_mut(&is_no_longer_speculative.id) - { - assert!(!*is_speculative); - assert!(!*sent_is_no_longer_speculative); - *sent_is_no_longer_speculative = true; - } - } - } - if sim.read_past_bool(cant_cause_cancel.ready, cd.clk).await { - #[hdl(sim)] - if let HdlSome(cant_cause_cancel) = - sim.read_past(cant_cause_cancel.data, cd.clk).await - { - #[hdl(sim)] - let UnitMOpCantCauseCancel::<_> { id, config: _ } = cant_cause_cancel; - assert!(!state.is_canceling()); - let RobEntry { - mop: _, - is_speculative: _, - sent_is_no_longer_speculative: _, - can_cause_cancel, - progress, - caused_cancel, - } = state.rob.renamed_by_id_mut(&id); - assert!(caused_cancel.is_none()); - assert!(!matches!(progress, MOpExecutionProgress::Canceled)); - *can_cause_cancel = false; - } - } - if sim.read_past_bool(finished.ready, cd.clk).await { - #[hdl(sim)] - if let HdlSome(finished) = sim.read_past(finished.data, cd.clk).await { - state.unit_finished(finished); - } - } } match &mut state.next_pc_canceling { Some(NextPcCancelingState::NeedReceiveCancel) => { @@ -1816,20 +2116,29 @@ pub fn rename_execute_retire(config: PhantomConst) { .await; sim.write(to_next_pc.next_insns, to_next_pc.ty().next_insns.HdlNone()) .await; - for unit_field in ExecuteToUnitInterfaces::unit_fields(to_units) { + for to_unit in ExecuteToUnitInterfaces::unit_fields(to_units) { #[hdl] let ExecuteToUnitInterface::<_> { - start, - cancel_all, + enqueue, + inputs_ready, is_no_longer_speculative, - cant_cause_cancel, - finished, + cant_cause_cancel: _, + output_ready: _, + finish_cause_cancel: _, + unit_outputs_ready, + cancel_all, config: _, - } = unit_field; + } = to_unit; sim.write( - start.data, + enqueue.data, #[hdl(sim)] - (start.ty().data).HdlNone(), + (enqueue.ty().data).HdlNone(), + ) + .await; + sim.write( + inputs_ready, + #[hdl(sim)] + (inputs_ready.ty()).HdlNone(), ) .await; sim.write( @@ -1839,13 +2148,12 @@ pub fn rename_execute_retire(config: PhantomConst) { ) .await; sim.write( - is_no_longer_speculative.data, + is_no_longer_speculative, #[hdl(sim)] - (is_no_longer_speculative.ty().data).HdlNone(), + (is_no_longer_speculative.ty()).HdlNone(), ) .await; - sim.write(cant_cause_cancel.ready, false).await; - sim.write(finished.ready, false).await; + sim.write(unit_outputs_ready, false).await; } }, |sim, ()| { diff --git a/crates/cpu/src/rename_execute_retire/unit.mermaid b/crates/cpu/src/rename_execute_retire/unit.mermaid new file mode 100644 index 0000000..57477d4 --- /dev/null +++ b/crates/cpu/src/rename_execute_retire/unit.mermaid @@ -0,0 +1,41 @@ +%% SPDX-License-Identifier: LGPL-3.0-or-later +%% See Notices.txt for copyright information +stateDiagram-v2 + direction LR + + state "Inputs not ready
Speculative
Can cause cancel" as inr_s_c + state "Inputs not ready
Speculative" as inr_s + state "Inputs ready
Speculative
Can cause cancel" as ir_s_c + state "Inputs ready
Speculative" as ir_s + state "Inputs ready
Can cause cancel" as ir_c + state "Inputs ready" as ir + state "Output ready
Speculative
Can cause cancel" as or_s_c + state "Output ready
Can cause cancel" as or_c + state "Output ready
Speculative" as or_s + state "Output ready" as or + + [*] --> inr_s_c: Enqueue + + inr_s_c --> inr_s: Can't cause cancel + ir_s_c --> ir_s: Can't cause cancel + ir_c --> ir: Can't cause cancel + or_s_c --> or_s: Can't cause cancel + or_c --> or: Can't cause cancel + + ir_s_c --> ir_c: No longer speculative + ir_s --> ir: No longer speculative + or_s_c --> or_c: No longer speculative + or_s --> or: No longer speculative + + inr_s_c --> ir_s_c: Inputs ready + inr_s --> ir_s: Inputs ready + + ir_s_c --> or_s_c: Output Ready + ir_c --> or_c: Output Ready + ir_s --> or_s: Output Ready + ir --> or: Output Ready + + or_s_c --> [*]: Finish + or_c --> [*]: Finish + or_s --> [*]: Finish + or --> [*]: Finish diff --git a/crates/cpu/tests/expected/rename_execute_retire_fibonacci.vcd b/crates/cpu/tests/expected/rename_execute_retire_fibonacci.vcd index 19a91a9..0d23d58 100644 --- a/crates/cpu/tests/expected/rename_execute_retire_fibonacci.vcd +++ b/crates/cpu/tests/expected/rename_execute_retire_fibonacci.vcd @@ -28076,430 +28076,863 @@ $upscope $end $upscope $end $scope struct to_units $end $scope struct u0_AluBranch $end -$scope struct start $end +$scope struct enqueue $end $scope struct data $end -$var string 1 VJ:mT \$tag $end +$var string 1 GsdD" \$tag $end $scope struct HdlSome $end $scope struct mop $end -$var wire 8 f!i?v fetch_block_id $end -$var wire 16 +?{gZ id $end -$var wire 64 tSx2q pc $end -$var wire 64 jju=" predicted_next_pc $end -$var wire 4 _m#Zq size_in_bytes $end -$var wire 1 `;B2N is_first_mop_in_insn $end +$var wire 8 }:QxN fetch_block_id $end +$var wire 16 hh!}] id $end +$var wire 64 k@R+E pc $end +$var wire 64 +PXSv predicted_next_pc $end +$var wire 4 l?S\m size_in_bytes $end +$var wire 1 \V<+8 is_first_mop_in_insn $end $scope struct mop $end -$var string 1 &(g7' \$tag $end +$var string 1 sJTZb \$tag $end $scope struct AluBranch $end -$var string 1 N[/9_ \$tag $end +$var string 1 MblDA \$tag $end $scope struct AddSub $end $scope struct alu_common $end $scope struct common $end -$var string 0 {phOl prefix_pad $end +$var string 0 zQ44F config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 2kK*) value $end -$var string 1 O|rfq~ value $end +$var string 1 1NMN1 config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 2|i>8 \[0] $end -$var wire 7 BbABA \[1] $end +$var wire 7 gFsv> \[0] $end +$var wire 7 v#Ski \[1] $end $upscope $end -$var wire 34 1rg%6 imm $end +$var wire 34 ^I6uW imm $end $upscope $end -$var string 1 4J8fv output_integer_mode $end +$var string 1 jv4j- output_integer_mode $end $upscope $end -$var wire 1 41!AK invert_src0 $end -$var wire 1 o^*Y^ src1_is_carry_in $end -$var wire 1 {-hrb invert_carry_in $end -$var wire 1 ~j-7E add_pc $end +$var wire 1 4Q|Y. invert_src0 $end +$var wire 1 J,yZi src1_is_carry_in $end +$var wire 1 Q(xye invert_carry_in $end +$var wire 1 e?j97 add_pc $end $upscope $end $scope struct LogicalFlags $end $scope struct common $end -$var string 0 #(_sk prefix_pad $end +$var string 0 uh9X/ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 !]>#@ adj_value $end -$var string 1 |ucI= config $end +$var wire 3 ;y<{T adj_value $end +$var string 1 lOG,' config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 5]4N1 value $end -$var string 1 "5UV} config $end +$var wire 4 oe:=f value $end +$var string 1 1uH7} config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 mDy.( \[0] $end -$var wire 7 yr>]q \[1] $end -$var wire 7 (*Q6} \[2] $end +$var wire 7 n%YVO \[0] $end +$var wire 7 "g!AL \[1] $end +$var wire 7 U_&Hd \[2] $end $upscope $end $scope struct imm $end $scope struct src0_start $end -$var wire 3 }R-j? value $end -$var string 1 ZX_*B range $end +$var wire 3 A~ME4 value $end +$var string 1 dUJ_s range $end $upscope $end $scope struct src1_start $end -$var wire 3 F1;&) value $end -$var string 1 /-b+1 range $end +$var wire 3 4F'jO value $end +$var string 1 Fla=% range $end $upscope $end $scope struct src2_start $end -$var wire 3 dv~[o value $end -$var string 1 range $end $upscope $end $upscope $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 f`c~# \[0] $end -$var wire 1 @!lAF \[1] $end -$var wire 1 jDU*x \[2] $end -$var wire 1 2-wg$ \[3] $end +$var wire 1 O7 \[1] $end $upscope $end -$var wire 34 &ur0Y imm $end +$var wire 34 g@~^Z imm $end $upscope $end -$var string 1 IOeE7 output_integer_mode $end +$var string 1 (J25l output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 /HsGW \[0] $end -$var wire 1 C]9-R \[1] $end -$var wire 1 ]i-3> \[2] $end -$var wire 1 4Pk6Kc adj_value $end +$var string 1 Ro}w, config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 Y8,m{ value $end -$var string 1 N2_X# config $end +$var wire 4 GkaGC value $end +$var string 1 %WO@/ config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 hea:s \[0] $end +$var wire 7 m]~n+ \[0] $end $upscope $end -$var wire 34 ,ZcFw imm $end +$var wire 34 Gda?f imm $end $upscope $end -$var string 1 aa51" output_integer_mode $end +$var string 1 "/NTK output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 $!)b( \[0] $end -$var wire 1 H,a_A \[1] $end -$var wire 1 pM6~+ \[2] $end -$var wire 1 wa;fm \[3] $end +$var wire 1 -s3Dz \[0] $end +$var wire 1 >GxH3 \[1] $end +$var wire 1 6eEiB \[2] $end +$var wire 1 !u&gK \[3] $end $upscope $end $upscope $end $upscope $end $scope struct ShiftRotate $end $scope struct alu_common $end $scope struct common $end -$var string 0 \h]J= prefix_pad $end +$var string 0 nrkCS prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 iq]J1 adj_value $end -$var string 1 '.}Z< config $end +$var wire 3 -,5HB adj_value $end +$var string 1 f8#AS config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 'gj\p value $end -$var string 1 J$9U@ config $end +$var wire 4 mW0X1 value $end +$var string 1 *u^a, config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 #]ck9 \[0] $end -$var wire 7 !R9lc \[1] $end -$var wire 7 @Bg6- \[2] $end +$var wire 7 scS,5 \[0] $end +$var wire 7 A1IAK \[1] $end +$var wire 7 .,)Z1 \[2] $end $upscope $end $scope struct imm $end $scope struct shift_rotate_amount $end -$var string 1 pKqXt \$tag $end -$var wire 6 kg9Q+ HdlSome $end +$var string 1 OFD]7 \$tag $end +$var wire 6 hV-6p HdlSome $end $upscope $end -$var wire 1 ?h7Fk shift_rotate_right $end +$var wire 1 5QA@A shift_rotate_right $end $scope struct dest_logic_op $end -$var string 1 T&q+y \$tag $end +$var string 1 3Wj>) \$tag $end $scope struct HdlSome $end -$var wire 6 /Eznn rotated_output_start $end -$var wire 6 4W$&~ rotated_output_len $end -$var wire 1 Kq8j' fallback_is_src2 $end +$var wire 6 sgm96 rotated_output_start $end +$var wire 6 T$&2x rotated_output_len $end +$var wire 1 oX!NS fallback_is_src2 $end $upscope $end $upscope $end $upscope $end $upscope $end -$var string 1 if=47 output_integer_mode $end +$var string 1 n_r0= output_integer_mode $end $upscope $end -$var string 1 h(yi\ mode $end +$var string 1 Q64:/ mode $end $upscope $end $scope struct Compare $end $scope struct common $end -$var string 0 $qe|& prefix_pad $end +$var string 0 4_f|) prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 hG|4^ adj_value $end -$var string 1 mzKr/ config $end +$var wire 3 !S[oU adj_value $end +$var string 1 ),t]w config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 Cc9tr value $end -$var string 1 tK^`S config $end +$var wire 4 <`".; value $end +$var string 1 3Q \[0] $end +$var wire 7 pyXrG \[0] $end $upscope $end -$var wire 34 36JT# imm $end +$var wire 34 geKT" imm $end $upscope $end -$var string 1 /hG;( compare_mode $end +$var string 1 H["-5 compare_mode $end $upscope $end $scope struct Branch $end $scope struct common $end -$var string 0 7<}y( prefix_pad $end +$var string 0 4nrOj prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 ];fx$ adj_value $end -$var string 1 ^Bn#W config $end +$var wire 3 Z3oTw adj_value $end +$var string 1 rofG, config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 [{%|y value $end -$var string 1 *=Ef` config $end +$var wire 4 p-iOX value $end +$var string 1 }[tS. config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 hJX \[0] $end +$var wire 7 PQAEX \[1] $end $upscope $end -$var wire 34 P+KFL imm $end +$var wire 34 sng'| imm $end $upscope $end -$var wire 1 BD_O8 invert_src0_cond $end -$var string 1 W|%[ src0_cond_mode $end -$var wire 1 ZR;)e invert_src2_eq_zero $end -$var wire 1 xkv*f pc_relative $end -$var wire 1 ,uTJ is_call $end -$var wire 1 (jz$1 is_ret $end +$var wire 1 'z$9[ invert_src0_cond $end +$var string 1 1g08^ src0_cond_mode $end +$var wire 1 ik+D+ invert_src2_eq_zero $end +$var wire 1 .1XW( pc_relative $end +$var wire 1 lgl;{ is_call $end +$var wire 1 c+]'G is_ret $end $upscope $end $scope struct ReadSpecial $end $scope struct common $end -$var string 0 cJznH prefix_pad $end +$var string 0 #Q&/6 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 iqy>^ adj_value $end -$var string 1 eJcX~ config $end +$var wire 3 n0w"3 adj_value $end +$var string 1 -[O(u config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 PTVrO value $end -$var string 1 />xb_ config $end +$var wire 4 ?NS&) value $end +$var string 1 bPV&o config $end $upscope $end $upscope $end $scope struct src $end $upscope $end -$var string 1 _r$`H imm $end +$var string 1 n)CBx imm $end $upscope $end $upscope $end $upscope $end $scope struct TransformedMove $end -$var string 1 ;AXLe \$tag $end +$var string 1 @6Wh^ \$tag $end $scope struct ReadL2Reg $end $scope struct common $end -$var wire 3 0V,o% prefix_pad $end +$var wire 3 y1^x4 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 Wmr9$ adj_value $end -$var string 1 GQ4+d config $end +$var wire 3 vz]]| adj_value $end +$var string 1 o7;!$ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 pc}bt value $end -$var string 1 ^fS`| config $end +$var wire 4 DBl,V value $end +$var string 1 OsVJ} config $end $upscope $end $upscope $end $scope struct src $end $upscope $end $scope struct imm $end -$var wire 8 OM?H- value $end +$var wire 8 JO/R^ value $end $upscope $end $upscope $end $upscope $end $scope struct WriteL2Reg $end $scope struct common $end -$var wire 3 8RNIj prefix_pad $end +$var wire 3 b3\P: prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 [N!*W adj_value $end -$var string 1 Qrz\P config $end +$var wire 3 #A\{" adj_value $end +$var string 1 V6s%) config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 |TZ<2 value $end -$var string 1 ?'s^r config $end +$var wire 4 RrKX{ value $end +$var string 1 BsOc< config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 0bNVx \[0] $end +$var wire 7 Jje[. \[0] $end $upscope $end $scope struct imm $end -$var wire 8 hpExK value $end +$var wire 8 Ga+b] value $end $upscope $end $upscope $end $upscope $end $upscope $end $scope struct LoadStore $end -$var string 1 ,.4}J \$tag $end +$var string 1 GFU6/ \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 6O0%> prefix_pad $end +$var wire 3 :UwDD prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 5yk5H adj_value $end -$var string 1 6D3lv config $end +$var wire 3 BD*k prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 HWi3& adj_value $end -$var string 1 f]/ow config $end +$var wire 3 b6@Yv adj_value $end +$var string 1 O2Tjg config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 nxR_* value $end -$var string 1 t)ZP; config $end +$var wire 4 B`];W value $end +$var string 1 +~t=G config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 2&:=e \[0] $end -$var wire 7 LZ[YH \[1] $end +$var wire 7 o7@]L \[0] $end +$var wire 7 QFU4L \[1] $end $upscope $end -$var wire 34 As5Jb imm $end +$var wire 34 pEu:L imm $end $upscope $end -$var string 1 1O3_v width $end -$var string 1 JVQum conversion $end +$var string 1 ,Nq9K width $end +$var string 1 ,z6@( conversion $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$var string 1 `#xg- config $end +$upscope $end +$upscope $end +$var wire 1 OWS\? ready $end +$upscope $end +$scope struct inputs_ready $end +$var string 1 6i^,, \$tag $end +$scope struct HdlSome $end +$scope struct mop $end +$var wire 8 _CFax fetch_block_id $end +$var wire 16 *P-sE id $end +$var wire 64 T.E%| pc $end +$var wire 64 (VgN[ predicted_next_pc $end +$var wire 4 !Z5Ty size_in_bytes $end +$var wire 1 yJx~x is_first_mop_in_insn $end +$scope struct mop $end +$var string 1 +5"', \$tag $end +$scope struct AluBranch $end +$var string 1 PsP"T \$tag $end +$scope struct AddSub $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 qh])8 prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 -Fa@y adj_value $end +$var string 1 PKqdi config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 %A{4m value $end +$var string 1 ^P@;a config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 MFvrw \[0] $end +$var wire 7 XD%rz \[1] $end +$var wire 7 o%w2Y \[2] $end +$upscope $end +$var wire 26 ]uq,* imm $end +$upscope $end +$var string 1 @\M,% output_integer_mode $end +$upscope $end +$var wire 1 yVfRu invert_src0 $end +$var wire 1 Yl*Er src1_is_carry_in $end +$var wire 1 Z90r- invert_carry_in $end +$var wire 1 \`]'0 add_pc $end +$upscope $end +$scope struct AddSubI $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 4n{6, prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 GDd@2 adj_value $end +$var string 1 -"kNT config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 jhS=S value $end +$var string 1 ,(p+0 config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 D0k%7 \[0] $end +$var wire 7 q[71A \[1] $end +$upscope $end +$var wire 34 !|=YH imm $end +$upscope $end +$var string 1 Kio{o output_integer_mode $end +$upscope $end +$var wire 1 T$o+K invert_src0 $end +$var wire 1 N{o1z src1_is_carry_in $end +$var wire 1 HvbL? invert_carry_in $end +$var wire 1 1V->> add_pc $end +$upscope $end +$scope struct LogicalFlags $end +$scope struct common $end +$var string 0 rp@s prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 g%"]c adj_value $end +$var string 1 -.XlV config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 +o{Lu value $end +$var string 1 5[z*G config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 Ty,}4 \[0] $end +$var wire 7 u4]F} \[1] $end +$var wire 7 ~=]e4 \[2] $end +$upscope $end +$scope struct imm $end +$scope struct src0_start $end +$var wire 3 `Ar=O value $end +$var string 1 Hl/nx range $end +$upscope $end +$scope struct src1_start $end +$var wire 3 N^W~U value $end +$var string 1 Eh0Ef range $end +$upscope $end +$scope struct src2_start $end +$var wire 3 'KOL@ value $end +$var string 1 Dje$T range $end +$upscope $end +$scope struct dest_start $end +$var wire 3 zWEGD value $end +$var string 1 2osob range $end +$upscope $end +$scope struct dest_count $end +$var wire 4 $+BOf value $end +$var string 1 I1%5B range $end +$upscope $end +$upscope $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 0]j]# \[0] $end +$var wire 1 E2NJP \[1] $end +$var wire 1 )a!E8 \[2] $end +$var wire 1 #v50) \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct Logical $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 4qC2M prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 +V=.G adj_value $end +$var string 1 }nAR8 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 YU_A+ value $end +$var string 1 CuOl% config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 1L'{g \[0] $end +$var wire 7 !P)'T \[1] $end +$upscope $end +$var wire 34 GIe"C imm $end +$upscope $end +$var string 1 uXAuw output_integer_mode $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 'Y_P) \[0] $end +$var wire 1 +(M1\ \[1] $end +$var wire 1 jE85, \[2] $end +$var wire 1 Zs/"7 \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct LogicalI $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 y?f,< prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 Cz?In adj_value $end +$var string 1 14b5; config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 ZXiJ& value $end +$var string 1 }:A2U config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 |b,hL \[0] $end +$upscope $end +$var wire 34 \9[(V imm $end +$upscope $end +$var string 1 5Ym+? output_integer_mode $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 Au,$Y \[0] $end +$var wire 1 }"i#Y \[1] $end +$var wire 1 U}R,Y \[2] $end +$var wire 1 XgFW= \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct ShiftRotate $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 lGQ}a prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 AV=HX adj_value $end +$var string 1 `VZj1 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 2./7I value $end +$var string 1 ys3|[ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 Jd33- \[0] $end +$var wire 7 ~pkel \[1] $end +$var wire 7 (D$x- \[2] $end +$upscope $end +$scope struct imm $end +$scope struct shift_rotate_amount $end +$var string 1 ^"3]Z \$tag $end +$var wire 6 p09^| HdlSome $end +$upscope $end +$var wire 1 :M$y: shift_rotate_right $end +$scope struct dest_logic_op $end +$var string 1 LM8dP \$tag $end +$scope struct HdlSome $end +$var wire 6 Y>)8i rotated_output_start $end +$var wire 6 ;cJ{> rotated_output_len $end +$var wire 1 3YwB| fallback_is_src2 $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$var string 1 xkm?J output_integer_mode $end +$upscope $end +$var string 1 H+S~7 mode $end +$upscope $end +$scope struct Compare $end +$scope struct common $end +$var string 0 G5|UZ prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 @`@]V adj_value $end +$var string 1 J#V/F config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 [c(CY value $end +$var string 1 EJE;J config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 %pEQJ \[0] $end +$var wire 7 HW{;; \[1] $end +$upscope $end +$var wire 34 39{aZ imm $end +$upscope $end +$var string 1 Bf?P) compare_mode $end +$upscope $end +$scope struct CompareI $end +$scope struct common $end +$var string 0 .VB%4 prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 q]xmK adj_value $end +$var string 1 ;bC@N config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 @hNKD value $end +$var string 1 w](Z( config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 ~PyR3 \[0] $end +$upscope $end +$var wire 34 F|ri< imm $end +$upscope $end +$var string 1 5GC.k compare_mode $end +$upscope $end +$scope struct Branch $end +$scope struct common $end +$var string 0 s4lVc prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 G~T< adj_value $end +$var string 1 &yhiG config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 +u>M \[1] $end +$var wire 7 Y+BM= \[2] $end +$upscope $end +$var wire 26 ,a)oI imm $end +$upscope $end +$var wire 1 j(,Qx invert_src0_cond $end +$var string 1 L{hVn src0_cond_mode $end +$var wire 1 /qS._ invert_src2_eq_zero $end +$var wire 1 ;?1"6 pc_relative $end +$var wire 1 (hrAN is_call $end +$var wire 1 .'K62 is_ret $end +$upscope $end +$scope struct BranchI $end +$scope struct common $end +$var string 0 Zq<4& prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 &}w3a adj_value $end +$var string 1 -)_i" config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 )P2I& value $end +$var string 1 ,l$7F config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 nKPbm \[0] $end +$var wire 7 o(}0m \[1] $end +$upscope $end +$var wire 34 l4P?K imm $end +$upscope $end +$var wire 1 q-{yY invert_src0_cond $end +$var string 1 2;g(9 src0_cond_mode $end +$var wire 1 C25mI invert_src2_eq_zero $end +$var wire 1 {\6sd pc_relative $end +$var wire 1 G9XEI is_call $end +$var wire 1 k3iN" is_ret $end +$upscope $end +$scope struct ReadSpecial $end +$scope struct common $end +$var string 0 FSF-S prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 p7%jw adj_value $end +$var string 1 $n|v} config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 kOS3l value $end +$var string 1 aic3a config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$var string 1 SIzxc imm $end +$upscope $end +$upscope $end +$upscope $end +$scope struct TransformedMove $end +$var string 1 `>N@0 \$tag $end +$scope struct ReadL2Reg $end +$scope struct common $end +$var wire 3 mPk)^ prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 _[R+r adj_value $end +$var string 1 }]nO- config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 ;`i}o value $end +$var string 1 E2Z+N config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$scope struct imm $end +$var wire 8 (L^Fn value $end +$upscope $end +$upscope $end +$upscope $end +$scope struct WriteL2Reg $end +$scope struct common $end +$var wire 3 p| prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 QvkOT adj_value $end +$var string 1 [=)?) config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 Z_00_ value $end +$var string 1 SD1hR config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 {\c3P \[0] $end +$upscope $end +$scope struct imm $end +$var wire 8 .v-"B value $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$scope struct LoadStore $end +$var string 1 1/&bx \$tag $end +$scope struct Load $end +$scope struct load_store_common $end +$scope struct common $end +$var wire 3 (iD}V prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 rxq7X adj_value $end +$var string 1 z-;|{ config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 yN">T value $end +$var string 1 `EAn+ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 %wW1d \[0] $end +$upscope $end +$var wire 34 d`61s imm $end +$upscope $end +$var string 1 ]E"x\ width $end +$var string 1 #y5o` conversion $end +$upscope $end +$upscope $end +$scope struct Store $end +$scope struct load_store_common $end +$scope struct common $end +$var wire 3 kn)7+ prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 >Ps_l adj_value $end +$var string 1 n{0G, config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 qUG2P value $end +$var string 1 E#s>z config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 YPwsE \[0] $end +$var wire 7 F@g9n \[1] $end +$upscope $end +$var wire 34 ioPCT imm $end +$upscope $end +$var string 1 P41Z| width $end +$var string 1 zQ<~U conversion $end $upscope $end $upscope $end $upscope $end @@ -28507,50 +28940,108 @@ $upscope $end $upscope $end $scope struct src_values $end $scope struct \[0] $end -$var wire 64 ]ZcF' int_fp $end +$var wire 64 XNCWD int_fp $end $scope struct flags $end -$var wire 1 U'?W5 pwr_ca32_x86_af $end -$var wire 1 %,yWg pwr_ca_x86_cf $end -$var wire 1 )5UmT pwr_ov32_x86_df $end -$var wire 1 %V&s{ pwr_ov_x86_of $end -$var wire 1 Jv:w\ pwr_so $end -$var wire 1 i3>;^ pwr_cr_eq_x86_zf $end -$var wire 1 _JPVl pwr_cr_gt_x86_pf $end -$var wire 1 33"=x pwr_cr_lt_x86_sf $end +$var wire 1 .pVCw pwr_ca32_x86_af $end +$var wire 1 zr63H pwr_ca_x86_cf $end +$var wire 1 6es3Y pwr_ov32_x86_df $end +$var wire 1 ]ov([ pwr_ov_x86_of $end +$var wire 1 KcUSw pwr_so $end +$var wire 1 /7Jza int_fp $end $scope struct flags $end -$var wire 1 bd!U5 pwr_ca32_x86_af $end -$var wire 1 WR(LL pwr_ca_x86_cf $end -$var wire 1 -t]'_ pwr_ov32_x86_df $end -$var wire 1 :?t+] pwr_ov_x86_of $end -$var wire 1 B%rlv pwr_so $end -$var wire 1 @\[,2 pwr_cr_eq_x86_zf $end -$var wire 1 w$g+C pwr_cr_gt_x86_pf $end -$var wire 1 .eyjC pwr_cr_lt_x86_sf $end +$var wire 1 ~E=z+ pwr_ca32_x86_af $end +$var wire 1 v~bcI pwr_ca_x86_cf $end +$var wire 1 !.%bg pwr_ov32_x86_df $end +$var wire 1 I?>RH pwr_ov_x86_of $end +$var wire 1 =%`jR pwr_so $end +$var wire 1 %h=\i pwr_cr_eq_x86_zf $end +$var wire 1 ^4.g) pwr_cr_gt_x86_pf $end +$var wire 1 ">{_J pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct \[2] $end -$var wire 64 CNG-p int_fp $end +$var wire 64 g&EdS int_fp $end $scope struct flags $end -$var wire 1 aKB\g pwr_ca32_x86_af $end -$var wire 1 MFro& pwr_ca_x86_cf $end -$var wire 1 +cpEB pwr_ov32_x86_df $end -$var wire 1 ,n.P( pwr_ov_x86_of $end -$var wire 1 c);#x pwr_so $end -$var wire 1 h(#c8 pwr_cr_eq_x86_zf $end -$var wire 1 A~im7 pwr_cr_gt_x86_pf $end -$var wire 1 \n(W2 pwr_cr_lt_x86_sf $end +$var wire 1 ;=hS~ pwr_ca32_x86_af $end +$var wire 1 0C~US pwr_ca_x86_cf $end +$var wire 1 =b3VS pwr_ov32_x86_df $end +$var wire 1 y{&|/ pwr_ov_x86_of $end +$var wire 1 2dY|= pwr_so $end +$var wire 1 }KxZ0 pwr_cr_eq_x86_zf $end +$var wire 1 9$jJ6 pwr_cr_gt_x86_pf $end +$var wire 1 g>/7+ pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var string 1 jNLfo config $end +$var string 1 g7 id $end +$var string 1 _kwXw config $end $upscope $end +$upscope $end +$scope struct cant_cause_cancel $end +$var string 1 thK|e \$tag $end +$scope struct HdlSome $end +$var wire 16 eRj@a id $end +$var string 1 MkR3. config $end +$upscope $end +$upscope $end +$scope struct output_ready $end +$var string 1 -VNX5 \$tag $end +$scope struct HdlSome $end +$var wire 16 \Svf* id $end +$scope struct dest_value $end +$var wire 64 R*\|t int_fp $end +$scope struct flags $end +$var wire 1 /K1Z0 pwr_ca32_x86_af $end +$var wire 1 m#bm, pwr_ca_x86_cf $end +$var wire 1 bA\60 pwr_ov32_x86_df $end +$var wire 1 %Axu~ pwr_ov_x86_of $end +$var wire 1 ':5*N pwr_so $end +$var wire 1 a=bs| pwr_cr_eq_x86_zf $end +$var wire 1 ][$`O pwr_cr_gt_x86_pf $end +$var wire 1 9JoCj pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct predictor_op $end +$scope struct call_stack_op $end +$var string 1 u@Ihv \$tag $end +$var wire 64 dGztT Push $end +$upscope $end +$scope struct cond_br_taken $end +$var string 1 H>&>b \$tag $end +$var wire 1 f)cR- HdlSome $end +$upscope $end +$var string 1 EL`/H config $end +$upscope $end +$upscope $end +$upscope $end +$scope struct finish_cause_cancel $end +$var string 1 k5NJV \$tag $end +$scope struct HdlSome $end +$var wire 16 XQXA5 id $end +$scope struct caused_cancel $end +$var string 1 JGIEY \$tag $end +$scope struct HdlSome $end +$var wire 64 n[TMZ start_at_pc $end +$var wire 1 K^rQs cancel_after_retire $end +$var string 1 p]IKw config $end +$upscope $end +$upscope $end +$var string 1 }Ei36 config $end +$upscope $end +$upscope $end +$var wire 1 <:f=P unit_outputs_ready $end $scope struct cancel_all $end $scope struct data $end $var string 1 eil|L \$tag $end @@ -28559,504 +29050,866 @@ $upscope $end $upscope $end $var wire 1 !D)]| ready $end $upscope $end -$scope struct is_no_longer_speculative $end -$scope struct data $end -$var string 1 ready $end -$upscope $end -$scope struct cant_cause_cancel $end -$scope struct data $end -$var string 1 msjmY \$tag $end -$scope struct HdlSome $end -$var wire 16 AamaS id $end -$var string 1 !x\t8 config $end -$upscope $end -$upscope $end -$var wire 1 r%t\` ready $end -$upscope $end -$scope struct finished $end -$scope struct data $end -$var string 1 QL_0i| \$tag $end +$var string 1 {Rq.4 \$tag $end $scope struct AluBranch $end -$var string 1 8hkh9 \$tag $end +$var string 1 [mX0D \$tag $end $scope struct AddSub $end $scope struct alu_common $end $scope struct common $end -$var string 0 b15?w prefix_pad $end +$var string 0 cK2[) prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 bUp#B adj_value $end -$var string 1 I5g{l config $end +$var wire 3 xA$R" adj_value $end +$var string 1 -aHkm config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 JL4A> value $end -$var string 1 \[0] $end +$var wire 7 T9|v \[1] $end $upscope $end -$var wire 34 w(eN, imm $end +$var wire 34 !:mCD imm $end $upscope $end -$var string 1 >'ygD output_integer_mode $end +$var string 1 M[>K& output_integer_mode $end $upscope $end -$var wire 1 b2OJ3 invert_src0 $end -$var wire 1 #{ value $end +$var string 1 : range $end +$var wire 3 #,W(' value $end +$var string 1 &5dCY range $end $upscope $end $scope struct src2_start $end -$var wire 3 K`=$2 value $end -$var string 1 *(^Mv range $end +$var wire 3 "/Cu? value $end +$var string 1 3/GfA range $end $upscope $end $scope struct dest_start $end -$var wire 3 v{mC< value $end -$var string 1 feS09 range $end +$var wire 3 uHZ|h value $end +$var string 1 BU5)O range $end $upscope $end $scope struct dest_count $end -$var wire 4 (DU*: value $end -$var string 1 uwQK| range $end +$var wire 4 1F6~F value $end +$var string 1 c';;" range $end $upscope $end $upscope $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 ^J3^n \[0] $end -$var wire 1 ~pp)j \[1] $end -$var wire 1 Ex`Em \[2] $end -$var wire 1 uln6G \[3] $end +$var wire 1 #CVjz \[0] $end +$var wire 1 =4N6I \[1] $end +$var wire 1 d?QAC \[2] $end +$var wire 1 8,28/ \[3] $end $upscope $end $upscope $end $upscope $end $scope struct Logical $end $scope struct alu_common $end $scope struct common $end -$var string 0 W$o]V prefix_pad $end +$var string 0 68>}` prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 :+&~) adj_value $end -$var string 1 ]*^ni config $end +$var wire 3 c|YDQ adj_value $end +$var string 1 %TA`? config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 |P@&m value $end -$var string 1 /=%Zn config $end +$var wire 4 PlfY7 value $end +$var string 1 }>;Kr config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 cUh*3 \[0] $end -$var wire 7 ~aTFm \[1] $end +$var wire 7 jK1(D \[0] $end +$var wire 7 :HnM_ \[1] $end $upscope $end -$var wire 34 h@h}, imm $end +$var wire 34 x+bLK imm $end $upscope $end -$var string 1 6;QR" output_integer_mode $end +$var string 1 iN|/x output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 xg|Nv \[0] $end -$var wire 1 !(Adt \[1] $end -$var wire 1 fzA\P \[2] $end -$var wire 1 >Izy& \[3] $end +$var wire 1 0x/vh \[0] $end +$var wire 1 (oYiB \[1] $end +$var wire 1 O'd__ \[2] $end +$var wire 1 E\**t \[3] $end $upscope $end $upscope $end $upscope $end $scope struct LogicalI $end $scope struct alu_common $end $scope struct common $end -$var string 0 L:#F7 prefix_pad $end +$var string 0 <;4Db prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 ,mJP* adj_value $end -$var string 1 rtMVp config $end +$var wire 3 ~/SU@ adj_value $end +$var string 1 {apy6 config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 "K)Z{ value $end -$var string 1 y(Pb% config $end +$var wire 4 7N(2B value $end +$var string 1 P2/9@ config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 pRmIE \[0] $end +$var wire 7 Ry^d6 \[0] $end $upscope $end -$var wire 34 F2`Fk imm $end +$var wire 34 r]5!T imm $end $upscope $end -$var string 1 0j[M" output_integer_mode $end +$var string 1 0x \[3] $end $upscope $end $upscope $end $upscope $end $scope struct ShiftRotate $end $scope struct alu_common $end $scope struct common $end -$var string 0 |A%1a prefix_pad $end +$var string 0 w1.ox prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 7$4~) adj_value $end -$var string 1 ]h*9` config $end +$var wire 3 #C imm $end $upscope $end -$var string 1 Q9%5| compare_mode $end +$var string 1 Es'.K compare_mode $end $upscope $end $scope struct CompareI $end $scope struct common $end -$var string 0 ?T[Je prefix_pad $end +$var string 0 xn+"] prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 5~m.~ adj_value $end -$var string 1 Y"//~ config $end +$var wire 3 Zhb;B adj_value $end +$var string 1 qMq+K config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 <3_TX value $end -$var string 1 '[-p~ config $end +$var wire 4 6Bs+q value $end +$var string 1 a7)^V config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 oGh4Y \[0] $end +$var wire 7 q>44& \[0] $end $upscope $end -$var wire 34 tELx} imm $end +$var wire 34 -aB'c imm $end $upscope $end -$var string 1 *~0V^ compare_mode $end +$var string 1 46QGd compare_mode $end $upscope $end $scope struct Branch $end $scope struct common $end -$var string 0 nZV'M prefix_pad $end +$var string 0 psHY% prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 UXFR< adj_value $end -$var string 1 _j8-3 config $end +$var wire 3 I-P?< adj_value $end +$var string 1 "Y4g] config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 :{^=l value $end -$var string 1 3124G config $end +$var wire 4 PUwX9 value $end +$var string 1 :rjBr config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 mnmyM \[0] $end -$var wire 7 usg=b \[1] $end -$var wire 7 ;;rKj \[2] $end +$var wire 7 cAAiR \[0] $end +$var wire 7 x{;A$ \[1] $end +$var wire 7 Il`'' \[2] $end $upscope $end -$var wire 26 ,R-C. imm $end +$var wire 26 1{H(9 imm $end $upscope $end -$var wire 1 0ERbT invert_src0_cond $end -$var string 1 ;h6cn src0_cond_mode $end -$var wire 1 m~|b1 invert_src2_eq_zero $end -$var wire 1 Et1_O pc_relative $end -$var wire 1 JC/CX is_call $end -$var wire 1 h>xxw is_ret $end +$var wire 1 $nq= invert_src0_cond $end +$var string 1 K#iLK src0_cond_mode $end +$var wire 1 Z#4JW invert_src2_eq_zero $end +$var wire 1 dtC%c pc_relative $end +$var wire 1 yXhJ? is_call $end +$var wire 1 tk7() is_ret $end $upscope $end $scope struct BranchI $end $scope struct common $end -$var string 0 ?tYLe prefix_pad $end +$var string 0 A~[ invert_src2_eq_zero $end +$var wire 1 TR(mK pc_relative $end +$var wire 1 n0Y\5 is_call $end +$var wire 1 ;o/>Q is_ret $end $upscope $end $scope struct ReadSpecial $end $scope struct common $end -$var string 0 6MDG^ prefix_pad $end +$var string 0 UKmPl prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 ;!or) adj_value $end -$var string 1 4\94) config $end +$var wire 3 9h,[u adj_value $end +$var string 1 i)Jpb config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 o@w*c value $end -$var string 1 jQ9(7 config $end +$var wire 4 =%q imm $end $upscope $end $upscope $end $upscope $end $scope struct TransformedMove $end -$var string 1 GGs}8 \$tag $end +$var string 1 d"z,m \$tag $end $scope struct ReadL2Reg $end $scope struct common $end -$var wire 3 YD71= prefix_pad $end +$var wire 3 L4vhD prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 z$?#I adj_value $end -$var string 1 |iT2^ config $end +$var wire 3 fRBsa adj_value $end +$var string 1 WOa]? config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 S3|$t value $end -$var string 1 f+1G. config $end +$var wire 4 nQ]F$ value $end +$var string 1 6E3M) config $end $upscope $end $upscope $end $scope struct src $end $upscope $end $scope struct imm $end -$var wire 8 lz_'( value $end +$var wire 8 O%K'j value $end $upscope $end $upscope $end $upscope $end $scope struct WriteL2Reg $end $scope struct common $end -$var wire 3 gi_Xx prefix_pad $end +$var wire 3 F-eaL prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 i0_c- adj_value $end -$var string 1 Du:'8 config $end +$var wire 3 !+vbL adj_value $end +$var string 1 tu:d, config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 {Cw:h value $end -$var string 1 "Zjbx config $end +$var wire 4 TKqtx value $end +$var string 1 qbx^_ config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 X9EO3 \[0] $end +$var wire 7 2Ha^E \[0] $end $upscope $end $scope struct imm $end -$var wire 8 9YQD} value $end +$var wire 8 N)Ytv value $end $upscope $end $upscope $end $upscope $end $upscope $end $scope struct LoadStore $end -$var string 1 y{R0s \$tag $end +$var string 1 gF{%3 \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 [u&-< prefix_pad $end +$var wire 3 WDN^" prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 N}a51 adj_value $end -$var string 1 fSDa6 config $end +$var wire 3 MLv]\ adj_value $end +$var string 1 A)gd; config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 5ud*k value $end -$var string 1 Gh7pO config $end +$var wire 4 Z5vY) value $end +$var string 1 ~Bw4% config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 HbVrf \[0] $end +$var wire 7 :Zs7T \[0] $end $upscope $end -$var wire 34 C*[D2 imm $end +$var wire 34 hxR^= imm $end $upscope $end -$var string 1 _CcUm width $end -$var string 1 =k+\p conversion $end +$var string 1 ,XY*g width $end +$var string 1 ZK:%} conversion $end $upscope $end $upscope $end $scope struct Store $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 0B$]V prefix_pad $end +$var wire 3 iuTMY prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 06u[j adj_value $end -$var string 1 M8)zf config $end +$var wire 3 d;an= adj_value $end +$var string 1 Iu+(7 config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 !TnFv value $end -$var string 1 W.^b\ config $end +$var wire 4 S(YP[ value $end +$var string 1 1v[m2 config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 ykS+- \[0] $end -$var wire 7 IA:E} \[1] $end +$var wire 7 #HCal \[0] $end +$var wire 7 @5p#t \[1] $end $upscope $end -$var wire 34 -pNhG imm $end +$var wire 34 [w)"8 imm $end $upscope $end -$var string 1 cQMpv width $end -$var string 1 VQ3S' conversion $end +$var string 1 i=J$R width $end +$var string 1 B-XFE conversion $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$var string 1 y?%7& config $end +$upscope $end +$upscope $end +$var wire 1 QE imm $end +$upscope $end +$var string 1 Dvp%M output_integer_mode $end +$upscope $end +$var wire 1 <`mE value $end +$var string 1 daZg; config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 :YQxf \[0] $end +$var wire 7 bFsw0 \[1] $end +$upscope $end +$var wire 34 eR>$x imm $end +$upscope $end +$var string 1 -fC*U output_integer_mode $end +$upscope $end +$var wire 1 ;qLr= invert_src0 $end +$var wire 1 R\CH] src1_is_carry_in $end +$var wire 1 Ig#;G invert_carry_in $end +$var wire 1 %RdWB add_pc $end +$upscope $end +$scope struct LogicalFlags $end +$scope struct common $end +$var string 0 L:|^W prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 {0U!T adj_value $end +$var string 1 dR(TB config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 d`/e2 value $end +$var string 1 9f$Gf config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 yIU&4 \[0] $end +$var wire 7 e43Se \[1] $end +$var wire 7 yuK|, \[2] $end +$upscope $end +$scope struct imm $end +$scope struct src0_start $end +$var wire 3 ;X?|/ value $end +$var string 1 Ihu \[2] $end +$var wire 1 l9f,< \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct ShiftRotate $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 Ev>&6 prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 }2PwT adj_value $end +$var string 1 Z~`sl config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 m1"BU config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 j+!SB value $end +$var string 1 YT0j$ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 /@;B` \[0] $end +$var wire 7 <;m]T \[1] $end +$upscope $end +$var wire 34 5IJ}i imm $end +$upscope $end +$var string 1 +{hT8 compare_mode $end +$upscope $end +$scope struct CompareI $end +$scope struct common $end +$var string 0 6C7%S prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 1#)3: adj_value $end +$var string 1 \hw_< config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 t'zwk value $end +$var string 1 s,c01 config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 ^6\.l \[0] $end +$var wire 7 r-f1) \[1] $end +$var wire 7 vZ>qo \[2] $end +$upscope $end +$var wire 26 x?/rZ imm $end +$upscope $end +$var wire 1 Xcg]i invert_src0_cond $end +$var string 1 !57k| src0_cond_mode $end +$var wire 1 %@IdW invert_src2_eq_zero $end +$var wire 1 V}7vf pc_relative $end +$var wire 1 xU`([ is_call $end +$var wire 1 [[M5R is_ret $end +$upscope $end +$scope struct BranchI $end +$scope struct common $end +$var string 0 (`=m% prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 V9dUY adj_value $end +$var string 1 hrlv: config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 `Z^@3 value $end +$var string 1 i;$}W config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 j&*}- \[0] $end +$var wire 7 9^Uc$ \[1] $end +$upscope $end +$var wire 34 _5:60 imm $end +$upscope $end +$var wire 1 2DP2W invert_src0_cond $end +$var string 1 xv=B3 src0_cond_mode $end +$var wire 1 j+e;1 invert_src2_eq_zero $end +$var wire 1 3?/8? pc_relative $end +$var wire 1 2p;(= is_call $end +$var wire 1 fKx*t is_ret $end +$upscope $end +$scope struct ReadSpecial $end +$scope struct common $end +$var string 0 kWv'Z prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 4xi~I adj_value $end +$var string 1 U)0#0 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 MU7Uo value $end +$var string 1 6NVW; config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$var string 1 Xb!5U imm $end +$upscope $end +$upscope $end +$upscope $end +$scope struct TransformedMove $end +$var string 1 dUI> prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 -6a\% adj_value $end +$var string 1 :DPe; config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 Fq:+& value $end +$var string 1 ywf_) config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$scope struct imm $end +$var wire 8 adj_value $end +$var string 1 3o;bV config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 65DPk value $end +$var string 1 c|.Pz config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 %q-iN \[0] $end +$var wire 7 6Vemt \[1] $end +$upscope $end +$var wire 34 :'5Bw imm $end +$upscope $end +$var string 1 6Jn3p width $end +$var string 1 g20MF conversion $end $upscope $end $upscope $end $upscope $end @@ -29064,50 +29917,108 @@ $upscope $end $upscope $end $scope struct src_values $end $scope struct \[0] $end -$var wire 64 ej="B int_fp $end +$var wire 64 ^%m{q int_fp $end $scope struct flags $end -$var wire 1 Zpqvc pwr_ca32_x86_af $end -$var wire 1 $Gp]~ pwr_ca_x86_cf $end -$var wire 1 jZxq' pwr_ov32_x86_df $end -$var wire 1 {@8e| pwr_ov_x86_of $end -$var wire 1 "t1ZY pwr_so $end -$var wire 1 DB_h{ pwr_cr_eq_x86_zf $end -$var wire 1 .9zEP pwr_cr_gt_x86_pf $end -$var wire 1 8[d{j pwr_cr_lt_x86_sf $end +$var wire 1 f:.e` pwr_ca32_x86_af $end +$var wire 1 Aa}g~ pwr_ca_x86_cf $end +$var wire 1 f8A]I pwr_ov32_x86_df $end +$var wire 1 4nlx- pwr_ov_x86_of $end +$var wire 1 nNRhb pwr_so $end +$var wire 1 ,(%5n pwr_cr_eq_x86_zf $end +$var wire 1 pfJpK pwr_cr_gt_x86_pf $end +$var wire 1 g0.L_ pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct \[1] $end -$var wire 64 iH[IY int_fp $end +$var wire 64 1{Sk2 int_fp $end $scope struct flags $end -$var wire 1 aJ7&m pwr_ca32_x86_af $end -$var wire 1 a}@^J pwr_ca_x86_cf $end -$var wire 1 `x9>) pwr_ov32_x86_df $end -$var wire 1 r34^u pwr_ov_x86_of $end -$var wire 1 /s^;{ pwr_so $end -$var wire 1 a(Qos pwr_cr_gt_x86_pf $end -$var wire 1 l(wt( pwr_cr_lt_x86_sf $end +$var wire 1 t7Id? pwr_ca32_x86_af $end +$var wire 1 \w'^t pwr_ca_x86_cf $end +$var wire 1 [CaRs pwr_ov32_x86_df $end +$var wire 1 p:{=i pwr_ov_x86_of $end +$var wire 1 09m3y pwr_so $end +$var wire 1 n1"-g pwr_cr_eq_x86_zf $end +$var wire 1 fRe,` pwr_cr_gt_x86_pf $end +$var wire 1 6~OOE pwr_ov_x86_of $end -$var wire 1 [[m/5 pwr_so $end -$var wire 1 fp|lO pwr_cr_eq_x86_zf $end -$var wire 1 ?X_:3 pwr_cr_gt_x86_pf $end -$var wire 1 v3_u? pwr_cr_lt_x86_sf $end +$var wire 1 *$s_# pwr_ca32_x86_af $end +$var wire 1 pQhL$ pwr_ca_x86_cf $end +$var wire 1 ee+`A pwr_ov32_x86_df $end +$var wire 1 O-LR2 pwr_ov_x86_of $end +$var wire 1 vhf}4 pwr_so $end +$var wire 1 N}[g( pwr_cr_eq_x86_zf $end +$var wire 1 RxPQa pwr_cr_gt_x86_pf $end +$var wire 1 0ObsS pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var string 1 Y.JM< config $end +$var string 1 Vnlk( config $end $upscope $end $upscope $end -$var wire 1 `G0kzjv \$tag $end +$scope struct HdlSome $end +$var wire 16 'kF+W id $end +$var string 1 ;3f\* config $end $upscope $end +$upscope $end +$scope struct cant_cause_cancel $end +$var string 1 }hvfM \$tag $end +$scope struct HdlSome $end +$var wire 16 e5cJx id $end +$var string 1 4XS}' config $end +$upscope $end +$upscope $end +$scope struct output_ready $end +$var string 1 2W|uV \$tag $end +$scope struct HdlSome $end +$var wire 16 uXv)' id $end +$scope struct dest_value $end +$var wire 64 A#ToM int_fp $end +$scope struct flags $end +$var wire 1 7$t2L pwr_ca32_x86_af $end +$var wire 1 !c-M4 pwr_ca_x86_cf $end +$var wire 1 xx`\1 pwr_ov32_x86_df $end +$var wire 1 E~R4B pwr_ov_x86_of $end +$var wire 1 +YrxS pwr_so $end +$var wire 1 Wg'Tj pwr_cr_eq_x86_zf $end +$var wire 1 I1PB? pwr_cr_gt_x86_pf $end +$var wire 1 O~a0B pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct predictor_op $end +$scope struct call_stack_op $end +$var string 1 ou-xr \$tag $end +$var wire 64 =@cUN Push $end +$upscope $end +$scope struct cond_br_taken $end +$var string 1 uj.l \$tag $end +$var wire 1 -S^`G HdlSome $end +$upscope $end +$var string 1 ~fj", config $end +$upscope $end +$upscope $end +$upscope $end +$scope struct finish_cause_cancel $end +$var string 1 C2a|] \$tag $end +$scope struct HdlSome $end +$var wire 16 5/_]$ id $end +$scope struct caused_cancel $end +$var string 1 lAbku \$tag $end +$scope struct HdlSome $end +$var wire 64 &_{$I start_at_pc $end +$var wire 1 7om9) cancel_after_retire $end +$var string 1 s5U'} config $end +$upscope $end +$upscope $end +$var string 1 uHoe8 config $end +$upscope $end +$upscope $end +$var wire 1 eAD4` unit_outputs_ready $end $scope struct cancel_all $end $scope struct data $end $var string 1 ^(+@* \$tag $end @@ -29116,504 +30027,866 @@ $upscope $end $upscope $end $var wire 1 7at%k ready $end $upscope $end -$scope struct is_no_longer_speculative $end -$scope struct data $end -$var string 1 jyyZ) \$tag $end -$scope struct HdlSome $end -$var wire 16 'w7!U id $end -$var string 1 kX7_h config $end -$upscope $end -$upscope $end -$var wire 1 /JM+{ ready $end -$upscope $end -$scope struct cant_cause_cancel $end -$scope struct data $end -$var string 1 *b(`_ \$tag $end -$scope struct HdlSome $end -$var wire 16 ?(:vI id $end -$var string 1 (z$>S config $end -$upscope $end -$upscope $end -$var wire 1 4%,Xt ready $end -$upscope $end -$scope struct finished $end -$scope struct data $end -$var string 1 izATH \$tag $end -$scope struct HdlSome $end -$var wire 16 qgt(( id $end -$scope struct finished_successfully $end -$var string 1 `q|PV \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 #Vf?p value $end -$var string 1 z6gQj config $end -$upscope $end -$scope struct dest_value $end -$var wire 64 )kx2j int_fp $end -$scope struct flags $end -$var wire 1 bLMa` pwr_ca32_x86_af $end -$var wire 1 }Z^CO pwr_ca_x86_cf $end -$var wire 1 "fzX_ pwr_ov32_x86_df $end -$var wire 1 kWvSo pwr_ov_x86_of $end -$var wire 1 MEsw0 pwr_so $end -$var wire 1 Y@HSo pwr_cr_eq_x86_zf $end -$var wire 1 ;-H)( pwr_cr_gt_x86_pf $end -$var wire 1 iD[#d pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct predictor_op $end -$scope struct call_stack_op $end -$var string 1 fA{[; \$tag $end -$var wire 64 [,|/c Push $end -$upscope $end -$scope struct cond_br_taken $end -$var string 1 rvE^f \$tag $end -$var wire 1 VtIzB HdlSome $end -$upscope $end -$var string 1 bjKoN config $end -$upscope $end -$upscope $end -$upscope $end -$scope struct caused_cancel $end -$var string 1 Trx-c \$tag $end -$scope struct HdlSome $end -$var wire 16 mm`!P id $end -$var wire 64 G-w]) start_at_pc $end -$var string 1 f\QCF config $end -$upscope $end -$upscope $end -$var string 1 "'Qe. config $end -$upscope $end -$upscope $end -$var wire 1 +/udA ready $end -$upscope $end $var string 1 ^h`~v config $end $upscope $end $scope struct u2_AluBranch $end -$scope struct start $end +$scope struct enqueue $end $scope struct data $end -$var string 1 $C6zm \$tag $end +$var string 1 2+~8. \$tag $end $scope struct HdlSome $end $scope struct mop $end -$var wire 8 RJ\9: fetch_block_id $end -$var wire 16 R&1Sp id $end -$var wire 64 RF2'I pc $end -$var wire 64 ,5>Ls predicted_next_pc $end -$var wire 4 N=9s$ size_in_bytes $end -$var wire 1 b..ii is_first_mop_in_insn $end +$var wire 8 e.>!d fetch_block_id $end +$var wire 16 Pf4v- id $end +$var wire 64 w(Y.E pc $end +$var wire 64 #77!F predicted_next_pc $end +$var wire 4 N8AJ[ size_in_bytes $end +$var wire 1 WqnyH is_first_mop_in_insn $end $scope struct mop $end -$var string 1 13PcX \$tag $end +$var string 1 ],5#` \$tag $end $scope struct AluBranch $end -$var string 1 +]vTu \$tag $end +$var string 1 hO;,E \$tag $end $scope struct AddSub $end $scope struct alu_common $end $scope struct common $end -$var string 0 "*!k# prefix_pad $end +$var string 0 S#foh prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 i0XGM adj_value $end -$var string 1 9&q#$ config $end +$var wire 3 o70n3 adj_value $end +$var string 1 TiI?a config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 T&WER value $end -$var string 1 lj6;V config $end +$var wire 4 o_fn1 value $end +$var string 1 M9_Jr config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 4/&]{ \[0] $end -$var wire 7 Lf?9< \[1] $end -$var wire 7 *Py9= \[2] $end +$var wire 7 koytw \[0] $end +$var wire 7 |]{tm \[1] $end +$var wire 7 ic)l7 \[2] $end $upscope $end -$var wire 26 CKdoe imm $end +$var wire 26 Fb^`# imm $end $upscope $end -$var string 1 +.3X2 output_integer_mode $end +$var string 1 !#$|) output_integer_mode $end $upscope $end -$var wire 1 !Yh*@ invert_src0 $end -$var wire 1 d`dt| src1_is_carry_in $end -$var wire 1 oD0?s invert_carry_in $end -$var wire 1 d^GZ4 add_pc $end +$var wire 1 IXi?} invert_src0 $end +$var wire 1 `5|fP src1_is_carry_in $end +$var wire 1 ,dHzD invert_carry_in $end +$var wire 1 #mS/Q add_pc $end $upscope $end $scope struct AddSubI $end $scope struct alu_common $end $scope struct common $end -$var string 0 iBHat prefix_pad $end +$var string 0 :%Zum prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 AP}j_ adj_value $end -$var string 1 F!ebT config $end +$var wire 3 4ZiR{ adj_value $end +$var string 1 !X}Wi config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 +AVji value $end -$var string 1 F=2Qa config $end +$var wire 4 bo=u; value $end +$var string 1 aFvXV config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 ?7pr/ \[0] $end -$var wire 7 OlzSk \[1] $end +$var wire 7 >7qi% \[0] $end +$var wire 7 x~qr' \[1] $end $upscope $end -$var wire 34 r%\mx imm $end +$var wire 34 }{9s? imm $end $upscope $end -$var string 1 su`^* output_integer_mode $end +$var string 1 .X3*Y output_integer_mode $end $upscope $end -$var wire 1 )30G$ invert_src0 $end -$var wire 1 .6JgW src1_is_carry_in $end -$var wire 1 F9qN invert_carry_in $end -$var wire 1 RBn:{ add_pc $end +$var wire 1 \/O!; invert_src0 $end +$var wire 1 MdC]g src1_is_carry_in $end +$var wire 1 uEIl' invert_carry_in $end +$var wire 1 )U6jj add_pc $end $upscope $end $scope struct LogicalFlags $end $scope struct common $end -$var string 0 j-59. prefix_pad $end +$var string 0 gVQ|q prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 +tY{) adj_value $end -$var string 1 -QA7# config $end +$var wire 3 T}6F{ adj_value $end +$var string 1 ENaV$ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 f:CfB value $end -$var string 1 >>]g^ config $end +$var wire 4 i\g~u value $end +$var string 1 9/5a= config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 .G!\S \[0] $end -$var wire 7 wmCVY \[1] $end -$var wire 7 I%;yk \[2] $end +$var wire 7 rM7-O \[0] $end +$var wire 7 0y8~g \[1] $end +$var wire 7 x#u|# \[2] $end $upscope $end $scope struct imm $end $scope struct src0_start $end -$var wire 3 XC\wq value $end -$var string 1 w#b&B range $end +$var wire 3 2qgU| value $end +$var string 1 F#9K1 range $end $upscope $end $scope struct src1_start $end -$var wire 3 Uw`vm value $end -$var string 1 x#.ws range $end +$var wire 3 S6jJW value $end +$var string 1 W7;SO range $end $upscope $end $scope struct src2_start $end -$var wire 3 A'\H) value $end -$var string 1 &!I_L range $end +$var wire 3 J+fq` value $end +$var string 1 U?/W> range $end $upscope $end $scope struct dest_start $end -$var wire 3 1X}}l value $end -$var string 1 M|5H% range $end +$var wire 3 vErr. value $end +$var string 1 A=5)l range $end $upscope $end $scope struct dest_count $end -$var wire 4 sz@6d value $end -$var string 1 UzHJ} range $end +$var wire 4 19u~E value $end +$var string 1 )c@i| range $end $upscope $end $upscope $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 "|gUl \[0] $end -$var wire 1 <;=q? \[1] $end -$var wire 1 d%H@8 \[2] $end -$var wire 1 k{ZN^ \[3] $end +$var wire 1 yp8qN \[0] $end +$var wire 1 3pl!7 \[1] $end +$var wire 1 ^i2k\ \[2] $end +$var wire 1 5@{;| \[3] $end $upscope $end $upscope $end $upscope $end $scope struct Logical $end $scope struct alu_common $end $scope struct common $end -$var string 0 jm0Fz prefix_pad $end +$var string 0 NB`T. prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 G\=d= adj_value $end -$var string 1 #(xxJ config $end +$var wire 3 PlkVY adj_value $end +$var string 1 y6ZwY config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 TLC'O value $end -$var string 1 VRL9p config $end +$var wire 4 Jd~Pb value $end +$var string 1 Zt=`A config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 9am6& \[0] $end -$var wire 7 0C8Nk \[1] $end +$var wire 7 edNTB \[0] $end +$var wire 7 @p-u+ \[1] $end $upscope $end -$var wire 34 sPsi" imm $end +$var wire 34 GBP=# imm $end $upscope $end -$var string 1 -|fxi output_integer_mode $end +$var string 1 V9g+: output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 6oWcd \[0] $end -$var wire 1 Q>S5K \[1] $end -$var wire 1 9;h'R \[2] $end -$var wire 1 rlO"u \[3] $end +$var wire 1 z-ZYh \[0] $end +$var wire 1 !$70f \[1] $end +$var wire 1 {M,9L \[2] $end +$var wire 1 |Qmtn \[3] $end $upscope $end $upscope $end $upscope $end $scope struct LogicalI $end $scope struct alu_common $end $scope struct common $end -$var string 0 w2i|3 prefix_pad $end +$var string 0 1%t2j prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 N9;^T adj_value $end -$var string 1 gvQ(M config $end +$var wire 3 4UYzc adj_value $end +$var string 1 N!N$L config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 z.UKo value $end -$var string 1 d\4jg config $end +$var wire 4 PL1n; value $end +$var string 1 %,.t1 config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 E'\so \[0] $end +$var wire 7 4tao> \[0] $end $upscope $end -$var wire 34 F;FJ? imm $end +$var wire 34 TdVa( imm $end $upscope $end -$var string 1 67<=e output_integer_mode $end +$var string 1 8xZ+? output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 NV311 \[0] $end -$var wire 1 ,Fev@ \[1] $end -$var wire 1 =N-}| \[2] $end -$var wire 1 @H1X; \[3] $end +$var wire 1 :,;bn \[0] $end +$var wire 1 bO2,? \[1] $end +$var wire 1 $'?mR \[2] $end +$var wire 1 H3&*T \[3] $end $upscope $end $upscope $end $upscope $end $scope struct ShiftRotate $end $scope struct alu_common $end $scope struct common $end -$var string 0 D0\W0 prefix_pad $end +$var string 0 aK\r- prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 lgRf& adj_value $end -$var string 1 VF>;p config $end +$var wire 3 c;]X: adj_value $end +$var string 1 3m`rW config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 WfylE value $end -$var string 1 #Vv@m config $end +$var wire 4 2Hd\+ value $end +$var string 1 !U}MQ config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 >FwDD \[0] $end -$var wire 7 7-=ei \[1] $end -$var wire 7 /:8Q1 \[2] $end +$var wire 7 ^'3#Y \[0] $end +$var wire 7 F0ah~ \[1] $end +$var wire 7 @mWc| \[2] $end $upscope $end $scope struct imm $end $scope struct shift_rotate_amount $end -$var string 1 ES=8A \$tag $end -$var wire 6 Ya(=, HdlSome $end +$var string 1 pyQf< \$tag $end +$var wire 6 Mf}"1 HdlSome $end $upscope $end -$var wire 1 c]8(3 shift_rotate_right $end +$var wire 1 Di-yd shift_rotate_right $end $scope struct dest_logic_op $end -$var string 1 }Xbo$ \$tag $end +$var string 1 *ECrH \$tag $end $scope struct HdlSome $end -$var wire 6 ,Nixl rotated_output_start $end -$var wire 6 ($mtT rotated_output_len $end -$var wire 1 6w@dS fallback_is_src2 $end +$var wire 6 T-eB3 rotated_output_start $end +$var wire 6 3UK-V rotated_output_len $end +$var wire 1 %|A)e fallback_is_src2 $end $upscope $end $upscope $end $upscope $end $upscope $end -$var string 1 EKQF] output_integer_mode $end +$var string 1 rG.-, output_integer_mode $end $upscope $end -$var string 1 `bh*_ mode $end +$var string 1 =?~c: mode $end $upscope $end $scope struct Compare $end $scope struct common $end -$var string 0 {9Lg$ prefix_pad $end +$var string 0 HtR]@ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 e&cM adj_value $end -$var string 1 Z'Mng config $end +$var wire 3 vK5MO adj_value $end +$var string 1 T?^mt config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 >,PT2 value $end -$var string 1 RnJ*& config $end +$var wire 4 ;F|s= value $end +$var string 1 UokO{ config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 OT_Q# \[0] $end -$var wire 7 w"vJq \[1] $end +$var wire 7 *kE&> \[0] $end +$var wire 7 nauI4 \[1] $end $upscope $end -$var wire 34 y67vQ imm $end +$var wire 34 `6k&. imm $end $upscope $end -$var string 1 Y@ZT6 compare_mode $end +$var string 1 []~,Y compare_mode $end $upscope $end $scope struct CompareI $end $scope struct common $end -$var string 0 R86;n prefix_pad $end +$var string 0 9hr3r prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 79G'` adj_value $end -$var string 1 n;_Zp config $end +$var wire 3 WN]D: adj_value $end +$var string 1 $|O=c config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 JZTEb value $end -$var string 1 (\OwC config $end +$var wire 4 Do[v_ value $end +$var string 1 60)m" config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 Oi$;> \[0] $end +$var wire 7 Mc(T# \[0] $end $upscope $end -$var wire 34 mGr9D imm $end +$var wire 34 =La9s imm $end $upscope $end -$var string 1 >]6mj compare_mode $end +$var string 1 _zsO} compare_mode $end $upscope $end $scope struct Branch $end $scope struct common $end -$var string 0 pyr*t prefix_pad $end +$var string 0 BS)Wt prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 :0&7< adj_value $end -$var string 1 MFE$| config $end +$var wire 3 Hg%`D adj_value $end +$var string 1 UOU9u config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 d(M4f value $end -$var string 1 a't(? config $end +$var wire 4 &OrI| value $end +$var string 1 EYZ$A config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 5QS!S \[0] $end -$var wire 7 "I9av \[1] $end -$var wire 7 _{A^} \[2] $end +$var wire 7 GNhZj \[0] $end +$var wire 7 .PD=R \[1] $end +$var wire 7 7tgJR \[2] $end $upscope $end -$var wire 26 *8z82 imm $end +$var wire 26 gn4!j imm $end $upscope $end -$var wire 1 #W_ey invert_src0_cond $end -$var string 1 G>,DG src0_cond_mode $end -$var wire 1 t]j-M invert_src2_eq_zero $end -$var wire 1 @9Th7 pc_relative $end -$var wire 1 :@CpG is_call $end -$var wire 1 1t3$W is_ret $end +$var wire 1 ]?L-J invert_src0_cond $end +$var string 1 '-L5Z src0_cond_mode $end +$var wire 1 dm'qM invert_src2_eq_zero $end +$var wire 1 iH0;i pc_relative $end +$var wire 1 }5`yD is_call $end +$var wire 1 Y(xel is_ret $end $upscope $end $scope struct BranchI $end $scope struct common $end -$var string 0 KXnw{ prefix_pad $end +$var string 0 2j;F# prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 :y{jP adj_value $end -$var string 1 6_FrO config $end +$var wire 3 <3&o{ adj_value $end +$var string 1 VXlyM config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 6:bd[ value $end -$var string 1 %k*dK config $end +$var wire 4 `KhXe value $end +$var string 1 2SI:6 config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 ~jyo< \[0] $end -$var wire 7 S[8xx \[1] $end +$var wire 7 J&bcl \[0] $end +$var wire 7 J7bMW \[1] $end $upscope $end -$var wire 34 r9u&4 imm $end +$var wire 34 L)/~: imm $end $upscope $end -$var wire 1 Q2m' invert_src0_cond $end -$var string 1 #=);e src0_cond_mode $end -$var wire 1 -aHy$ invert_src2_eq_zero $end -$var wire 1 1ZbWS pc_relative $end -$var wire 1 T.MO] is_call $end -$var wire 1 l[RV% is_ret $end +$var wire 1 qTLL~ invert_src0_cond $end +$var string 1 PYr8_ src0_cond_mode $end +$var wire 1 Q,I4A invert_src2_eq_zero $end +$var wire 1 (^ad; pc_relative $end +$var wire 1 PNX:n is_call $end +$var wire 1 }m9o( is_ret $end $upscope $end $scope struct ReadSpecial $end $scope struct common $end -$var string 0 wXkp, prefix_pad $end +$var string 0 ov~FY prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 I}bAd adj_value $end -$var string 1 :CGI_ config $end +$var wire 3 +%u8S adj_value $end +$var string 1 @3{=5 config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 p'3Bg value $end -$var string 1 2J'1w config $end +$var wire 4 w+b0u value $end +$var string 1 ?D:k@ config $end $upscope $end $upscope $end $scope struct src $end $upscope $end -$var string 1 9)f6E imm $end +$var string 1 OI&:* imm $end $upscope $end $upscope $end $upscope $end $scope struct TransformedMove $end -$var string 1 Sq%D, \$tag $end +$var string 1 yK$C< \$tag $end $scope struct ReadL2Reg $end $scope struct common $end -$var wire 3 ^qdk4 prefix_pad $end +$var wire 3 .LF;N prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 `XBe' adj_value $end -$var string 1 |vWZ% config $end +$var wire 3 dyBI< adj_value $end +$var string 1 YMh,y config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 Salbx value $end -$var string 1 `P@5s config $end +$var wire 4 >L(9z value $end +$var string 1 &9%kA config $end $upscope $end $upscope $end $scope struct src $end $upscope $end $scope struct imm $end -$var wire 8 `HA|' value $end +$var wire 8 8d>S1 value $end $upscope $end $upscope $end $upscope $end $scope struct WriteL2Reg $end $scope struct common $end -$var wire 3 ;b%5v prefix_pad $end +$var wire 3 Dkv_< prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 KHf-Y adj_value $end -$var string 1 GSrEp config $end +$var wire 3 q27kl adj_value $end +$var string 1 R~UK5 config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 Ghv%h value $end -$var string 1 (g`f_ config $end +$var wire 4 R+JSz value $end +$var string 1 IJz0u config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 BGss/ \[0] $end +$var wire 7 /U8+( \[0] $end $upscope $end $scope struct imm $end -$var wire 8 U#N2\ value $end +$var wire 8 euR(] value $end $upscope $end $upscope $end $upscope $end $upscope $end $scope struct LoadStore $end -$var string 1 S'cKn \$tag $end +$var string 1 zwMR* \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 .){3^ prefix_pad $end +$var wire 3 a7Z34 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 JrUXq adj_value $end -$var string 1 wEWa4 config $end +$var wire 3 N~"3y adj_value $end +$var string 1 kxJ prefix_pad $end +$var wire 3 dWYPP prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 90J+V adj_value $end -$var string 1 e.Vo1 config $end +$var wire 3 ,'hfW adj_value $end +$var string 1 aFVCw config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 >mY_r value $end -$var string 1 =USwD config $end +$var wire 4 p%PLP value $end +$var string 1 Q;BUM config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 LuE.W \[0] $end -$var wire 7 IT`NN \[1] $end +$var wire 7 ,AQ#^ \[0] $end +$var wire 7 mHQy[ \[1] $end $upscope $end -$var wire 34 73]@& imm $end +$var wire 34 m>x7" imm $end $upscope $end -$var string 1 :T!Xy width $end -$var string 1 qVL?[dF size_in_bytes $end +$var wire 1 C0O|* is_first_mop_in_insn $end +$scope struct mop $end +$var string 1 ,)" imm $end +$upscope $end +$var string 1 yM}[a output_integer_mode $end +$upscope $end +$var wire 1 +e*<} invert_src0 $end +$var wire 1 d%&`E src1_is_carry_in $end +$var wire 1 L@;wI invert_carry_in $end +$var wire 1 T?tdw add_pc $end +$upscope $end +$scope struct AddSubI $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 BTkjc prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 :OiER adj_value $end +$var string 1 2N,;l config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 :.opf value $end +$var string 1 {W\uJ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 @hGR( \[0] $end +$var wire 7 x^SZ6 \[1] $end +$upscope $end +$var wire 34 ;Q:Ic imm $end +$upscope $end +$var string 1 ]4BA< output_integer_mode $end +$upscope $end +$var wire 1 4<3XP invert_src0 $end +$var wire 1 e1Xo/ src1_is_carry_in $end +$var wire 1 DOG[a invert_carry_in $end +$var wire 1 jCQXL add_pc $end +$upscope $end +$scope struct LogicalFlags $end +$scope struct common $end +$var string 0 >}*qk prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 Aq78/ adj_value $end +$var string 1 %B$Mb config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 +U}/' value $end +$var string 1 THb*u range $end +$upscope $end +$scope struct dest_count $end +$var wire 4 Xy8}E value $end +$var string 1 |T(=^ range $end +$upscope $end +$upscope $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 11IPQ \[0] $end +$var wire 1 "3Kp \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct Logical $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 N';0| prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 (:S=c adj_value $end +$var string 1 N:qq% config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 J*I|< value $end +$var string 1 PsXs[ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 l!A~' \[0] $end +$var wire 7 ibP5N \[1] $end +$upscope $end +$var wire 34 [S,/K imm $end +$upscope $end +$var string 1 1oeWN output_integer_mode $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 m]iR6 \[0] $end +$var wire 1 WZT5B \[1] $end +$var wire 1 ^ \[2] $end +$var wire 1 5XgS` \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct ShiftRotate $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 qV6K6 prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 DeL)W adj_value $end +$var string 1 Giq&t config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 9#9%H value $end +$var string 1 G;Pi/ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 (8/)1 \[0] $end +$var wire 7 _>xIs \[1] $end +$var wire 7 Zap2# \[2] $end +$upscope $end +$scope struct imm $end +$scope struct shift_rotate_amount $end +$var string 1 *1VY' \$tag $end +$var wire 6 }QHl= HdlSome $end +$upscope $end +$var wire 1 o"d4H shift_rotate_right $end +$scope struct dest_logic_op $end +$var string 1 ^/N8S \$tag $end +$scope struct HdlSome $end +$var wire 6 DDbT^ rotated_output_start $end +$var wire 6 ,$?hn rotated_output_len $end +$var wire 1 I"(>Y fallback_is_src2 $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$var string 1 +OUit output_integer_mode $end +$upscope $end +$var string 1 F"/%U mode $end +$upscope $end +$scope struct Compare $end +$scope struct common $end +$var string 0 hwu~w prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 lm!8m adj_value $end +$var string 1 M%:4R config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 tk"+A value $end +$var string 1 n09j[ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 A4W>N \[0] $end +$var wire 7 WAE7: \[1] $end +$upscope $end +$var wire 34 #YdXT imm $end +$upscope $end +$var string 1 j~ilT compare_mode $end +$upscope $end +$scope struct CompareI $end +$scope struct common $end +$var string 0 0ChjY prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 #**`C adj_value $end +$var string 1 lAoUw config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 .Q\$j value $end +$var string 1 &Bv<3 config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 ,g4_m \[0] $end +$upscope $end +$var wire 34 oJTHi imm $end +$upscope $end +$var string 1 /Rd]Q compare_mode $end +$upscope $end +$scope struct Branch $end +$scope struct common $end +$var string 0 S4##A prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 WqFGd adj_value $end +$var string 1 dNC[h config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 u]U06 value $end +$var string 1 z~6Gi config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 ^OM{\ \[0] $end +$var wire 7 YGcK? \[1] $end +$var wire 7 (#nmX \[2] $end +$upscope $end +$var wire 26 +gJjj imm $end +$upscope $end +$var wire 1 (y\Q7 invert_src0_cond $end +$var string 1 Q68Fi src0_cond_mode $end +$var wire 1 5C/b. invert_src2_eq_zero $end +$var wire 1 7&{>U pc_relative $end +$var wire 1 j8~u] is_call $end +$var wire 1 Qthh. is_ret $end +$upscope $end +$scope struct BranchI $end +$scope struct common $end +$var string 0 )Wlfi prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 9S\,q adj_value $end +$var string 1 iSoZJ config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 !>paD value $end +$var string 1 \C1Yt config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 4,LIq \[0] $end +$var wire 7 B:TV0 \[1] $end +$upscope $end +$var wire 34 _/bAq imm $end +$upscope $end +$var wire 1 aIBb= invert_src0_cond $end +$var string 1 !jq9^ src0_cond_mode $end +$var wire 1 XC0Fj invert_src2_eq_zero $end +$var wire 1 B_HFB pc_relative $end +$var wire 1 +~l}K is_call $end +$var wire 1 ^WPgI is_ret $end +$upscope $end +$scope struct ReadSpecial $end +$scope struct common $end +$var string 0 `,e/: prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 [MFit adj_value $end +$var string 1 6MfYh config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 ^W`2q value $end +$var string 1 8NeoH config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$var string 1 5VApm imm $end +$upscope $end +$upscope $end +$upscope $end +$scope struct TransformedMove $end +$var string 1 >;((h \$tag $end +$scope struct ReadL2Reg $end +$scope struct common $end +$var wire 3 Xz1eH prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 n]Up7 adj_value $end +$var string 1 DN9:h config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 /c:]K value $end +$var string 1 PRl+f config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$scope struct imm $end +$var wire 8 gZWR@ value $end +$upscope $end +$upscope $end +$upscope $end +$scope struct WriteL2Reg $end +$scope struct common $end +$var wire 3 ^6q{l prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 8EXM/ adj_value $end +$var string 1 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 g[(5. value $end +$var string 1 (W_|w config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 |oC@' \[0] $end +$upscope $end +$var wire 34 C4vg\ imm $end +$upscope $end +$var string 1 :}ITB width $end +$var string 1 o{DA? conversion $end +$upscope $end +$upscope $end +$scope struct Store $end +$scope struct load_store_common $end +$scope struct common $end +$var wire 3 pV@;n prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 &+~"` adj_value $end +$var string 1 J6rr0 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 mQc8/ value $end +$var string 1 iB4(u config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 lG->` \[0] $end +$var wire 7 nBc[f \[1] $end +$upscope $end +$var wire 34 XRIzz imm $end +$upscope $end +$var string 1 |:7{B width $end +$var string 1 xSY4a conversion $end $upscope $end $upscope $end $upscope $end @@ -29621,50 +30894,108 @@ $upscope $end $upscope $end $scope struct src_values $end $scope struct \[0] $end -$var wire 64 O$hIC int_fp $end +$var wire 64 o{AjW int_fp $end $scope struct flags $end -$var wire 1 %>d6q pwr_ca32_x86_af $end -$var wire 1 vOd]2 pwr_ca_x86_cf $end -$var wire 1 ZE9PC pwr_ov32_x86_df $end -$var wire 1 {)X>k pwr_ov_x86_of $end -$var wire 1 kGO2a pwr_so $end -$var wire 1 q(X1j pwr_cr_eq_x86_zf $end -$var wire 1 8`iH& pwr_cr_gt_x86_pf $end -$var wire 1 ",jYu pwr_cr_lt_x86_sf $end +$var wire 1 ;Uq-A pwr_ca32_x86_af $end +$var wire 1 f8n-Q pwr_ca_x86_cf $end +$var wire 1 28RBt pwr_ov32_x86_df $end +$var wire 1 [V0nd pwr_ov_x86_of $end +$var wire 1 U?b&] pwr_so $end +$var wire 1 *]zR? pwr_cr_eq_x86_zf $end +$var wire 1 BpBOD pwr_cr_gt_x86_pf $end +$var wire 1 Q/O/E pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct \[1] $end -$var wire 64 kxh+h int_fp $end +$var wire 64 Jah%E int_fp $end $scope struct flags $end -$var wire 1 36@ pwr_ca32_x86_af $end +$var wire 1 mRVTa pwr_ca_x86_cf $end +$var wire 1 4L/Ei pwr_ov32_x86_df $end +$var wire 1 g!^"^ pwr_ov_x86_of $end +$var wire 1 H96*( pwr_so $end +$var wire 1 5TyNf pwr_cr_eq_x86_zf $end +$var wire 1 _A^X1 pwr_cr_gt_x86_pf $end +$var wire 1 D_.0: pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var string 1 Y%W<5 config $end +$var string 1 =(Q{Q config $end $upscope $end $upscope $end -$var wire 1 lIN3u ready $end +$scope struct is_no_longer_speculative $end +$var string 1 \j3ql \$tag $end +$scope struct HdlSome $end +$var wire 16 ,EmuS id $end +$var string 1 Sa,jH config $end $upscope $end +$upscope $end +$scope struct cant_cause_cancel $end +$var string 1 b&/Ct \$tag $end +$scope struct HdlSome $end +$var wire 16 |pGpG id $end +$var string 1 Qgpwd config $end +$upscope $end +$upscope $end +$scope struct output_ready $end +$var string 1 jKoZE \$tag $end +$scope struct HdlSome $end +$var wire 16 FzvmA id $end +$scope struct dest_value $end +$var wire 64 /o`t` int_fp $end +$scope struct flags $end +$var wire 1 _%nH: pwr_ca32_x86_af $end +$var wire 1 ),jPs pwr_ca_x86_cf $end +$var wire 1 A@vqf pwr_ov32_x86_df $end +$var wire 1 EGJvs pwr_ov_x86_of $end +$var wire 1 "MdQ7 pwr_so $end +$var wire 1 lQQI[ pwr_cr_eq_x86_zf $end +$var wire 1 L>/;( pwr_cr_gt_x86_pf $end +$var wire 1 UW~V- pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct predictor_op $end +$scope struct call_stack_op $end +$var string 1 wuO#2 \$tag $end +$var wire 64 uk1,# Push $end +$upscope $end +$scope struct cond_br_taken $end +$var string 1 _+^Po \$tag $end +$var wire 1 NLDTJ HdlSome $end +$upscope $end +$var string 1 )WSbi config $end +$upscope $end +$upscope $end +$upscope $end +$scope struct finish_cause_cancel $end +$var string 1 l pwr_ca32_x86_af $end -$var wire 1 |qnK2 pwr_ca_x86_cf $end -$var wire 1 oGC+g pwr_ov32_x86_df $end -$var wire 1 /w[x2 pwr_ov_x86_of $end -$var wire 1 )-1[~ pwr_so $end -$var wire 1 Z|F+W pwr_cr_eq_x86_zf $end -$var wire 1 C3Auw pwr_cr_gt_x86_pf $end -$var wire 1 c;%"| pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct predictor_op $end -$scope struct call_stack_op $end -$var string 1 Da!uq \$tag $end -$var wire 64 T=.CP Push $end -$upscope $end -$scope struct cond_br_taken $end -$var string 1 Ld[Z` \$tag $end -$var wire 1 L+0z config $end -$upscope $end -$upscope $end -$var string 1 k(n74 config $end -$upscope $end -$upscope $end -$var wire 1 N,UY= ready $end -$upscope $end $var string 1 (xcO& config $end $upscope $end $scope struct u3_LoadStore $end -$scope struct start $end +$scope struct enqueue $end $scope struct data $end -$var string 1 `~abz \$tag $end +$var string 1 @a:}a \$tag $end $scope struct HdlSome $end $scope struct mop $end -$var wire 8 Nfy_/ fetch_block_id $end -$var wire 16 Z"QXv id $end -$var wire 64 `=rQp pc $end -$var wire 64 Sr(_e predicted_next_pc $end -$var wire 4 EQG5u size_in_bytes $end -$var wire 1 4i"0\ is_first_mop_in_insn $end +$var wire 8 ck@eh fetch_block_id $end +$var wire 16 4rI|P id $end +$var wire 64 ak:L> pc $end +$var wire 64 @>$7) predicted_next_pc $end +$var wire 4 ?E'qI size_in_bytes $end +$var wire 1 og~1> is_first_mop_in_insn $end $scope struct mop $end -$var string 1 Rz2_# \$tag $end +$var string 1 lvD"q \$tag $end $scope struct AluBranch $end -$var string 1 %2|wF \$tag $end +$var string 1 (.R$r \$tag $end $scope struct AddSub $end $scope struct alu_common $end $scope struct common $end -$var string 0 zKO9~ prefix_pad $end +$var string 0 y.EEd prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 _srr\ adj_value $end -$var string 1 'NhwJ config $end +$var wire 3 pfayd adj_value $end +$var string 1 X\@2& config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 Kc4s_ value $end -$var string 1 Z2=ZV config $end +$var wire 4 Oa~d4 value $end +$var string 1 txz\6 config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 f%+e6 \[0] $end -$var wire 7 o;0+G \[1] $end -$var wire 7 )7V4k \[2] $end +$var wire 7 e*[Uq \[0] $end +$var wire 7 *c.=A \[1] $end +$var wire 7 1'|y+ \[2] $end $upscope $end -$var wire 26 9dybB imm $end +$var wire 26 0_X)K imm $end $upscope $end -$var string 1 'vaxF output_integer_mode $end +$var string 1 WZ$#^ output_integer_mode $end $upscope $end -$var wire 1 l:.Ac invert_src0 $end -$var wire 1 EkJl) src1_is_carry_in $end -$var wire 1 '`ju\ invert_carry_in $end -$var wire 1 6Dz#R add_pc $end +$var wire 1 #.[<> invert_src0 $end +$var wire 1 -/E<4 src1_is_carry_in $end +$var wire 1 m]3V] invert_carry_in $end +$var wire 1 IYKn# add_pc $end $upscope $end $scope struct AddSubI $end $scope struct alu_common $end $scope struct common $end -$var string 0 >xCCr prefix_pad $end +$var string 0 )1PW~ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 k!QDF adj_value $end -$var string 1 77R%= config $end +$var wire 3 Dfchk adj_value $end +$var string 1 1`%VU config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 FUH,S value $end -$var string 1 xJ&i- config $end +$var wire 4 t3vX" value $end +$var string 1 Vscjq config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 GkQv\ \[0] $end -$var wire 7 ArAdw \[1] $end +$var wire 7 {}v": \[0] $end +$var wire 7 e48]; \[1] $end $upscope $end -$var wire 34 Xz)LV imm $end +$var wire 34 Om=R2 imm $end $upscope $end -$var string 1 pBEi< output_integer_mode $end +$var string 1 )^O6a output_integer_mode $end $upscope $end -$var wire 1 {x+V/ invert_src0 $end -$var wire 1 ~fJ02 src1_is_carry_in $end -$var wire 1 =#2'< invert_carry_in $end -$var wire 1 ?P_@z add_pc $end +$var wire 1 GdJpG invert_src0 $end +$var wire 1 +FJtl src1_is_carry_in $end +$var wire 1 EORO- invert_carry_in $end +$var wire 1 3[#2q add_pc $end $upscope $end $scope struct LogicalFlags $end $scope struct common $end -$var string 0 4vv*n prefix_pad $end +$var string 0 XP3Hh prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 zR"7[ adj_value $end -$var string 1 WDe4| config $end +$var wire 3 pU[WY adj_value $end +$var string 1 o0icp config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 iRGCU value $end -$var string 1 2Z<{z config $end +$var wire 4 `9-7* value $end +$var string 1 +)cc\ config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 DWKXz \[0] $end -$var wire 7 0~hP? \[1] $end -$var wire 7 B(YCL \[2] $end +$var wire 7 `OY#I \[0] $end +$var wire 7 s9Del \[1] $end +$var wire 7 )lreY \[2] $end $upscope $end $scope struct imm $end $scope struct src0_start $end -$var wire 3 Rl}#t value $end -$var string 1 s*-0r range $end +$var wire 3 v;(dj value $end +$var string 1 lGy&e= \[1] $end -$var wire 1 M#jy) \[2] $end -$var wire 1 pV*YR \[3] $end +$var wire 1 bZm&. \[0] $end +$var wire 1 #a,_) \[1] $end +$var wire 1 pBI29 \[2] $end +$var wire 1 :'qt+ \[3] $end $upscope $end $upscope $end $upscope $end $scope struct Logical $end $scope struct alu_common $end $scope struct common $end -$var string 0 s0g:; prefix_pad $end +$var string 0 _V;O> prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 [rp,_ adj_value $end -$var string 1 {Y<=@ config $end +$var wire 3 o8[nM adj_value $end +$var string 1 M&(u' config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 |-Hl) value $end -$var string 1 >s+\8 config $end +$var wire 4 ft?eF value $end +$var string 1 7QL|< config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 f3E$U \[0] $end -$var wire 7 p!TmQ \[1] $end +$var wire 7 Q[`GK \[0] $end +$var wire 7 %>NWw \[1] $end $upscope $end -$var wire 34 nC_y@ imm $end +$var wire 34 .&rua imm $end $upscope $end -$var string 1 8?]WE output_integer_mode $end +$var string 1 T;W:h output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 o}-o$ \[0] $end -$var wire 1 wl+&m \[1] $end -$var wire 1 l|I+M \[2] $end -$var wire 1 Ib|#y \[3] $end +$var wire 1 1`*m\ \[0] $end +$var wire 1 `Gz>7 \[1] $end +$var wire 1 4q imm $end $upscope $end -$var string 1 jT{gO output_integer_mode $end +$var string 1 ~)&}( output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 <-";I \[0] $end -$var wire 1 7{4xq \[1] $end -$var wire 1 Z?b5( \[2] $end -$var wire 1 D?Sb. \[3] $end +$var wire 1 w]b1V \[0] $end +$var wire 1 `HM_4 \[1] $end +$var wire 1 t\xN6 \[2] $end +$var wire 1 ^"$TA \[3] $end $upscope $end $upscope $end $upscope $end $scope struct ShiftRotate $end $scope struct alu_common $end $scope struct common $end -$var string 0 p.X$T prefix_pad $end +$var string 0 CI$BP prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 "R+BF adj_value $end -$var string 1 uG%2V config $end +$var wire 3 zV^l$ adj_value $end +$var string 1 o@N;x config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 lYz-E value $end -$var string 1 jIMLv config $end +$var wire 4 50ZOV value $end +$var string 1 bamy| config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 0~{Ld \[0] $end -$var wire 7 HcSvH \[1] $end -$var wire 7 .q-fO \[2] $end +$var wire 7 krOy> \[0] $end +$var wire 7 Zi8HQ \[1] $end +$var wire 7 (4T0D \[2] $end $upscope $end $scope struct imm $end $scope struct shift_rotate_amount $end -$var string 1 M?/lx \$tag $end -$var wire 6 zt!P; HdlSome $end +$var string 1 G5Xt& \$tag $end +$var wire 6 }{I^X HdlSome $end $upscope $end -$var wire 1 fX^Pj shift_rotate_right $end +$var wire 1 bQ|jI shift_rotate_right $end $scope struct dest_logic_op $end -$var string 1 +N"AI \$tag $end +$var string 1 q<'`l \$tag $end $scope struct HdlSome $end -$var wire 6 f(bQ@ rotated_output_start $end -$var wire 6 ?^h"q rotated_output_len $end -$var wire 1 YamXq fallback_is_src2 $end +$var wire 6 OaI~& rotated_output_start $end +$var wire 6 &}qEw rotated_output_len $end +$var wire 1 if"O& fallback_is_src2 $end $upscope $end $upscope $end $upscope $end $upscope $end -$var string 1 m&|GZ output_integer_mode $end +$var string 1 k>c>' output_integer_mode $end $upscope $end -$var string 1 5&M90 mode $end +$var string 1 hD~;f mode $end $upscope $end $scope struct Compare $end $scope struct common $end -$var string 0 FmR2% prefix_pad $end +$var string 0 7mHt\ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 ()^]$ adj_value $end -$var string 1 :E}"l config $end +$var wire 3 ?uct: adj_value $end +$var string 1 .r7p~ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 C_%M[ value $end -$var string 1 cb6nQ config $end +$var wire 4 8?5_q value $end +$var string 1 SXlYO config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 5{OP; \[0] $end -$var wire 7 +;B|F \[1] $end +$var wire 7 vFC(* \[0] $end +$var wire 7 F*[*f \[1] $end $upscope $end -$var wire 34 U3VF| imm $end +$var wire 34 ULjET imm $end $upscope $end -$var string 1 Q?Fgz compare_mode $end +$var string 1 $op8_ compare_mode $end $upscope $end $scope struct CompareI $end $scope struct common $end -$var string 0 , prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 p/|6p adj_value $end -$var string 1 5ptB_ config $end +$var wire 3 SU$Vk adj_value $end +$var string 1 }e\k, config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 BI2AM value $end -$var string 1 ;(pdg config $end +$var wire 4 *kfe, value $end +$var string 1 oIfu; config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 f9yLp \[0] $end +$var wire 7 QN/HH \[0] $end $upscope $end -$var wire 34 <:f'o imm $end +$var wire 34 bia5L imm $end $upscope $end -$var string 1 {38B( compare_mode $end +$var string 1 VtOfE compare_mode $end $upscope $end $scope struct Branch $end $scope struct common $end -$var string 0 B/+\f prefix_pad $end +$var string 0 YcV6/ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 'mZ2c adj_value $end -$var string 1 ?h`f/ config $end +$var wire 3 :=Cq0 adj_value $end +$var string 1 _g\o8 config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 3H1'^ value $end -$var string 1 Pq3O= config $end +$var wire 4 ov+9` value $end +$var string 1 23L[L config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 xfDL; \[0] $end -$var wire 7 bQ2k[ \[1] $end -$var wire 7 +cl}c \[2] $end +$var wire 7 p:A&% \[0] $end +$var wire 7 w0L(n \[1] $end +$var wire 7 +Bu`| \[2] $end $upscope $end -$var wire 26 UG'>S imm $end +$var wire 26 n1^GQ imm $end $upscope $end -$var wire 1 Rs*-X invert_src0_cond $end -$var string 1 Hx.*b src0_cond_mode $end -$var wire 1 ,MQ&^ invert_src2_eq_zero $end -$var wire 1 0NPA} pc_relative $end -$var wire 1 Buw(J is_call $end -$var wire 1 yDQ(w is_ret $end +$var wire 1 obP/v invert_src0_cond $end +$var string 1 S7GGZ src0_cond_mode $end +$var wire 1 cgW71 invert_src2_eq_zero $end +$var wire 1 M;{0] pc_relative $end +$var wire 1 {YS~y is_call $end +$var wire 1 +cKqW is_ret $end $upscope $end $scope struct BranchI $end $scope struct common $end -$var string 0 `G~i% prefix_pad $end +$var string 0 gnput prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 Z4hLQ adj_value $end -$var string 1 7$xy; config $end +$var wire 3 &%x.Z adj_value $end +$var string 1 56[hD config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 [.Y:N value $end -$var string 1 <0j3* config $end +$var wire 4 CFq.z value $end +$var string 1 >v}/0 config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 59k<} \[0] $end -$var wire 7 ~b0gc \[1] $end +$var wire 7 QT/}s \[0] $end +$var wire 7 1JI\O \[1] $end $upscope $end -$var wire 34 ]s$?X imm $end +$var wire 34 Dy|*^ imm $end $upscope $end -$var wire 1 [~!1s invert_src0_cond $end -$var string 1 BQR=& src0_cond_mode $end -$var wire 1 u`Cy? invert_src2_eq_zero $end -$var wire 1 Y&Y`k pc_relative $end -$var wire 1 6fMv, is_call $end -$var wire 1 ~hJ;a is_ret $end +$var wire 1 "t~Xg invert_src0_cond $end +$var string 1 5Ej+U src0_cond_mode $end +$var wire 1 vJu+7 invert_src2_eq_zero $end +$var wire 1 uhXN~ pc_relative $end +$var wire 1 ZkYF# is_call $end +$var wire 1 -Ajzh is_ret $end $upscope $end $scope struct ReadSpecial $end $scope struct common $end -$var string 0 +w4kQ prefix_pad $end +$var string 0 m9":2 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 qZy~1 adj_value $end -$var string 1 B){L^ config $end +$var wire 3 BSxks adj_value $end +$var string 1 5 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 ?53yR adj_value $end -$var string 1 %Jr'\ config $end +$var wire 3 ]@)%< adj_value $end +$var string 1 <0Ahz config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 !7>-F value $end -$var string 1 J1#>H config $end +$var wire 4 FEL/2 value $end +$var string 1 iI=M config $end $upscope $end $upscope $end $scope struct src $end $upscope $end $scope struct imm $end -$var wire 8 R!+vv value $end +$var wire 8 RDG@% value $end $upscope $end $upscope $end $upscope $end $scope struct WriteL2Reg $end $scope struct common $end -$var wire 3 5K=,H prefix_pad $end +$var wire 3 ;u!*b prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 ?D1!P adj_value $end -$var string 1 %~25j config $end +$var wire 3 tRFnH adj_value $end +$var string 1 Izru# config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 lZdKq value $end -$var string 1 &5W1] config $end +$var wire 4 ~E8x2 value $end +$var string 1 J/O[z config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 r6xKd \[0] $end +$var wire 7 2oi3Z \[0] $end $upscope $end $scope struct imm $end -$var wire 8 @v4gv value $end +$var wire 8 #IF value $end $upscope $end $upscope $end $upscope $end $upscope $end $scope struct LoadStore $end -$var string 1 UP\M\ \$tag $end +$var string 1 K:_W] \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 @HS adj_value $end -$var string 1 1X8,] config $end +$var wire 3 $Pz+f adj_value $end +$var string 1 ,*f7u config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 dI+M< value $end -$var string 1 v-&:n config $end +$var wire 4 BZqq7 value $end +$var string 1 .T3Fj config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 9c!EF \[0] $end -$var wire 7 x:oJZ \[1] $end +$var wire 7 {\ok+ \[0] $end +$var wire 7 nI1%n \[1] $end $upscope $end -$var wire 34 /IlZk imm $end +$var wire 34 #gkH} imm $end $upscope $end -$var string 1 !Vjy] width $end -$var string 1 2i*$N conversion $end +$var string 1 ?\a<@ width $end +$var string 1 IaNhK conversion $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$var string 1 ;JN_2 config $end +$upscope $end +$upscope $end +$var wire 1 Uv[i; ready $end +$upscope $end +$scope struct inputs_ready $end +$var string 1 e2InP \$tag $end +$scope struct HdlSome $end +$scope struct mop $end +$var wire 8 [qb%< fetch_block_id $end +$var wire 16 W\wJR id $end +$var wire 64 ,($>= pc $end +$var wire 64 8^v[N predicted_next_pc $end +$var wire 4 Uo0#B size_in_bytes $end +$var wire 1 <(bo` is_first_mop_in_insn $end +$scope struct mop $end +$var string 1 56-k+ \$tag $end +$scope struct AluBranch $end +$var string 1 M'ntL \$tag $end +$scope struct AddSub $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 K?)E_ prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 gkX*9 adj_value $end +$var string 1 EKGb; config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 ""}la value $end +$var string 1 8P<&[ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 >qj?1 \[0] $end +$var wire 7 Vk"[W \[1] $end +$var wire 7 eQwV[ \[2] $end +$upscope $end +$var wire 26 4a1`I imm $end +$upscope $end +$var string 1 s9wOt output_integer_mode $end +$upscope $end +$var wire 1 Luk:m invert_src0 $end +$var wire 1 oP70] src1_is_carry_in $end +$var wire 1 iiS^& invert_carry_in $end +$var wire 1 tjA^h add_pc $end +$upscope $end +$scope struct AddSubI $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 U7TmS prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 ,4$(m adj_value $end +$var string 1 !Nv:/ config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 MiPQ- value $end +$var string 1 dH*2+ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 r%'~J \[0] $end +$var wire 7 *L[h~ \[1] $end +$upscope $end +$var wire 34 4[!Kv imm $end +$upscope $end +$var string 1 C3+>< output_integer_mode $end +$upscope $end +$var wire 1 *LTna invert_src0 $end +$var wire 1 3d=#$ \[0] $end +$upscope $end +$var wire 34 Ul}ik imm $end +$upscope $end +$var string 1 YM%.H output_integer_mode $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 NS-Sa \[0] $end +$var wire 1 )~M6K \[1] $end +$var wire 1 !2.V| \[2] $end +$var wire 1 8GR!8 \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct ShiftRotate $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 adj_value $end +$var string 1 ECAz4 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 ~Q!~' value $end +$var string 1 Iv|~% config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 ,kT.K \[0] $end +$var wire 7 9dA4_ \[1] $end +$var wire 7 f&`w< \[2] $end +$upscope $end +$scope struct imm $end +$scope struct shift_rotate_amount $end +$var string 1 [TBuR \$tag $end +$var wire 6 3@E*t HdlSome $end +$upscope $end +$var wire 1 ;<]po shift_rotate_right $end +$scope struct dest_logic_op $end +$var string 1 (rxrF \$tag $end +$scope struct HdlSome $end +$var wire 6 ,O(%Y rotated_output_start $end +$var wire 6 ~:GCy rotated_output_len $end +$var wire 1 k:a#H fallback_is_src2 $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$var string 1 {2nSr output_integer_mode $end +$upscope $end +$var string 1 viPM8 mode $end +$upscope $end +$scope struct Compare $end +$scope struct common $end +$var string 0 "yiF^ prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 Z;k|n adj_value $end +$var string 1 qEE,8 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 Q?YZI value $end +$var string 1 HS'#C config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 Y!Zka \[0] $end +$var wire 7 'FA&q \[1] $end +$upscope $end +$var wire 34 GcfeE imm $end +$upscope $end +$var string 1 JDQBG compare_mode $end +$upscope $end +$scope struct CompareI $end +$scope struct common $end +$var string 0 sC5;& prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 k3Box adj_value $end +$var string 1 LP%Cf config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 *oJnQ value $end +$var string 1 DlH{| config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 Gg+j' \[0] $end +$upscope $end +$var wire 34 $?>Op imm $end +$upscope $end +$var string 1 EnKft compare_mode $end +$upscope $end +$scope struct Branch $end +$scope struct common $end +$var string 0 (-KlW prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 YGuK' adj_value $end +$var string 1 v,~c2 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 GL,KO value $end +$var string 1 z.0[& config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 $E&7^ \[0] $end +$var wire 7 9!s[| \[1] $end +$var wire 7 sdq?( \[2] $end +$upscope $end +$var wire 26 oz%iQ imm $end +$upscope $end +$var wire 1 '"5n$ invert_src0_cond $end +$var string 1 !S(zx src0_cond_mode $end +$var wire 1 %pe1P invert_src2_eq_zero $end +$var wire 1 XyEc~ pc_relative $end +$var wire 1 3!b1$ is_call $end +$var wire 1 7r|hj is_ret $end +$upscope $end +$scope struct BranchI $end +$scope struct common $end +$var string 0 4la"m prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 (Od4c adj_value $end +$var string 1 Ajxjm config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 kDyM+ value $end +$var string 1 zq^Bz config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 bsz[F \[0] $end +$var wire 7 !9~F~ \[1] $end +$upscope $end +$var wire 34 }nFsD imm $end +$upscope $end +$var wire 1 i^u- invert_src0_cond $end +$var string 1 NsvQT src0_cond_mode $end +$var wire 1 tA`Gq invert_src2_eq_zero $end +$var wire 1 x`dET pc_relative $end +$var wire 1 "]"(^ is_call $end +$var wire 1 GQ~y$ is_ret $end +$upscope $end +$scope struct ReadSpecial $end +$scope struct common $end +$var string 0 8tO#{J config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 /2E?V \[0] $end +$upscope $end +$var wire 34 8`vM& imm $end +$upscope $end +$var string 1 qq)~) width $end +$var string 1 isX2f conversion $end +$upscope $end +$upscope $end +$scope struct Store $end +$scope struct load_store_common $end +$scope struct common $end +$var wire 3 B:~TB prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 u<<6{ adj_value $end +$var string 1 \)FZV config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 #w&D: value $end +$var string 1 s;&Q< config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 \fg;\ \[0] $end +$var wire 7 T?.Fi \[1] $end +$upscope $end +$var wire 34 'MZ#S imm $end +$upscope $end +$var string 1 M/hz% width $end +$var string 1 Kv;ei conversion $end $upscope $end $upscope $end $upscope $end @@ -30178,50 +31871,108 @@ $upscope $end $upscope $end $scope struct src_values $end $scope struct \[0] $end -$var wire 64 ]N([G int_fp $end +$var wire 64 G;AUi int_fp $end $scope struct flags $end -$var wire 1 1y$i+ pwr_ca32_x86_af $end -$var wire 1 P=N@= pwr_ca_x86_cf $end -$var wire 1 1Z.@{ pwr_ov32_x86_df $end -$var wire 1 9n1E+ pwr_ov_x86_of $end -$var wire 1 uatzL pwr_so $end -$var wire 1 k-a;j pwr_cr_eq_x86_zf $end -$var wire 1 #=4e} pwr_cr_gt_x86_pf $end -$var wire 1 ~bM_c pwr_cr_lt_x86_sf $end +$var wire 1 Ynom1 pwr_ca32_x86_af $end +$var wire 1 7)|Vy pwr_ca_x86_cf $end +$var wire 1 Si5ko pwr_ov32_x86_df $end +$var wire 1 gtXl pwr_ov_x86_of $end +$var wire 1 *RP#s pwr_so $end +$var wire 1 PN'Y& pwr_cr_eq_x86_zf $end +$var wire 1 zG0Bt pwr_cr_gt_x86_pf $end +$var wire 1 'v<1[ pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct \[1] $end -$var wire 64 (k\W8 int_fp $end +$var wire 64 Kk?6= int_fp $end $scope struct flags $end -$var wire 1 836&: pwr_ca32_x86_af $end -$var wire 1 i+|pc pwr_ca_x86_cf $end -$var wire 1 4owWQ pwr_ov32_x86_df $end -$var wire 1 c(`v} pwr_ov_x86_of $end -$var wire 1 Da?,< pwr_so $end -$var wire 1 %FtNK pwr_cr_eq_x86_zf $end -$var wire 1 7Ns`= pwr_cr_gt_x86_pf $end -$var wire 1 bReO9 pwr_cr_lt_x86_sf $end +$var wire 1 ]N{|A pwr_ca32_x86_af $end +$var wire 1 W[)43 pwr_ca_x86_cf $end +$var wire 1 w@=w6 pwr_ov32_x86_df $end +$var wire 1 W/&21 pwr_ov_x86_of $end +$var wire 1 @n>um pwr_so $end +$var wire 1 9tX|: pwr_cr_eq_x86_zf $end +$var wire 1 RCfW pwr_cr_gt_x86_pf $end +$var wire 1 1^g~~ pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct \[2] $end -$var wire 64 `.gV/ int_fp $end +$var wire 64 ~%p int_fp $end +$scope struct flags $end +$var wire 1 kGPYO pwr_ca32_x86_af $end +$var wire 1 ZY;Dl pwr_ca_x86_cf $end +$var wire 1 bxa{B pwr_ov32_x86_df $end +$var wire 1 ZLG:R pwr_ov_x86_of $end +$var wire 1 Z(fWB pwr_so $end +$var wire 1 JQ:Iq pwr_cr_eq_x86_zf $end +$var wire 1 Vfmr/ pwr_cr_gt_x86_pf $end +$var wire 1 5Q(,{ pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct predictor_op $end +$scope struct call_stack_op $end +$var string 1 {D71n \$tag $end +$var wire 64 9hEz' Push $end +$upscope $end +$scope struct cond_br_taken $end +$var string 1 c24'd \$tag $end +$var wire 1 *WA9u HdlSome $end +$upscope $end +$var string 1 aq=]$ config $end +$upscope $end +$upscope $end +$upscope $end +$scope struct finish_cause_cancel $end +$var string 1 uL:F2 \$tag $end +$scope struct HdlSome $end +$var wire 16 J[h{L id $end +$scope struct caused_cancel $end +$var string 1 o{xvI \$tag $end +$scope struct HdlSome $end +$var wire 64 87}I= start_at_pc $end +$var wire 1 WNe`/ cancel_after_retire $end +$var string 1 BzgDt config $end +$upscope $end +$upscope $end +$var string 1 !b/?g config $end +$upscope $end +$upscope $end +$var wire 1 aXd0H unit_outputs_ready $end $scope struct cancel_all $end $scope struct data $end $var string 1 O}TB$ \$tag $end @@ -30230,504 +31981,866 @@ $upscope $end $upscope $end $var wire 1 70$9# ready $end $upscope $end -$scope struct is_no_longer_speculative $end -$scope struct data $end -$var string 1 p~GLZ \$tag $end -$scope struct HdlSome $end -$var wire 16 d(ga: id $end -$var string 1 l3b^O config $end -$upscope $end -$upscope $end -$var wire 1 |@pvR ready $end -$upscope $end -$scope struct cant_cause_cancel $end -$scope struct data $end -$var string 1 2k?E` \$tag $end -$scope struct HdlSome $end -$var wire 16 +$s4a id $end -$var string 1 +TB2s config $end -$upscope $end -$upscope $end -$var wire 1 vPE=z ready $end -$upscope $end -$scope struct finished $end -$scope struct data $end -$var string 1 "9Qc# \$tag $end -$scope struct HdlSome $end -$var wire 16 1EInB id $end -$scope struct finished_successfully $end -$var string 1 w{Q_X \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 5|;Y) value $end -$var string 1 dAI*U config $end -$upscope $end -$scope struct dest_value $end -$var wire 64 \kl\# int_fp $end -$scope struct flags $end -$var wire 1 Q)rJW pwr_ca32_x86_af $end -$var wire 1 orG+y pwr_ca_x86_cf $end -$var wire 1 =V3(H pwr_ov32_x86_df $end -$var wire 1 \QUCE pwr_ov_x86_of $end -$var wire 1 +B[e} pwr_so $end -$var wire 1 6E9Xp pwr_cr_eq_x86_zf $end -$var wire 1 2ab87 pwr_cr_gt_x86_pf $end -$var wire 1 dSS=] pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct predictor_op $end -$scope struct call_stack_op $end -$var string 1 7fk(+ \$tag $end -$var wire 64 *B2_n Push $end -$upscope $end -$scope struct cond_br_taken $end -$var string 1 ?Tz1- \$tag $end -$var wire 1 ,JrbU HdlSome $end -$upscope $end -$var string 1 5"X*: config $end -$upscope $end -$upscope $end -$upscope $end -$scope struct caused_cancel $end -$var string 1 SMJ;- \$tag $end -$scope struct HdlSome $end -$var wire 16 'R-5A id $end -$var wire 64 .6m`Q start_at_pc $end -$var string 1 rE$Xf config $end -$upscope $end -$upscope $end -$var string 1 ?BUd> config $end -$upscope $end -$upscope $end -$var wire 1 _\CFN ready $end -$upscope $end $var string 1 xI$mR config $end $upscope $end $scope struct u4_TransformedMove $end -$scope struct start $end +$scope struct enqueue $end $scope struct data $end -$var string 1 r?.0) \$tag $end +$var string 1 R]s+W \$tag $end $scope struct HdlSome $end $scope struct mop $end -$var wire 8 1HwPL pc $end -$var wire 64 ?qbN_ predicted_next_pc $end -$var wire 4 JPyK( size_in_bytes $end -$var wire 1 _lq,R is_first_mop_in_insn $end +$var wire 8 esX't fetch_block_id $end +$var wire 16 /)"Kk id $end +$var wire 64 ;/QcF pc $end +$var wire 64 dJ{vw predicted_next_pc $end +$var wire 4 {hjpH size_in_bytes $end +$var wire 1 59Y2T is_first_mop_in_insn $end $scope struct mop $end -$var string 1 z9E== \$tag $end +$var string 1 ux~&S \$tag $end $scope struct AluBranch $end -$var string 1 m:p;o \$tag $end +$var string 1 }w!FR \$tag $end $scope struct AddSub $end $scope struct alu_common $end $scope struct common $end -$var string 0 JJ]?; prefix_pad $end +$var string 0 Z1uDX prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 j_':B adj_value $end -$var string 1 RyNm> config $end +$var wire 3 pjn|4 adj_value $end +$var string 1 B1*f\ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 _rKMK value $end -$var string 1 `7K6M config $end +$var wire 4 2t imm $end $upscope $end -$var string 1 2e{gl output_integer_mode $end +$var string 1 wW?.a output_integer_mode $end $upscope $end -$var wire 1 g`7p3 invert_src0 $end -$var wire 1 x}ZTU src1_is_carry_in $end -$var wire 1 Ldg+i invert_carry_in $end -$var wire 1 /`T_v add_pc $end +$var wire 1 %fffp invert_src0 $end +$var wire 1 ^R[wf src1_is_carry_in $end +$var wire 1 -aU'@ invert_carry_in $end +$var wire 1 U-%51 add_pc $end $upscope $end $scope struct AddSubI $end $scope struct alu_common $end $scope struct common $end -$var string 0 c[z*u prefix_pad $end +$var string 0 X%:n~ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 @XBQk adj_value $end -$var string 1 ?(9Q& config $end +$var wire 3 ,I~Og adj_value $end +$var string 1 0F$uz config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 jL~0 value $end +$var string 1 ]qJgN config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 lr+*3 \[0] $end -$var wire 7 b9x9R \[1] $end -$var wire 7 uh/GS \[2] $end +$var wire 7 "|HdC \[0] $end +$var wire 7 1#vae \[1] $end +$var wire 7 cy@?; \[2] $end $upscope $end $scope struct imm $end $scope struct src0_start $end -$var wire 3 Wf~4s value $end -$var string 1 f{?-o range $end +$var wire 3 8e$iO value $end +$var string 1 !0}%N range $end $upscope $end $scope struct src1_start $end -$var wire 3 zuKc} value $end -$var string 1 qd"!k range $end +$var wire 3 BH=T3 value $end +$var string 1 x17Z. range $end $upscope $end $scope struct src2_start $end -$var wire 3 G$^C prefix_pad $end +$var string 0 t{S9C prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 Ui[_s adj_value $end -$var string 1 {:$g_ config $end +$var wire 3 S8Q>I adj_value $end +$var string 1 n.)Pv config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 kn*"k value $end -$var string 1 HI,x0 config $end +$var wire 4 tNFJ> value $end +$var string 1 ;a2e~ config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 *}P+D \[0] $end -$var wire 7 @Vb(9 \[1] $end +$var wire 7 :GS]_ \[0] $end +$var wire 7 k?"A& \[1] $end $upscope $end -$var wire 34 !!GXG imm $end +$var wire 34 fjSzu imm $end $upscope $end -$var string 1 A*<9% output_integer_mode $end +$var string 1 cXVIo output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 P6F0M \[0] $end -$var wire 1 x4P+R \[1] $end -$var wire 1 TMek& \[2] $end -$var wire 1 `#f<5 \[3] $end +$var wire 1 d*&?L \[0] $end +$var wire 1 ~-#I2 \[1] $end +$var wire 1 94pR4 \[2] $end +$var wire 1 I(}_] \[3] $end $upscope $end $upscope $end $upscope $end $scope struct LogicalI $end $scope struct alu_common $end $scope struct common $end -$var string 0 iy2vt prefix_pad $end +$var string 0 73MdU prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 8MdU; adj_value $end -$var string 1 wuQIO config $end +$var wire 3 CM42O adj_value $end +$var string 1 r]h&z config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 .<1u/ value $end -$var string 1 CI,K% config $end +$var wire 4 L)U7a value $end +$var string 1 !dGTq config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 KAA?& \[0] $end +$var wire 7 - config $end +$var wire 4 'J(q17 \[1] $end +$var wire 7 /1r*x \[2] $end $upscope $end $scope struct imm $end $scope struct shift_rotate_amount $end -$var string 1 Ie)*s \$tag $end -$var wire 6 kPb/T HdlSome $end +$var string 1 dYkR* \$tag $end +$var wire 6 !KJk[ HdlSome $end $upscope $end -$var wire 1 oI2>M shift_rotate_right $end +$var wire 1 kc/Pj shift_rotate_right $end $scope struct dest_logic_op $end -$var string 1 CZ}_w \$tag $end +$var string 1 Ioa{D \$tag $end $scope struct HdlSome $end -$var wire 6 enV1J rotated_output_start $end -$var wire 6 ?U$fI rotated_output_len $end -$var wire 1 -nK}t fallback_is_src2 $end +$var wire 6 U,Gmq rotated_output_start $end +$var wire 6 zd>M. rotated_output_len $end +$var wire 1 ~"vsv fallback_is_src2 $end $upscope $end $upscope $end $upscope $end $upscope $end -$var string 1 "7[2' output_integer_mode $end +$var string 1 9=,`: output_integer_mode $end $upscope $end -$var string 1 :ao}? mode $end +$var string 1 U3t>^ mode $end $upscope $end $scope struct Compare $end $scope struct common $end -$var string 0 W'W5r prefix_pad $end +$var string 0 ?5Cn\ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 )_02H adj_value $end -$var string 1 +[@-j config $end +$var wire 3 R=u6' adj_value $end +$var string 1 *cn1[ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 00dS8 value $end -$var string 1 uUU\[ config $end +$var wire 4 oyK3" value $end +$var string 1 qsV+c config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 nG.h7 \[0] $end -$var wire 7 ~8+n- \[1] $end +$var wire 7 BeZM= \[0] $end +$var wire 7 c$al8 \[1] $end $upscope $end -$var wire 34 nBbag imm $end +$var wire 34 3"1so imm $end $upscope $end -$var string 1 LS|tH compare_mode $end +$var string 1 G0dU` compare_mode $end $upscope $end $scope struct CompareI $end $scope struct common $end -$var string 0 tqe'9 prefix_pad $end +$var string 0 5{kx5 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 fb>b^ adj_value $end -$var string 1 cc^-y config $end +$var wire 3 &lTZ< adj_value $end +$var string 1 b-Z?Z config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 ?H\CJ value $end -$var string 1 +<6Xa config $end +$var wire 4 1bHc1 value $end +$var string 1 Emi@@ config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 eG`[Y \[0] $end +$var wire 7 u{*,5 \[0] $end $upscope $end -$var wire 34 ZN>n. imm $end +$var wire 34 V]tG imm $end $upscope $end -$var string 1 UbSA. compare_mode $end +$var string 1 "V\W# compare_mode $end $upscope $end $scope struct Branch $end $scope struct common $end -$var string 0 )Dg't prefix_pad $end +$var string 0 ~h%B_ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 KgadH adj_value $end -$var string 1 Hw<*Z config $end +$var wire 3 =,C6[ adj_value $end +$var string 1 Fum]3 config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 DCV_8 value $end -$var string 1 gqer% config $end +$var wire 4 y1ysJ value $end +$var string 1 o']H' config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 L?*GO \[0] $end -$var wire 7 l,cj\ \[1] $end -$var wire 7 YTcxa \[2] $end +$var wire 7 %rNEL \[0] $end +$var wire 7 a`rOD \[1] $end +$var wire 7 Oa_q" \[2] $end $upscope $end -$var wire 26 WE%4& imm $end +$var wire 26 tqnrk imm $end $upscope $end -$var wire 1 cr3A> invert_src0_cond $end -$var string 1 ]|9c| src0_cond_mode $end -$var wire 1 7qVr4 invert_src2_eq_zero $end -$var wire 1 GNrP& imm $end $upscope $end -$var wire 1 _Nd#i invert_src0_cond $end -$var string 1 8F@eu src0_cond_mode $end -$var wire 1 >On5V invert_src2_eq_zero $end -$var wire 1 yo"RE pc_relative $end -$var wire 1 w$HxX is_call $end -$var wire 1 H+0]k is_ret $end +$var wire 1 pv1YZ invert_src0_cond $end +$var string 1 (18=I src0_cond_mode $end +$var wire 1 I.gQN invert_src2_eq_zero $end +$var wire 1 $5b9i pc_relative $end +$var wire 1 6Bl}a is_call $end +$var wire 1 |5gs9 is_ret $end $upscope $end $scope struct ReadSpecial $end $scope struct common $end -$var string 0 T*&+] prefix_pad $end +$var string 0 Z_4wc prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 5%CVz adj_value $end -$var string 1 3@Ej^ config $end +$var wire 3 OX/iF adj_value $end +$var string 1 X7,lU config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 nh&M3 value $end -$var string 1 no2l: config $end +$var wire 4 9Fo#< value $end +$var string 1 a{J,: config $end $upscope $end $upscope $end $scope struct src $end $upscope $end -$var string 1 ,-oT> imm $end +$var string 1 `RUe] imm $end $upscope $end $upscope $end $upscope $end $scope struct TransformedMove $end -$var string 1 c[QqZ \$tag $end +$var string 1 l)Ze3 \$tag $end $scope struct ReadL2Reg $end $scope struct common $end -$var wire 3 {Omj[ prefix_pad $end +$var wire 3 ]i0[7 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 sCdSg adj_value $end -$var string 1 iH/"5 config $end +$var wire 3 @7U^? adj_value $end +$var string 1 VHF-a config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 MpfP- value $end -$var string 1 U?Czw config $end +$var wire 4 lIIdu value $end +$var string 1 |21W6 config $end $upscope $end $upscope $end $scope struct src $end $upscope $end $scope struct imm $end -$var wire 8 9b+D9 value $end +$var wire 8 WcJ]O value $end $upscope $end $upscope $end $upscope $end $scope struct WriteL2Reg $end $scope struct common $end -$var wire 3 6&_Ol prefix_pad $end +$var wire 3 3qe9? prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 DQGex adj_value $end -$var string 1 WV$rk config $end +$var wire 3 Kp]MJ adj_value $end +$var string 1 %,\eN config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 J[fu~ value $end -$var string 1 TO3yb config $end +$var wire 4 \#fa` value $end +$var string 1 Kt#B7 config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 f;'Pj \[0] $end +$var wire 7 T'$O( \[0] $end $upscope $end $scope struct imm $end -$var wire 8 &P{z7 value $end +$var wire 8 &'V}< value $end $upscope $end $upscope $end $upscope $end $upscope $end $scope struct LoadStore $end -$var string 1 f\Fem \$tag $end +$var string 1 "o1H/ \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 y|a#u prefix_pad $end +$var wire 3 3a-5v prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 _j6Br adj_value $end -$var string 1 +7GtP config $end +$var wire 3 Gy> is_first_mop_in_insn $end +$scope struct mop $end +$var string 1 UE:mZ \$tag $end +$scope struct AluBranch $end +$var string 1 .C;12 \$tag $end +$scope struct AddSub $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 ?dL7[ prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 h2tU_ adj_value $end +$var string 1 t/lr5 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 t.S8( value $end +$var string 1 O;E.3 config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 ~8Ysd \[0] $end +$var wire 7 Kn&sm \[1] $end +$var wire 7 wfYgt \[2] $end +$upscope $end +$var wire 26 3E!G` imm $end +$upscope $end +$var string 1 0Qpfm output_integer_mode $end +$upscope $end +$var wire 1 m,kuO invert_src0 $end +$var wire 1 dxL.o src1_is_carry_in $end +$var wire 1 uLd}0 invert_carry_in $end +$var wire 1 bw074 add_pc $end +$upscope $end +$scope struct AddSubI $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 1<1ZL prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 Z3J<{ adj_value $end +$var string 1 @yH(n config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 G2$x4 value $end +$var string 1 JM!pA config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 /@sU~ \[0] $end +$var wire 7 &\"o] \[1] $end +$upscope $end +$var wire 34 !9h%J imm $end +$upscope $end +$var string 1 eE@Bf output_integer_mode $end +$upscope $end +$var wire 1 Viqzx invert_src0 $end +$var wire 1 j1r;- src1_is_carry_in $end +$var wire 1 y>=Xa invert_carry_in $end +$var wire 1 Fwx@3 add_pc $end +$upscope $end +$scope struct LogicalFlags $end +$scope struct common $end +$var string 0 J&v-u prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 I2]Jo adj_value $end +$var string 1 TD!wC config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 gDLy^ value $end +$var string 1 &tZ%3 config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 t57GD \[0] $end +$var wire 7 evueB \[1] $end +$var wire 7 #rW&> \[2] $end +$upscope $end +$scope struct imm $end +$scope struct src0_start $end +$var wire 3 tr-MJ value $end +$var string 1 N&n`% range $end +$upscope $end +$scope struct src1_start $end +$var wire 3 2Kc7+ prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 4-*}D adj_value $end +$var string 1 $N|d8 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 qv&8c value $end +$var string 1 \6+'9 config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 c54#I \[0] $end +$var wire 7 mJdSk \[1] $end +$upscope $end +$var wire 34 #7_AJ imm $end +$upscope $end +$var string 1 P&0(l output_integer_mode $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 2x2i \[0] $end +$var wire 1 7{eT9 \[1] $end +$var wire 1 }]irn \[2] $end +$var wire 1 VyBzn \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct LogicalI $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 zdt2/ prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 [XQSW adj_value $end +$var string 1 SrL5/ config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 13,.= value $end +$var string 1 gbbT@ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 S=kFJTs \$tag $end +$scope struct HdlSome $end +$var wire 6 iFu:a rotated_output_start $end +$var wire 6 $~ \[1] $end +$upscope $end +$var wire 34 ,Mc}E imm $end +$upscope $end +$var wire 1 =rPaJ invert_src0_cond $end +$var string 1 g+.@[ src0_cond_mode $end +$var wire 1 DSIZo invert_src2_eq_zero $end +$var wire 1 Jm{GD pc_relative $end +$var wire 1 2dd]2 is_call $end +$var wire 1 }mP10 is_ret $end +$upscope $end +$scope struct ReadSpecial $end +$scope struct common $end +$var string 0 (`/oa prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 a9C)a adj_value $end +$var string 1 V?J7% config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 <$=;z value $end +$var string 1 (w7NI config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$var string 1 cBJ}' imm $end +$upscope $end +$upscope $end +$upscope $end +$scope struct TransformedMove $end +$var string 1 c;s[b \$tag $end +$scope struct ReadL2Reg $end +$scope struct common $end +$var wire 3 j3Fqg prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 om=oe adj_value $end +$var string 1 j~Rz# config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 5)$R3 value $end +$var string 1 ,|HoS config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$scope struct imm $end +$var wire 8 Zwh6F value $end +$upscope $end +$upscope $end +$upscope $end +$scope struct WriteL2Reg $end +$scope struct common $end +$var wire 3 %P5e& prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 WK=l: adj_value $end +$var string 1 g~y{n config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 MtD}e value $end +$var string 1 vA(yD config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 h~(=P \[0] $end +$upscope $end +$scope struct imm $end +$var wire 8 5Y,3N value $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$scope struct LoadStore $end +$var string 1 ~>})} \$tag $end +$scope struct Load $end +$scope struct load_store_common $end +$scope struct common $end +$var wire 3 $*;cK prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 D`GQ_ adj_value $end +$var string 1 5=QZi config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 u%2Ua value $end +$var string 1 PU_{s config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 /BKr@ \[0] $end +$upscope $end +$var wire 34 M)I!$ imm $end +$upscope $end +$var string 1 !NIUf width $end +$var string 1 PV!i{ conversion $end +$upscope $end +$upscope $end +$scope struct Store $end +$scope struct load_store_common $end +$scope struct common $end +$var wire 3 |M;l^ prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 M2A{A adj_value $end +$var string 1 N-MD8 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 [IDiw value $end +$var string 1 iwHr{ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 E/F?P \[0] $end +$var wire 7 |_MN$ \[1] $end +$upscope $end +$var wire 34 q$$W imm $end +$upscope $end +$var string 1 m'!+z width $end +$var string 1 s1Fu- conversion $end $upscope $end $upscope $end $upscope $end @@ -30735,50 +32848,108 @@ $upscope $end $upscope $end $scope struct src_values $end $scope struct \[0] $end -$var wire 64 n%w;M int_fp $end +$var wire 64 `fSOn int_fp $end $scope struct flags $end -$var wire 1 F&"(1 pwr_ca32_x86_af $end -$var wire 1 z>+dg pwr_ca_x86_cf $end -$var wire 1 pIN2J pwr_ov32_x86_df $end -$var wire 1 yNM!@ pwr_ov_x86_of $end -$var wire 1 "9J0Z pwr_so $end -$var wire 1 RhIg8 pwr_cr_eq_x86_zf $end -$var wire 1 `@nOn pwr_cr_gt_x86_pf $end -$var wire 1 e?k`< pwr_cr_lt_x86_sf $end +$var wire 1 c=Clb pwr_ca32_x86_af $end +$var wire 1 f#=Z3 pwr_ca_x86_cf $end +$var wire 1 Cj;Vz pwr_ov32_x86_df $end +$var wire 1 ]g7D_ pwr_ov_x86_of $end +$var wire 1 X'>t[ pwr_so $end +$var wire 1 lo~1A pwr_cr_eq_x86_zf $end +$var wire 1 0Ck3$ pwr_cr_gt_x86_pf $end +$var wire 1 ze2rS pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct \[1] $end -$var wire 64 XExa{ int_fp $end +$var wire 64 S3!3f int_fp $end $scope struct flags $end -$var wire 1 Bv{t1 pwr_ca32_x86_af $end -$var wire 1 2Gy*T pwr_ca_x86_cf $end -$var wire 1 Eq=_~ pwr_ov32_x86_df $end -$var wire 1 t2m+; pwr_ov_x86_of $end -$var wire 1 |;T[% pwr_so $end -$var wire 1 j/Pu6 pwr_cr_eq_x86_zf $end -$var wire 1 }+79Y pwr_cr_gt_x86_pf $end -$var wire 1 U^{D0 pwr_cr_lt_x86_sf $end +$var wire 1 ||9Ge pwr_ca32_x86_af $end +$var wire 1 EQD[V pwr_ca_x86_cf $end +$var wire 1 &WLvI pwr_ov32_x86_df $end +$var wire 1 p[gw" pwr_ov_x86_of $end +$var wire 1 a^OZ< pwr_so $end +$var wire 1 J3{Uv pwr_cr_eq_x86_zf $end +$var wire 1 <>U%) pwr_cr_gt_x86_pf $end +$var wire 1 ,{%56 pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct \[2] $end -$var wire 64 KveY( int_fp $end +$var wire 64 +~\O| int_fp $end $scope struct flags $end -$var wire 1 NN pwr_ov_x86_of $end -$var wire 1 bs-8M pwr_so $end -$var wire 1 <+LcT pwr_cr_eq_x86_zf $end -$var wire 1 P's/# pwr_cr_gt_x86_pf $end -$var wire 1 [/.- pwr_cr_lt_x86_sf $end +$var wire 1 n>B\N pwr_ca32_x86_af $end +$var wire 1 ixZy5 pwr_ca_x86_cf $end +$var wire 1 !BvZM pwr_ov32_x86_df $end +$var wire 1 $kZJu pwr_ov_x86_of $end +$var wire 1 es/FE pwr_so $end +$var wire 1 NIih% pwr_cr_eq_x86_zf $end +$var wire 1 IqIR2 pwr_cr_gt_x86_pf $end +$var wire 1 i^'9o pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var string 1 6j?t1 config $end +$var string 1 FJ&[/ config $end $upscope $end $upscope $end -$var wire 1 sz~[3 ready $end +$scope struct is_no_longer_speculative $end +$var string 1 *nEv[ \$tag $end +$scope struct HdlSome $end +$var wire 16 \$tag $end +$scope struct HdlSome $end +$var wire 16 V:7/k id $end +$var string 1 D0xEs config $end +$upscope $end +$upscope $end +$scope struct output_ready $end +$var string 1 H\$(< \$tag $end +$scope struct HdlSome $end +$var wire 16 &Ck*Y id $end +$scope struct dest_value $end +$var wire 64 >B#OE int_fp $end +$scope struct flags $end +$var wire 1 @e!oD pwr_ca32_x86_af $end +$var wire 1 %,Qn& pwr_ca_x86_cf $end +$var wire 1 gm*t' pwr_ov32_x86_df $end +$var wire 1 s/I(s pwr_ov_x86_of $end +$var wire 1 S1L+% pwr_so $end +$var wire 1 zHJsh pwr_cr_eq_x86_zf $end +$var wire 1 jJrZK pwr_cr_gt_x86_pf $end +$var wire 1 q,i>c pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct predictor_op $end +$scope struct call_stack_op $end +$var string 1 cZ%sk \$tag $end +$var wire 64 l@:Z} Push $end +$upscope $end +$scope struct cond_br_taken $end +$var string 1 8\'@U \$tag $end +$var wire 1 dvm=c HdlSome $end +$upscope $end +$var string 1 (o*D^ config $end +$upscope $end +$upscope $end +$upscope $end +$scope struct finish_cause_cancel $end +$var string 1 +q2{1 \$tag $end +$scope struct HdlSome $end +$var wire 16 Jy0G} id $end +$scope struct caused_cancel $end +$var string 1 cpdLQ \$tag $end +$scope struct HdlSome $end +$var wire 64 (e_Q% start_at_pc $end +$var wire 1 }sU^d cancel_after_retire $end +$var string 1 &k5~x config $end +$upscope $end +$upscope $end +$var string 1 6g:0 config $end +$upscope $end +$upscope $end +$var wire 1 oQMaW unit_outputs_ready $end $scope struct cancel_all $end $scope struct data $end $var string 1 |0hb' \$tag $end @@ -30787,77 +32958,6 @@ $upscope $end $upscope $end $var wire 1 M"^lQ ready $end $upscope $end -$scope struct is_no_longer_speculative $end -$scope struct data $end -$var string 1 3;v(O \$tag $end -$scope struct HdlSome $end -$var wire 16 2uirs id $end -$var string 1 (4X_4 config $end -$upscope $end -$upscope $end -$var wire 1 [?'*& ready $end -$upscope $end -$scope struct cant_cause_cancel $end -$scope struct data $end -$var string 1 NHWYJ \$tag $end -$scope struct HdlSome $end -$var wire 16 B;1;T id $end -$var string 1 vFRTX config $end -$upscope $end -$upscope $end -$var wire 1 MF&;( ready $end -$upscope $end -$scope struct finished $end -$scope struct data $end -$var string 1 *%Mz3 pwr_ca_x86_cf $end -$var wire 1 !zZcP pwr_ov32_x86_df $end -$var wire 1 ]V!Xx pwr_ov_x86_of $end -$var wire 1 3`>R> pwr_so $end -$var wire 1 [4-d^ pwr_cr_eq_x86_zf $end -$var wire 1 =c=8g pwr_cr_gt_x86_pf $end -$var wire 1 !baQ= pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct predictor_op $end -$scope struct call_stack_op $end -$var string 1 oHr!V \$tag $end -$var wire 64 d@hfU Push $end -$upscope $end -$scope struct cond_br_taken $end -$var string 1 v.g6N \$tag $end -$var wire 1 TS~&5 HdlSome $end -$upscope $end -$var string 1 &/%%u config $end -$upscope $end -$upscope $end -$upscope $end -$scope struct caused_cancel $end -$var string 1 FfGZn \$tag $end -$scope struct HdlSome $end -$var wire 16 $YA#v id $end -$var wire 64 7829A start_at_pc $end -$var string 1 t-d~0 config $end -$upscope $end -$upscope $end -$var string 1 FqPSX config $end -$upscope $end -$upscope $end -$var wire 1 9ciH. ready $end -$upscope $end $var string 1 "_2i- config $end $upscope $end $var string 1 J1Kd= config $end @@ -54913,28 +57013,27 @@ $upscope $end $upscope $end $upscope $end $upscope $end +$var string 1 ?3a@- mop_in_unit_state $end $var wire 1 S!`>i is_speculative $end -$var wire 1 pZ8e) sent_is_no_longer_speculative $end -$var wire 1 yv"Nd can_cause_cancel $end -$scope struct progress $end -$var string 1 L3vq1 \$tag $end -$scope struct Finished $end +$scope struct finished $end +$var string 1 k1G%O \$tag $end +$scope struct HdlSome $end $scope struct call_stack_op $end -$var string 1 zOva} \$tag $end -$var wire 64 ??hI/ Push $end +$var string 1 AAskA \$tag $end +$var wire 64 lFQF# Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 }OC{Z \$tag $end -$var wire 1 6xaH& HdlSome $end +$var string 1 X5t~7 \$tag $end +$var wire 1 $@E7; HdlSome $end $upscope $end -$var string 1 l#.5O config $end +$var string 1 YkuMq config $end $upscope $end $upscope $end $scope struct caused_cancel $end $var string 1 ]W*CP \$tag $end $scope struct HdlSome $end -$var wire 16 d#JE; id $end $var wire 64 XstEQ start_at_pc $end +$var wire 1 NI;4S cancel_after_retire $end $var string 1 +`nj* config $end $upscope $end $upscope $end @@ -55365,28 +57464,27 @@ $upscope $end $upscope $end $upscope $end $upscope $end +$var string 1 R=4[: mop_in_unit_state $end $var wire 1 ^-O3N is_speculative $end -$var wire 1 Rnb|H sent_is_no_longer_speculative $end -$var wire 1 N+a6? can_cause_cancel $end -$scope struct progress $end -$var string 1 3u!f8 \$tag $end -$scope struct Finished $end +$scope struct finished $end +$var string 1 #)H4) \$tag $end +$scope struct HdlSome $end $scope struct call_stack_op $end -$var string 1 1tJ/+ \$tag $end -$var wire 64 G4d"3 Push $end +$var string 1 ?xhSc \$tag $end +$var wire 64 ;I6P^ Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 Xk%Hi \$tag $end -$var wire 1 @jIF? HdlSome $end +$var string 1 V}(7Q \$tag $end +$var wire 1 $B,2S \$tag $end +$var wire 1 j*GD. HdlSome $end $upscope $end -$var string 1 eN$1~ config $end +$var string 1 X|mMC config $end $upscope $end $upscope $end $scope struct caused_cancel $end $var string 1 ga4#t \$tag $end $scope struct HdlSome $end -$var wire 16 E,Quv id $end $var wire 64 I^[qO start_at_pc $end +$var wire 1 +fs!f cancel_after_retire $end $var string 1 | \$tag $end +$var wire 64 =`Rew Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 6;c3& \$tag $end -$var wire 1 T{9!X HdlSome $end +$var string 1 gEDsJ \$tag $end +$var wire 1 eUWXy HdlSome $end $upscope $end -$var string 1 J'21z config $end +$var string 1 f&qS` config $end $upscope $end $upscope $end $scope struct caused_cancel $end $var string 1 />"29 \$tag $end $scope struct HdlSome $end -$var wire 16 ?BDXs id $end $var wire 64 ]!^,t start_at_pc $end +$var wire 1 EP%;) cancel_after_retire $end $var string 1 u:@z: config $end $upscope $end $upscope $end @@ -58529,28 +60621,27 @@ $upscope $end $upscope $end $upscope $end $upscope $end +$var string 1 wWrbg mop_in_unit_state $end $var wire 1 ;$9pA is_speculative $end -$var wire 1 cCN3% sent_is_no_longer_speculative $end -$var wire 1 4{,M+ can_cause_cancel $end -$scope struct progress $end -$var string 1 .Lf6a \$tag $end -$scope struct Finished $end +$scope struct finished $end +$var string 1 M5-i+ \$tag $end +$scope struct HdlSome $end $scope struct call_stack_op $end -$var string 1 }KFL_ \$tag $end -$var wire 64 )Tksw Push $end +$var string 1 iI5H_ \$tag $end +$var wire 64 3NnIb Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 %'#`\ \$tag $end +$var wire 64 evQ,0 Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 8K&)k \$tag $end -$var wire 1 G2Q=Z HdlSome $end +$var string 1 4u7C- \$tag $end +$var wire 1 a|*Q/ HdlSome $end $upscope $end -$var string 1 n^?6} config $end +$var string 1 !,}L\ config $end $upscope $end $upscope $end $scope struct caused_cancel $end $var string 1 #h1y= \$tag $end $scope struct HdlSome $end -$var wire 16 ej]f0 id $end $var wire 64 4uvJu start_at_pc $end +$var wire 1 .XCG` cancel_after_retire $end $var string 1 ]v8@- config $end $upscope $end $upscope $end @@ -59433,28 +61523,27 @@ $upscope $end $upscope $end $upscope $end $upscope $end +$var string 1 |o\E- mop_in_unit_state $end $var wire 1 (n$N} is_speculative $end -$var wire 1 Aa[[3 sent_is_no_longer_speculative $end -$var wire 1 $D)+f can_cause_cancel $end -$scope struct progress $end -$var string 1 %!L25 \$tag $end -$scope struct Finished $end +$scope struct finished $end +$var string 1 zU=/" \$tag $end +$scope struct HdlSome $end $scope struct call_stack_op $end -$var string 1 X+G/& \$tag $end -$var wire 64 #!nAj Push $end +$var string 1 DLTHq \$tag $end +$var wire 64 mYj`' Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 FK}w" \$tag $end -$var wire 1 *7Y|K HdlSome $end +$var string 1 rs!!w \$tag $end +$var wire 1 iZzF_ HdlSome $end $upscope $end -$var string 1 \%}=E config $end +$var string 1 NCwIC config $end $upscope $end $upscope $end $scope struct caused_cancel $end $var string 1 oj!\G \$tag $end $scope struct HdlSome $end -$var wire 16 [,NrW id $end $var wire 64 98N:S start_at_pc $end +$var wire 1 `&5{B cancel_after_retire $end $var string 1 lk5B% config $end $upscope $end $upscope $end @@ -59885,28 +61974,27 @@ $upscope $end $upscope $end $upscope $end $upscope $end +$var string 1 hI+v5 mop_in_unit_state $end $var wire 1 7b(+3 is_speculative $end -$var wire 1 f2?tL sent_is_no_longer_speculative $end -$var wire 1 ~-UGp can_cause_cancel $end -$scope struct progress $end -$var string 1 1;Kh[ \$tag $end -$scope struct Finished $end +$scope struct finished $end +$var string 1 +AmvJ \$tag $end +$scope struct HdlSome $end $scope struct call_stack_op $end -$var string 1 4>0:o \$tag $end -$var wire 64 d;nC$ Push $end +$var string 1 aYL#a \$tag $end +$var wire 64 sHnr* Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 Ghr/y \$tag $end -$var wire 1 6Y=(` HdlSome $end +$var string 1 zW&0" \$tag $end +$var wire 1 $0J83 HdlSome $end $upscope $end -$var string 1 n]4UF config $end +$var string 1 d!HK< config $end $upscope $end $upscope $end $scope struct caused_cancel $end $var string 1 4da~m \$tag $end $scope struct HdlSome $end -$var wire 16 )2aiI id $end $var wire 64 UO,Hw start_at_pc $end +$var wire 1 %MjpT cancel_after_retire $end $var string 1 lpHw_ config $end $upscope $end $upscope $end @@ -60337,28 +62425,27 @@ $upscope $end $upscope $end $upscope $end $upscope $end +$var string 1 Lvq.B mop_in_unit_state $end $var wire 1 <|b(< is_speculative $end -$var wire 1 -uS^F sent_is_no_longer_speculative $end -$var wire 1 e@1-` can_cause_cancel $end -$scope struct progress $end -$var string 1 0xp7{ \$tag $end -$scope struct Finished $end +$scope struct finished $end +$var string 1 WnieB \$tag $end +$scope struct HdlSome $end $scope struct call_stack_op $end -$var string 1 z!Qum \$tag $end -$var wire 64 V[kr Push $end +$var string 1 Z@'M6 \$tag $end +$var wire 64 {\{K' Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 vA*"H \$tag $end -$var wire 1 }';fz HdlSome $end +$var string 1 !`vZn \$tag $end +$var wire 1 }}AkL HdlSome $end $upscope $end -$var string 1 ah0bKi \$tag $end +$scope struct HdlSome $end $scope struct call_stack_op $end -$var string 1 9Ifpq \$tag $end -$var wire 64 |n0&~ Push $end +$var string 1 U0`py \$tag $end +$var wire 64 =u(&O Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 X[*W; \$tag $end -$var wire 1 ,Z,KP HdlSome $end +$var string 1 K14C` \$tag $end +$var wire 1 =0hT1 HdlSome $end $upscope $end -$var string 1 v_NMl config $end +$var string 1 cF7#( config $end $upscope $end $upscope $end $scope struct caused_cancel $end $var string 1 by4&; \$tag $end $scope struct HdlSome $end -$var wire 16 n\c33 id $end $var wire 64 E\8oa start_at_pc $end +$var wire 1 k(V9a cancel_after_retire $end $var string 1 +:su& config $end $upscope $end $upscope $end @@ -61241,28 +63327,27 @@ $upscope $end $upscope $end $upscope $end $upscope $end +$var string 1 ~Nt<3 mop_in_unit_state $end $var wire 1 zpn(j is_speculative $end -$var wire 1 5('=c sent_is_no_longer_speculative $end -$var wire 1 V$^`% can_cause_cancel $end -$scope struct progress $end -$var string 1 c \$tag $end +$var wire 1 ;IDVM HdlSome $end $upscope $end -$var string 1 EHX16 config $end +$var string 1 HuEvi config $end $upscope $end $upscope $end $scope struct caused_cancel $end $var string 1 *QC:: \$tag $end $scope struct HdlSome $end -$var wire 16 B+qxu id $end $var wire 64 n3$|M start_at_pc $end +$var wire 1 IcnEG cancel_after_retire $end $var string 1 w'I,> config $end $upscope $end $upscope $end @@ -61693,28 +63778,27 @@ $upscope $end $upscope $end $upscope $end $upscope $end +$var string 1 .Wvo% mop_in_unit_state $end $var wire 1 D0ef/ is_speculative $end -$var wire 1 Wxegp sent_is_no_longer_speculative $end -$var wire 1 Nxf^v can_cause_cancel $end -$scope struct progress $end -$var string 1 yj7ax \$tag $end -$scope struct Finished $end +$scope struct finished $end +$var string 1 v:e~X \$tag $end +$scope struct HdlSome $end $scope struct call_stack_op $end -$var string 1 B1Q[b \$tag $end -$var wire 64 fiB8x Push $end +$var string 1 +~n4a \$tag $end +$var wire 64 2d9`y Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 PM"Gn \$tag $end -$var wire 1 /p6xG HdlSome $end +$var string 1 <3Kj1 \$tag $end +$var wire 1 /w-lR HdlSome $end $upscope $end -$var string 1 x\%U" config $end +$var string 1 +K17n config $end $upscope $end $upscope $end $scope struct caused_cancel $end $var string 1 LkQ"b \$tag $end $scope struct HdlSome $end -$var wire 16 M^w-, id $end $var wire 64 UNXaA start_at_pc $end +$var wire 1 dclx& cancel_after_retire $end $var string 1 P.XEW config $end $upscope $end $upscope $end @@ -62145,28 +64229,27 @@ $upscope $end $upscope $end $upscope $end $upscope $end +$var string 1 )v>cJ mop_in_unit_state $end $var wire 1 {_}^Z is_speculative $end -$var wire 1 S#2UW sent_is_no_longer_speculative $end -$var wire 1 e9cj} can_cause_cancel $end -$scope struct progress $end -$var string 1 y+($# \$tag $end -$scope struct Finished $end +$scope struct finished $end +$var string 1 O);Mj \$tag $end +$scope struct HdlSome $end $scope struct call_stack_op $end -$var string 1 @Ut3 \$tag $end -$var wire 64 Oj4>E Push $end +$var string 1 J.t^b \$tag $end +$var wire 64 HXib sent_is_no_longer_speculative $end -$var wire 1 U3`EH can_cause_cancel $end -$scope struct progress $end -$var string 1 :m,$1 \$tag $end -$scope struct Finished $end +$scope struct finished $end +$var string 1 O##n0 \$tag $end +$scope struct HdlSome $end $scope struct call_stack_op $end -$var string 1 1+@"I \$tag $end -$var wire 64 "l>nW Push $end +$var string 1 i{F`f \$tag $end +$var wire 64 i8[SK Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 Q)|^" \$tag $end -$var wire 1 >33ou HdlSome $end +$var string 1 ]agQ- \$tag $end +$var wire 1 7=?61 HdlSome $end $upscope $end -$var string 1 }.ytN config $end +$var string 1 ?~5c[ config $end $upscope $end $upscope $end $scope struct caused_cancel $end $var string 1 Yhr|k \$tag $end $scope struct HdlSome $end -$var wire 16 d6({V id $end $var wire 64 l4m$5 start_at_pc $end +$var wire 1 ym!@< cancel_after_retire $end $var string 1 #Y$88 config $end $upscope $end $upscope $end @@ -63501,28 +65582,27 @@ $upscope $end $upscope $end $upscope $end $upscope $end +$var string 1 &LfWg mop_in_unit_state $end $var wire 1 b9.7} is_speculative $end -$var wire 1 <;Gp+ sent_is_no_longer_speculative $end -$var wire 1 CgZvw can_cause_cancel $end -$scope struct progress $end -$var string 1 '}^|b \$tag $end -$scope struct Finished $end +$scope struct finished $end +$var string 1 &cr5m \$tag $end +$scope struct HdlSome $end $scope struct call_stack_op $end -$var string 1 84+?< \$tag $end -$var wire 64 +r2ps Push $end +$var string 1 k){a" \$tag $end +$var wire 64 Rz6iG Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 $VFx0 \$tag $end -$var wire 1 T\G5_ HdlSome $end +$var string 1 g$e<' \$tag $end +$var wire 1 Pv)^hsW add_pc $end +$var wire 1 CYtS` invert_src0 $end +$var wire 1 f`Y.C src1_is_carry_in $end +$var wire 1 '8Y#J invert_carry_in $end +$var wire 1 PMuGm add_pc $end $upscope $end $scope struct AddSubI $end $scope struct alu_common $end $scope struct common $end -$var string 0 Qf%1X prefix_pad $end +$var string 0 A+g0A prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 'ldc- adj_value $end -$var string 1 |S;={ config $end +$var wire 3 0q.D{ adj_value $end +$var string 1 >`_tJ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 I2&<9 value $end -$var string 1 bJ7E config $end +$var wire 4 ^=0uJ value $end +$var string 1 (rmL* config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 ;7Moi \[0] $end -$var wire 7 <*}#G \[1] $end +$var wire 7 NOOLi \[0] $end +$var wire 7 4QQWB \[1] $end $upscope $end -$var wire 34 1 range $end +$var wire 3 |%SnM value $end +$var string 1 wt/*5 range $end $upscope $end $scope struct dest_count $end -$var wire 4 ,|"TP value $end -$var string 1 PjGU. range $end +$var wire 4 *zky* value $end +$var string 1 PR1Hb range $end $upscope $end $upscope $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 Hp"Hg \[0] $end -$var wire 1 >,73( \[1] $end -$var wire 1 loV \[1] $end +$var wire 1 VnkZp \[2] $end +$var wire 1 A%z-x \[3] $end $upscope $end $upscope $end $upscope $end $scope struct Logical $end $scope struct alu_common $end $scope struct common $end -$var string 0 }h*Rp prefix_pad $end +$var string 0 YU"8i prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 P49{> adj_value $end -$var string 1 A8u<7 config $end +$var wire 3 @up]M adj_value $end +$var string 1 ^=A:+ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 a)w#M value $end -$var string 1 eb(fM config $end +$var wire 4 e~"?/ value $end +$var string 1 p)q{) config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 ($pZ> \[0] $end -$var wire 7 [YqX" \[1] $end +$var wire 7 vNrz adj_value $end +$var string 1 M5X;6 config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 hZ'FB value $end -$var string 1 bVxws config $end +$var wire 4 1{YN5 value $end +$var string 1 hR@}$ config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 %/Jr? \[0] $end +$var wire 7 {\p-O \[0] $end $upscope $end -$var wire 34 XxZ5w imm $end +$var wire 34 B?Iu; imm $end $upscope $end -$var string 1 jg1[9 output_integer_mode $end +$var string 1 CF"Xn output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 dYQ%K \[0] $end -$var wire 1 9Vq0: \[1] $end -$var wire 1 .YYK" \[2] $end -$var wire 1 [)8Vb \[3] $end +$var wire 1 qer3/ \[0] $end +$var wire 1 &nRd& \[1] $end +$var wire 1 -X@Ff \[2] $end +$var wire 1 T>MQU \[3] $end $upscope $end $upscope $end $upscope $end $scope struct ShiftRotate $end $scope struct alu_common $end $scope struct common $end -$var string 0 Zq!D| prefix_pad $end +$var string 0 o3xT8 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 2Fp)7 adj_value $end -$var string 1 bZ2~. config $end +$var wire 3 '&`u] adj_value $end +$var string 1 axe9F config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 !7dP[ value $end -$var string 1 #<|I6 config $end +$var wire 4 @nvij value $end +$var string 1 e}=p" config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 !9KaD \[0] $end -$var wire 7 83'Z5 \[1] $end -$var wire 7 edUVN \[2] $end +$var wire 7 {H8aD \[0] $end +$var wire 7 Oc*E_ \[1] $end +$var wire 7 WpJ&( \[2] $end $upscope $end $scope struct imm $end $scope struct shift_rotate_amount $end -$var string 1 88A#u \$tag $end -$var wire 6 4k~tM HdlSome $end +$var string 1 Ihtib \$tag $end +$var wire 6 $~k+p HdlSome $end $upscope $end -$var wire 1 7e"qk shift_rotate_right $end +$var wire 1 0S_Yn shift_rotate_right $end $scope struct dest_logic_op $end -$var string 1 J7yj@ \$tag $end +$var string 1 =.[GV \$tag $end $scope struct HdlSome $end -$var wire 6 !7r6Z rotated_output_start $end -$var wire 6 Stdk1 rotated_output_len $end -$var wire 1 4\~(C fallback_is_src2 $end +$var wire 6 TL"W@ rotated_output_start $end +$var wire 6 +j.'* rotated_output_len $end +$var wire 1 VoysQ fallback_is_src2 $end $upscope $end $upscope $end $upscope $end $upscope $end -$var string 1 E'_|o output_integer_mode $end +$var string 1 v2p/3 output_integer_mode $end $upscope $end -$var string 1 .vf+] mode $end +$var string 1 4LPcH mode $end $upscope $end $scope struct Compare $end $scope struct common $end -$var string 0 wQG.A prefix_pad $end +$var string 0 pmCPo prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 >'\r# adj_value $end -$var string 1 6No@Q config $end +$var wire 3 gxzt: adj_value $end +$var string 1 #L'l$ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 24qw1 adj_value $end -$var string 1 YWlz~ config $end +$var wire 3 h.q}< adj_value $end +$var string 1 mTr@" config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 &(\"4 value $end -$var string 1 .!Q'< config $end +$var wire 4 "$OJ) value $end +$var string 1 {93VO config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 Oc2zW \[0] $end +$var wire 7 H#5g" \[0] $end $upscope $end -$var wire 34 #D%Ft imm $end +$var wire 34 ]AqLG imm $end $upscope $end -$var string 1 yv##> compare_mode $end +$var string 1 br>{% compare_mode $end $upscope $end $scope struct Branch $end $scope struct common $end -$var string 0 6gUt$ prefix_pad $end +$var string 0 s*S6b prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 ^Q3O0 adj_value $end -$var string 1 ol`s< config $end +$var wire 3 rIzGO adj_value $end +$var string 1 vIVn8 config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 Kx8Be value $end -$var string 1 d;osr config $end +$var wire 4 "G]bW value $end +$var string 1 LaJ8$ config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 "Sfg' \[0] $end -$var wire 7 WP[<_ \[1] $end -$var wire 7 !kk2Z \[2] $end +$var wire 7 N&t8( \[0] $end +$var wire 7 T6t8` \[1] $end +$var wire 7 gBdp| \[2] $end $upscope $end -$var wire 26 F:O?m imm $end +$var wire 26 4n&=f imm $end $upscope $end -$var wire 1 nj5y$ invert_src0_cond $end -$var string 1 MQ+QI src0_cond_mode $end -$var wire 1 Hj6>k invert_src2_eq_zero $end -$var wire 1 j\pJ0 pc_relative $end -$var wire 1 "k8Rv is_call $end -$var wire 1 -T=Hs is_ret $end +$var wire 1 @$`{S invert_src0_cond $end +$var string 1 b!)ty src0_cond_mode $end +$var wire 1 !D.dd invert_src2_eq_zero $end +$var wire 1 ]WOvK pc_relative $end +$var wire 1 ~tXwG is_call $end +$var wire 1 .bNhV is_ret $end $upscope $end $scope struct BranchI $end $scope struct common $end -$var string 0 v>vee prefix_pad $end +$var string 0 4r!/G prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 WMOz+ adj_value $end -$var string 1 ]|ygS config $end +$var wire 3 n0QT5 adj_value $end +$var string 1 .fGhh config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 ]d9cB value $end -$var string 1 1}0HB config $end +$var wire 4 q_)`Q value $end +$var string 1 "pfH$ config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 `3$=c \[0] $end -$var wire 7 ."%7| \[1] $end +$var wire 7 OB`3w \[0] $end +$var wire 7 %v}4, \[1] $end $upscope $end -$var wire 34 mdh!R imm $end +$var wire 34 *?{=$ imm $end $upscope $end -$var wire 1 c`e@i invert_src0_cond $end -$var string 1 uJ!:d src0_cond_mode $end -$var wire 1 5!&6= invert_src2_eq_zero $end -$var wire 1 [z~f& pc_relative $end -$var wire 1 i=fp\ is_call $end -$var wire 1 T?lR9 is_ret $end +$var wire 1 p+AHT invert_src0_cond $end +$var string 1 3eKCk src0_cond_mode $end +$var wire 1 A{zpA invert_src2_eq_zero $end +$var wire 1 74#|A pc_relative $end +$var wire 1 znC]r is_call $end +$var wire 1 26myU is_ret $end $upscope $end $scope struct ReadSpecial $end $scope struct common $end -$var string 0 $DL_Y prefix_pad $end +$var string 0 +NcW? prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 PbvNp adj_value $end -$var string 1 5m~LM config $end +$var wire 3 OTQ[C adj_value $end +$var string 1 DO%^] config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 s`+kU value $end -$var string 1 m{N9b config $end +$var wire 4 8krPb value $end +$var string 1 K3[|I config $end $upscope $end $upscope $end $scope struct src $end $upscope $end -$var string 1 s][m) imm $end +$var string 1 _orp# imm $end $upscope $end $upscope $end $upscope $end $scope struct TransformedMove $end -$var string 1 I&7gG \$tag $end +$var string 1 (RD!N \$tag $end $scope struct ReadL2Reg $end $scope struct common $end -$var wire 3 A)U6\ prefix_pad $end +$var wire 3 .&|EK prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 abw30 adj_value $end -$var string 1 R<&'A config $end +$var wire 3 [O*PO adj_value $end +$var string 1 +!k!/ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 ct@uh value $end -$var string 1 !?/v2 config $end +$var wire 4 oxIol value $end +$var string 1 Z<5`_ config $end $upscope $end $upscope $end $scope struct src $end $upscope $end $scope struct imm $end -$var wire 8 (GN8T value $end +$var wire 8 pVs1C value $end $upscope $end $upscope $end $upscope $end $scope struct WriteL2Reg $end $scope struct common $end -$var wire 3 3%9:` prefix_pad $end +$var wire 3 (&;{I prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 [.Fe~ adj_value $end -$var string 1 (')(n config $end +$var wire 3 :'Ba1 adj_value $end +$var string 1 @\,=D config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 \h`2[ value $end -$var string 1 Cve"% config $end +$var wire 4 kwl{E value $end +$var string 1 A{#5d config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 r]kP] \[0] $end +$var wire 7 ]B3q( \[0] $end $upscope $end $scope struct imm $end -$var wire 8 /WdK` value $end +$var wire 8 ]y>): value $end $upscope $end $upscope $end $upscope $end $upscope $end $scope struct LoadStore $end -$var string 1 r>3h_ \$tag $end +$var string 1 yqT@W \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 h@UW3 prefix_pad $end +$var wire 3 BJQ-k prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 %l;:* adj_value $end -$var string 1 .%|Ry config $end +$var wire 3 @Z]rc adj_value $end +$var string 1 ft`K: config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 fm5w* value $end -$var string 1 3i5FC config $end +$var wire 4 "al1e value $end +$var string 1 X/_Ui config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 9Nma. \[0] $end +$var wire 7 /%~37 \[0] $end $upscope $end -$var wire 34 r2@9* imm $end +$var wire 34 qXBAS imm $end $upscope $end -$var string 1 a}7@] width $end -$var string 1 ;z!hm conversion $end +$var string 1 %}qKh width $end +$var string 1 'Xz^e conversion $end $upscope $end $upscope $end $scope struct Store $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 (O7_^ prefix_pad $end +$var wire 3 9hOd2 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 O%0Lr adj_value $end -$var string 1 ao_Uo config $end +$var wire 3 r7:zo adj_value $end +$var string 1 gDa;= config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 7)WL< value $end -$var string 1 8K'Q$ config $end +$var wire 4 %|w/X value $end +$var string 1 y]$r3 config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 x5bL5 \[0] $end -$var wire 7 oZDdc \[1] $end +$var wire 7 8opUH \[0] $end +$var wire 7 ^xzLU \[1] $end $upscope $end -$var wire 34 W7YRE imm $end +$var wire 34 V^Kh, imm $end $upscope $end -$var string 1 %c@u& width $end -$var string 1 /8#;r conversion $end +$var string 1 -r]rP width $end +$var string 1 N7G~0 conversion $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$var string 1 L'^H8 config $end +$upscope $end +$upscope $end +$var wire 1 ?N6#F ready $end +$upscope $end +$scope struct inputs_ready $end +$var string 1 &#$?z \$tag $end +$scope struct HdlSome $end +$scope struct mop $end +$var wire 8 .awP3 fetch_block_id $end +$var wire 16 IG_UF id $end +$var wire 64 ^xl adj_value $end +$var string 1 E%sP$ config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 0/PIf value $end +$var string 1 xi#"h config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 sd_DG \[0] $end +$var wire 7 4jJE? \[1] $end +$var wire 7 tk@m4 \[2] $end +$upscope $end +$var wire 26 #$jt imm $end +$upscope $end +$var string 1 m+G8Q output_integer_mode $end +$upscope $end +$var wire 1 }r>E> invert_src0 $end +$var wire 1 g*3Zj src1_is_carry_in $end +$var wire 1 I_N#f invert_carry_in $end +$var wire 1 Uii^8 add_pc $end +$upscope $end +$scope struct AddSubI $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 {B/Zx prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 Cr27@ adj_value $end +$var string 1 'nr]7 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 #hui_ value $end +$var string 1 qYAjS config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 ?et?X \[0] $end +$var wire 7 ru{-f \[1] $end +$upscope $end +$var wire 34 8Y2z> imm $end +$upscope $end +$var string 1 7Li:6 output_integer_mode $end +$upscope $end +$var wire 1 |yaAy invert_src0 $end +$var wire 1 p/Lg| src1_is_carry_in $end +$var wire 1 d)4MS invert_carry_in $end +$var wire 1 Y_bgr add_pc $end +$upscope $end +$scope struct LogicalFlags $end +$scope struct common $end +$var string 0 ~H_^E prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 "Yv%^ adj_value $end +$var string 1 ysW1t config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 I",m| value $end +$var string 1 Fj%x1 config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 8KkCM \[0] $end +$var wire 7 "^:4D \[1] $end +$var wire 7 Emkj imm $end +$upscope $end +$var string 1 %w@Di output_integer_mode $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 ;a\yo \[0] $end +$var wire 1 3#W5z \[1] $end +$var wire 1 bf^y@ \[2] $end +$var wire 1 ~7@j, \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct LogicalI $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 X/5}' prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 irH\u adj_value $end +$var string 1 B$1$1 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 =rr~l value $end +$var string 1 jHvdA config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 :E$DI \[0] $end +$upscope $end +$var wire 34 G|:nk imm $end +$upscope $end +$var string 1 y'qUc output_integer_mode $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 u\EQ: \[0] $end +$var wire 1 &7vvF \[1] $end +$var wire 1 OaVR5 \[2] $end +$var wire 1 go.m) \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct ShiftRotate $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 yKl"v prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 W.W#{ adj_value $end +$var string 1 il6D- config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 JXWH1 value $end +$var string 1 kb=ud config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 @/B_* \[0] $end +$var wire 7 BJREk \[1] $end +$var wire 7 c7SL{ \[2] $end +$upscope $end +$scope struct imm $end +$scope struct shift_rotate_amount $end +$var string 1 j45)M \$tag $end +$var wire 6 ?x`CL HdlSome $end +$upscope $end +$var wire 1 4G@9\ shift_rotate_right $end +$scope struct dest_logic_op $end +$var string 1 ;"I"Y \$tag $end +$scope struct HdlSome $end +$var wire 6 Zr$u= rotated_output_start $end +$var wire 6 L)t/@ rotated_output_len $end +$var wire 1 {;)bQ fallback_is_src2 $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$var string 1 f3zY\ output_integer_mode $end +$upscope $end +$var string 1 +pXf& mode $end +$upscope $end +$scope struct Compare $end +$scope struct common $end +$var string 0 E24R_ prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 @+ls* adj_value $end +$var string 1 GdHwO config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 -cl?W value $end +$var string 1 >31~= config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 -GhBo \[0] $end +$var wire 7 &8U|( \[1] $end +$upscope $end +$var wire 34 48?;s imm $end +$upscope $end +$var string 1 /T4/p compare_mode $end +$upscope $end +$scope struct CompareI $end +$scope struct common $end +$var string 0 _x.-Q prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 Sb%Ui adj_value $end +$var string 1 oHfyY config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 +H=Q2 value $end +$var string 1 bR:@j config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 {)=GO \[0] $end +$upscope $end +$var wire 34 k0dqB imm $end +$upscope $end +$var string 1 0.t|p compare_mode $end +$upscope $end +$scope struct Branch $end +$scope struct common $end +$var string 0 byaSn prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 [C/-c adj_value $end +$var string 1 VwF0K config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 vxnvo value $end +$var string 1 3wA2C config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 _>-91 \[0] $end +$var wire 7 |2Tmj \[1] $end +$var wire 7 TZ!FZ \[2] $end +$upscope $end +$var wire 26 O~C<7 imm $end +$upscope $end +$var wire 1 NseSm invert_src0_cond $end +$var string 1 ^IYwb src0_cond_mode $end +$var wire 1 FCbB' invert_src2_eq_zero $end +$var wire 1 m=$p8 pc_relative $end +$var wire 1 ouYh= is_call $end +$var wire 1 _5IE] is_ret $end +$upscope $end +$scope struct BranchI $end +$scope struct common $end +$var string 0 EC]/5 prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 !CWHY adj_value $end +$var string 1 \#YrN config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 -L,m3 value $end +$var string 1 (#L9i config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 cLGjI \[0] $end +$var wire 7 B&dJX \[1] $end +$upscope $end +$var wire 34 N1)y2 imm $end +$upscope $end +$var wire 1 M9x)B invert_src0_cond $end +$var string 1 |x!`T src0_cond_mode $end +$var wire 1 7)SX< invert_src2_eq_zero $end +$var wire 1 7U*%Q pc_relative $end +$var wire 1 Zf03/ is_call $end +$var wire 1 C4K9Z is_ret $end +$upscope $end +$scope struct ReadSpecial $end +$scope struct common $end +$var string 0 71E3V prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 %V|(, adj_value $end +$var string 1 /KB[B config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 )qta8 value $end +$var string 1 ;!8?x config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$var string 1 bo~C* imm $end +$upscope $end +$upscope $end +$upscope $end +$scope struct TransformedMove $end +$var string 1 $WN2= \$tag $end +$scope struct ReadL2Reg $end +$scope struct common $end +$var wire 3 p!{UR prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 bp:)O adj_value $end +$var string 1 /2M \$tag $end +$scope struct Load $end +$scope struct load_store_common $end +$scope struct common $end +$var wire 3 4qiQ< prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 $nw8p adj_value $end +$var string 1 `7F-8 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 _D imm $end +$upscope $end +$var string 1 p`X6F width $end +$var string 1 Zm~0M conversion $end +$upscope $end +$upscope $end +$scope struct Store $end +$scope struct load_store_common $end +$scope struct common $end +$var wire 3 6pNrY prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 y?T<= adj_value $end +$var string 1 mM@gp config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 }rl73 value $end +$var string 1 [nnJ/ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 a"Kf' \[0] $end +$var wire 7 }j5Ay \[1] $end +$upscope $end +$var wire 34 Our\- imm $end +$upscope $end +$var string 1 hrvk( width $end +$var string 1 qtZ>[ conversion $end $upscope $end $upscope $end $upscope $end @@ -65314,50 +67827,108 @@ $upscope $end $upscope $end $scope struct src_values $end $scope struct \[0] $end -$var wire 64 6SxMy int_fp $end +$var wire 64 ^l/01 int_fp $end $scope struct flags $end -$var wire 1 FsZMG pwr_ca32_x86_af $end -$var wire 1 int_fp $end $scope struct flags $end -$var wire 1 ?qG.^ pwr_ca32_x86_af $end -$var wire 1 ^m{C| pwr_ca_x86_cf $end -$var wire 1 =mXgw pwr_ov32_x86_df $end -$var wire 1 c]F6l pwr_ov_x86_of $end -$var wire 1 7_%'z pwr_so $end -$var wire 1 IuXQJ pwr_cr_eq_x86_zf $end -$var wire 1 rp1/% pwr_cr_gt_x86_pf $end -$var wire 1 #DuiP pwr_cr_lt_x86_sf $end +$var wire 1 ~}\&a pwr_ca32_x86_af $end +$var wire 1 4Cc=( pwr_ca_x86_cf $end +$var wire 1 lPYpL pwr_ov32_x86_df $end +$var wire 1 C3e0f pwr_ov_x86_of $end +$var wire 1 X)T#" pwr_so $end +$var wire 1 2rqZ' pwr_cr_eq_x86_zf $end +$var wire 1 J@(o; pwr_cr_gt_x86_pf $end +$var wire 1 >Zcyv pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct \[2] $end -$var wire 64 jZ!k) int_fp $end +$var wire 64 VIJO= int_fp $end $scope struct flags $end -$var wire 1 X?zwD pwr_ca32_x86_af $end -$var wire 1 :03[B pwr_ca_x86_cf $end -$var wire 1 8=jbC pwr_ov32_x86_df $end -$var wire 1 */>jF pwr_ov_x86_of $end -$var wire 1 !SM!W pwr_so $end -$var wire 1 _QNl5 pwr_cr_eq_x86_zf $end -$var wire 1 vKF:` pwr_cr_gt_x86_pf $end -$var wire 1 7Adxc pwr_cr_lt_x86_sf $end +$var wire 1 \F!Wq pwr_ca32_x86_af $end +$var wire 1 eWovS pwr_ca_x86_cf $end +$var wire 1 s8B{c pwr_ov32_x86_df $end +$var wire 1 8sOtj pwr_ov_x86_of $end +$var wire 1 "AsP= pwr_so $end +$var wire 1 j`Uj4 pwr_cr_eq_x86_zf $end +$var wire 1 n1h^$ pwr_cr_gt_x86_pf $end +$var wire 1 *WL1Q pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var string 1 G9!:& config $end +$var string 1 N6wdn config $end $upscope $end $upscope $end -$var wire 1 *jBNb ready $end +$scope struct is_no_longer_speculative $end +$var string 1 \-QnV \$tag $end +$scope struct HdlSome $end +$var wire 16 0#q!l id $end +$var string 1 p3,Ug config $end $upscope $end +$upscope $end +$scope struct cant_cause_cancel $end +$var string 1 >(vzZ \$tag $end +$scope struct HdlSome $end +$var wire 16 c_u\s id $end +$var string 1 T4AUI config $end +$upscope $end +$upscope $end +$scope struct output_ready $end +$var string 1 n}C`` \$tag $end +$scope struct HdlSome $end +$var wire 16 %]!={ id $end +$scope struct dest_value $end +$var wire 64 }Dz;f int_fp $end +$scope struct flags $end +$var wire 1 5fD<- pwr_ca32_x86_af $end +$var wire 1 .\@3Z pwr_ca_x86_cf $end +$var wire 1 D9q\Q pwr_ov32_x86_df $end +$var wire 1 B;[e| pwr_ov_x86_of $end +$var wire 1 =7+DP pwr_so $end +$var wire 1 Z&?d~ pwr_cr_eq_x86_zf $end +$var wire 1 IK&!? pwr_cr_gt_x86_pf $end +$var wire 1 jD&ce pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct predictor_op $end +$scope struct call_stack_op $end +$var string 1 27P3( \$tag $end +$var wire 64 4Qvfn Push $end +$upscope $end +$scope struct cond_br_taken $end +$var string 1 iOBsL \$tag $end +$var wire 1 _!L=d HdlSome $end +$upscope $end +$var string 1 I:cPf config $end +$upscope $end +$upscope $end +$upscope $end +$scope struct finish_cause_cancel $end +$var string 1 r+(d7 \$tag $end +$scope struct HdlSome $end +$var wire 16 Oa2s_ id $end +$scope struct caused_cancel $end +$var string 1 2~W&e \$tag $end +$scope struct HdlSome $end +$var wire 64 fF=(o start_at_pc $end +$var wire 1 6|~Ts cancel_after_retire $end +$var string 1 MfsXP config $end +$upscope $end +$upscope $end +$var string 1 [jFe& config $end +$upscope $end +$upscope $end +$var wire 1 $A_'2 unit_outputs_ready $end $scope struct cancel_all $end $scope struct data $end $var string 1 u2peT \$tag $end @@ -65366,77 +67937,6 @@ $upscope $end $upscope $end $var wire 1 k,__> ready $end $upscope $end -$scope struct is_no_longer_speculative $end -$scope struct data $end -$var string 1 nkQ2N \$tag $end -$scope struct HdlSome $end -$var wire 16 )mz0| id $end -$var string 1 py)pL config $end -$upscope $end -$upscope $end -$var wire 1 U0en] ready $end -$upscope $end -$scope struct cant_cause_cancel $end -$scope struct data $end -$var string 1 5hZ>q \$tag $end -$scope struct HdlSome $end -$var wire 16 7h!LU id $end -$var string 1 %}2/& config $end -$upscope $end -$upscope $end -$var wire 1 f)A)g ready $end -$upscope $end -$scope struct finished $end -$scope struct data $end -$var string 1 $"9>$ \$tag $end -$scope struct HdlSome $end -$var wire 16 %/xoj id $end -$scope struct finished_successfully $end -$var string 1 F[4T> \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 }>"!D value $end -$var string 1 AnjZB config $end -$upscope $end -$scope struct dest_value $end -$var wire 64 @uKa` int_fp $end -$scope struct flags $end -$var wire 1 PXS4< pwr_ca32_x86_af $end -$var wire 1 bwT%C pwr_ca_x86_cf $end -$var wire 1 x2_4& pwr_ov32_x86_df $end -$var wire 1 kr^K, pwr_ov_x86_of $end -$var wire 1 Ps pwr_cr_eq_x86_zf $end -$var wire 1 Bll@V pwr_cr_gt_x86_pf $end -$var wire 1 $&g|Y pwr_cr_lt_x86_sf $end +$var wire 1 =*<8{ pwr_ca32_x86_af $end +$var wire 1 xv''I pwr_ca_x86_cf $end +$var wire 1 2|Bf% pwr_ov32_x86_df $end +$var wire 1 :6Asf pwr_ov_x86_of $end +$var wire 1 A+4Y2 pwr_so $end +$var wire 1 7C_pi pwr_cr_eq_x86_zf $end +$var wire 1 81~U1 pwr_cr_gt_x86_pf $end +$var wire 1 ^TIzN pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 ^toP? \$tag $end -$var wire 64 /@\X+ Push $end +$var string 1 e(c's \$tag $end +$var wire 64 k{rI2 Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 3.,%e \$tag $end -$var wire 1 *9)8B HdlSome $end +$var string 1 VPLb] \$tag $end +$var wire 1 A8:EU HdlSome $end $upscope $end -$var string 1 dZ[Ro config $end +$var string 1 Zsr3- config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 x7"Ev \$tag $end +$var string 1 n_%y( \$tag $end $scope struct HdlSome $end -$var wire 16 Ew'zp id $end -$var wire 64 eb|by start_at_pc $end -$var string 1 ?Ga;8 config $end -$upscope $end -$upscope $end -$var string 1 ,vtMa config $end +$var wire 64 M|u@g start_at_pc $end +$var wire 1 2T}3\ cancel_after_retire $end +$var string 1 bVY&] config $end $upscope $end $upscope $end $var string 1 GIg)g config $end @@ -66428,54 +68917,43 @@ $var wire 1 &^SE8 pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 i\lMN is_speculative $end $var wire 1 apbC* sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 jQXzs \$tag $end +$scope struct output_ready $end +$var string 1 z,320 \$tag $end $scope struct HdlSome $end -$var wire 16 O=MlL id $end -$scope struct finished_successfully $end -$var string 1 P8-8W \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 PfkR\ value $end -$var string 1 Cu{)n config $end -$upscope $end +$var wire 16 B\WqM id $end $scope struct dest_value $end -$var wire 64 55wX8 int_fp $end +$var wire 64 nIfI) int_fp $end $scope struct flags $end -$var wire 1 &XF?Q pwr_ca32_x86_af $end -$var wire 1 Y|;%W pwr_ca_x86_cf $end -$var wire 1 EJ0xj pwr_ov32_x86_df $end -$var wire 1 +f(3" pwr_ov_x86_of $end -$var wire 1 9On=D pwr_so $end -$var wire 1 ;>tuP sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 i7(gr \$tag $end +$scope struct output_ready $end +$var string 1 a6}|. \$tag $end $scope struct HdlSome $end -$var wire 16 I7q., id $end -$scope struct finished_successfully $end -$var string 1 y|98\ \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 F@*gO value $end -$var string 1 K{jP\ config $end -$upscope $end +$var wire 16 o+,X5 id $end $scope struct dest_value $end -$var wire 64 J>^\" int_fp $end +$var wire 64 d82,+ int_fp $end $scope struct flags $end -$var wire 1 &LrD; pwr_ca32_x86_af $end -$var wire 1 yBIdU pwr_ca_x86_cf $end -$var wire 1 Ak*>z pwr_ov32_x86_df $end -$var wire 1 Z,)7k pwr_ov_x86_of $end -$var wire 1 [cZ0? pwr_so $end -$var wire 1 y:Q9lv+ \$tag $end +$var wire 1 OQb*% HdlSome $end $upscope $end -$var string 1 GHt/N config $end +$var string 1 &eJC1 config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 X$j1j \$tag $end +$var string 1 uB{f5 \$tag $end $scope struct HdlSome $end -$var wire 16 ;US]` id $end -$var wire 64 H^F%h start_at_pc $end -$var string 1 _e(r7 config $end -$upscope $end -$upscope $end -$var string 1 R0N^N config $end +$var wire 64 f$H@ start_at_pc $end +$var wire 1 luQkW cancel_after_retire $end +$var string 1 X69\Y config $end $upscope $end $upscope $end $var string 1 )orDt config $end @@ -67466,54 +69933,43 @@ $var wire 1 xx^Sr pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 ({ZLm is_speculative $end $var wire 1 +#cxJ sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 ;h%9 \$tag $end +$scope struct output_ready $end +$var string 1 9@B>N \$tag $end $scope struct HdlSome $end -$var wire 16 <"THk id $end -$scope struct finished_successfully $end -$var string 1 P^1`3 \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 siOTD value $end -$var string 1 5}dn| config $end -$upscope $end +$var wire 16 d8VUs id $end $scope struct dest_value $end -$var wire 64 D<0{O int_fp $end +$var wire 64 4Dr*q int_fp $end $scope struct flags $end -$var wire 1 3gagK pwr_ca32_x86_af $end -$var wire 1 JMnIn pwr_ca_x86_cf $end -$var wire 1 69d0] pwr_ov32_x86_df $end -$var wire 1 ],Yj0 pwr_ov_x86_of $end -$var wire 1 _SId5 pwr_so $end -$var wire 1 D~P3x pwr_cr_eq_x86_zf $end -$var wire 1 'afvq pwr_cr_gt_x86_pf $end -$var wire 1 }k_8@ pwr_cr_lt_x86_sf $end +$var wire 1 Uh%UW pwr_ca32_x86_af $end +$var wire 1 8qJbm pwr_ca_x86_cf $end +$var wire 1 lp$|[ pwr_ov32_x86_df $end +$var wire 1 Px.W= pwr_ov_x86_of $end +$var wire 1 ^]X)@ pwr_so $end +$var wire 1 '1_Hm pwr_cr_eq_x86_zf $end +$var wire 1 ETh'v pwr_cr_gt_x86_pf $end +$var wire 1 H&vw, pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 Tq_G` \$tag $end -$var wire 64 d'qrH Push $end +$var string 1 9#j&b \$tag $end +$var wire 64 ;vO:- Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 ia4[' \$tag $end -$var wire 1 TD^,} HdlSome $end +$var string 1 9;(SZ \$tag $end +$var wire 1 V!?T? HdlSome $end $upscope $end -$var string 1 ;\5fz config $end +$var string 1 5dX"y config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 K}F6b \$tag $end +$var string 1 ,{,'% \$tag $end $scope struct HdlSome $end -$var wire 16 71\4M id $end -$var wire 64 2|#&t start_at_pc $end -$var string 1 xY5n| config $end -$upscope $end -$upscope $end -$var string 1 fzUJv config $end +$var wire 64 8L0<[ start_at_pc $end +$var wire 1 UDCIa cancel_after_retire $end +$var string 1 X^?=7 config $end $upscope $end $upscope $end $var string 1 3/uiF config $end @@ -67985,54 +70441,43 @@ $var wire 1 Q.jw} pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 Zn%.R is_speculative $end $var wire 1 Hn?_6 sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 8i`qs \$tag $end +$scope struct output_ready $end +$var string 1 >ppw= \$tag $end $scope struct HdlSome $end -$var wire 16 Y*Gl1 id $end -$scope struct finished_successfully $end -$var string 1 693@R \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 +9ah1 value $end -$var string 1 IiWW} config $end -$upscope $end +$var wire 16 #Xr@3 id $end $scope struct dest_value $end -$var wire 64 9+bV; int_fp $end +$var wire 64 cY)WH int_fp $end $scope struct flags $end -$var wire 1 #SCY8 pwr_ca32_x86_af $end -$var wire 1 &34Qu pwr_ca_x86_cf $end -$var wire 1 P;pj" pwr_ov32_x86_df $end -$var wire 1 j%5e/ pwr_ov_x86_of $end -$var wire 1 RO>n` pwr_so $end -$var wire 1 O"`Uf pwr_cr_eq_x86_zf $end -$var wire 1 JyPFN pwr_cr_gt_x86_pf $end -$var wire 1 S$\$^ pwr_cr_lt_x86_sf $end +$var wire 1 J%>7, pwr_ca32_x86_af $end +$var wire 1 w9woN pwr_ca_x86_cf $end +$var wire 1 \by)D pwr_ov32_x86_df $end +$var wire 1 ,/mIW pwr_ov_x86_of $end +$var wire 1 ,W^`~ pwr_so $end +$var wire 1 JeKZ] pwr_cr_eq_x86_zf $end +$var wire 1 6w$ik pwr_cr_gt_x86_pf $end +$var wire 1 @a|Ho pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 *k/f$ \$tag $end -$var wire 64 w5AkQ Push $end +$var string 1 +,foy \$tag $end +$var wire 64 k]FH@ Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 ZX{]y \$tag $end -$var wire 1 #dt^6 HdlSome $end +$var string 1 #"Zk^ \$tag $end +$var wire 1 ]aJ~L HdlSome $end $upscope $end -$var string 1 Gihcp config $end +$var string 1 NLy?U config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 P=qz7 \$tag $end +$var string 1 cA5ib \$tag $end $scope struct HdlSome $end -$var wire 16 $$q\ config $end -$upscope $end -$upscope $end -$var string 1 ^>LF; config $end +$var wire 64 ]gr$W start_at_pc $end +$var wire 1 a83Z& cancel_after_retire $end +$var string 1 /N@YC config $end $upscope $end $upscope $end $var string 1 {eU2J config $end @@ -68504,54 +70949,43 @@ $var wire 1 ,OqIs pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 >o"A4 is_speculative $end $var wire 1 Y-w)F sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 *lZU? \$tag $end +$scope struct output_ready $end +$var string 1 -drPY \$tag $end $scope struct HdlSome $end -$var wire 16 &nj[' id $end -$scope struct finished_successfully $end -$var string 1 8L1x= \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 3nvu' value $end -$var string 1 .].!h config $end -$upscope $end +$var wire 16 y_z`] id $end $scope struct dest_value $end -$var wire 64 NG=Jo int_fp $end +$var wire 64 [`(!D int_fp $end $scope struct flags $end -$var wire 1 ?MY#@ pwr_ca32_x86_af $end -$var wire 1 0#o(q pwr_ca_x86_cf $end -$var wire 1 FH1dm pwr_ov32_x86_df $end -$var wire 1 W1t_c pwr_ov_x86_of $end -$var wire 1 A_bbf pwr_so $end -$var wire 1 >Q pwr_ov_x86_of $end +$var wire 1 ja$8v pwr_so $end +$var wire 1 urh}> pwr_cr_eq_x86_zf $end +$var wire 1 Y[9#" pwr_cr_gt_x86_pf $end +$var wire 1 b[P'b pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 kqXG \$tag $end -$var wire 64 [,b%b Push $end +$var string 1 [>>7/ \$tag $end +$var wire 64 Y/h(1 Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 C[D!0 \$tag $end -$var wire 1 C8k]O HdlSome $end +$var string 1 $`lWO \$tag $end +$var wire 1 CN;>8 HdlSome $end $upscope $end -$var string 1 )&oX; config $end +$var string 1 7Jca` config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 9[l< \$tag $end +$var string 1 (<6[# \$tag $end $scope struct HdlSome $end -$var wire 16 ME.U; id $end -$var wire 64 .}iOF start_at_pc $end -$var string 1 ,drYi config $end -$upscope $end -$upscope $end -$var string 1 >d$M: config $end +$var wire 64 5Cg\y start_at_pc $end +$var wire 1 ;CN;* cancel_after_retire $end +$var string 1 6M@VT config $end $upscope $end $upscope $end $var string 1 lmh)% config $end @@ -69023,54 +71457,43 @@ $var wire 1 w)|;& pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 ~[;y, is_speculative $end $var wire 1 3(~c} sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 Qp6W^ \$tag $end +$scope struct output_ready $end +$var string 1 {d0u$ \$tag $end $scope struct HdlSome $end -$var wire 16 "*;E value $end -$var string 1 %DxHj config $end -$upscope $end +$var wire 16 nsGlP id $end $scope struct dest_value $end -$var wire 64 V<'~_ int_fp $end +$var wire 64 hi)GF int_fp $end $scope struct flags $end -$var wire 1 Phxs~ pwr_ca32_x86_af $end -$var wire 1 eK,#2 pwr_ca_x86_cf $end -$var wire 1 j@1|b pwr_ov32_x86_df $end -$var wire 1 XfOJK pwr_ov_x86_of $end -$var wire 1 /{si) pwr_so $end -$var wire 1 \&-|i pwr_cr_eq_x86_zf $end -$var wire 1 s9RFs pwr_cr_gt_x86_pf $end -$var wire 1 CCOyj pwr_cr_lt_x86_sf $end +$var wire 1 VboZ, pwr_ca32_x86_af $end +$var wire 1 kyf\> pwr_ca_x86_cf $end +$var wire 1 =vIwG pwr_ov32_x86_df $end +$var wire 1 Cx4k) pwr_ov_x86_of $end +$var wire 1 `3K{" pwr_so $end +$var wire 1 (Jx,T pwr_cr_eq_x86_zf $end +$var wire 1 D[9s. pwr_cr_gt_x86_pf $end +$var wire 1 e?0P" pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 Q#$MV \$tag $end -$var wire 64 bDsv3 Push $end +$var string 1 Ma*\7 \$tag $end +$var wire 64 `'P++ Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 !8c"l \$tag $end -$var wire 1 9!or. HdlSome $end +$var string 1 wB1.d \$tag $end +$var wire 1 \$tag $end +$var string 1 #"r$8 \$tag $end $scope struct HdlSome $end $scope struct mop $end -$var wire 8 =Gdu9 fetch_block_id $end -$var wire 16 /Prl& id $end -$var wire 64 ]=,I. pc $end -$var wire 64 A")OE predicted_next_pc $end -$var wire 4 !Cp.7 size_in_bytes $end -$var wire 1 3P=sb is_first_mop_in_insn $end +$var wire 8 EYNKC fetch_block_id $end +$var wire 16 <`a(d id $end +$var wire 64 mmsOk pc $end +$var wire 64 7XMZr predicted_next_pc $end +$var wire 4 66w1a size_in_bytes $end +$var wire 1 h}^7~ is_first_mop_in_insn $end $scope struct mop $end -$var string 1 ^tR^1 \$tag $end +$var string 1 0QajO \$tag $end $scope struct AluBranch $end -$var string 1 [(35J \$tag $end +$var string 1 ,XZ}d \$tag $end $scope struct AddSub $end $scope struct alu_common $end $scope struct common $end -$var string 0 z9fRn prefix_pad $end +$var string 0 87"|= prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 Q>BJ_ adj_value $end -$var string 1 OajAc config $end +$var wire 3 Jl~uo adj_value $end +$var string 1 8KZp* config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 . invert_carry_in $end +$var wire 1 uf7[L add_pc $end $upscope $end $scope struct AddSubI $end $scope struct alu_common $end $scope struct common $end -$var string 0 An;8, prefix_pad $end +$var string 0 Dn1\{ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 Ym7JR adj_value $end -$var string 1 Hc}JI config $end +$var wire 3 3d\u4 adj_value $end +$var string 1 '~8%y config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 jju`% value $end -$var string 1 C>)i$ config $end +$var wire 4 F/5[; value $end +$var string 1 EZId& config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 o!W:Q \[0] $end -$var wire 7 /hz1' \[1] $end +$var wire 7 g_PPN \[0] $end +$var wire 7 eKS-Z \[1] $end $upscope $end -$var wire 34 tbK}; imm $end +$var wire 34 `,uj" imm $end $upscope $end -$var string 1 pubkA output_integer_mode $end +$var string 1 *TN*V output_integer_mode $end $upscope $end -$var wire 1 t0xh7 invert_src0 $end -$var wire 1 ]F~eo src1_is_carry_in $end -$var wire 1 vlpGz invert_carry_in $end -$var wire 1 {WJ.. add_pc $end +$var wire 1 \"rJJ invert_src0 $end +$var wire 1 @j{GW src1_is_carry_in $end +$var wire 1 0-CB" invert_carry_in $end +$var wire 1 #3yAy add_pc $end $upscope $end $scope struct LogicalFlags $end $scope struct common $end -$var string 0 }gV)k prefix_pad $end +$var string 0 c7hdj prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 &"{BA adj_value $end -$var string 1 ^<&Wk config $end +$var wire 3 yot\: adj_value $end +$var string 1 lA|@. config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 bc/2$ value $end -$var string 1 range $end $upscope $end $scope struct src1_start $end -$var wire 3 7oC8; value $end -$var string 1 DGiX0 range $end +$var wire 3 Ps:}@ value $end +$var string 1 }e6EV range $end $upscope $end $scope struct src2_start $end -$var wire 3 XH]La value $end -$var string 1 z}iYJ range $end +$var wire 3 1wVLv value $end +$var string 1 !>CSl range $end $upscope $end $scope struct dest_start $end -$var wire 3 ,.2]W value $end -$var string 1 y%7*p range $end +$var wire 3 LKAD] value $end +$var string 1 iQ07` range $end $upscope $end $scope struct dest_count $end -$var wire 4 6(M6q value $end -$var string 1 Zqi-a range $end +$var wire 4 "MB1D value $end +$var string 1 zU1:x range $end $upscope $end $upscope $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 `z3u] \[0] $end -$var wire 1 hc.Tk \[1] $end -$var wire 1 @-QSJ \[2] $end -$var wire 1 ibXT_ \[3] $end +$var wire 1 3X)y^ \[0] $end +$var wire 1 G/ \[0] $end $upscope $end -$var wire 34 tnEQ` imm $end +$var wire 34 +fttv imm $end $upscope $end -$var string 1 XX^8> output_integer_mode $end +$var string 1 i|21& output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 Ad?K5 \[0] $end -$var wire 1 c2DNG \[1] $end -$var wire 1 {h]WO \[2] $end -$var wire 1 E,NsS \[3] $end +$var wire 1 *0P*m \[0] $end +$var wire 1 &x.e2 \[1] $end +$var wire 1 R\{hG \[2] $end +$var wire 1 .Q,+* \[3] $end $upscope $end $upscope $end $upscope $end $scope struct ShiftRotate $end $scope struct alu_common $end $scope struct common $end -$var string 0 e?_zJ prefix_pad $end +$var string 0 >eym| prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 x54e& adj_value $end -$var string 1 ,eQf^ config $end +$var wire 3 ^WW@= adj_value $end +$var string 1 AUM_| config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 sM]"f value $end -$var string 1 inVR; config $end +$var wire 4 F2T,# value $end +$var string 1 QOFKL config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 W)m{: \[0] $end -$var wire 7 M!.x# \[1] $end -$var wire 7 1g/nf \[2] $end +$var wire 7 ~g4$S \[0] $end +$var wire 7 xr]Nk \[1] $end +$var wire 7 L%ctK \[2] $end $upscope $end $scope struct imm $end $scope struct shift_rotate_amount $end -$var string 1 ;S35F \$tag $end -$var wire 6 f@xLZ HdlSome $end +$var string 1 oIT.0 \$tag $end +$var wire 6 lB~:5 HdlSome $end $upscope $end -$var wire 1 Q~YaY shift_rotate_right $end +$var wire 1 +B5b) shift_rotate_right $end $scope struct dest_logic_op $end -$var string 1 Z+x][ \$tag $end +$var string 1 n3H#F \$tag $end $scope struct HdlSome $end -$var wire 6 )zFYC rotated_output_start $end -$var wire 6 _p|u^ rotated_output_len $end -$var wire 1 .s:kj fallback_is_src2 $end +$var wire 6 fallback_is_src2 $end $upscope $end $upscope $end $upscope $end $upscope $end -$var string 1 *x,Aa output_integer_mode $end +$var string 1 }G)Sg output_integer_mode $end $upscope $end -$var string 1 G($'f mode $end +$var string 1 ^Vk|< mode $end $upscope $end $scope struct Compare $end $scope struct common $end -$var string 0 ]DMBM prefix_pad $end +$var string 0 6\yA0 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 E?PC adj_value $end -$var string 1 FR*gE config $end +$var wire 3 C>+,& adj_value $end +$var string 1 o|zS2 config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 CPAZ( value $end -$var string 1 Rcb'R config $end +$var wire 4 k$G01 value $end +$var string 1 (/9E6 config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 (D$.h \[0] $end -$var wire 7 (568` \[1] $end +$var wire 7 ]_'&* \[0] $end +$var wire 7 9]dyk \[1] $end $upscope $end -$var wire 34 CH%YO imm $end +$var wire 34 Vut&j imm $end $upscope $end -$var string 1 !cgxo compare_mode $end +$var string 1 IkdRr compare_mode $end $upscope $end $scope struct CompareI $end $scope struct common $end -$var string 0 |~|!} prefix_pad $end +$var string 0 8ez?N prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 (i7#U adj_value $end -$var string 1 /,$bU config $end +$var wire 3 ;C=+Z adj_value $end +$var string 1 6yAm- config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 y\%J. value $end -$var string 1 @1(?7 config $end +$var wire 4 j(|or value $end +$var string 1 bu5\t config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 5F|'f \[0] $end +$var wire 7 hY;?S \[0] $end $upscope $end -$var wire 34 9e@}L imm $end +$var wire 34 @)Nkq imm $end $upscope $end -$var string 1 udTwd compare_mode $end +$var string 1 c[p|u compare_mode $end $upscope $end $scope struct Branch $end $scope struct common $end -$var string 0 +^$mp prefix_pad $end +$var string 0 +w;}) prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 2LL:I adj_value $end -$var string 1 O6oH3 config $end +$var wire 3 *Ri \[0] $end +$var wire 7 E9^9J \[1] $end +$var wire 7 x3p:L \[2] $end $upscope $end -$var wire 26 =VIv9 imm $end +$var wire 26 )ZfuF imm $end $upscope $end -$var wire 1 Ys0-a invert_src0_cond $end -$var string 1 |$p24 src0_cond_mode $end -$var wire 1 "@kGG invert_src2_eq_zero $end -$var wire 1 }_6&3 pc_relative $end -$var wire 1 ]sw&Q is_call $end -$var wire 1 q`Z`T is_ret $end +$var wire 1 kO7vP invert_src0_cond $end +$var string 1 v"b4$ src0_cond_mode $end +$var wire 1 tfk52 invert_src2_eq_zero $end +$var wire 1 UqlWF pc_relative $end +$var wire 1 5z2>Q is_call $end +$var wire 1 LmrA' is_ret $end $upscope $end $scope struct BranchI $end $scope struct common $end -$var string 0 Kz)L% prefix_pad $end +$var string 0 avQ}; prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 ^U@Hk adj_value $end -$var string 1 t:J!G config $end +$var wire 3 SLwRF adj_value $end +$var string 1 G/f'I config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 tf!y~ value $end -$var string 1 EJgZ% config $end +$var wire 4 g.qP invert_src2_eq_zero $end +$var wire 1 6@+$e pc_relative $end +$var wire 1 `rlBE is_call $end +$var wire 1 iwpB- is_ret $end $upscope $end $scope struct ReadSpecial $end $scope struct common $end -$var string 0 +6|0* prefix_pad $end +$var string 0 t:dO0 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 +tJN_ adj_value $end -$var string 1 lz++, config $end +$var wire 3 )()VL adj_value $end +$var string 1 ~nbL( config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 Y/dMN value $end -$var string 1 5+(*m config $end +$var wire 4 V39rE value $end +$var string 1 cR@%" config $end $upscope $end $upscope $end $scope struct src $end $upscope $end -$var string 1 +*5ql imm $end +$var string 1 &.(F^ imm $end $upscope $end $upscope $end $upscope $end $scope struct TransformedMove $end -$var string 1 QZ[[< \$tag $end +$var string 1 [.HiI \$tag $end $scope struct ReadL2Reg $end $scope struct common $end -$var wire 3 MK&N prefix_pad $end +$var wire 3 F6CUV prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 %n==B adj_value $end -$var string 1 JSp>X config $end +$var wire 3 buQm? adj_value $end +$var string 1 )]ra{ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 VvWw: value $end -$var string 1 ,1df' config $end +$var wire 4 c3Pz value $end +$var string 1 ipU-n config $end $upscope $end $upscope $end $scope struct src $end $upscope $end $scope struct imm $end -$var wire 8 k`u~A value $end +$var wire 8 ;4?h^ value $end $upscope $end $upscope $end $upscope $end $scope struct WriteL2Reg $end $scope struct common $end -$var wire 3 #$m\f prefix_pad $end +$var wire 3 =~3eG prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 K>t)> adj_value $end -$var string 1 KtZU` config $end +$var wire 3 lLDRV adj_value $end +$var string 1 `3Nx7 config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 cV'[} value $end -$var string 1 ~8vW? config $end +$var wire 4 =K_m# value $end +$var string 1 Fpm6` config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 5$[Xg \[0] $end +$var wire 7 DW;BZ \[0] $end $upscope $end $scope struct imm $end -$var wire 8 !1B(F value $end +$var wire 8 iG>:b value $end $upscope $end $upscope $end $upscope $end $upscope $end $scope struct LoadStore $end -$var string 1 ?D3u= \$tag $end +$var string 1 {fBT, \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 #PIXg prefix_pad $end +$var wire 3 AMbg: prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 Tvc%' adj_value $end -$var string 1 #>G7$ config $end +$var wire 3 7(J,^ adj_value $end +$var string 1 2w^0~ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 XS-*@ value $end -$var string 1 !ml{K config $end +$var wire 4 Z|v*^ value $end +$var string 1 FPj-r config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 7a*6C \[0] $end +$var wire 7 0?x/& \[0] $end $upscope $end -$var wire 34 ?9G"z imm $end +$var wire 34 8+!~W imm $end $upscope $end -$var string 1 \e_5< width $end -$var string 1 .Vh[% conversion $end +$var string 1 ny&+j width $end +$var string 1 ,,FiS conversion $end $upscope $end $upscope $end $scope struct Store $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 @:7~L prefix_pad $end +$var wire 3 I7C._ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 mpJW; adj_value $end -$var string 1 :(.Ae config $end +$var wire 3 kiFO, adj_value $end +$var string 1 8Sm\+ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 c\(hi value $end -$var string 1 10+4[ config $end +$var wire 4 )OPb/ value $end +$var string 1 9rqy config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 v$oyL \[0] $end -$var wire 7 RQDmA \[1] $end +$var wire 7 6kDhN \[0] $end +$var wire 7 ha>\v \[1] $end $upscope $end -$var wire 34 ,t+G4 imm $end +$var wire 34 >L;;6 imm $end $upscope $end -$var string 1 >HjT& width $end -$var string 1 @Q3Vf conversion $end +$var string 1 _eGK7 width $end +$var string 1 ZE3L7 conversion $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$var string 1 !U9:# config $end +$upscope $end +$upscope $end +$var wire 1 >YMCs ready $end +$upscope $end +$scope struct inputs_ready $end +$var string 1 26y~o \$tag $end +$scope struct HdlSome $end +$scope struct mop $end +$var wire 8 K#=r~ fetch_block_id $end +$var wire 16 InY9- id $end +$var wire 64 zM@z. pc $end +$var wire 64 LBirM predicted_next_pc $end +$var wire 4 WzI`m size_in_bytes $end +$var wire 1 irxdd is_first_mop_in_insn $end +$scope struct mop $end +$var string 1 Lpmzp \$tag $end +$scope struct AluBranch $end +$var string 1 c@wGa \$tag $end +$scope struct AddSub $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 l+:E= prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 I66X_ adj_value $end +$var string 1 ,2y\3 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 zps{; value $end +$var string 1 A6xme config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 1\Sjd \[0] $end +$var wire 7 KXwX) \[1] $end +$var wire 7 :wBWg \[2] $end +$upscope $end +$var wire 26 o-vN; imm $end +$upscope $end +$var string 1 !nDf? output_integer_mode $end +$upscope $end +$var wire 1 Qs7F# invert_src0 $end +$var wire 1 "fV$z src1_is_carry_in $end +$var wire 1 ]5A'N invert_carry_in $end +$var wire 1 Ln5TQ add_pc $end +$upscope $end +$scope struct AddSubI $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 Mz4f< prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 G%avb adj_value $end +$var string 1 A*M>- config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 K9Lmx value $end +$var string 1 /OOMd config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 >sni~ \[0] $end +$var wire 7 \cw}; \[1] $end +$upscope $end +$var wire 34 <]W'p imm $end +$upscope $end +$var string 1 vns.. output_integer_mode $end +$upscope $end +$var wire 1 gRD=8 invert_src0 $end +$var wire 1 hs}j( src1_is_carry_in $end +$var wire 1 V-6W@ invert_carry_in $end +$var wire 1 \1X.v add_pc $end +$upscope $end +$scope struct LogicalFlags $end +$scope struct common $end +$var string 0 ..;w9 prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 w~3u6 adj_value $end +$var string 1 r}VGt config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 &)-g( value $end +$var string 1 c4"b config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 ZHj6B \[0] $end +$var wire 7 "I&YM \[1] $end +$var wire 7 (wLOq \[2] $end +$upscope $end +$scope struct imm $end +$scope struct src0_start $end +$var wire 3 4X{o$ value $end +$var string 1 2/;$" range $end +$upscope $end +$scope struct src1_start $end +$var wire 3 e&(M# value $end +$var string 1 ?V&w3 range $end +$upscope $end +$scope struct src2_start $end +$var wire 3 Z>{<] value $end +$var string 1 TQZw+ range $end +$upscope $end +$scope struct dest_start $end +$var wire 3 c`s8f value $end +$var string 1 sGXDl range $end +$upscope $end +$scope struct dest_count $end +$var wire 4 hHRr> value $end +$var string 1 :w/'m range $end +$upscope $end +$upscope $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 dh-9$ \[0] $end +$var wire 1 WzFza \[1] $end +$var wire 1 vAx6 \[2] $end +$var wire 1 6Y1ny \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct Logical $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 D)/kH prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 DVtq; adj_value $end +$var string 1 tUP|G config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 ,g~P% value $end +$var string 1 oa!I> config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 gO\ck \[0] $end +$var wire 7 b9G4$ \[1] $end +$upscope $end +$var wire 34 P%b*; imm $end +$upscope $end +$var string 1 zR#F output_integer_mode $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 W_70q \[0] $end +$var wire 1 s57# \[1] $end +$var wire 1 {*[ZE \[2] $end +$var wire 1 -!eT- \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct LogicalI $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 i'!OW prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 \[2] $end +$var wire 1 imFF5 \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct ShiftRotate $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 Vro1Z prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 a]y8_ HdlSome $end +$upscope $end +$var wire 1 (qrY; shift_rotate_right $end +$scope struct dest_logic_op $end +$var string 1 dCl9H \$tag $end +$scope struct HdlSome $end +$var wire 6 >(jJ% rotated_output_start $end +$var wire 6 )[W/l rotated_output_len $end +$var wire 1 [8i;s fallback_is_src2 $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$var string 1 9^!bp output_integer_mode $end +$upscope $end +$var string 1 ,C$FO mode $end +$upscope $end +$scope struct Compare $end +$scope struct common $end +$var string 0 p_fYF prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 O;"di adj_value $end +$var string 1 ]-!tb config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 I)TA\ value $end +$var string 1 ;?(]= config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 Ig:rJ \[0] $end +$var wire 7 fO2D; \[1] $end +$upscope $end +$var wire 34 yvxDt imm $end +$upscope $end +$var string 1 c2:Uq compare_mode $end +$upscope $end +$scope struct CompareI $end +$scope struct common $end +$var string 0 76rDC prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 -!h[o adj_value $end +$var string 1 rlQ~{ config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 ,=]me value $end +$var string 1 d!}y\ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 w<#Nt \[0] $end +$upscope $end +$var wire 34 4N#b> imm $end +$upscope $end +$var string 1 gU7~K compare_mode $end +$upscope $end +$scope struct Branch $end +$scope struct common $end +$var string 0 T6Zey prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 foxD adj_value $end +$var string 1 "pP'1 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 $,B@r value $end +$var string 1 X=rpu config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 fMK]j \[0] $end +$var wire 7 -jRL= \[1] $end +$var wire 7 c+~nn \[2] $end +$upscope $end +$var wire 26 m'a-Z imm $end +$upscope $end +$var wire 1 =)SYx invert_src0_cond $end +$var string 1 s.BHF src0_cond_mode $end +$var wire 1 f=Nx3 invert_src2_eq_zero $end +$var wire 1 PR"*( pc_relative $end +$var wire 1 'E0c) is_call $end +$var wire 1 cf)C3 is_ret $end +$upscope $end +$scope struct BranchI $end +$scope struct common $end +$var string 0 Z;8w> prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 {VoG= adj_value $end +$var string 1 Z0Q/> config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 CK9NK value $end +$var string 1 y_|3E config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 7%nUf \[0] $end +$var wire 7 6b4#" \[1] $end +$upscope $end +$var wire 34 oVK!V imm $end +$upscope $end +$var wire 1 0;jX) invert_src0_cond $end +$var string 1 ;IK53 src0_cond_mode $end +$var wire 1 Xz+j- invert_src2_eq_zero $end +$var wire 1 ^i63m pc_relative $end +$var wire 1 N8ymd is_call $end +$var wire 1 e!u config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$scope struct imm $end +$var wire 8 u*zBi value $end +$upscope $end +$upscope $end +$upscope $end +$scope struct WriteL2Reg $end +$scope struct common $end +$var wire 3 C|eJ prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 R}HI% adj_value $end +$var string 1 I'^}, config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 Nr!]K value $end +$var string 1 J,w{* config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 uNu^> \[0] $end +$upscope $end +$scope struct imm $end +$var wire 8 !o84R value $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$scope struct LoadStore $end +$var string 1 Wyy6% \$tag $end +$scope struct Load $end +$scope struct load_store_common $end +$scope struct common $end +$var wire 3 /Ub8; prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 f$6dC adj_value $end +$var string 1 R!p4l config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 ftM6e value $end +$var string 1 kT_7* config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 4tP}| \[0] $end +$upscope $end +$var wire 34 Fz#Yt imm $end +$upscope $end +$var string 1 iQ2/T width $end +$var string 1 sQijI conversion $end +$upscope $end +$upscope $end +$scope struct Store $end +$scope struct load_store_common $end +$scope struct common $end +$var wire 3 uIBF' prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 |W pwr_cr_gt_x86_pf $end -$var wire 1 8rEU{ pwr_cr_lt_x86_sf $end +$var wire 1 ``LGx pwr_ca32_x86_af $end +$var wire 1 _YfKC pwr_ca_x86_cf $end +$var wire 1 u7uV= pwr_ov32_x86_df $end +$var wire 1 /`u"u pwr_ov_x86_of $end +$var wire 1 *?|je pwr_so $end +$var wire 1 m_H]t pwr_cr_eq_x86_zf $end +$var wire 1 =nK@5 pwr_cr_gt_x86_pf $end +$var wire 1 U8+;& pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct \[1] $end -$var wire 64 5O$@= int_fp $end +$var wire 64 9#]Hf int_fp $end $scope struct flags $end -$var wire 1 U6&I} pwr_ca32_x86_af $end -$var wire 1 P{z~$ pwr_ca_x86_cf $end -$var wire 1 >A9tT pwr_ov32_x86_df $end -$var wire 1 3~6GP pwr_ov_x86_of $end -$var wire 1 ag;T< pwr_so $end -$var wire 1 1w^&R pwr_cr_eq_x86_zf $end -$var wire 1 6`r4z pwr_cr_gt_x86_pf $end -$var wire 1 9C id $end -$var string 1 .5+$K config $end -$upscope $end -$upscope $end -$var wire 1 BtLzB ready $end -$upscope $end -$scope struct finished $end -$scope struct data $end -$var string 1 =AE%r \$tag $end -$scope struct HdlSome $end -$var wire 16 /G/El id $end -$scope struct finished_successfully $end -$var string 1 |Sy<) \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 D.S&M value $end -$var string 1 j:R!2 config $end -$upscope $end -$scope struct dest_value $end -$var wire 64 006DP int_fp $end -$scope struct flags $end -$var wire 1 B')v" pwr_ca32_x86_af $end -$var wire 1 cWgV| pwr_ca_x86_cf $end -$var wire 1 t~kbW pwr_ov32_x86_df $end -$var wire 1 =LJ\> pwr_ov_x86_of $end -$var wire 1 `%B#e pwr_so $end -$var wire 1 gR=]a pwr_cr_eq_x86_zf $end -$var wire 1 6o/bl pwr_cr_gt_x86_pf $end -$var wire 1 W:JoW pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct predictor_op $end -$scope struct call_stack_op $end -$var string 1 hNa.b \$tag $end -$var wire 64 k>x=G Push $end -$upscope $end -$scope struct cond_br_taken $end -$var string 1 n&4Z$ \$tag $end -$var wire 1 @o}tL HdlSome $end -$upscope $end -$var string 1 3t}dG config $end -$upscope $end -$upscope $end -$upscope $end -$scope struct caused_cancel $end -$var string 1 7.I$5 \$tag $end -$scope struct HdlSome $end -$var wire 16 j]NEJ id $end -$var wire 64 G2F;n start_at_pc $end -$var string 1 ]Un9z config $end -$upscope $end -$upscope $end -$var string 1 fBaJC config $end -$upscope $end -$upscope $end -$var wire 1 r?$@B ready $end -$upscope $end $var string 1 ";FVr config $end $upscope $end $scope struct debug_state $end @@ -70638,54 +73469,43 @@ $var wire 1 wYlVP pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 |V/N- is_speculative $end $var wire 1 r5B<) sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 .PDqI \$tag $end +$scope struct output_ready $end +$var string 1 rO&kb \$tag $end $scope struct HdlSome $end -$var wire 16 QeL5a id $end -$scope struct finished_successfully $end -$var string 1 .Wv(g \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 f3FnL value $end -$var string 1 BDckD config $end -$upscope $end +$var wire 16 Os~O@ id $end $scope struct dest_value $end -$var wire 64 O:GV int_fp $end $scope struct flags $end -$var wire 1 oQ\H; pwr_ca32_x86_af $end -$var wire 1 *i!6o pwr_ca_x86_cf $end -$var wire 1 Qtz`e pwr_ov32_x86_df $end -$var wire 1 kXYzr pwr_ov_x86_of $end -$var wire 1 [z13M pwr_so $end -$var wire 1 }UYRr pwr_cr_eq_x86_zf $end -$var wire 1 fJ3h] pwr_cr_gt_x86_pf $end -$var wire 1 7?=(y pwr_cr_lt_x86_sf $end +$var wire 1 o{Qqq pwr_ca32_x86_af $end +$var wire 1 dYJH1 pwr_ca_x86_cf $end +$var wire 1 B:(/s pwr_ov32_x86_df $end +$var wire 1 ^@{4f pwr_ov_x86_of $end +$var wire 1 =3[m? pwr_so $end +$var wire 1 ab@bQ pwr_cr_eq_x86_zf $end +$var wire 1 j0i>2 pwr_cr_gt_x86_pf $end +$var wire 1 0Z69G pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 2UtW) \$tag $end -$var wire 64 +C,|[ Push $end +$var string 1 7UX>\ \$tag $end +$var wire 64 >SZg2 Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 @.4<$ \$tag $end -$var wire 1 J*.>. HdlSome $end +$var string 1 nWBO[ \$tag $end +$var wire 1 .Hh}T HdlSome $end $upscope $end -$var string 1 s&V0I config $end +$var string 1 G$Z_y config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 ImXZn \$tag $end +$var string 1 VFR}l \$tag $end $scope struct HdlSome $end -$var wire 16 IIeI* id $end -$var wire 64 *]"Rc start_at_pc $end -$var string 1 0$/s6 config $end -$upscope $end -$upscope $end -$var string 1 S/U32 config $end +$var wire 64 ;LdQx start_at_pc $end +$var wire 1 &e%@k cancel_after_retire $end +$var string 1 Z019_ config $end $upscope $end $upscope $end $var string 1 7fIl# config $end @@ -71157,54 +73977,43 @@ $var wire 1 +R0.[ pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 7Fn4F is_speculative $end $var wire 1 oRdKT sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 q+].+ \$tag $end +$scope struct output_ready $end +$var string 1 NVYSS \$tag $end $scope struct HdlSome $end -$var wire 16 (C/\< id $end -$scope struct finished_successfully $end -$var string 1 OKq6= \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 GJy$~ value $end -$var string 1 7x2l+ config $end -$upscope $end +$var wire 16 [}=X* id $end $scope struct dest_value $end -$var wire 64 UYRNz int_fp $end +$var wire 64 jwZMO int_fp $end $scope struct flags $end -$var wire 1 hT"ir pwr_ca32_x86_af $end -$var wire 1 zF)/m pwr_ca_x86_cf $end -$var wire 1 p%f,[ pwr_ov32_x86_df $end -$var wire 1 (IM\L pwr_ov_x86_of $end -$var wire 1 {[af+ pwr_so $end -$var wire 1 lI]oV pwr_cr_eq_x86_zf $end -$var wire 1 Ky{db pwr_cr_gt_x86_pf $end -$var wire 1 ,d>|w pwr_cr_lt_x86_sf $end +$var wire 1 p8MtX pwr_ca32_x86_af $end +$var wire 1 7U)J- pwr_ca_x86_cf $end +$var wire 1 QgU|= pwr_ov32_x86_df $end +$var wire 1 5?i{= pwr_ov_x86_of $end +$var wire 1 oah)Q pwr_so $end +$var wire 1 '{Se1 pwr_cr_eq_x86_zf $end +$var wire 1 [f`CN pwr_cr_gt_x86_pf $end +$var wire 1 N1y(/ pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 k(R!% \$tag $end -$var wire 64 H(sC( Push $end +$var string 1 z|mg> \$tag $end +$var wire 64 /xG%> Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 sC#JY \$tag $end -$var wire 1 )_o8u HdlSome $end +$var string 1 &y{E= \$tag $end +$var wire 1 LzGU( HdlSome $end $upscope $end -$var string 1 fY2os config $end +$var string 1 ~lx|2 config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 QR`Un \$tag $end +$var string 1 wwwZ: \$tag $end $scope struct HdlSome $end -$var wire 16 65vqJ id $end -$var wire 64 /z]H) start_at_pc $end -$var string 1 h(9X1 config $end -$upscope $end -$upscope $end -$var string 1 96(|- config $end +$var wire 64 2="a. start_at_pc $end +$var wire 1 t/JD+ cancel_after_retire $end +$var string 1 X^C3& config $end $upscope $end $upscope $end $var string 1 []lIi config $end @@ -71676,54 +74485,43 @@ $var wire 1 'kxi& pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 T_flR is_speculative $end $var wire 1 REE7% sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 b|].9 \$tag $end +$scope struct output_ready $end +$var string 1 $/wE: \$tag $end $scope struct HdlSome $end -$var wire 16 /-PcX id $end -$scope struct finished_successfully $end -$var string 1 ZPA36 \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 eqLlI value $end -$var string 1 c-T@D config $end -$upscope $end +$var wire 16 I+-N_ id $end $scope struct dest_value $end -$var wire 64 A^F,X int_fp $end +$var wire 64 =]Z~E int_fp $end $scope struct flags $end -$var wire 1 pfj|L pwr_ca32_x86_af $end -$var wire 1 p"h[C pwr_ca_x86_cf $end -$var wire 1 8~]W_ pwr_ov32_x86_df $end -$var wire 1 mdu5H pwr_ov_x86_of $end -$var wire 1 >mFyI pwr_so $end -$var wire 1 }7Nh6 pwr_cr_eq_x86_zf $end -$var wire 1 C>xxM pwr_cr_gt_x86_pf $end -$var wire 1 /[eSV pwr_cr_lt_x86_sf $end +$var wire 1 E`f:d pwr_ca32_x86_af $end +$var wire 1 :[_g^ pwr_ca_x86_cf $end +$var wire 1 GlUn) pwr_ov32_x86_df $end +$var wire 1 #=/cO pwr_ov_x86_of $end +$var wire 1 `B$Os pwr_so $end +$var wire 1 {rgO^ pwr_cr_eq_x86_zf $end +$var wire 1 a&fD@ pwr_cr_gt_x86_pf $end +$var wire 1 b))z8 pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 ]N&]z \$tag $end -$var wire 64 ttgbC Push $end +$var string 1 SFh>Z \$tag $end +$var wire 64 p"e\H Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 T[,Y. \$tag $end -$var wire 1 /@[/O HdlSome $end +$var string 1 S5<1| \$tag $end +$var wire 1 8$V1# HdlSome $end $upscope $end -$var string 1 A=n|y config $end +$var string 1 =`gS{ config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 ?]_Y* \$tag $end +$var string 1 i,9Y3 \$tag $end $scope struct HdlSome $end -$var wire 16 Xl#W" id $end -$var wire 64 AOQVx start_at_pc $end -$var string 1 `I@+M config $end -$upscope $end -$upscope $end -$var string 1 {<0M4 config $end +$var wire 64 Fu|LJ start_at_pc $end +$var wire 1 O{I-_ cancel_after_retire $end +$var string 1 &?KA1 config $end $upscope $end $upscope $end $var string 1 j=K24 config $end @@ -72195,54 +74993,43 @@ $var wire 1 GWcWj pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 }B];1 is_speculative $end $var wire 1 LU' int_fp $end $scope struct flags $end -$var wire 1 iXvj% pwr_ca32_x86_af $end -$var wire 1 G*W@> pwr_ca_x86_cf $end -$var wire 1 D=.t( pwr_ov32_x86_df $end -$var wire 1 lN<8& pwr_ov_x86_of $end -$var wire 1 XY5KK pwr_so $end -$var wire 1 )m5vX pwr_cr_eq_x86_zf $end -$var wire 1 }UZJ: pwr_cr_gt_x86_pf $end -$var wire 1 au9vm pwr_cr_lt_x86_sf $end +$var wire 1 4v}<` pwr_ca32_x86_af $end +$var wire 1 ]~~N9 pwr_ca_x86_cf $end +$var wire 1 Wr0HZ pwr_ov32_x86_df $end +$var wire 1 6(Bzr pwr_ov_x86_of $end +$var wire 1 \o;j% pwr_so $end +$var wire 1 y!C_{n pwr_so $end -$var wire 1 qHXO0 pwr_cr_eq_x86_zf $end -$var wire 1 l{efd pwr_cr_gt_x86_pf $end -$var wire 1 *J&:t pwr_cr_lt_x86_sf $end +$var wire 1 }nrf{ pwr_ca32_x86_af $end +$var wire 1 Q(;H[ pwr_ca_x86_cf $end +$var wire 1 sx|N] pwr_ov32_x86_df $end +$var wire 1 XpCP" pwr_ov_x86_of $end +$var wire 1 `,lz] pwr_so $end +$var wire 1 yWxjb pwr_cr_eq_x86_zf $end +$var wire 1 |HACB pwr_cr_gt_x86_pf $end +$var wire 1 J6jk/ pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 D$+,r \$tag $end -$var wire 64 0yHUo Push $end +$var string 1 iioOD \$tag $end +$var wire 64 .6=o} Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 CJ+NB \$tag $end -$var wire 1 -NG__ HdlSome $end +$var string 1 o'az~ \$tag $end +$var wire 1 +Gvn@ HdlSome $end $upscope $end -$var string 1 |NMx2 config $end +$var string 1 ?iCY6 config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 <8:5s \$tag $end +$var string 1 vKeg. \$tag $end $scope struct HdlSome $end -$var wire 16 >S?ov id $end -$var wire 64 "b+RB start_at_pc $end -$var string 1 {A?v> config $end -$upscope $end -$upscope $end -$var string 1 s#:!H config $end +$var wire 64 >A;!w start_at_pc $end +$var wire 1 vnM7( cancel_after_retire $end +$var string 1 =&s!\ config $end $upscope $end $upscope $end $var string 1 `dgJr config $end @@ -73233,54 +76009,43 @@ $var wire 1 Ady*N pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 >+JCr is_speculative $end $var wire 1 'Ac6? sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 'a;-p \$tag $end +$scope struct output_ready $end +$var string 1 7_yXG \$tag $end $scope struct HdlSome $end -$var wire 16 IT%I` id $end -$scope struct finished_successfully $end -$var string 1 wAG^H \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 M=UUD value $end -$var string 1 -S,ic config $end -$upscope $end +$var wire 16 >K8k1 id $end $scope struct dest_value $end -$var wire 64 ZSV#U int_fp $end +$var wire 64 ]Ba4? int_fp $end $scope struct flags $end -$var wire 1 na*4} pwr_ca32_x86_af $end -$var wire 1 )AO?? pwr_ca_x86_cf $end -$var wire 1 MjeK9 pwr_ov32_x86_df $end -$var wire 1 YNV1j pwr_ov_x86_of $end -$var wire 1 3xedS pwr_so $end -$var wire 1 bS?l1 pwr_cr_eq_x86_zf $end -$var wire 1 !+,xv pwr_cr_gt_x86_pf $end -$var wire 1 9]\T= pwr_cr_lt_x86_sf $end +$var wire 1 j/W^~ pwr_ca32_x86_af $end +$var wire 1 w?(5B pwr_ca_x86_cf $end +$var wire 1 qT\9D pwr_ov32_x86_df $end +$var wire 1 ~)haX pwr_ov_x86_of $end +$var wire 1 k}@ix pwr_so $end +$var wire 1 E#u@x pwr_cr_eq_x86_zf $end +$var wire 1 P/x^c pwr_cr_gt_x86_pf $end +$var wire 1 NIIUq pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 eelDM \$tag $end -$var wire 64 wjB/J Push $end +$var string 1 ]G9L) \$tag $end +$var wire 64 8glNW Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 ]vzLn \$tag $end -$var wire 1 (ghn" HdlSome $end +$var string 1 [Tm3t \$tag $end +$var wire 1 |MbDc HdlSome $end $upscope $end -$var string 1 Tmy." config $end +$var string 1 RXPd> config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 F&Kx? \$tag $end +$var string 1 u}w#m \$tag $end $scope struct HdlSome $end -$var wire 16 :cT^( id $end -$var wire 64 65wAe start_at_pc $end -$var string 1 Tb-!z config $end -$upscope $end -$upscope $end -$var string 1 d@#:' config $end +$var wire 64 @|4ci start_at_pc $end +$var wire 1 -|?5C cancel_after_retire $end +$var string 1 sDg<$ config $end $upscope $end $upscope $end $var string 1 W)z]( config $end @@ -73752,54 +76517,43 @@ $var wire 1 NPf%' pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 `?+*g is_speculative $end $var wire 1 ;dXCb sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 8CYXN \$tag $end +$scope struct output_ready $end +$var string 1 e%1rB \$tag $end $scope struct HdlSome $end -$var wire 16 +EPh` id $end -$scope struct finished_successfully $end -$var string 1 lTy8- \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 V'Fpz value $end -$var string 1 <}3_) config $end -$upscope $end +$var wire 16 Taq|T id $end $scope struct dest_value $end -$var wire 64 tdLl) int_fp $end +$var wire 64 or=`> int_fp $end $scope struct flags $end -$var wire 1 Y\2%h pwr_ca32_x86_af $end -$var wire 1 0'0Wt pwr_ca_x86_cf $end -$var wire 1 "mS~- pwr_ov32_x86_df $end -$var wire 1 R-Ar| pwr_ov_x86_of $end -$var wire 1 ^4&A: pwr_so $end -$var wire 1 e.QV& pwr_cr_eq_x86_zf $end -$var wire 1 v7h]H pwr_cr_gt_x86_pf $end -$var wire 1 &Gt6R pwr_cr_lt_x86_sf $end +$var wire 1 QHW1s pwr_ca32_x86_af $end +$var wire 1 6A@'} pwr_ca_x86_cf $end +$var wire 1 +WUpk pwr_ov32_x86_df $end +$var wire 1 A](2| pwr_ov_x86_of $end +$var wire 1 6TRJi pwr_so $end +$var wire 1 ^4br( pwr_cr_eq_x86_zf $end +$var wire 1 bGZ?} pwr_cr_gt_x86_pf $end +$var wire 1 E14wU pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 J=)(U \$tag $end -$var wire 64 !Ib^i Push $end +$var string 1 j$Zn~ \$tag $end +$var wire 64 SF3dn Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 ![5W8 \$tag $end -$var wire 1 2."|b HdlSome $end +$var string 1 XV"ac \$tag $end +$var wire 1 ja:68 HdlSome $end $upscope $end -$var string 1 )'Pg# config $end +$var string 1 oWL7d config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 *x~?8 \$tag $end +$var string 1 u#o5+ \$tag $end $scope struct HdlSome $end -$var wire 16 H>#'0 id $end -$var wire 64 Ob2h \$tag $end $scope struct HdlSome $end -$var wire 16 ez}|X id $end -$scope struct finished_successfully $end -$var string 1 yGk{K \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 ]=+VZ value $end -$var string 1 }6th9 config $end -$upscope $end +$var wire 16 vKm}n id $end $scope struct dest_value $end -$var wire 64 OrXk1 int_fp $end +$var wire 64 u2V-e int_fp $end $scope struct flags $end -$var wire 1 "_hW4 pwr_ca32_x86_af $end -$var wire 1 6{#"X pwr_ca_x86_cf $end -$var wire 1 |Ei,' pwr_ov32_x86_df $end -$var wire 1 |=s%/ pwr_ov_x86_of $end -$var wire 1 H&eRw pwr_so $end -$var wire 1 *X\## pwr_cr_eq_x86_zf $end -$var wire 1 C)a(3 pwr_cr_gt_x86_pf $end -$var wire 1 s])7 pwr_so $end +$var wire 1 t}bP pwr_cr_eq_x86_zf $end +$var wire 1 5RC<3 pwr_cr_gt_x86_pf $end +$var wire 1 s0UDm pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 Sqk]z \$tag $end -$var wire 64 %X\7c Push $end +$var string 1 ue5$A \$tag $end +$var wire 64 @(42T Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 *$iZS \$tag $end -$var wire 1 mL[Ah HdlSome $end +$var string 1 wBB/n \$tag $end +$var wire 1 SHm,c HdlSome $end $upscope $end -$var string 1 %~L*V config $end +$var string 1 }3|NC config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 pjv?e \$tag $end +$var string 1 /D4EE \$tag $end $scope struct HdlSome $end -$var wire 16 P6\&U id $end -$var wire 64 2JIO[ start_at_pc $end -$var string 1 -@Bv^ config $end -$upscope $end -$upscope $end -$var string 1 8SKg- config $end +$var wire 64 !Gam< start_at_pc $end +$var wire 1 w<(-f cancel_after_retire $end +$var string 1 ]=rfA config $end $upscope $end $upscope $end $var string 1 E~hax config $end @@ -74333,7 +77076,6 @@ $scope struct execution_state $end $upscope $end $var string 1 jVV,n id $end -$var wire 64 E|F~\ pc $end -$var wire 64 g.&#[ predicted_next_pc $end -$var wire 4 eqz@h size_in_bytes $end -$var wire 1 vjjSN is_first_mop_in_insn $end +$var wire 8 /,qQx fetch_block_id $end +$var wire 16 g:=mM id $end +$var wire 64 ld'/] pc $end +$var wire 64 .vO9C predicted_next_pc $end +$var wire 4 ]oL_p size_in_bytes $end +$var wire 1 QrY.t is_first_mop_in_insn $end $scope struct mop $end -$var string 1 @k8nt \$tag $end +$var string 1 R\3VE \$tag $end $scope struct AluBranch $end -$var string 1 i!S`, \$tag $end +$var string 1 / \$tag $end $scope struct AddSub $end $scope struct alu_common $end $scope struct common $end -$var string 0 6Ddby prefix_pad $end +$var string 0 M+VD> prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 dk$96 adj_value $end -$var string 1 _vUy+ config $end +$var wire 3 #'>Kb adj_value $end +$var string 1 Rq%X) config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 >=YqK value $end -$var string 1 d6?]D config $end +$var wire 4 7KC4r value $end +$var string 1 fl4 config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 WX6$} \[0] $end -$var wire 7 [cy(, \[1] $end +$var wire 7 B6j+a \[0] $end +$var wire 7 0&K$9 \[1] $end $upscope $end -$var wire 34 Wyu%d imm $end +$var wire 34 V;j=| imm $end $upscope $end -$var string 1 u-0IS output_integer_mode $end +$var string 1 :4FXk output_integer_mode $end $upscope $end -$var wire 1 A:e$_ invert_src0 $end -$var wire 1 1N,Z{ src1_is_carry_in $end -$var wire 1 ;.K4l invert_carry_in $end -$var wire 1 $vW5P add_pc $end +$var wire 1 '`GI# invert_src0 $end +$var wire 1 e+w}) src1_is_carry_in $end +$var wire 1 wy?VK invert_carry_in $end +$var wire 1 B*HGB add_pc $end $upscope $end $scope struct LogicalFlags $end $scope struct common $end -$var string 0 ~QA!W prefix_pad $end +$var string 0 K5<4C prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 Hl)sN adj_value $end -$var string 1 ;%5)w config $end +$var wire 3 &{w6( adj_value $end +$var string 1 #$HxQ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 s|3GU value $end -$var string 1 -smtw config $end +$var wire 4 ;CO,F value $end +$var string 1 *?Dxc config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 %8Q)T \[0] $end -$var wire 7 qB)p{ \[1] $end -$var wire 7 BbO+g \[2] $end +$var wire 7 h**~) \[0] $end +$var wire 7 k,g+Z \[1] $end +$var wire 7 3v-QX \[2] $end $upscope $end $scope struct imm $end $scope struct src0_start $end -$var wire 3 @i3K@ value $end -$var string 1 3=58l range $end +$var wire 3 ]RXZa value $end +$var string 1 ]@3fB range $end $upscope $end $scope struct src1_start $end -$var wire 3 NOUO# value $end -$var string 1 ,;-wb range $end +$var wire 3 F:D-Z value $end +$var string 1 M$V%O range $end $upscope $end $scope struct src2_start $end -$var wire 3 7!*sK value $end -$var string 1 w-{#v range $end +$var wire 3 ;/<%D value $end +$var string 1 $3jcN range $end $upscope $end $scope struct dest_start $end -$var wire 3 `[Z&^ value $end -$var string 1 @@}5' range $end +$var wire 3 k5?pH value $end +$var string 1 cJUM6 range $end $upscope $end $scope struct dest_count $end -$var wire 4 0%JZB value $end -$var string 1 Ig[j= range $end +$var wire 4 $K6j< value $end +$var string 1 hHeI_ range $end $upscope $end $upscope $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 +^O)K \[0] $end -$var wire 1 $%?_( \[1] $end -$var wire 1 ^A3rV \[2] $end -$var wire 1 dW)W" \[3] $end +$var wire 1 @*~C+ \[0] $end +$var wire 1 GE*|/ \[1] $end +$var wire 1 EA_M2 \[2] $end +$var wire 1 ?{MM" \[3] $end $upscope $end $upscope $end $upscope $end $scope struct Logical $end $scope struct alu_common $end $scope struct common $end -$var string 0 =\l1+ prefix_pad $end +$var string 0 Rt#'o prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 k;}"q adj_value $end -$var string 1 uj*(j config $end +$var wire 3 @tQ0| adj_value $end +$var string 1 pZ~0" config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 PbPI0 value $end -$var string 1 NsQzC config $end +$var wire 4 ZmqS_ value $end +$var string 1 gSOPR config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 .(3AL \[0] $end -$var wire 7 v \[3] $end $upscope $end $upscope $end $upscope $end $scope struct LogicalI $end $scope struct alu_common $end $scope struct common $end -$var string 0 ~fAlO prefix_pad $end +$var string 0 V1B=v prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 o2xke adj_value $end -$var string 1 y%l_= config $end +$var wire 3 ~C9?J adj_value $end +$var string 1 *fz9C config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 HM7ew value $end -$var string 1 (~T4F config $end +$var wire 4 oYP]b value $end +$var string 1 ~5>pa config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 G*e4a \[0] $end +$var wire 7 -W14c \[0] $end $upscope $end -$var wire 34 3hr.J imm $end +$var wire 34 J~Qrj imm $end $upscope $end -$var string 1 &1Ua7 output_integer_mode $end +$var string 1 tHst^ output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 k0gZ: \[0] $end -$var wire 1 r>74s \[1] $end -$var wire 1 UD@{6 \[2] $end -$var wire 1 Pr] HdlSome $end +$var string 1 'aWh- \$tag $end +$var wire 6 +y&d' HdlSome $end $upscope $end -$var wire 1 HRvVC shift_rotate_right $end +$var wire 1 (R[~J shift_rotate_right $end $scope struct dest_logic_op $end -$var string 1 Gkn]I \$tag $end +$var string 1 P!%Rr \$tag $end $scope struct HdlSome $end -$var wire 6 `cRrJ rotated_output_start $end -$var wire 6 O'_SD rotated_output_len $end -$var wire 1 }J9R_: adj_value $end +$var string 1 Nc"$E config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 (A(P0 value $end -$var string 1 \%bC~ config $end +$var wire 4 ^py|E value $end +$var string 1 /KVBE config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 B%/u4 \[0] $end -$var wire 7 H]v|p \[1] $end +$var wire 7 ~La}- \[0] $end +$var wire 7 o2/7} \[1] $end $upscope $end -$var wire 34 =[s(# imm $end +$var wire 34 m9fl. imm $end $upscope $end -$var wire 1 jB>?R invert_src0_cond $end -$var string 1 xH^!T src0_cond_mode $end -$var wire 1 )Tc1M invert_src2_eq_zero $end -$var wire 1 X[;ke pc_relative $end -$var wire 1 R'S?t is_call $end -$var wire 1 vAZGH is_ret $end +$var wire 1 }nudm invert_src0_cond $end +$var string 1 ~K@F3 src0_cond_mode $end +$var wire 1 Euph" invert_src2_eq_zero $end +$var wire 1 mX_DB pc_relative $end +$var wire 1 kn%<~ is_call $end +$var wire 1 v"cY_ is_ret $end $upscope $end $scope struct ReadSpecial $end $scope struct common $end -$var string 0 0;WMW prefix_pad $end +$var string 0 Ktsg1 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 06LtC adj_value $end -$var string 1 EAn'r config $end +$var wire 3 \l\CN adj_value $end +$var string 1 PO)G; config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 qd6#n value $end -$var string 1 =I9w< config $end +$var wire 4 h@X~z value $end +$var string 1 woV~4 config $end $upscope $end $upscope $end $scope struct src $end $upscope $end -$var string 1 mdAy: imm $end +$var string 1 >`u|? imm $end $upscope $end $upscope $end $upscope $end $scope struct TransformedMove $end -$var string 1 f_sp? \$tag $end +$var string 1 KWF^i \$tag $end $scope struct ReadL2Reg $end $scope struct common $end -$var wire 3 X&_8a prefix_pad $end +$var wire 3 D/9k6 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 >[?*l adj_value $end -$var string 1 _CLe4 config $end +$var wire 3 ^FEx_ adj_value $end +$var string 1 a7O?: config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 i3{q( value $end -$var string 1 7T$MG config $end +$var wire 4 5Ij8& value $end +$var string 1 f&k-r config $end $upscope $end $upscope $end $scope struct src $end $upscope $end $scope struct imm $end -$var wire 8 PANmh value $end +$var wire 8 ln-L2 value $end $upscope $end $upscope $end $upscope $end $scope struct WriteL2Reg $end $scope struct common $end -$var wire 3 =Z^3V prefix_pad $end +$var wire 3 mSbG% prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 r!>-| adj_value $end -$var string 1 =:!l+ config $end +$var wire 3 /I;}9 adj_value $end +$var string 1 xWB!O config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 >1Ld\ value $end -$var string 1 ]?pDv config $end +$var wire 4 u_^j` value $end +$var string 1 ff#;F config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 bzakF \[0] $end +$var wire 7 mVr!x \[0] $end $upscope $end $scope struct imm $end -$var wire 8 jS*v& value $end +$var wire 8 q"l'E value $end $upscope $end $upscope $end $upscope $end $upscope $end $scope struct LoadStore $end -$var string 1 M|NN. \$tag $end +$var string 1 5R,d^ \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 hOP54 prefix_pad $end +$var wire 3 T|7)^ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 -HCQ width $end +$var string 1 )3;6* conversion $end $upscope $end $upscope $end $scope struct Store $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 nfLZ imm $end +$upscope $end +$var string 1 p&'n8 output_integer_mode $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 LALMA \[0] $end +$var wire 1 o5T'D \[1] $end +$var wire 1 [+dgb \[2] $end +$var wire 1 ,Qrp$ \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct ShiftRotate $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 Tnqf. prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 ,h0hu adj_value $end +$var string 1 .+)5` config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 Lr*l= value $end +$var string 1 V*D2b config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 hY35; \[0] $end +$var wire 7 u2H{= \[1] $end +$var wire 7 cxAkf \[2] $end +$upscope $end +$scope struct imm $end +$scope struct shift_rotate_amount $end +$var string 1 )o`H0 \$tag $end +$var wire 6 9f{bJ HdlSome $end +$upscope $end +$var wire 1 o)z}# shift_rotate_right $end +$scope struct dest_logic_op $end +$var string 1 *1yp' \$tag $end +$scope struct HdlSome $end +$var wire 6 ]"rac rotated_output_start $end +$var wire 6 `BA?# rotated_output_len $end +$var wire 1 cd`x\ fallback_is_src2 $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$var string 1 5JTvd output_integer_mode $end +$upscope $end +$var string 1 CM3@? mode $end +$upscope $end +$scope struct Compare $end +$scope struct common $end +$var string 0 `TCIA prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 "\AiF adj_value $end +$var string 1 1j+?T config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 ua-5? value $end +$var string 1 \[1] $end +$upscope $end +$var wire 34 ShDYq imm $end +$upscope $end +$var string 1 XXWeF compare_mode $end +$upscope $end +$scope struct CompareI $end +$scope struct common $end +$var string 0 }0xm| prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 <*jWF adj_value $end +$var string 1 config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 C(!B{ \[0] $end +$var wire 7 LvZS7 \[1] $end +$upscope $end +$var wire 34 >$ZPq imm $end +$upscope $end +$var wire 1 wFhav invert_src0_cond $end +$var string 1 Gt@z8 src0_cond_mode $end +$var wire 1 |CPb9 invert_src2_eq_zero $end +$var wire 1 1lf5X pc_relative $end +$var wire 1 w&]h5 is_call $end +$var wire 1 dqPKp is_ret $end +$upscope $end +$scope struct ReadSpecial $end +$scope struct common $end +$var string 0 9U\W prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 B'C%C adj_value $end +$var string 1 lsLru config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 hWPEo value $end +$var string 1 "(SbU config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$var string 1 Y`~E( imm $end +$upscope $end +$upscope $end +$upscope $end +$scope struct TransformedMove $end +$var string 1 B)[[# \$tag $end +$scope struct ReadL2Reg $end +$scope struct common $end +$var wire 3 ZrSF- prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 /D}!O adj_value $end +$var string 1 > pwr_ca_x86_cf $end +$var wire 1 y"N0C pwr_ov32_x86_df $end +$var wire 1 b}.w) pwr_ov_x86_of $end +$var wire 1 ~M"i/ pwr_so $end +$var wire 1 HAu2: pwr_cr_eq_x86_zf $end +$var wire 1 y\aF# pwr_cr_gt_x86_pf $end +$var wire 1 'mlg) pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct \[2] $end -$var wire 64 &iy?S int_fp $end +$var wire 64 K0lMp int_fp $end $scope struct flags $end -$var wire 1 WQ;s pwr_ca32_x86_af $end -$var wire 1 4Tum[ pwr_ca_x86_cf $end -$var wire 1 |Wg4Q pwr_ov32_x86_df $end -$var wire 1 <0Uj4 pwr_ov_x86_of $end -$var wire 1 q1G"| pwr_so $end -$var wire 1 wKP`) pwr_cr_eq_x86_zf $end -$var wire 1 stCdH pwr_cr_gt_x86_pf $end -$var wire 1 e4Kva pwr_cr_lt_x86_sf $end +$var wire 1 pO_Ci pwr_ca32_x86_af $end +$var wire 1 EQUq] pwr_ca_x86_cf $end +$var wire 1 )YVKF pwr_ov32_x86_df $end +$var wire 1 H%\K# pwr_ov_x86_of $end +$var wire 1 8S:u ready $end $upscope $end -$scope struct is_no_longer_speculative $end -$scope struct data $end -$var string 1 vU+/Z \$tag $end -$scope struct HdlSome $end -$var wire 16 %oL}m id $end -$var string 1 rK^)_ config $end -$upscope $end -$upscope $end -$var wire 1 ?V|^< ready $end -$upscope $end -$scope struct cant_cause_cancel $end -$scope struct data $end -$var string 1 GtNa# \$tag $end -$scope struct HdlSome $end -$var wire 16 gkxN' id $end -$var string 1 !b(C\ config $end -$upscope $end -$upscope $end -$var wire 1 *Sc*] ready $end -$upscope $end -$scope struct finished $end -$scope struct data $end -$var string 1 RirX_ \$tag $end -$scope struct HdlSome $end -$var wire 16 {tauw id $end -$scope struct finished_successfully $end -$var string 1 _<_;A \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 L"|L~ value $end -$var string 1 ?yG02 config $end -$upscope $end -$scope struct dest_value $end -$var wire 64 Hfj> int_fp $end -$scope struct flags $end -$var wire 1 k"1? pwr_ca32_x86_af $end -$var wire 1 H>`4` pwr_ca_x86_cf $end -$var wire 1 8*_Y. pwr_ov32_x86_df $end -$var wire 1 0?a4R pwr_ov_x86_of $end -$var wire 1 (SY}, pwr_so $end -$var wire 1 jk%c/ pwr_cr_eq_x86_zf $end -$var wire 1 r$7x: pwr_cr_gt_x86_pf $end -$var wire 1 FAevN pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct predictor_op $end -$scope struct call_stack_op $end -$var string 1 l+syH \$tag $end -$var wire 64 Qb9Dr Push $end -$upscope $end -$scope struct cond_br_taken $end -$var string 1 *8Mj* \$tag $end -$var wire 1 Xhoo4 HdlSome $end -$upscope $end -$var string 1 e~/aS config $end -$upscope $end -$upscope $end -$upscope $end -$scope struct caused_cancel $end -$var string 1 a{h@4 \$tag $end -$scope struct HdlSome $end -$var wire 16 WdR1s id $end -$var wire 64 {6v6 start_at_pc $end -$var string 1 %u`$u config $end -$upscope $end -$upscope $end -$var string 1 ,'fLM config $end -$upscope $end -$upscope $end -$var wire 1 a+s2L ready $end -$upscope $end $var string 1 p4_Ao config $end $upscope $end $scope struct debug_state $end @@ -75367,54 +78529,43 @@ $var wire 1 ?s-9b pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 c0) int_fp $end +$var wire 64 ??'d2 int_fp $end $scope struct flags $end -$var wire 1 \@<%W pwr_ca32_x86_af $end -$var wire 1 u+0]T pwr_ca_x86_cf $end -$var wire 1 #P;5" pwr_ov32_x86_df $end -$var wire 1 'i%}( pwr_ov_x86_of $end -$var wire 1 EWn-Z pwr_so $end -$var wire 1 ;/u=L pwr_cr_eq_x86_zf $end -$var wire 1 %yoA/ pwr_cr_gt_x86_pf $end -$var wire 1 ?__0R pwr_cr_lt_x86_sf $end +$var wire 1 bfa1Z pwr_ca32_x86_af $end +$var wire 1 5AY2A pwr_ca_x86_cf $end +$var wire 1 suoPI pwr_ov32_x86_df $end +$var wire 1 emc^4 pwr_ov_x86_of $end +$var wire 1 RA2ef pwr_so $end +$var wire 1 >[/)V pwr_cr_eq_x86_zf $end +$var wire 1 XKCaY pwr_cr_gt_x86_pf $end +$var wire 1 exMcc pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 pHm=( \$tag $end -$var wire 64 ]mu~l Push $end +$var string 1 ^V[\v \$tag $end +$var wire 64 efAjP Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 ]?v~C \$tag $end -$var wire 1 ~v5h? HdlSome $end +$var string 1 j84bV \$tag $end +$var wire 1 S_g\) HdlSome $end $upscope $end -$var string 1 FNka| config $end +$var string 1 fo/?& config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 dr@L5 \$tag $end +$var string 1 k3L+l \$tag $end $scope struct HdlSome $end -$var wire 16 (U-2G id $end -$var wire 64 @R:rF start_at_pc $end -$var string 1 Gmh86 config $end -$upscope $end -$upscope $end -$var string 1 e~\c9 config $end +$var wire 64 c+?Lt start_at_pc $end +$var wire 1 8s6I int_fp $end +$var wire 64 0X/?A int_fp $end $scope struct flags $end -$var wire 1 9;GDM pwr_ca32_x86_af $end -$var wire 1 ewRKp pwr_ca_x86_cf $end -$var wire 1 $t(3P pwr_ov32_x86_df $end -$var wire 1 _HqS2 pwr_ov_x86_of $end -$var wire 1 ^ZmXH pwr_so $end -$var wire 1 r%?}> pwr_cr_eq_x86_zf $end -$var wire 1 u;%es pwr_cr_gt_x86_pf $end -$var wire 1 9]!N: pwr_cr_lt_x86_sf $end +$var wire 1 +\zI7 pwr_ca32_x86_af $end +$var wire 1 bj{JV pwr_ca_x86_cf $end +$var wire 1 TqB`x pwr_ov32_x86_df $end +$var wire 1 P2n.^ pwr_ov_x86_of $end +$var wire 1 i(J4/ pwr_so $end +$var wire 1 MpR_O pwr_cr_eq_x86_zf $end +$var wire 1 #u!w/ pwr_cr_gt_x86_pf $end +$var wire 1 Y'f+Y pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 Bld$D \$tag $end -$var wire 64 =ThuN Push $end +$var string 1 j!!Be \$tag $end +$var wire 64 |%)6\ Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 yb+jA \$tag $end -$var wire 1 !|H"l HdlSome $end +$var string 1 4\7%: \$tag $end +$var wire 1 [A&E# HdlSome $end $upscope $end -$var string 1 5Ycr( config $end +$var string 1 K*/pa config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 1$`^M \$tag $end +$var string 1 VGX-# \$tag $end $scope struct HdlSome $end -$var wire 16 >?Yf> id $end -$var wire 64 O3<}k start_at_pc $end -$var string 1 bH4`m config $end -$upscope $end -$upscope $end -$var string 1 c}tPF config $end +$var wire 64 @6e$t start_at_pc $end +$var wire 1 _Q8[B cancel_after_retire $end +$var string 1 OuTGf config $end $upscope $end $upscope $end $var string 1 "}hr5 config $end @@ -76924,54 +80053,43 @@ $var wire 1 ]^MH9 pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 ,]@P& is_speculative $end $var wire 1 IM`R| sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 myMt7 \$tag $end +$scope struct output_ready $end +$var string 1 "@}z| \$tag $end $scope struct HdlSome $end -$var wire 16 GTu3] \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 yq)CT value $end -$var string 1 =r@nu config $end -$upscope $end +$var wire 16 58oC' id $end $scope struct dest_value $end -$var wire 64 ]xss: int_fp $end +$var wire 64 `['lV int_fp $end $scope struct flags $end -$var wire 1 ;;rP1 pwr_ca32_x86_af $end -$var wire 1 uH]LD pwr_ca_x86_cf $end -$var wire 1 tM\$H pwr_ov32_x86_df $end -$var wire 1 qt/q# pwr_ov_x86_of $end -$var wire 1 Zm| Push $end +$var string 1 h(sdq \$tag $end +$var wire 64 :d?GQ Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 l8/Xj \$tag $end -$var wire 1 `Wru> HdlSome $end +$var string 1 )iOR( \$tag $end +$var wire 1 sKsEL HdlSome $end $upscope $end -$var string 1 y:HAf config $end +$var string 1 ;!Gd] config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 Uvv/_ \$tag $end +$var string 1 (2:AE \$tag $end $scope struct HdlSome $end -$var wire 16 :m30H id $end -$var wire 64 J]f&" start_at_pc $end -$var string 1 9?i/S config $end -$upscope $end -$upscope $end -$var string 1 pele4 config $end +$var wire 64 67rX` start_at_pc $end +$var wire 1 Df2E2 cancel_after_retire $end +$var string 1 V*xd% config $end $upscope $end $upscope $end $var string 1 ~[H{k config $end @@ -77443,54 +80561,43 @@ $var wire 1 7=Chk pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 I=+xI is_speculative $end $var wire 1 T+$TD sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 y&j~m \$tag $end +$scope struct output_ready $end +$var string 1 CNyl% \$tag $end $scope struct HdlSome $end -$var wire 16 XXbw6 id $end -$scope struct finished_successfully $end -$var string 1 gspiI \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 YaTtf value $end -$var string 1 C1pZ{ config $end -$upscope $end +$var wire 16 w!*cV id $end $scope struct dest_value $end -$var wire 64 W^q+B int_fp $end +$var wire 64 .*E^m int_fp $end $scope struct flags $end -$var wire 1 s%wqL pwr_ca32_x86_af $end -$var wire 1 nAwcr pwr_ca_x86_cf $end -$var wire 1 eLOc] pwr_ov32_x86_df $end -$var wire 1 5|ywx pwr_ov_x86_of $end -$var wire 1 =<{4* pwr_so $end -$var wire 1 ABp`k pwr_cr_eq_x86_zf $end -$var wire 1 L~*bp pwr_cr_gt_x86_pf $end -$var wire 1 jVzm, pwr_cr_lt_x86_sf $end +$var wire 1 ,]y58 pwr_ca32_x86_af $end +$var wire 1 }VH# pwr_ca_x86_cf $end +$var wire 1 z`L^p pwr_ov32_x86_df $end +$var wire 1 ?!j=} pwr_ov_x86_of $end +$var wire 1 n^_Wd pwr_so $end +$var wire 1 L`}.5 pwr_cr_eq_x86_zf $end +$var wire 1 |`[,D pwr_cr_gt_x86_pf $end +$var wire 1 qmq4h pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 Z>jzZ \$tag $end -$var wire 64 ,@$_@ Push $end +$var string 1 (:`@w \$tag $end +$var wire 64 ;VcJ} Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 X;HoB \$tag $end -$var wire 1 8eZ;g HdlSome $end +$var string 1 nYiHz \$tag $end +$var wire 1 hd21v HdlSome $end $upscope $end -$var string 1 qmEXy config $end +$var string 1 ?gb{K config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 fA[J2 \$tag $end +$var string 1 +'bOz \$tag $end $scope struct HdlSome $end -$var wire 16 ~N<0T id $end -$var wire 64 )IL7C start_at_pc $end -$var string 1 \/{wV config $end -$upscope $end -$upscope $end -$var string 1 r]azE config $end +$var wire 64 '[^b6 start_at_pc $end +$var wire 1 ?.]Gl cancel_after_retire $end +$var string 1 #Qd}8 config $end $upscope $end $upscope $end $var string 1 ovdsN config $end @@ -77962,54 +81069,43 @@ $var wire 1 wI'jm pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 0%XTs is_speculative $end $var wire 1 copVS sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 yi4xX \$tag $end +$scope struct output_ready $end +$var string 1 l1)-I \$tag $end $scope struct HdlSome $end -$var wire 16 \wzuE id $end -$scope struct finished_successfully $end -$var string 1 fG-Kk \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 {jpFK value $end -$var string 1 ^J@I3 config $end -$upscope $end +$var wire 16 c8^8' id $end $scope struct dest_value $end -$var wire 64 zh1Nz int_fp $end +$var wire 64 22\OD int_fp $end $scope struct flags $end -$var wire 1 _$~E9 pwr_ca32_x86_af $end -$var wire 1 `YH)g pwr_ca_x86_cf $end -$var wire 1 %8srg pwr_ov32_x86_df $end -$var wire 1 yA9uh pwr_ov_x86_of $end -$var wire 1 \3qa? pwr_so $end -$var wire 1 R%OFj pwr_cr_eq_x86_zf $end -$var wire 1 F;du< pwr_cr_gt_x86_pf $end -$var wire 1 "MVQo pwr_cr_lt_x86_sf $end +$var wire 1 Y*NUG pwr_ca32_x86_af $end +$var wire 1 1,8jh pwr_ca_x86_cf $end +$var wire 1 '4u3n pwr_ov32_x86_df $end +$var wire 1 \A"F( pwr_ov_x86_of $end +$var wire 1 PA[*r pwr_so $end +$var wire 1 9Tbm= pwr_cr_eq_x86_zf $end +$var wire 1 +V1(t pwr_cr_gt_x86_pf $end +$var wire 1 C$a++ pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 DSn8w \$tag $end -$var wire 64 V"XxT Push $end +$var string 1 $^y<> \$tag $end +$var wire 64 9z]/W Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 r^M^Q \$tag $end -$var wire 1 r2G@V HdlSome $end +$var string 1 K,!<" \$tag $end +$var wire 1 A~Z6< HdlSome $end $upscope $end -$var string 1 L*sRn config $end +$var string 1 j"ud/ config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 M][ZA \$tag $end +$var string 1 C|LT7 \$tag $end $scope struct HdlSome $end -$var wire 16 F|".( id $end -$var wire 64 m3lRd start_at_pc $end -$var string 1 "8N=U config $end -$upscope $end -$upscope $end -$var string 1 IvB4< config $end +$var wire 64 pF;wV start_at_pc $end +$var wire 1 {U8:a cancel_after_retire $end +$var string 1 w((E_ config $end $upscope $end $upscope $end $var string 1 hBo-| config $end @@ -78481,54 +81577,43 @@ $var wire 1 w.#(b pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 [F0%8 is_speculative $end $var wire 1 E#NP4 sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 wBvq% \$tag $end +$scope struct output_ready $end +$var string 1 /R2T{ \$tag $end $scope struct HdlSome $end -$var wire 16 T~z{2 id $end -$scope struct finished_successfully $end -$var string 1 O?y1- \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 uT1%o value $end -$var string 1 ]~|D~ config $end -$upscope $end +$var wire 16 *^2wQ id $end $scope struct dest_value $end -$var wire 64 R \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 +7%H8 value $end -$var string 1 HZk.w config $end -$upscope $end +$var wire 16 Y"1PI id $end $scope struct dest_value $end -$var wire 64 umne3 int_fp $end +$var wire 64 U(rZW int_fp $end $scope struct flags $end -$var wire 1 y+'F/ pwr_ca32_x86_af $end -$var wire 1 z{n|U pwr_ca_x86_cf $end -$var wire 1 TtjQm pwr_ov32_x86_df $end -$var wire 1 u|*]H pwr_ov_x86_of $end -$var wire 1 m4 pwr_cr_gt_x86_pf $end +$var wire 1 >P}Ka pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 e-{,- \$tag $end -$var wire 64 ^fZ^6 Push $end +$var string 1 ,"UD- \$tag $end +$var wire 64 w}p!R Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 c>oir \$tag $end -$var wire 1 E"}&1 HdlSome $end +$var string 1 Zz|#, \$tag $end +$var wire 1 FqF}v HdlSome $end $upscope $end -$var string 1 =w~57 config $end +$var string 1 !UKz@ config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 R5$RV \$tag $end +$var string 1 +sj-G \$tag $end $scope struct HdlSome $end -$var wire 16 v{1_> id $end -$var wire 64 K_iT* start_at_pc $end -$var string 1 5dqC^ config $end -$upscope $end -$upscope $end -$var string 1 $a{Q, config $end +$var wire 64 jI$_V start_at_pc $end +$var wire 1 JgO,V cancel_after_retire $end +$var string 1 .`4!I config $end $upscope $end $upscope $end $var string 1 jE,R; config $end @@ -79062,7 +82136,6 @@ $scope struct execution_state $end $upscope $end $var string 1 E#:dV config $end $upscope $end -$var wire 1 )=\zt all_outputs_written $end $upscope $end $scope module u3_LoadStore $end $scope struct cd $end @@ -79070,430 +82143,863 @@ $var wire 1 LCUP8 clk $end $var wire 1 U/A-E rst $end $upscope $end $scope struct from_execute $end -$scope struct start $end +$scope struct enqueue $end $scope struct data $end -$var string 1 (E.MA \$tag $end +$var string 1 N;QS\ \$tag $end $scope struct HdlSome $end $scope struct mop $end -$var wire 8 ,\yG+ fetch_block_id $end -$var wire 16 oq`sY id $end -$var wire 64 F8{y> pc $end -$var wire 64 tbmpF predicted_next_pc $end -$var wire 4 >PdI? size_in_bytes $end -$var wire 1 h!Wpj is_first_mop_in_insn $end +$var wire 8 ,m'YK fetch_block_id $end +$var wire 16 #zFMy id $end +$var wire 64 TpwHY pc $end +$var wire 64 [cyqx predicted_next_pc $end +$var wire 4 uu}aP size_in_bytes $end +$var wire 1 v3NU( is_first_mop_in_insn $end $scope struct mop $end -$var string 1 3e\d+ \$tag $end +$var string 1 h:a+q \$tag $end $scope struct AluBranch $end -$var string 1 \vCX= \$tag $end +$var string 1 $e$.P \$tag $end $scope struct AddSub $end $scope struct alu_common $end $scope struct common $end -$var string 0 cOFWY prefix_pad $end +$var string 0 (c`ze prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 }h\}N adj_value $end -$var string 1 j7`7Y config $end +$var wire 3 +WpKR adj_value $end +$var string 1 u;0ys config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 a^`h6 value $end -$var string 1 F"'K) config $end +$var wire 4 ZI5%y value $end +$var string 1 _UPtI config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 4Y:_v \[0] $end -$var wire 7 Pq5$S \[1] $end -$var wire 7 }IlNx \[2] $end +$var wire 7 O=#b< \[0] $end +$var wire 7 ER$Rg \[1] $end +$var wire 7 edFw$ \[2] $end $upscope $end -$var wire 26 %@'i$ imm $end +$var wire 26 !KJiJ imm $end $upscope $end -$var string 1 :&#s" output_integer_mode $end +$var string 1 *D?33 output_integer_mode $end $upscope $end -$var wire 1 Y|>`r invert_src0 $end -$var wire 1 vh2bN src1_is_carry_in $end -$var wire 1 (\QU6 invert_carry_in $end -$var wire 1 )cM=E add_pc $end +$var wire 1 F&wy2 invert_src0 $end +$var wire 1 +0b3V src1_is_carry_in $end +$var wire 1 GFN$ value $end -$var string 1 VV3p; range $end +$var wire 3 ]:q}k value $end +$var string 1 p1O:u range $end $upscope $end $scope struct dest_count $end -$var wire 4 kpKC" value $end -$var string 1 5.@b- range $end +$var wire 4 SF#*B value $end +$var string 1 "Adxg range $end $upscope $end $upscope $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 tw05^ \[0] $end -$var wire 1 `R:#) \[1] $end -$var wire 1 .44p) \[2] $end -$var wire 1 $m~Ot \[3] $end +$var wire 1 ax,_~ \[0] $end +$var wire 1 =xD12 \[1] $end +$var wire 1 &okgQ \[2] $end +$var wire 1 D+H)~ \[3] $end $upscope $end $upscope $end $upscope $end $scope struct Logical $end $scope struct alu_common $end $scope struct common $end -$var string 0 Z+_E_ prefix_pad $end +$var string 0 :#=Gr prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 CHg4I adj_value $end -$var string 1 [PbPh config $end +$var wire 3 g.$CP adj_value $end +$var string 1 $4L*( config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 nt?^h value $end -$var string 1 )NmO} config $end +$var wire 4 wb+bf value $end +$var string 1 4B;0z config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 QhCeJ \[0] $end -$var wire 7 HfXSc \[1] $end +$var wire 7 juBcI \[0] $end +$var wire 7 ^:YYm \[1] $end $upscope $end -$var wire 34 ^0e~n imm $end +$var wire 34 $vt;n imm $end $upscope $end -$var string 1 OUG-z output_integer_mode $end +$var string 1 DfI%R output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 TgD1< \[0] $end -$var wire 1 >>.}P \[1] $end -$var wire 1 CiLrN \[2] $end -$var wire 1 oav5j \[3] $end +$var wire 1 xuw{e \[0] $end +$var wire 1 'c2.O \[1] $end +$var wire 1 C)r"3 \[2] $end +$var wire 1 CX%5" \[3] $end $upscope $end $upscope $end $upscope $end $scope struct LogicalI $end $scope struct alu_common $end $scope struct common $end -$var string 0 Q=NI] prefix_pad $end +$var string 0 Bbc}X prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 0eR" adj_value $end -$var string 1 !Q7bx config $end +$var wire 3 6S":= adj_value $end +$var string 1 /pOg( config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 zzJh< value $end -$var string 1 _r/Rq config $end +$var wire 4 Zb:RH value $end +$var string 1 Dq?5A config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 Su'_; \[0] $end +$var wire 7 N4Qj0 \[0] $end $upscope $end -$var wire 34 r.C#s imm $end +$var wire 34 TZoq+ imm $end $upscope $end -$var string 1 3G,Jv output_integer_mode $end +$var string 1 krT~4 output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 F|~-< \[0] $end -$var wire 1 9a\(J \[1] $end -$var wire 1 gSMPr \[2] $end -$var wire 1 G7}wS \[3] $end +$var wire 1 -Vsfv \[0] $end +$var wire 1 rKtSU \[1] $end +$var wire 1 eNiNE \[2] $end +$var wire 1 t0yAv \[3] $end $upscope $end $upscope $end $upscope $end $scope struct ShiftRotate $end $scope struct alu_common $end $scope struct common $end -$var string 0 0_?jw prefix_pad $end +$var string 0 'nK(E prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 w1}|0 adj_value $end -$var string 1 l config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 [K!RU \[0] $end -$var wire 7 V\(u; \[1] $end -$var wire 7 nHqt" \[2] $end +$var wire 7 >3pf8 \[0] $end +$var wire 7 v[[V? \[1] $end +$var wire 7 ty2c$ \[2] $end $upscope $end $scope struct imm $end $scope struct shift_rotate_amount $end -$var string 1 *hl5: \$tag $end -$var wire 6 d%Z2v HdlSome $end +$var string 1 P~kp" \$tag $end +$var wire 6 "-W)j HdlSome $end $upscope $end -$var wire 1 dQzC0 shift_rotate_right $end +$var wire 1 TOfK@ shift_rotate_right $end $scope struct dest_logic_op $end -$var string 1 Oh#+L \$tag $end +$var string 1 }wKA5 \$tag $end $scope struct HdlSome $end -$var wire 6 ;[|uX rotated_output_start $end -$var wire 6 ?_Oi: rotated_output_len $end -$var wire 1 k_t(- fallback_is_src2 $end +$var wire 6 z2;_9 rotated_output_start $end +$var wire 6 AcO_k rotated_output_len $end +$var wire 1 :R(jf fallback_is_src2 $end $upscope $end $upscope $end $upscope $end $upscope $end -$var string 1 Upt91 output_integer_mode $end +$var string 1 zW89B output_integer_mode $end $upscope $end -$var string 1 [E9zu mode $end +$var string 1 JTGV` mode $end $upscope $end $scope struct Compare $end $scope struct common $end -$var string 0 \wyX3 prefix_pad $end +$var string 0 xuLo; prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 `]RM~ adj_value $end -$var string 1 Vyc#{ config $end +$var wire 3 #4dBu adj_value $end +$var string 1 _"he) config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 &3{h] value $end -$var string 1 Bt`t@ config $end +$var wire 4 mPoN: value $end +$var string 1 .6Viq config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 1h:z4 \[0] $end -$var wire 7 H}IO< \[1] $end +$var wire 7 OcSb\ \[0] $end +$var wire 7 o?8IN \[1] $end $upscope $end -$var wire 34 #CKD; imm $end +$var wire 34 <9E{j imm $end $upscope $end -$var string 1 |U{MY compare_mode $end +$var string 1 =!ftg compare_mode $end $upscope $end $scope struct CompareI $end $scope struct common $end -$var string 0 :kcoL prefix_pad $end +$var string 0 6sen" prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 0-WD6 adj_value $end -$var string 1 ?AT@V config $end +$var wire 3 {+lD# adj_value $end +$var string 1 FSIlx config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 OO=xb value $end -$var string 1 I1/^0 config $end +$var wire 4 E<,{b value $end +$var string 1 ,=8Wg config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 W`.H& \[0] $end +$var wire 7 ApuA@ \[0] $end $upscope $end -$var wire 34 %'#7[ imm $end +$var wire 34 -.l$l imm $end $upscope $end -$var string 1 =Xf/D compare_mode $end +$var string 1 HS:sG compare_mode $end $upscope $end $scope struct Branch $end $scope struct common $end -$var string 0 |H@y[ prefix_pad $end +$var string 0 A8zPP prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 /X),E adj_value $end -$var string 1 HfG\P config $end +$var wire 3 k(0+m adj_value $end +$var string 1 !oL|: config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 jH~78 value $end -$var string 1 `'#da config $end +$var wire 4 s;{.' value $end +$var string 1 M&R1M config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 ccLo6 \[0] $end -$var wire 7 b3}w1 \[1] $end -$var wire 7 %d6&A \[2] $end +$var wire 7 Bv[[X \[0] $end +$var wire 7 *y2X^ \[1] $end +$var wire 7 &H_UH \[2] $end $upscope $end -$var wire 26 wXR.8 imm $end +$var wire 26 )&cNK imm $end $upscope $end -$var wire 1 wJA*s invert_src0_cond $end -$var string 1 0DW?X src0_cond_mode $end -$var wire 1 {N:qd invert_src2_eq_zero $end -$var wire 1 e[jOs pc_relative $end -$var wire 1 2BYPb is_call $end -$var wire 1 Qt_,S is_ret $end +$var wire 1 qZpOA invert_src0_cond $end +$var string 1 G`lUq src0_cond_mode $end +$var wire 1 iD)tp invert_src2_eq_zero $end +$var wire 1 t>>8K pc_relative $end +$var wire 1 K~@'2 is_call $end +$var wire 1 &4kx/ is_ret $end $upscope $end $scope struct BranchI $end $scope struct common $end -$var string 0 _a#E0 prefix_pad $end +$var string 0 ?62Er prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 8,pK( adj_value $end -$var string 1 Vo993 config $end +$var wire 3 ,n*cU adj_value $end +$var string 1 E22<5 config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 |/W_H value $end -$var string 1 "EPgS config $end +$var wire 4 {Y9_^ value $end +$var string 1 /=9DG config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 pKLh. \[0] $end -$var wire 7 LXbI@ is_call $end +$var wire 1 N1imX is_ret $end $upscope $end $scope struct ReadSpecial $end $scope struct common $end -$var string 0 lM!v, prefix_pad $end +$var string 0 P%&u& prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 Exg@8 adj_value $end -$var string 1 n{Q[E config $end +$var wire 3 I_(nG adj_value $end +$var string 1 AVm/^ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 2TZh$ value $end -$var string 1 FS?TD config $end +$var wire 4 Y?Lm{ value $end +$var string 1 K|jb\ config $end $upscope $end $upscope $end $scope struct src $end $upscope $end -$var string 1 Hl}R0 imm $end +$var string 1 `PENj imm $end $upscope $end $upscope $end $upscope $end $scope struct TransformedMove $end -$var string 1 _cZyN \$tag $end +$var string 1 OZG&u \$tag $end $scope struct ReadL2Reg $end $scope struct common $end -$var wire 3 dz%2E prefix_pad $end +$var wire 3 '/f8j prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 Wr2W& adj_value $end -$var string 1 BFF6G config $end +$var wire 3 "fp!n adj_value $end +$var string 1 dY+YV config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 Cr.?@ value $end -$var string 1 ?{oc# config $end +$var wire 4 >,I|4 value $end +$var string 1 p%&D8 config $end $upscope $end $upscope $end $scope struct src $end $upscope $end $scope struct imm $end -$var wire 8 2BA#^ value $end +$var wire 8 98ekT value $end $upscope $end $upscope $end $upscope $end $scope struct WriteL2Reg $end $scope struct common $end -$var wire 3 hb7jv prefix_pad $end +$var wire 3 t[5d\ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 3GwBd adj_value $end -$var string 1 P}-hV config $end +$var wire 3 Z'E<* adj_value $end +$var string 1 jw++\ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 ih^1o value $end -$var string 1 &p%(H config $end +$var wire 4 H'/WC value $end +$var string 1 TENn' config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 ,NU{m \[0] $end +$var wire 7 {g/i< \[0] $end $upscope $end $scope struct imm $end -$var wire 8 "#q?y value $end +$var wire 8 =jn7d value $end $upscope $end $upscope $end $upscope $end $upscope $end $scope struct LoadStore $end -$var string 1 /,C@D \$tag $end +$var string 1 l17_z \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 ijEq1 prefix_pad $end +$var wire 3 \&WH^ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 ;(=q8 adj_value $end -$var string 1 ]r*). config $end +$var wire 3 ^k>|b adj_value $end +$var string 1 j{av# config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 PqDXo value $end -$var string 1 =\x/ config $end +$var wire 4 p8EBF value $end +$var string 1 mW#%@ config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 9(5MF \[0] $end +$var wire 7 q,A#3 \[0] $end $upscope $end -$var wire 34 kroH" imm $end +$var wire 34 <49e% imm $end $upscope $end -$var string 1 QVrY? width $end -$var string 1 ]Yw}% conversion $end +$var string 1 gzcfX width $end +$var string 1 EoeT) conversion $end $upscope $end $upscope $end $scope struct Store $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 C#JEf prefix_pad $end +$var wire 3 zuOV; prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 &]M[[ adj_value $end -$var string 1 oc$r= config $end +$var wire 3 t@$_$ adj_value $end +$var string 1 mZr0S config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 F$oie value $end -$var string 1 y-R-5 config $end +$var wire 4 XP1Wf value $end +$var string 1 sv%cU config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 R%MX$ \[0] $end -$var wire 7 Rg+S1 \[1] $end +$var wire 7 2i>{X \[0] $end +$var wire 7 ~c{'k \[1] $end $upscope $end -$var wire 34 >bi^H imm $end +$var wire 34 C';^3 imm $end $upscope $end -$var string 1 m9:Wx width $end -$var string 1 -uXtc conversion $end +$var string 1 &U<*T width $end +$var string 1 oXu?l conversion $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$var string 1 K(H{T config $end +$upscope $end +$upscope $end +$var wire 1 Ch^Vn ready $end +$upscope $end +$scope struct inputs_ready $end +$var string 1 r:u1S \$tag $end +$scope struct HdlSome $end +$scope struct mop $end +$var wire 8 [h3v% fetch_block_id $end +$var wire 16 Sq>rR id $end +$var wire 64 .uI%G pc $end +$var wire 64 >k=a* predicted_next_pc $end +$var wire 4 a8NsS size_in_bytes $end +$var wire 1 -NgP8 is_first_mop_in_insn $end +$scope struct mop $end +$var string 1 =c{8k \$tag $end +$scope struct AluBranch $end +$var string 1 +0[01 \$tag $end +$scope struct AddSub $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 E6@u) prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 ""CvX adj_value $end +$var string 1 9$-}t config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 j=olj value $end +$var string 1 tUoaN config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 k|9Y, \[0] $end +$var wire 7 ,n[ch \[1] $end +$var wire 7 EU]UO \[2] $end +$upscope $end +$var wire 26 HU1E& imm $end +$upscope $end +$var string 1 GvQP- output_integer_mode $end +$upscope $end +$var wire 1 m^=5S invert_src0 $end +$var wire 1 <+[l? src1_is_carry_in $end +$var wire 1 8pS{ adj_value $end +$var string 1 i;Pt~ config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 Iuo"e value $end +$var string 1 &Ef6n config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 v9+e\ \[0] $end +$var wire 7 DNBfr \[1] $end +$upscope $end +$var wire 34 jDJMi imm $end +$upscope $end +$var string 1 SzS04 output_integer_mode $end +$upscope $end +$var wire 1 e+\la invert_src0 $end +$var wire 1 GYrJN src1_is_carry_in $end +$var wire 1 Y20^E prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 B8@f# adj_value $end +$var string 1 P;8Gs config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 3-gZF value $end +$var string 1 OgGj0 config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 m;o"H \[0] $end +$var wire 7 b0wW$ \[1] $end +$upscope $end +$var wire 34 w;>EN imm $end +$upscope $end +$var string 1 C.6\1 output_integer_mode $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 >c!$$ \[0] $end +$var wire 1 nw&k\ \[1] $end +$var wire 1 3kMeJ \[2] $end +$var wire 1 5qrLu \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct LogicalI $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 !<%)L prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 7}$0k adj_value $end +$var string 1 }*k>J config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 l})t: value $end +$var string 1 yEfaS config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 g~}[r \[0] $end +$upscope $end +$var wire 34 ijbq) imm $end +$upscope $end +$var string 1 D=_" output_integer_mode $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 otTOY \[0] $end +$var wire 1 }F^'+ \[1] $end +$var wire 1 OI+u: \[2] $end +$var wire 1 _u7ic \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct ShiftRotate $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 sG?}= prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 HZ?mi adj_value $end +$var string 1 DPYow config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 d0u<7 value $end +$var string 1 _8qfU config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 Hd(P. \[0] $end +$var wire 7 )]vo` \[1] $end +$var wire 7 PAO|k \[2] $end +$upscope $end +$scope struct imm $end +$scope struct shift_rotate_amount $end +$var string 1 M#.r- \$tag $end +$var wire 6 +\*TX HdlSome $end +$upscope $end +$var wire 1 ]^?(w shift_rotate_right $end +$scope struct dest_logic_op $end +$var string 1 `gF7G \$tag $end +$scope struct HdlSome $end +$var wire 6 W{QWz rotated_output_start $end +$var wire 6 f`#iz rotated_output_len $end +$var wire 1 ;;idR fallback_is_src2 $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$var string 1 K%80z output_integer_mode $end +$upscope $end +$var string 1 al}H8 mode $end +$upscope $end +$scope struct Compare $end +$scope struct common $end +$var string 0 /:L+_ prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 H'By] adj_value $end +$var string 1 ]U;lZ config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 "N/K/ value $end +$var string 1 [`4/{ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 i'D>T \[0] $end +$var wire 7 lhv#( \[1] $end +$upscope $end +$var wire 34 O{%Bf imm $end +$upscope $end +$var string 1 Nf[vd compare_mode $end +$upscope $end +$scope struct CompareI $end +$scope struct common $end +$var string 0 *v*KJ prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 gQeXN adj_value $end +$var string 1 aWlWb config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 wQTc& value $end +$var string 1 IY~M; config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 him9F \[0] $end +$upscope $end +$var wire 34 9R!), imm $end +$upscope $end +$var string 1 RE8%I compare_mode $end +$upscope $end +$scope struct Branch $end +$scope struct common $end +$var string 0 QDG-W prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 (j]'3 adj_value $end +$var string 1 ~)V-< config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 ROj-i value $end +$var string 1 li5'W config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 t>BCz \[0] $end +$var wire 7 x<e?9F invert_src2_eq_zero $end +$var wire 1 meT"o pc_relative $end +$var wire 1 \$wL, is_call $end +$var wire 1 T4:~d is_ret $end +$upscope $end +$scope struct BranchI $end +$scope struct common $end +$var string 0 w(d56 prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 Z$|h2 adj_value $end +$var string 1 J:%5u config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 qvP&B value $end +$var string 1 iBd'J config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 <8%EB \[0] $end +$var wire 7 DXp&g \[1] $end +$upscope $end +$var wire 34 QF/jp imm $end +$upscope $end +$var wire 1 SPJ"6 invert_src0_cond $end +$var string 1 lo!FX src0_cond_mode $end +$var wire 1 .DCK& invert_src2_eq_zero $end +$var wire 1 !qH>K pc_relative $end +$var wire 1 yfk.c is_call $end +$var wire 1 ~88-a is_ret $end +$upscope $end +$scope struct ReadSpecial $end +$scope struct common $end +$var string 0 4#<19 prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 #'Y+/ adj_value $end +$var string 1 ~OTh^ config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 W;4S^ value $end +$var string 1 [95AI config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$var string 1 h]?w" imm $end +$upscope $end +$upscope $end +$upscope $end +$scope struct TransformedMove $end +$var string 1 z=Qmy \$tag $end +$scope struct ReadL2Reg $end +$scope struct common $end +$var wire 3 5}jId prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 9c7a. adj_value $end +$var string 1 C5U)U config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 6Oqyq value $end +$var string 1 zK7vT config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$scope struct imm $end +$var wire 8 %CSMI value $end +$upscope $end +$upscope $end +$upscope $end +$scope struct WriteL2Reg $end +$scope struct common $end +$var wire 3 w?Q%F prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 ~r49< adj_value $end +$var string 1 :Jbe5 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 )f}]_ value $end +$var string 1 *)K{= config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 8bwN_ \[0] $end +$upscope $end +$scope struct imm $end +$var wire 8 8$!=7 value $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$scope struct LoadStore $end +$var string 1 SdC>7 \$tag $end +$scope struct Load $end +$scope struct load_store_common $end +$scope struct common $end +$var wire 3 ?EDti prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 NvtlJ adj_value $end +$var string 1 jN0"B config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 )@O=u value $end +$var string 1 u&Ude config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 zg1GD \[0] $end +$upscope $end +$var wire 34 \n[TM imm $end +$upscope $end +$var string 1 6lP7& width $end +$var string 1 u/tq' conversion $end +$upscope $end +$upscope $end +$scope struct Store $end +$scope struct load_store_common $end +$scope struct common $end +$var wire 3 W%k0p prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 OJwQ% adj_value $end +$var string 1 ~1>2& config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 "rY*{ value $end +$var string 1 'kkoI config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 zHG_e \[0] $end +$var wire 7 _mo7p \[1] $end +$upscope $end +$var wire 34 jY49{ imm $end +$upscope $end +$var string 1 pHl^5 width $end +$var string 1 'g$;8 conversion $end $upscope $end $upscope $end $upscope $end @@ -79501,50 +83007,108 @@ $upscope $end $upscope $end $scope struct src_values $end $scope struct \[0] $end -$var wire 64 4dk/1 int_fp $end +$var wire 64 cBNJ) int_fp $end $scope struct flags $end -$var wire 1 V}`k5 pwr_ca32_x86_af $end -$var wire 1 3!f(s pwr_ca_x86_cf $end -$var wire 1 -M73^ pwr_ov32_x86_df $end -$var wire 1 .Qcdm pwr_ov_x86_of $end -$var wire 1 OSA'= pwr_so $end -$var wire 1 9jS// pwr_cr_eq_x86_zf $end -$var wire 1 0^Y3O pwr_cr_gt_x86_pf $end -$var wire 1 L>:sy pwr_cr_lt_x86_sf $end +$var wire 1 :4{\t pwr_ca32_x86_af $end +$var wire 1 e\&qJ pwr_ca_x86_cf $end +$var wire 1 L60jL pwr_ov32_x86_df $end +$var wire 1 nzH=R pwr_ov_x86_of $end +$var wire 1 OWxe, pwr_so $end +$var wire 1 "TJr# pwr_cr_eq_x86_zf $end +$var wire 1 ^4!`q pwr_cr_gt_x86_pf $end +$var wire 1 0o2)5 pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct \[1] $end -$var wire 64 L?y;b int_fp $end +$var wire 64 1262J int_fp $end $scope struct flags $end -$var wire 1 Bf!z5 config $end +$upscope $end +$upscope $end +$scope struct output_ready $end +$var string 1 p0*Hh \$tag $end +$scope struct HdlSome $end +$var wire 16 &tSqD id $end +$scope struct dest_value $end +$var wire 64 y3_*g int_fp $end +$scope struct flags $end +$var wire 1 cjMD^ pwr_ca32_x86_af $end +$var wire 1 T3@^. pwr_ca_x86_cf $end +$var wire 1 on?H% pwr_ov32_x86_df $end +$var wire 1 p\GM8 pwr_ov_x86_of $end +$var wire 1 M9@0G pwr_so $end +$var wire 1 B2Fe& pwr_cr_eq_x86_zf $end +$var wire 1 q)haA pwr_cr_gt_x86_pf $end +$var wire 1 BB;Zd pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct predictor_op $end +$scope struct call_stack_op $end +$var string 1 fkwCS \$tag $end +$var wire 64 f^`/o Push $end +$upscope $end +$scope struct cond_br_taken $end +$var string 1 W]9>j \$tag $end +$var wire 1 RW%I4 HdlSome $end +$upscope $end +$var string 1 u3>;f config $end +$upscope $end +$upscope $end +$upscope $end +$scope struct finish_cause_cancel $end +$var string 1 qs`Co \$tag $end +$scope struct HdlSome $end +$var wire 16 ,6\L' id $end +$scope struct caused_cancel $end +$var string 1 es#0} \$tag $end +$scope struct HdlSome $end +$var wire 64 N#6d/ start_at_pc $end +$var wire 1 ;0sH` cancel_after_retire $end +$var string 1 h)Vr7 config $end +$upscope $end +$upscope $end +$var string 1 L;1Q? config $end +$upscope $end +$upscope $end +$var wire 1 \0cMO unit_outputs_ready $end $scope struct cancel_all $end $scope struct data $end $var string 1 O0sJ{ \$tag $end @@ -79553,77 +83117,6 @@ $upscope $end $upscope $end $var wire 1 ++n\a ready $end $upscope $end -$scope struct is_no_longer_speculative $end -$scope struct data $end -$var string 1 5klD7 \$tag $end -$scope struct HdlSome $end -$var wire 16 /kZ&q id $end -$var string 1 X|=*x config $end -$upscope $end -$upscope $end -$var wire 1 mM(5# ready $end -$upscope $end -$scope struct cant_cause_cancel $end -$scope struct data $end -$var string 1 6;O_q \$tag $end -$scope struct HdlSome $end -$var wire 16 ST8:c id $end -$var string 1 g[9^2 config $end -$upscope $end -$upscope $end -$var wire 1 $E.h( ready $end -$upscope $end -$scope struct finished $end -$scope struct data $end -$var string 1 uqEBt \$tag $end -$scope struct HdlSome $end -$var wire 16 Xv*qw id $end -$scope struct finished_successfully $end -$var string 1 .G99P \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 kC:;H value $end -$var string 1 PhOO4 config $end -$upscope $end -$scope struct dest_value $end -$var wire 64 HxN>0 int_fp $end -$scope struct flags $end -$var wire 1 cI8gD pwr_ca32_x86_af $end -$var wire 1 UGU:L pwr_ca_x86_cf $end -$var wire 1 V[Gfv pwr_ov32_x86_df $end -$var wire 1 ^9%Lb pwr_ov_x86_of $end -$var wire 1 p7$0( pwr_so $end -$var wire 1 90@z\ pwr_cr_eq_x86_zf $end -$var wire 1 Ou=Cv pwr_cr_gt_x86_pf $end -$var wire 1 ,eCQ3 pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct predictor_op $end -$scope struct call_stack_op $end -$var string 1 Mu@He \$tag $end -$var wire 64 `ljr& Push $end -$upscope $end -$scope struct cond_br_taken $end -$var string 1 jxC!' \$tag $end -$var wire 1 aOiJ1 HdlSome $end -$upscope $end -$var string 1 T=1g@ config $end -$upscope $end -$upscope $end -$upscope $end -$scope struct caused_cancel $end -$var string 1 n=,A> \$tag $end -$scope struct HdlSome $end -$var wire 16 |!:#) id $end -$var wire 64 V5XrK start_at_pc $end -$var string 1 /'T(Y config $end -$upscope $end -$upscope $end -$var string 1 no!(p config $end -$upscope $end -$upscope $end -$var wire 1 q?QFN ready $end -$upscope $end $var string 1 *-T config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 _%3am \[0] $end -$var wire 7 C{lRu \[1] $end -$var wire 7 w^K^< \[2] $end -$upscope $end -$var wire 26 RREw> imm $end -$upscope $end -$var string 1 @'B8} output_integer_mode $end -$upscope $end -$var wire 1 FB(X[ invert_src0 $end -$var wire 1 b0y^g src1_is_carry_in $end -$var wire 1 b}3oU invert_carry_in $end -$var wire 1 z\/^/ add_pc $end -$upscope $end -$scope struct AddSubI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 <+}a] prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 T}.0u adj_value $end -$var string 1 zz0+" config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 9}gFJ value $end -$var string 1 XBk`C config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 Obk{_ \[0] $end -$var wire 7 Wi1C- \[1] $end -$upscope $end -$var wire 34 +ZOPv imm $end -$upscope $end -$var string 1 (."#m output_integer_mode $end -$upscope $end -$var wire 1 0":g{ invert_src0 $end -$var wire 1 k[1$: src1_is_carry_in $end -$var wire 1 C1pp) invert_carry_in $end -$var wire 1 \y7:R add_pc $end -$upscope $end -$scope struct LogicalFlags $end -$scope struct common $end -$var string 0 U4{k% prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 )*,68 adj_value $end -$var string 1 ox)Tg config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 z/po/ value $end -$var string 1 OF#r? config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 P!Zvk \[0] $end -$var wire 7 e'pdD \[1] $end -$var wire 7 CTTKA \[2] $end -$upscope $end -$scope struct imm $end -$scope struct src0_start $end -$var wire 3 85~PN value $end -$var string 1 F{Wq' range $end -$upscope $end -$scope struct src1_start $end -$var wire 3 $Y-|y value $end -$var string 1 x:M\o range $end -$upscope $end -$scope struct src2_start $end -$var wire 3 E0{yK value $end -$var string 1 YnPvd range $end -$upscope $end -$scope struct dest_start $end -$var wire 3 euod+ value $end -$var string 1 C2Ep% range $end -$upscope $end -$scope struct dest_count $end -$var wire 4 >AQ=C value $end -$var string 1 3+XR? range $end -$upscope $end -$upscope $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 mF%o( \[0] $end -$var wire 1 o2@AW \[1] $end -$var wire 1 xJ(?z \[2] $end -$var wire 1 clTP7 \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct Logical $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 EV4*U prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 KZ#,G adj_value $end -$var string 1 e{h,D config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 9w{?I value $end -$var string 1 Oi+z( config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 *t"v& \[0] $end -$var wire 7 #4i>a \[1] $end -$upscope $end -$var wire 34 n5OOB imm $end -$upscope $end -$var string 1 v90_U output_integer_mode $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 =@FSm \[0] $end -$var wire 1 E;ts> \[1] $end -$var wire 1 @A;VU \[2] $end -$var wire 1 %F($] \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct LogicalI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 #Rarh prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 nSbs( adj_value $end -$var string 1 mUDU config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 = mode $end -$upscope $end -$scope struct Compare $end -$scope struct common $end -$var string 0 =iIM. prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 `:Q4[ adj_value $end -$var string 1 ?tE)R config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 =u/?~ value $end -$var string 1 yY't) config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 JL/U@ \[0] $end -$var wire 7 X#?as \[1] $end -$upscope $end -$var wire 34 }?V>G imm $end -$upscope $end -$var string 1 D(,+5 compare_mode $end -$upscope $end -$scope struct CompareI $end -$scope struct common $end -$var string 0 ocW&; prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 i)j,u adj_value $end -$var string 1 !z'[" config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 4/FF; value $end -$var string 1 q(33i config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 ;%3ls \[0] $end -$upscope $end -$var wire 34 d(fOb imm $end -$upscope $end -$var string 1 u&mn+ compare_mode $end -$upscope $end -$scope struct Branch $end -$scope struct common $end -$var string 0 HPH:; prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 [^<=f adj_value $end -$var string 1 x}QiX config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 iF[|# value $end -$var string 1 "j]I| config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 bwtPq \[0] $end -$var wire 7 Ds(d[ \[1] $end -$var wire 7 rkIri \[2] $end -$upscope $end -$var wire 26 "$(5' imm $end -$upscope $end -$var wire 1 %y?}# invert_src0_cond $end -$var string 1 7>;a> src0_cond_mode $end -$var wire 1 uYku& invert_src2_eq_zero $end -$var wire 1 eLb>R pc_relative $end -$var wire 1 aX{L4 is_call $end -$var wire 1 @*`h5 is_ret $end -$upscope $end -$scope struct BranchI $end -$scope struct common $end -$var string 0 CXM0[ prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 8H,b^ adj_value $end -$var string 1 \x_en config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 Dh\S< value $end -$var string 1 I{#'3 config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 E05bd \[0] $end -$var wire 7 Rwf'g \[1] $end -$upscope $end -$var wire 34 'a@$$ imm $end -$upscope $end -$var wire 1 /Y+Bt invert_src0_cond $end -$var string 1 @v6+< src0_cond_mode $end -$var wire 1 k"()r invert_src2_eq_zero $end -$var wire 1 eTf+u pc_relative $end -$var wire 1 0QL\$ is_call $end -$var wire 1 /]t'R is_ret $end -$upscope $end -$scope struct ReadSpecial $end -$scope struct common $end -$var string 0 i^O4W prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 /-4uJ adj_value $end -$var string 1 Qyk3i config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 [m~m5 value $end -$var string 1 cFiF, config $end -$upscope $end -$upscope $end -$scope struct src $end -$upscope $end -$var string 1 =//FY imm $end -$upscope $end -$upscope $end -$upscope $end -$scope struct TransformedMove $end -$var string 1 U8r6t \$tag $end -$scope struct ReadL2Reg $end -$scope struct common $end -$var wire 3 u!tsM prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 N~Hjb adj_value $end -$var string 1 $WY8B config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 1(pD0 value $end -$var string 1 ^$0tM config $end -$upscope $end -$upscope $end -$scope struct src $end -$upscope $end -$scope struct imm $end -$var wire 8 ?p\qW value $end -$upscope $end -$upscope $end -$upscope $end -$scope struct WriteL2Reg $end -$scope struct common $end -$var wire 3 D~Lim prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 Y(1Uh adj_value $end -$var string 1 5fYhJ config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 %kpbI value $end -$var string 1 dGQM1 config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 3XA^F \[0] $end -$upscope $end -$scope struct imm $end -$var wire 8 *2{;& value $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$scope struct LoadStore $end -$var string 1 (kI4~ \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 |m#Y^ prefix_pad $end +$var wire 3 (y?lM prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 .v7R: adj_value $end -$var string 1 JL[.x config $end +$var wire 3 f0Q(] adj_value $end +$var string 1 `VhBs config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 )(Fz value $end -$var string 1 {T%J- config $end +$var wire 4 sdoWn value $end +$var string 1 GM]j' config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 qA%>y \[0] $end +$var wire 7 HLps$ \[0] $end $upscope $end -$var wire 34 ]wG*] imm $end +$var wire 34 Ynf=K imm $end $upscope $end -$var string 1 xULRt width $end -$var string 1 k$~'s conversion $end +$var string 1 18y~. width $end +$var string 1 VI__l conversion $end $upscope $end $upscope $end $scope struct Store $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 nBI\l prefix_pad $end +$var wire 3 Ofs0+ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 zcdML adj_value $end -$var string 1 rLKx^ config $end +$var wire 3 ssXy( \[0] $end -$var wire 7 h9UPu \[1] $end +$var wire 7 F|I$" \[0] $end +$var wire 7 U(,*W \[1] $end $upscope $end -$var wire 34 -N<(2 imm $end +$var wire 34 XjGuH imm $end $upscope $end -$var string 1 zT+wR width $end -$var string 1 pdKd] conversion $end +$var string 1 !W6K' width $end +$var string 1 M@lY' conversion $end $upscope $end $upscope $end $upscope $end $upscope $end -$upscope $end -$scope struct src_values $end -$scope struct \[0] $end -$var wire 64 rh780 int_fp $end -$scope struct flags $end -$var wire 1 ]Am#V pwr_ca32_x86_af $end -$var wire 1 ":TOC pwr_ca_x86_cf $end -$var wire 1 |rWH- pwr_ov32_x86_df $end -$var wire 1 !)OcL pwr_ov_x86_of $end -$var wire 1 $GRmZ pwr_so $end -$var wire 1 F[7DA pwr_cr_eq_x86_zf $end -$var wire 1 -S@F: pwr_cr_gt_x86_pf $end -$var wire 1 7^PP5 pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct \[1] $end -$var wire 64 mLmP2 int_fp $end -$scope struct flags $end -$var wire 1 _#IHd pwr_ca32_x86_af $end -$var wire 1 r{:jy pwr_ca_x86_cf $end -$var wire 1 @I]CP pwr_ov32_x86_df $end -$var wire 1 {s(Hv pwr_ov_x86_of $end -$var wire 1 rv9F` pwr_so $end -$var wire 1 @#|GH pwr_cr_eq_x86_zf $end -$var wire 1 ,}xw2 pwr_cr_gt_x86_pf $end -$var wire 1 }0{PX pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct \[2] $end -$var wire 64 K3N+2 int_fp $end -$scope struct flags $end -$var wire 1 tv4(z pwr_ca32_x86_af $end -$var wire 1 8?79V pwr_ca_x86_cf $end -$var wire 1 iMs2b pwr_ov32_x86_df $end -$var wire 1 [7.Z] pwr_ov_x86_of $end -$var wire 1 }ID78 pwr_so $end -$var wire 1 /Q,ts pwr_cr_eq_x86_zf $end -$var wire 1 K6g5z pwr_cr_gt_x86_pf $end -$var wire 1 7|+&| pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$upscope $end $var wire 1 DReB3 is_speculative $end -$var wire 1 H`sl% sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 s%""Q \$tag $end +$scope struct src_values $end +$var string 1 [s|H9 \$tag $end $scope struct HdlSome $end -$var wire 16 >|kY2 id $end -$scope struct finished_successfully $end -$var string 1 qd[}< \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 Mb.3T value $end -$var string 1 `A=_I config $end +$scope struct \[0] $end +$var wire 64 [%9dd int_fp $end +$scope struct flags $end +$var wire 1 XU&#{ pwr_ca32_x86_af $end +$var wire 1 vItEI pwr_ca_x86_cf $end +$var wire 1 D%sJZ pwr_ov32_x86_df $end +$var wire 1 bPXK] pwr_ov_x86_of $end +$var wire 1 7ms+> pwr_so $end +$var wire 1 ("IqO pwr_cr_eq_x86_zf $end +$var wire 1 *CWwe pwr_cr_gt_x86_pf $end +$var wire 1 DI}m? pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct \[1] $end +$var wire 64 bb}IP int_fp $end +$scope struct flags $end +$var wire 1 )1IYS pwr_ca32_x86_af $end +$var wire 1 @|hHQ pwr_ca_x86_cf $end +$var wire 1 SFxf[ pwr_ov32_x86_df $end +$var wire 1 A_V' pwr_so $end +$var wire 1 sytE( imm $end -$upscope $end -$var string 1 z%sV7 output_integer_mode $end -$upscope $end -$var wire 1 `+jX& invert_src0 $end -$var wire 1 @]l]/ src1_is_carry_in $end -$var wire 1 EVCec invert_carry_in $end -$var wire 1 ~De2t add_pc $end -$upscope $end -$scope struct AddSubI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 u6`kn prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 Vc&A5 adj_value $end -$var string 1 h]"[. config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 Wu;TP value $end -$var string 1 Dia"| config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 .kO56 \[0] $end -$var wire 7 s'2l< \[1] $end -$upscope $end -$var wire 34 m!KZ8 imm $end -$upscope $end -$var string 1 .;KlJ output_integer_mode $end -$upscope $end -$var wire 1 ')*"Z invert_src0 $end -$var wire 1 @NiV( src1_is_carry_in $end -$var wire 1 '@#o\ invert_carry_in $end -$var wire 1 6B value $end -$var string 1 CDEXr config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 :}4OL \[0] $end -$var wire 7 9r7Ou \[1] $end -$var wire 7 -WR*D \[2] $end -$upscope $end -$scope struct imm $end -$scope struct src0_start $end -$var wire 3 ByUq4 value $end -$var string 1 uTAiw range $end -$upscope $end -$scope struct src1_start $end -$var wire 3 EN,7f value $end -$var string 1 >\/=\ range $end -$upscope $end -$scope struct src2_start $end -$var wire 3 0V,+V value $end -$var string 1 %EC3f range $end -$upscope $end -$scope struct dest_start $end -$var wire 3 ab"-" value $end -$var string 1 g;J2> range $end -$upscope $end -$scope struct dest_count $end -$var wire 4 yi?C: value $end -$var string 1 AE5Vf range $end -$upscope $end -$upscope $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 m=}jr prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 cCS.2 adj_value $end -$var string 1 S}^3y config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 '7>3R value $end -$var string 1 kR3qS config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 e-eKR \[0] $end -$var wire 7 s%@:[ \[1] $end -$upscope $end -$var wire 34 \@;15 imm $end -$upscope $end -$var string 1 \[(+6 compare_mode $end -$upscope $end -$scope struct CompareI $end -$scope struct common $end -$var string 0 ?knX4 prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 .%gjF adj_value $end -$var string 1 uI+Il< config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 k:Yd, \[0] $end -$var wire 7 S7[D, \[1] $end -$var wire 7 XPdQ. \[2] $end -$upscope $end -$var wire 26 J3m4+ imm $end -$upscope $end -$var wire 1 Cifmh invert_src0_cond $end -$var string 1 cj?'U src0_cond_mode $end -$var wire 1 'al|} invert_src2_eq_zero $end -$var wire 1 UZ8Ii pc_relative $end -$var wire 1 w?>\. is_call $end -$var wire 1 _a@W{ is_ret $end -$upscope $end -$scope struct BranchI $end -$scope struct common $end -$var string 0 _5st^ prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 P]47* adj_value $end -$var string 1 bOo75 config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 WLfQu value $end -$var string 1 {0~ms config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 wr{PT \[0] $end -$var wire 7 di()$ \[1] $end -$upscope $end -$var wire 34 LK^}7 imm $end -$upscope $end -$var wire 1 &P'R1 invert_src0_cond $end -$var string 1 Mi(/7 src0_cond_mode $end -$var wire 1 "4T`t invert_src2_eq_zero $end -$var wire 1 d/_U] pc_relative $end -$var wire 1 Sc,pv is_call $end -$var wire 1 Fk%(T is_ret $end -$upscope $end -$scope struct ReadSpecial $end -$scope struct common $end -$var string 0 I-!VD prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 *{c&% adj_value $end -$var string 1 yKVdV config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 BL@g+ value $end -$var string 1 .{^Xm config $end -$upscope $end -$upscope $end -$scope struct src $end -$upscope $end -$var string 1 ZM+{> imm $end -$upscope $end -$upscope $end -$upscope $end -$scope struct TransformedMove $end -$var string 1 n7v}$ \$tag $end -$scope struct ReadL2Reg $end -$scope struct common $end -$var wire 3 W-;^8 prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 (Zjt| adj_value $end -$var string 1 f(}xt config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 J_Iw: value $end -$var string 1 }cU7? config $end -$upscope $end -$upscope $end -$scope struct src $end -$upscope $end -$scope struct imm $end -$var wire 8 sy`Gi value $end -$upscope $end -$upscope $end -$upscope $end -$scope struct WriteL2Reg $end -$scope struct common $end -$var wire 3 dt]#D prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 fu<_y adj_value $end -$var string 1 29|Z) config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 TF"SY value $end -$var string 1 {tMye config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 JLt{P \[0] $end -$upscope $end -$scope struct imm $end -$var wire 8 mgSK1 value $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$scope struct LoadStore $end -$var string 1 y4D4( \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 \Ve~p prefix_pad $end +$var wire 3 >{(8c prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 r[C>" adj_value $end -$var string 1 wi=Mc config $end +$var wire 3 a2+[P adj_value $end +$var string 1 c:!CC config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 !SLRX value $end -$var string 1 fL,Im config $end +$var wire 4 Uspo: value $end +$var string 1 .|}+= config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 6]]*\ \[0] $end +$var wire 7 'Z;!x \[0] $end $upscope $end -$var wire 34 /na!- imm $end +$var wire 34 Xj&0r imm $end $upscope $end -$var string 1 zvoRG width $end -$var string 1 LX?-= conversion $end +$var string 1 XH]ZN width $end +$var string 1 ~M_I[ conversion $end $upscope $end $upscope $end $scope struct Store $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 ?WC~: prefix_pad $end +$var wire 3 l\+Gi prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 *)9ET adj_value $end -$var string 1 `KQfe config $end +$var wire 3 vGfE( adj_value $end +$var string 1 6)P>O config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 TpMj^ value $end -$var string 1 ZSo4U config $end +$var wire 4 _l\:U value $end +$var string 1 xG!d7 config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 l(I"B \[0] $end -$var wire 7 /YLH} \[1] $end +$var wire 7 )#ja% \[0] $end +$var wire 7 j`B,E \[1] $end $upscope $end -$var wire 34 ZX!yJ imm $end +$var wire 34 OdqDG imm $end $upscope $end -$var string 1 m%a0G width $end -$var string 1 p/@a5 conversion $end +$var string 1 (sKks width $end +$var string 1 v1`Cj conversion $end $upscope $end $upscope $end $upscope $end $upscope $end -$upscope $end -$scope struct src_values $end -$scope struct \[0] $end -$var wire 64 Gb*Ff int_fp $end -$scope struct flags $end -$var wire 1 q0b_O pwr_ca32_x86_af $end -$var wire 1 X/!.7 pwr_ca_x86_cf $end -$var wire 1 ,e14< pwr_ov32_x86_df $end -$var wire 1 Xw-8_ pwr_ov_x86_of $end -$var wire 1 _0Mkg pwr_so $end -$var wire 1 J?bbW pwr_cr_eq_x86_zf $end -$var wire 1 ;gXhm pwr_cr_gt_x86_pf $end -$var wire 1 NtYb+ pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct \[1] $end -$var wire 64 ]WS[u int_fp $end -$scope struct flags $end -$var wire 1 ^F#i| pwr_ca32_x86_af $end -$var wire 1 }.drm pwr_ca_x86_cf $end -$var wire 1 +ENrK pwr_ov32_x86_df $end -$var wire 1 H/Yw- pwr_ov_x86_of $end -$var wire 1 thuC8 pwr_so $end -$var wire 1 kt+k8 pwr_cr_eq_x86_zf $end -$var wire 1 >k>J8 pwr_cr_gt_x86_pf $end -$var wire 1 b"d44 pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct \[2] $end -$var wire 64 .f@BW int_fp $end -$scope struct flags $end -$var wire 1 o8*id pwr_ca32_x86_af $end -$var wire 1 -fI@A pwr_ca_x86_cf $end -$var wire 1 Es(uO pwr_ov32_x86_df $end -$var wire 1 mw#Y6 pwr_ov_x86_of $end -$var wire 1 ZH-[l pwr_so $end -$var wire 1 }P/qE pwr_cr_eq_x86_zf $end -$var wire 1 cBC=' pwr_cr_gt_x86_pf $end -$var wire 1 cQ\0J pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct predictor_op $end -$scope struct call_stack_op $end -$var string 1 SS$Fu \$tag $end -$var wire 64 {U.SF Push $end -$upscope $end -$scope struct cond_br_taken $end -$var string 1 config $end +$var wire 64 &GRK[ int_fp $end +$scope struct flags $end +$var wire 1 1:E[3 pwr_ca32_x86_af $end +$var wire 1 s5p^J pwr_ca_x86_cf $end +$var wire 1 I;N;w pwr_ov32_x86_df $end +$var wire 1 8:u7H pwr_ov_x86_of $end +$var wire 1 p?MHn pwr_so $end +$var wire 1 iP?[r pwr_cr_eq_x86_zf $end +$var wire 1 _e9cT pwr_cr_gt_x86_pf $end +$var wire 1 &7-nF pwr_cr_lt_x86_sf $end $upscope $end $upscope $end -$var string 1 I$(6R config $end -$upscope $end $upscope $end +$var wire 1 ieZ3n ran_nonspeculatively $end +$var wire 1 rp1L= sent_cant_cause_cancel $end +$var wire 1 9Pf\. sent_output_ready $end $var string 1 mv\|a config $end $upscope $end $scope struct \[2] $end @@ -80677,513 +83382,119 @@ $var wire 4 dwPvC size_in_bytes $end $var wire 1 KPl!R is_first_mop_in_insn $end $scope struct mop $end $var string 1 `qkl/ \$tag $end -$scope struct AluBranch $end -$var string 1 r?B=v \$tag $end -$scope struct AddSub $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 h:dM2 prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 3Y]TV adj_value $end -$var string 1 C[Q'8 config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 gP;xh value $end -$var string 1 LX>E6 config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 ifiE0 \[0] $end -$var wire 7 *lzG# \[1] $end -$var wire 7 -z&Jd \[2] $end -$upscope $end -$var wire 26 >wW@z imm $end -$upscope $end -$var string 1 !BP|6 output_integer_mode $end -$upscope $end -$var wire 1 s5nA[ invert_src0 $end -$var wire 1 2J].y src1_is_carry_in $end -$var wire 1 f/0a" invert_carry_in $end -$var wire 1 *$xA~ add_pc $end -$upscope $end -$scope struct AddSubI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 D3ky% prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 KIF}) adj_value $end -$var string 1 ,Y4]k config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 qVSsb value $end -$var string 1 Q{oOV config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 <>"%V \[0] $end -$var wire 7 E~b5D \[1] $end -$upscope $end -$var wire 34 Z"L+8 imm $end -$upscope $end -$var string 1 }^2:. output_integer_mode $end -$upscope $end -$var wire 1 6]rnz invert_src0 $end -$var wire 1 8xs_] src1_is_carry_in $end -$var wire 1 AY9,; invert_carry_in $end -$var wire 1 nF:A0 add_pc $end -$upscope $end -$scope struct LogicalFlags $end -$scope struct common $end -$var string 0 Z}75j prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 @);_r adj_value $end -$var string 1 yA>,{ config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 lj1~@ value $end -$var string 1 &2JVi config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 2*+KB \[0] $end -$var wire 7 thq\K \[1] $end -$var wire 7 o/HO \[2] $end -$upscope $end -$scope struct imm $end -$scope struct src0_start $end -$var wire 3 V-0w1 value $end -$var string 1 P=."1 range $end -$upscope $end -$scope struct src1_start $end -$var wire 3 s|HlZ value $end -$var string 1 }&2m& range $end -$upscope $end -$scope struct src2_start $end -$var wire 3 }pi-[ value $end -$var string 1 i8m&B range $end -$upscope $end -$scope struct dest_start $end -$var wire 3 g?4m$ value $end -$var string 1 :)4Fd range $end -$upscope $end -$scope struct dest_count $end -$var wire 4 e&gN: value $end -$var string 1 7$fcw range $end -$upscope $end -$upscope $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 }?u$( \[0] $end -$var wire 1 0q1+H \[1] $end -$var wire 1 tQg2K \[2] $end -$var wire 1 @y}oi \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct Logical $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 pf"]] prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 vvlU+ adj_value $end -$var string 1 YJe;) config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 {SdwK value $end -$var string 1 QEA-~ config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 0S|'k \[0] $end -$var wire 7 9DdgW \[1] $end -$upscope $end -$var wire 34 >;v=N imm $end -$upscope $end -$var string 1 +jcYW output_integer_mode $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 ""h^C \[0] $end -$var wire 1 j3ZYg \[1] $end -$var wire 1 ?Q|-F \[2] $end -$var wire 1 !wrB< \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct LogicalI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 XIEFX prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 uxUb$ adj_value $end -$var string 1 Kg~r@ config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 u*GX4 value $end -$var string 1 !s{sd config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 v:4I$ \[0] $end -$upscope $end -$var wire 34 :Beg$ imm $end -$upscope $end -$var string 1 tqWbx output_integer_mode $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 vp.h1 \[0] $end -$var wire 1 ^[N2y \[1] $end -$var wire 1 N3P4G \[2] $end -$var wire 1 =.-=c \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct ShiftRotate $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 xWsVp prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 >PzrY adj_value $end -$var string 1 d+7+1 config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 @i?f| value $end -$var string 1 \Y/F` config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 ?'(`4 \[0] $end -$var wire 7 kT.UE \[1] $end -$var wire 7 !kN@6 \[2] $end -$upscope $end -$scope struct imm $end -$scope struct shift_rotate_amount $end -$var string 1 _q3hd \$tag $end -$var wire 6 2Kti adj_value $end -$var string 1 i+VW* config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 '5,,w value $end -$var string 1 ~xea6 config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 z]~1B \[0] $end -$var wire 7 h^j,g \[1] $end -$upscope $end -$var wire 34 JixO imm $end -$upscope $end -$var string 1 \4"EX compare_mode $end -$upscope $end -$scope struct CompareI $end -$scope struct common $end -$var string 0 [,-iV prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 m}v@d adj_value $end -$var string 1 !|U0Y config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 5p\\$ value $end -$var string 1 34<,= config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 BT^eM \[0] $end -$upscope $end -$var wire 34 J56<[ imm $end -$upscope $end -$var string 1 bwTx< compare_mode $end -$upscope $end -$scope struct Branch $end -$scope struct common $end -$var string 0 $%UA^ prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 V0]9e adj_value $end -$var string 1 Q4r@O config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 nHiei value $end -$var string 1 ?4dob config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 0=D0z \[0] $end -$var wire 7 n2?7N \[1] $end -$var wire 7 {|,'@ \[2] $end -$upscope $end -$var wire 26 2 config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 $hmHT value $end -$var string 1 Z|hE, config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 ^zT"H \[0] $end -$var wire 7 3~X|0 \[1] $end -$upscope $end -$var wire 34 1Z@S0 imm $end -$upscope $end -$var wire 1 lr.r3 invert_src0_cond $end -$var string 1 QHcpL src0_cond_mode $end -$var wire 1 O]&SK invert_src2_eq_zero $end -$var wire 1 Dd"p] pc_relative $end -$var wire 1 \R$Qy is_call $end -$var wire 1 <">LM is_ret $end -$upscope $end -$scope struct ReadSpecial $end -$scope struct common $end -$var string 0 JMG;{ prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 ferz? adj_value $end -$var string 1 ;-Vlr config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 bi \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 ;iSAp prefix_pad $end +$var wire 3 S9wk$ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 JAG"d adj_value $end -$var string 1 |xl;& config $end +$var wire 3 IPKiN adj_value $end +$var string 1 0l&jf config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 -k:'< value $end -$var string 1 /EBT~ config $end +$var wire 4 y+P3S value $end +$var string 1 G`7^C config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 &!A|) \[0] $end +$var wire 7 +y1KX \[0] $end $upscope $end -$var wire 34 f-5}R imm $end +$var wire 34 p3,'~ imm $end $upscope $end -$var string 1 9!z[o width $end -$var string 1 &$cT6 conversion $end +$var string 1 HyjK$ width $end +$var string 1 g:OG3 conversion $end $upscope $end $upscope $end $scope struct Store $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 @da8h prefix_pad $end +$var wire 3 HCt0S prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 oH/0@ adj_value $end -$var string 1 "caTI config $end +$var wire 3 kpH`( adj_value $end +$var string 1 ?tPY@ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 --"B= value $end -$var string 1 Jt.IQ config $end +$var wire 4 ,%s^A value $end +$var string 1 ?t3bH config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 `Y\z7 \[0] $end -$var wire 7 4U?Q[ \[1] $end +$var wire 7 'w{-x \[0] $end +$var wire 7 ?vOlf \[1] $end $upscope $end -$var wire 34 c=9Sp imm $end +$var wire 34 se)S+ imm $end $upscope $end -$var string 1 Q/7$ pwr_so $end +$var wire 1 :r[h> pwr_cr_eq_x86_zf $end +$var wire 1 x(/(R pwr_cr_gt_x86_pf $end +$var wire 1 -Pbp( pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct \[1] $end +$var wire 64 SD3Xl int_fp $end +$scope struct flags $end +$var wire 1 %Z!5g pwr_ca32_x86_af $end +$var wire 1 k44,v pwr_ca_x86_cf $end +$var wire 1 5IhSd pwr_ov32_x86_df $end +$var wire 1 A|]}\ pwr_ov_x86_of $end +$var wire 1 Axk?c pwr_so $end +$var wire 1 o!gda pwr_cr_eq_x86_zf $end +$var wire 1 3}8D1 pwr_cr_gt_x86_pf $end +$var wire 1 NII%F pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct \[2] $end +$var wire 64 egI@Z int_fp $end +$scope struct flags $end +$var wire 1 CNU?y pwr_ca32_x86_af $end +$var wire 1 M.B|v pwr_ca_x86_cf $end +$var wire 1 ihdAV pwr_ov32_x86_df $end +$var wire 1 }%}KI pwr_ov_x86_of $end +$var wire 1 brg\" pwr_so $end +$var wire 1 pl%5c pwr_cr_eq_x86_zf $end +$var wire 1 ]>*v4 pwr_cr_gt_x86_pf $end +$var wire 1 E?f)v pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$upscope $end $upscope $end $scope struct dest_value $end -$var wire 64 s*FML int_fp $end -$scope struct flags $end -$var wire 1 TvK(] pwr_ca32_x86_af $end -$var wire 1 :K+y^ pwr_ca_x86_cf $end -$var wire 1 Q:7|2 pwr_ov32_x86_df $end -$var wire 1 2C+a/ pwr_ov_x86_of $end -$var wire 1 20./F pwr_so $end -$var wire 1 j(xk0 pwr_cr_eq_x86_zf $end -$var wire 1 mu!!P pwr_cr_gt_x86_pf $end -$var wire 1 #

{F \$tag $end -$var wire 1 ?%wG= HdlSome $end -$upscope $end -$var string 1 bFGb_ config $end -$upscope $end -$upscope $end -$upscope $end -$scope struct caused_cancel $end -$var string 1 DQm3o \$tag $end +$var string 1 *%y;O \$tag $end $scope struct HdlSome $end -$var wire 16 RazQp id $end -$var wire 64 "I*N; start_at_pc $end -$var string 1 y$q0K config $end +$var wire 64 (W+=L int_fp $end +$scope struct flags $end +$var wire 1 _)*r ran_nonspeculatively $end +$var wire 1 8HVM{ sent_cant_cause_cancel $end +$var wire 1 ?yy.` sent_output_ready $end $var string 1 IUsdm config $end $upscope $end $scope struct \[3] $end @@ -81196,513 +83507,119 @@ $var wire 4 v\3h1 size_in_bytes $end $var wire 1 e&:b( is_first_mop_in_insn $end $scope struct mop $end $var string 1 >;j`{ \$tag $end -$scope struct AluBranch $end -$var string 1 ]8koN \$tag $end -$scope struct AddSub $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 u;[~P prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 8%fc) adj_value $end -$var string 1 H@N2f config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 9eL[M value $end -$var string 1 LpY4~ config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 ^psvI \[0] $end -$var wire 7 lp9=^ \[1] $end -$var wire 7 A/m(Y \[2] $end -$upscope $end -$var wire 26 p{XiK imm $end -$upscope $end -$var string 1 Bcm;e output_integer_mode $end -$upscope $end -$var wire 1 6aW:c invert_src0 $end -$var wire 1 Ch,Pl src1_is_carry_in $end -$var wire 1 >vnvm invert_carry_in $end -$var wire 1 BH=wd add_pc $end -$upscope $end -$scope struct AddSubI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 N+~eg prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 9f9.] adj_value $end -$var string 1 1Q-cm config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 m!gC\ value $end -$var string 1 DQ$9} config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 iA|$/ \[0] $end -$var wire 7 jAI33 \[1] $end -$upscope $end -$var wire 34 ~ue`N imm $end -$upscope $end -$var string 1 /K-WN output_integer_mode $end -$upscope $end -$var wire 1 A7WF4 invert_src0 $end -$var wire 1 Cz'P' src1_is_carry_in $end -$var wire 1 NQ_NG invert_carry_in $end -$var wire 1 '>Y)v add_pc $end -$upscope $end -$scope struct LogicalFlags $end -$scope struct common $end -$var string 0 @CePj prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 UJ[=M adj_value $end -$var string 1 Azr:K config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 tU,o9 value $end -$var string 1 5+ac? config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 4T$B' \[0] $end -$var wire 7 ;9JxO \[1] $end -$var wire 7 T,?][ \[2] $end -$upscope $end -$scope struct imm $end -$scope struct src0_start $end -$var wire 3 1TZ?G value $end -$var string 1 Afz0g range $end -$upscope $end -$scope struct src1_start $end -$var wire 3 t~.yo value $end -$var string 1 L+=60 range $end -$upscope $end -$scope struct src2_start $end -$var wire 3 >+-1* value $end -$var string 1 f@ range $end -$upscope $end -$scope struct dest_count $end -$var wire 4 4 \[2] $end -$var wire 1 'TGc< \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct Logical $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 Lu1aE prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 >muh \[1] $end -$var wire 1 v+XsS \[2] $end -$var wire 1 q#\cB \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct LogicalI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 9wX]: prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 R*Wfx adj_value $end -$var string 1 "Od}w config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 o8!d4 value $end -$var string 1 4aTdT config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 wboSO \[0] $end -$upscope $end -$var wire 34 $V#5v imm $end -$upscope $end -$var string 1 S9)wc output_integer_mode $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 9B9d` \[0] $end -$var wire 1 e$C*R \[1] $end -$var wire 1 5;Qg# \[2] $end -$var wire 1 6aM9z \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct ShiftRotate $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 oN@d5 prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 Q5[:> adj_value $end -$var string 1 YI@WG config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 hhe`t value $end -$var string 1 j2PQQ config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 \@tRg \[0] $end -$var wire 7 k71wJ \[1] $end -$var wire 7 @RDUa \[2] $end -$upscope $end -$scope struct imm $end -$scope struct shift_rotate_amount $end -$var string 1 m:Wj~ \$tag $end -$var wire 6 ]Y[,~ HdlSome $end -$upscope $end -$var wire 1 *"zdH shift_rotate_right $end -$scope struct dest_logic_op $end -$var string 1 MNW1J \$tag $end -$scope struct HdlSome $end -$var wire 6 >K0]U rotated_output_start $end -$var wire 6 EMF(8 rotated_output_len $end -$var wire 1 "CBBN fallback_is_src2 $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$var string 1 &B2Rw output_integer_mode $end -$upscope $end -$var string 1 ($/L7 mode $end -$upscope $end -$scope struct Compare $end -$scope struct common $end -$var string 0 {^GcB prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 \T&/1 adj_value $end -$var string 1 Zqluk config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 Fd)Ay value $end -$var string 1 PM\bZ config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 MUJE0 \[0] $end -$var wire 7 Lvd4= \[1] $end -$upscope $end -$var wire 34 ?j?W3 imm $end -$upscope $end -$var string 1 #dEq4 compare_mode $end -$upscope $end -$scope struct CompareI $end -$scope struct common $end -$var string 0 W;OD< prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 @u{/b adj_value $end -$var string 1 m=/yF config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 4c(;h value $end -$var string 1 fWXPT config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 xi\5[ \[0] $end -$upscope $end -$var wire 34 =;76M imm $end -$upscope $end -$var string 1 *f`;< compare_mode $end -$upscope $end -$scope struct Branch $end -$scope struct common $end -$var string 0 Qd;P: prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 -O*/2 adj_value $end -$var string 1 h3rXw config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 h"$>X value $end -$var string 1 w7YRL config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 s^lqa \[0] $end -$var wire 7 AI'Ty \[1] $end -$var wire 7 BALL? \[2] $end -$upscope $end -$var wire 26 I6!W} imm $end -$upscope $end -$var wire 1 7dT0m invert_src0_cond $end -$var string 1 n&'#z src0_cond_mode $end -$var wire 1 0':,w invert_src2_eq_zero $end -$var wire 1 #sJQP pc_relative $end -$var wire 1 <: config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 ERKBA value $end -$var string 1 K(ZUJ config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 @iRQ~ \[0] $end -$var wire 7 "zB!1 \[1] $end -$upscope $end -$var wire 34 2~/~; imm $end -$upscope $end -$var wire 1 YaH8D invert_src0_cond $end -$var string 1 %OAWo src0_cond_mode $end -$var wire 1 n1YQ% invert_src2_eq_zero $end -$var wire 1 9wSZp pc_relative $end -$var wire 1 (mgET is_call $end -$var wire 1 1=M~B is_ret $end -$upscope $end -$scope struct ReadSpecial $end -$scope struct common $end -$var string 0 ..&Z) prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 xz-Sa adj_value $end -$var string 1 E-Xbm config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 N;7z= value $end -$var string 1 sl"z& config $end -$upscope $end -$upscope $end -$scope struct src $end -$upscope $end -$var string 1 u:vOs imm $end -$upscope $end -$upscope $end -$upscope $end -$scope struct TransformedMove $end -$var string 1 nVYR1 \$tag $end -$scope struct ReadL2Reg $end -$scope struct common $end -$var wire 3 .c]D2 prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 !6&|Y adj_value $end -$var string 1 kVb(y config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 'FFEY value $end -$var string 1 Z6<;H config $end -$upscope $end -$upscope $end -$scope struct src $end -$upscope $end -$scope struct imm $end -$var wire 8 Z?U., value $end -$upscope $end -$upscope $end -$upscope $end -$scope struct WriteL2Reg $end -$scope struct common $end -$var wire 3 +J/FG prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 LBpYc adj_value $end -$var string 1 Bz`b` config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 4JE)k value $end -$var string 1 RRfQD config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 7v'8/ \[0] $end -$upscope $end -$scope struct imm $end -$var wire 8 EO+#` value $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$scope struct LoadStore $end -$var string 1 9_Ug] \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 qPhjE prefix_pad $end +$var wire 3 q1Z^@ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 a8,EV adj_value $end -$var string 1 $A!Z+ config $end +$var wire 3 WK#jg adj_value $end +$var string 1 }v/TQ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 !+ZI: value $end -$var string 1 IJR8a config $end +$var wire 4 dR_?D value $end +$var string 1 7Y+SC config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 4unmn \[0] $end +$var wire 7 %=a== \[0] $end $upscope $end -$var wire 34 9;31y imm $end +$var wire 34 R_f8z imm $end $upscope $end -$var string 1 "nlr` width $end -$var string 1 TT=i~ conversion $end +$var string 1 jvzT= width $end +$var string 1 `mUai conversion $end $upscope $end $upscope $end $scope struct Store $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 x_}%V prefix_pad $end +$var wire 3 60Ei| prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 %9or" adj_value $end -$var string 1 {Z)jm config $end +$var wire 3 1%j_5 adj_value $end +$var string 1 a[#lv config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 Q@H#D value $end -$var string 1 c;k?& config $end +$var wire 4 @Yt0r value $end +$var string 1 3Wj?| config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 Y#s,t \[0] $end -$var wire 7 lzFGu \[1] $end +$var wire 7 NW*Mk \[0] $end +$var wire 7 t+bnU \[1] $end $upscope $end -$var wire 34 C(9Nl imm $end +$var wire 34 g@;f8 imm $end $upscope $end -$var string 1 _s.2~ width $end -$var string 1 ybi.& conversion $end +$var string 1 ?tV!S width $end +$var string 1 d\m8K conversion $end $upscope $end $upscope $end $upscope $end $upscope $end -$upscope $end -$scope struct src_values $end -$scope struct \[0] $end -$var wire 64 #*8sc int_fp $end -$scope struct flags $end -$var wire 1 qp0K> pwr_ca32_x86_af $end -$var wire 1 p;Ya$ pwr_ca_x86_cf $end -$var wire 1 AHSak pwr_ov32_x86_df $end -$var wire 1 Kw.(L pwr_ov_x86_of $end -$var wire 1 7FMm, pwr_so $end -$var wire 1 8/@\\ pwr_cr_eq_x86_zf $end -$var wire 1 OL.Z$ pwr_cr_gt_x86_pf $end -$var wire 1 uLtr+ pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct \[1] $end -$var wire 64 sg;q1 int_fp $end -$scope struct flags $end -$var wire 1 ./pAA pwr_ca32_x86_af $end -$var wire 1 g*%!< pwr_ca_x86_cf $end -$var wire 1 7FZ@D pwr_ov32_x86_df $end -$var wire 1 r1mz[ pwr_ov_x86_of $end -$var wire 1 P#uh< pwr_so $end -$var wire 1 -$*?( pwr_cr_eq_x86_zf $end -$var wire 1 $V=== pwr_cr_gt_x86_pf $end -$var wire 1 f2)S< pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct \[2] $end -$var wire 64 D pwr_so $end +$var wire 1 PH~m~ pwr_cr_eq_x86_zf $end +$var wire 1 )v4m5 pwr_cr_gt_x86_pf $end +$var wire 1 B#:nc pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct \[1] $end +$var wire 64 PlLjA int_fp $end +$scope struct flags $end +$var wire 1 |e;{] pwr_ca32_x86_af $end +$var wire 1 /5w%r pwr_ca_x86_cf $end +$var wire 1 ao'tN pwr_ov32_x86_df $end +$var wire 1 V7ukE pwr_ov_x86_of $end +$var wire 1 _VdPO pwr_so $end +$var wire 1 )~Y>( pwr_cr_eq_x86_zf $end +$var wire 1 1-Td) pwr_cr_gt_x86_pf $end +$var wire 1 "r>:9 pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct \[2] $end +$var wire 64 y"Eg- int_fp $end +$scope struct flags $end +$var wire 1 ,\T:a pwr_ca32_x86_af $end +$var wire 1 #d3sZ pwr_ca_x86_cf $end +$var wire 1 6nKQm pwr_ov32_x86_df $end +$var wire 1 V$=is pwr_ov_x86_of $end +$var wire 1 BFh7/ pwr_so $end +$var wire 1 -@"b[ pwr_cr_eq_x86_zf $end +$var wire 1 sX\|n pwr_cr_gt_x86_pf $end +$var wire 1 +7Nk1 pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$upscope $end $upscope $end $scope struct dest_value $end -$var wire 64 T}f/J int_fp $end -$scope struct flags $end -$var wire 1 zs8W3 pwr_ca32_x86_af $end -$var wire 1 "[.:/ pwr_ca_x86_cf $end -$var wire 1 H~#N6 pwr_ov32_x86_df $end -$var wire 1 @]T+d pwr_ov_x86_of $end -$var wire 1 @}Y2] pwr_so $end -$var wire 1 o4$o5 pwr_cr_eq_x86_zf $end -$var wire 1 iT-Ul pwr_cr_gt_x86_pf $end -$var wire 1 a<3<6 pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct predictor_op $end -$scope struct call_stack_op $end -$var string 1 gOGii \$tag $end -$var wire 64 @99}^ Push $end -$upscope $end -$scope struct cond_br_taken $end -$var string 1 :UJ|T \$tag $end -$var wire 1 e*v,J HdlSome $end -$upscope $end -$var string 1 jpGG; config $end -$upscope $end -$upscope $end -$upscope $end -$scope struct caused_cancel $end -$var string 1 a`)f7 \$tag $end +$var string 1 [.4zd \$tag $end $scope struct HdlSome $end -$var wire 16 xR7Q^ id $end -$var wire 64 emzq= start_at_pc $end -$var string 1 2N(yl config $end +$var wire 64 5Pl!x int_fp $end +$scope struct flags $end +$var wire 1 atLwC pwr_ca32_x86_af $end +$var wire 1 U[M'0 pwr_ca_x86_cf $end +$var wire 1 wQG9g pwr_ov32_x86_df $end +$var wire 1 f<^Q" pwr_ov_x86_of $end +$var wire 1 'Elz4 pwr_so $end +$var wire 1 AJE5 add_pc $end -$upscope $end -$scope struct AddSubI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 M#ei8 prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 D|;u} adj_value $end -$var string 1 V*P[x config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 -!Ywp value $end -$var string 1 Eidp{ config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 [HjO` \[0] $end -$var wire 7 6SoI( \[1] $end -$upscope $end -$var wire 34 /-G-v imm $end -$upscope $end -$var string 1 *FX^s output_integer_mode $end -$upscope $end -$var wire 1 OrxcR invert_src0 $end -$var wire 1 Q2ePy src1_is_carry_in $end -$var wire 1 u.F$z invert_carry_in $end -$var wire 1 2b|Q# add_pc $end -$upscope $end -$scope struct LogicalFlags $end -$scope struct common $end -$var string 0 t"m]K prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 k$sW5 adj_value $end -$var string 1 Haz>U config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 2[-Vh value $end -$var string 1 EPJ}x config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 WP%97 \[0] $end -$var wire 7 U]4o[ \[1] $end -$var wire 7 /ms5> \[2] $end -$upscope $end -$scope struct imm $end -$scope struct src0_start $end -$var wire 3 G`0Ou value $end -$var string 1 i17<> range $end -$upscope $end -$scope struct src1_start $end -$var wire 3 !sl}a value $end -$var string 1 &1pGr range $end -$upscope $end -$scope struct src2_start $end -$var wire 3 Sa3/% value $end -$var string 1 +%@Fb range $end -$upscope $end -$scope struct dest_start $end -$var wire 3 $7\$+ value $end -$var string 1 C%7s1 range $end -$upscope $end -$scope struct dest_count $end -$var wire 4 D8SjD value $end -$var string 1 +.LQ$ range $end -$upscope $end -$upscope $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 Y|0>7 \[0] $end -$var wire 1 U0{U5 \[1] $end -$var wire 1 *jkFd \[2] $end -$var wire 1 rSEL& \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct Logical $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 pc?|T prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 KL*H9 adj_value $end -$var string 1 6g)'b config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 rk&3f value $end -$var string 1 u0}{s config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 Z},K} \[0] $end -$var wire 7 S3Zb7 \[1] $end -$upscope $end -$var wire 34 hp%Lc imm $end -$upscope $end -$var string 1 `7}6g output_integer_mode $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 .8rj\ \[0] $end -$var wire 1 W7*N) \[1] $end -$var wire 1 voki$ \[2] $end -$var wire 1 Q[(DK \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct LogicalI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 .HlMf prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 PVKjP adj_value $end -$var string 1 >-Jo~ config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 f`@SA value $end -$var string 1 3~28# config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 Ak%;Z \[0] $end -$upscope $end -$var wire 34 B\rfX imm $end -$upscope $end -$var string 1 F$Qbd output_integer_mode $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 1wlc3 \[0] $end -$var wire 1 GM9=$ \[1] $end -$var wire 1 kr7'y \[2] $end -$var wire 1 l0$uq \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct ShiftRotate $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 bh; rotated_output_start $end -$var wire 6 YQGU7 rotated_output_len $end -$var wire 1 00iuW fallback_is_src2 $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$var string 1 bFF@{ output_integer_mode $end -$upscope $end -$var string 1 K/Q]p mode $end -$upscope $end -$scope struct Compare $end -$scope struct common $end -$var string 0 (\XUv prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 ]Q2b\ adj_value $end -$var string 1 /r<)R config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 9X^\m value $end -$var string 1 BB invert_src0_cond $end -$var string 1 Qab"@ src0_cond_mode $end -$var wire 1 =-7Yl invert_src2_eq_zero $end -$var wire 1 oGsrP pc_relative $end -$var wire 1 3R+3F is_call $end -$var wire 1 Gx;sq is_ret $end -$upscope $end -$scope struct ReadSpecial $end -$scope struct common $end -$var string 0 S_D7O prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 <}xWc adj_value $end -$var string 1 i9<$D config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 k-^uM value $end -$var string 1 NJi}` config $end -$upscope $end -$upscope $end -$scope struct src $end -$upscope $end -$var string 1 nC?0r imm $end -$upscope $end -$upscope $end -$upscope $end -$scope struct TransformedMove $end -$var string 1 :T=&< \$tag $end -$scope struct ReadL2Reg $end -$scope struct common $end -$var wire 3 waajI prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 d/=tq adj_value $end -$var string 1 8)5J: config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 ;v+ZA value $end -$var string 1 RBse` config $end -$upscope $end -$upscope $end -$scope struct src $end -$upscope $end -$scope struct imm $end -$var wire 8 }.!!. value $end -$upscope $end -$upscope $end -$upscope $end -$scope struct WriteL2Reg $end -$scope struct common $end -$var wire 3 V,n1j prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 hqF\t adj_value $end -$var string 1 z?L.) config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 -$R5K value $end -$var string 1 /GkgO config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 *5"{" \[0] $end -$upscope $end -$scope struct imm $end -$var wire 8 5]b"| value $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$scope struct LoadStore $end -$var string 1 mpciY \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 ba,*& prefix_pad $end +$var wire 3 `2@n[ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 \K:<$ adj_value $end -$var string 1 )sBr> config $end +$var wire 3 N^yXH adj_value $end +$var string 1 @v" \[0] $end $upscope $end -$var wire 34 bL=ii5 value $end -$var string 1 (C>KS config $end +$var wire 4 4r})m value $end +$var string 1 W|* \[0] $end +$var wire 7 3b[/z \[1] $end $upscope $end -$var wire 34 AsQE; imm $end +$var wire 34 %R\yi imm $end $upscope $end -$var string 1 i7922 width $end -$var string 1 5hScR conversion $end +$var string 1 /g,x^ width $end +$var string 1 X+LF# conversion $end $upscope $end $upscope $end $upscope $end $upscope $end -$upscope $end -$scope struct src_values $end -$scope struct \[0] $end -$var wire 64 <.1Q- int_fp $end -$scope struct flags $end -$var wire 1 #.yY| pwr_ca32_x86_af $end -$var wire 1 QUzg- pwr_ca_x86_cf $end -$var wire 1 f;gjV pwr_ov32_x86_df $end -$var wire 1 k;Ff/ pwr_ov_x86_of $end -$var wire 1 2DR?w pwr_so $end -$var wire 1 8o8eF pwr_cr_eq_x86_zf $end -$var wire 1 ?|g>v pwr_cr_gt_x86_pf $end -$var wire 1 jdR]m pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct \[1] $end -$var wire 64 w/4Dr int_fp $end -$scope struct flags $end -$var wire 1 vl*5C pwr_ca32_x86_af $end -$var wire 1 ,Rc~v pwr_ca_x86_cf $end -$var wire 1 *COr1 pwr_ov32_x86_df $end -$var wire 1 u1N%~ pwr_ov_x86_of $end -$var wire 1 3&;b) pwr_so $end -$var wire 1 q4$n/ pwr_cr_eq_x86_zf $end -$var wire 1 -X/fM pwr_cr_gt_x86_pf $end -$var wire 1 G^e#R pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct \[2] $end -$var wire 64 ((^+/ int_fp $end -$scope struct flags $end -$var wire 1 f+*$O pwr_ca32_x86_af $end -$var wire 1 &K8>L pwr_ca_x86_cf $end -$var wire 1 C(jI( pwr_ov32_x86_df $end -$var wire 1 \j5aN pwr_ov_x86_of $end -$var wire 1 ;*h!C pwr_so $end -$var wire 1 eBE/$ pwr_cr_eq_x86_zf $end -$var wire 1 'C<50 pwr_cr_gt_x86_pf $end -$var wire 1 15PW& pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$upscope $end $var wire 1 FF-FC is_speculative $end -$var wire 1 3wNfi sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 Z(/St \$tag $end +$scope struct src_values $end +$var string 1 jA*Q pwr_ca32_x86_af $end +$var wire 1 $$)pn pwr_ca_x86_cf $end +$var wire 1 [&]z. pwr_ov32_x86_df $end +$var wire 1 !j-Ld pwr_ov_x86_of $end +$var wire 1 /r!L$ pwr_so $end +$var wire 1 ,*<`I pwr_cr_eq_x86_zf $end +$var wire 1 *9T8^ pwr_cr_gt_x86_pf $end +$var wire 1 LHxN4 pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct \[1] $end +$var wire 64 uG+&C int_fp $end +$scope struct flags $end +$var wire 1 *W`gz pwr_ca32_x86_af $end +$var wire 1 WJQrb pwr_ca_x86_cf $end +$var wire 1 f14lN pwr_ov32_x86_df $end +$var wire 1 *arfi pwr_ov_x86_of $end +$var wire 1 EPg'Y pwr_so $end +$var wire 1 BV#4$ pwr_cr_eq_x86_zf $end +$var wire 1 S+Y': pwr_cr_gt_x86_pf $end +$var wire 1 ja;ZA pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct \[2] $end +$var wire 64 Y9-$x int_fp $end +$scope struct flags $end +$var wire 1 {x@0m pwr_ca32_x86_af $end +$var wire 1 z=b;R pwr_ca_x86_cf $end +$var wire 1 {Ae.( pwr_ov32_x86_df $end +$var wire 1 O?U?7 pwr_ov_x86_of $end +$var wire 1 Cn*|d pwr_so $end +$var wire 1 ?9{vd pwr_cr_eq_x86_zf $end +$var wire 1 _&mmZ pwr_cr_gt_x86_pf $end +$var wire 1 -aOY# pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$upscope $end $upscope $end $scope struct dest_value $end -$var wire 64 gKHD. int_fp $end -$scope struct flags $end -$var wire 1 !WR{9 pwr_ca32_x86_af $end -$var wire 1 =7JXx pwr_ca_x86_cf $end -$var wire 1 Ji_:D pwr_ov32_x86_df $end -$var wire 1 A0JhM pwr_ov_x86_of $end -$var wire 1 d7Y0E pwr_so $end -$var wire 1 BM;ip pwr_cr_eq_x86_zf $end -$var wire 1 w5!uh pwr_cr_gt_x86_pf $end -$var wire 1 ~aa$] pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct predictor_op $end -$scope struct call_stack_op $end -$var string 1 (har: \$tag $end -$var wire 64 kNjt^ Push $end -$upscope $end -$scope struct cond_br_taken $end -$var string 1 nSYi< \$tag $end -$var wire 1 UoUB* HdlSome $end -$upscope $end -$var string 1 GKDlG config $end -$upscope $end -$upscope $end -$upscope $end -$scope struct caused_cancel $end -$var string 1 %jFSx \$tag $end +$var string 1 T7h/S \$tag $end $scope struct HdlSome $end -$var wire 16 tH]4~ id $end -$var wire 64 F{c86 start_at_pc $end -$var string 1 Y/t*; config $end +$var wire 64 mWCr; int_fp $end +$scope struct flags $end +$var wire 1 7m)C` pwr_ca32_x86_af $end +$var wire 1 Fsn>} pwr_ca_x86_cf $end +$var wire 1 w?Ar> pwr_ov32_x86_df $end +$var wire 1 h[|X7 pwr_ov_x86_of $end +$var wire 1 781Si pwr_so $end +$var wire 1 9ob2r pwr_cr_eq_x86_zf $end +$var wire 1 mh6*' pwr_cr_gt_x86_pf $end +$var wire 1 3A(NL pwr_cr_lt_x86_sf $end $upscope $end $upscope $end -$var string 1 w~i,Q config $end -$upscope $end $upscope $end +$var wire 1 a,DIZ ran_nonspeculatively $end +$var wire 1 3wNfi sent_cant_cause_cancel $end +$var wire 1 a&Iwl sent_output_ready $end $var string 1 F.An( config $end $upscope $end $scope struct \[5] $end @@ -82234,513 +83757,119 @@ $var wire 4 QSxW] size_in_bytes $end $var wire 1 }!]E> is_first_mop_in_insn $end $scope struct mop $end $var string 1 \$tag $end -$scope struct AluBranch $end -$var string 1 Umkp5 \$tag $end -$scope struct AddSub $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 3]A9- prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 (964n adj_value $end -$var string 1 VdGHT config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 o(Stb value $end -$var string 1 (oeMl config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 [B1\p \[0] $end -$var wire 7 lkiNP \[1] $end -$var wire 7 +G?#| \[2] $end -$upscope $end -$var wire 26 >nooU imm $end -$upscope $end -$var string 1 p8n}L output_integer_mode $end -$upscope $end -$var wire 1 KgDO( invert_src0 $end -$var wire 1 iVJsK src1_is_carry_in $end -$var wire 1 'R*%& invert_carry_in $end -$var wire 1 0PznI add_pc $end -$upscope $end -$scope struct AddSubI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 FJUlU prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 t&c4j adj_value $end -$var string 1 NJ>![ config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 }XFM& value $end -$var string 1 Vaw'w config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 0vhW7 \[0] $end -$var wire 7 %7har \[1] $end -$upscope $end -$var wire 34 lukOC imm $end -$upscope $end -$var string 1 !-[D0 output_integer_mode $end -$upscope $end -$var wire 1 =yA>/ invert_src0 $end -$var wire 1 :0!fI src1_is_carry_in $end -$var wire 1 'CQKh invert_carry_in $end -$var wire 1 ;o7g3 add_pc $end -$upscope $end -$scope struct LogicalFlags $end -$scope struct common $end -$var string 0 *>AZ- prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 adj_value $end -$var string 1 [:|Mv config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 j4I2< value $end -$var string 1 yRZO- config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 5e}xS \[0] $end -$var wire 7 +x/\y \[1] $end -$var wire 7 BGBWT \[2] $end -$upscope $end -$scope struct imm $end -$scope struct src0_start $end -$var wire 3 (Uq^c value $end -$var string 1 &pkjj range $end -$upscope $end -$scope struct src1_start $end -$var wire 3 j.l|m value $end -$var string 1 C!9-n range $end -$upscope $end -$scope struct src2_start $end -$var wire 3 .O/7* value $end -$var string 1 OP&x> range $end -$upscope $end -$scope struct dest_start $end -$var wire 3 v4+{V value $end -$var string 1 %/\l; range $end -$upscope $end -$scope struct dest_count $end -$var wire 4 J>e]" value $end -$var string 1 UhLl[ range $end -$upscope $end -$upscope $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 ~GbW; \[0] $end -$var wire 1 3{!}? \[1] $end -$var wire 1 nB>(c \[2] $end -$var wire 1 pIm<% \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct Logical $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 (WD.^ prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 WjmZ; adj_value $end -$var string 1 1.S&u config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 gTP+Z value $end -$var string 1 p,25 \[2] $end -$var wire 1 4LO9T \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct LogicalI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 T3MsO prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 :)Z61 adj_value $end -$var string 1 yx|NM config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 yqZcs value $end -$var string 1 */I2{ config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 xS|nm \[0] $end -$upscope $end -$var wire 34 H0a?y imm $end -$upscope $end -$var string 1 .{Ts- output_integer_mode $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 m}&qw \[0] $end -$var wire 1 *M,[ \[1] $end -$var wire 1 wj6oH \[2] $end -$var wire 1 rz<*~ \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct ShiftRotate $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 Dpg[a prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 Q!1s? adj_value $end -$var string 1 c$$FO config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 akGsV value $end -$var string 1 ZjyzY config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 s=@!+ \[0] $end -$var wire 7 PQ7PP \[1] $end -$var wire 7 6`LHX \[2] $end -$upscope $end -$scope struct imm $end -$scope struct shift_rotate_amount $end -$var string 1 <.3*3 \$tag $end -$var wire 6 ^p"83 HdlSome $end -$upscope $end -$var wire 1 GL70\ shift_rotate_right $end -$scope struct dest_logic_op $end -$var string 1 jw}[T \$tag $end -$scope struct HdlSome $end -$var wire 6 .0WG< rotated_output_start $end -$var wire 6 "?O]Z rotated_output_len $end -$var wire 1 BHio' fallback_is_src2 $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$var string 1 ZF~7= output_integer_mode $end -$upscope $end -$var string 1 @w&-- mode $end -$upscope $end -$scope struct Compare $end -$scope struct common $end -$var string 0 7&UaC prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 -cx-s adj_value $end -$var string 1 `!k[C config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 HLpLq value $end -$var string 1 DBEdI config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 :lZ6? \[0] $end -$var wire 7 'jEwm \[1] $end -$upscope $end -$var wire 34 $v^B7 imm $end -$upscope $end -$var string 1 U\WKl compare_mode $end -$upscope $end -$scope struct CompareI $end -$scope struct common $end -$var string 0 pT5,p prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 gO~JX adj_value $end -$var string 1 s&w*, config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 asV*8 value $end -$var string 1 8lx19 config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 ;p$ht \[0] $end -$upscope $end -$var wire 34 C\C;Q imm $end -$upscope $end -$var string 1 [VbX compare_mode $end -$upscope $end -$scope struct Branch $end -$scope struct common $end -$var string 0 ~%rmg prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 ~A-f+ adj_value $end -$var string 1 eXr;} config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 6ZP|o value $end -$var string 1 rh=+y config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 YPuT_ \[0] $end -$var wire 7 i"jm8 \[1] $end -$var wire 7 [}vXe \[2] $end -$upscope $end -$var wire 26 X3$6Y imm $end -$upscope $end -$var wire 1 xk@w; invert_src0_cond $end -$var string 1 6Q!Ln src0_cond_mode $end -$var wire 1 cP8Iy invert_src2_eq_zero $end -$var wire 1 7+lmr pc_relative $end -$var wire 1 hv9xE is_call $end -$var wire 1 XuSPN is_ret $end -$upscope $end -$scope struct BranchI $end -$scope struct common $end -$var string 0 lievs prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 4(C_9 adj_value $end -$var string 1 ^+z&% config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 :&LZh value $end -$var string 1 rq(,U config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 [|i#? \[0] $end -$var wire 7 9a99q \[1] $end -$upscope $end -$var wire 34 #e/AP imm $end -$upscope $end -$var wire 1 x*AYL invert_src0_cond $end -$var string 1 Ui"a0 src0_cond_mode $end -$var wire 1 Nk^Pm invert_src2_eq_zero $end -$var wire 1 p4Nx{ pc_relative $end -$var wire 1 wnH]Z is_call $end -$var wire 1 (vp\R is_ret $end -$upscope $end -$scope struct ReadSpecial $end -$scope struct common $end -$var string 0 A+%gR prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 `u)m6 adj_value $end -$var string 1 w&)%_ config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 A+;W@ value $end -$var string 1 `k2*/ config $end -$upscope $end -$upscope $end -$scope struct src $end -$upscope $end -$var string 1 }?ds* imm $end -$upscope $end -$upscope $end -$upscope $end -$scope struct TransformedMove $end -$var string 1 R>d@- \$tag $end -$scope struct ReadL2Reg $end -$scope struct common $end -$var wire 3 Ewkz# prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 (#|M" adj_value $end -$var string 1 =&5Nv config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 #_8|/ value $end -$var string 1 WiAf5 config $end -$upscope $end -$upscope $end -$scope struct src $end -$upscope $end -$scope struct imm $end -$var wire 8 Ncft8 value $end -$upscope $end -$upscope $end -$upscope $end -$scope struct WriteL2Reg $end -$scope struct common $end -$var wire 3 Ir6%O prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 LOIrf imm $end $upscope $end -$var string 1 ,p!]< width $end -$var string 1 e5K_x conversion $end +$var string 1 bJa-J width $end +$var string 1 */i-$ conversion $end $upscope $end $upscope $end $scope struct Store $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 R\zj8 prefix_pad $end +$var wire 3 Fxd". prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 dJUm0 adj_value $end -$var string 1 2=UUt config $end +$var wire 3 7zJHF adj_value $end +$var string 1 Z#x-n config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 Ph@Z% value $end -$var string 1 }nY;O config $end +$var wire 4 z-@Fs value $end +$var string 1 0%@:` config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 0'kPw \[0] $end -$var wire 7 LMRNS \[1] $end +$var wire 7 >'c/7 \[0] $end +$var wire 7 (_/EI \[1] $end $upscope $end -$var wire 34 i3uFH imm $end +$var wire 34 2T_h^ imm $end $upscope $end -$var string 1 ))P{\ width $end -$var string 1 c9X4H conversion $end +$var string 1 ECoGk width $end +$var string 1 1orZB conversion $end $upscope $end $upscope $end $upscope $end $upscope $end -$upscope $end -$scope struct src_values $end -$scope struct \[0] $end -$var wire 64 Tl^GL int_fp $end -$scope struct flags $end -$var wire 1 r%9mL pwr_ca32_x86_af $end -$var wire 1 %\wpL pwr_ca_x86_cf $end -$var wire 1 *oa^m pwr_ov32_x86_df $end -$var wire 1 ?sYQ{ pwr_ov_x86_of $end -$var wire 1 G25O6 pwr_so $end -$var wire 1 K>]c0 pwr_cr_eq_x86_zf $end -$var wire 1 )NA(v pwr_cr_gt_x86_pf $end -$var wire 1 ONRZc pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct \[1] $end -$var wire 64 qv:nh int_fp $end -$scope struct flags $end -$var wire 1 ,;7!| pwr_ca32_x86_af $end -$var wire 1 LX0+l pwr_ca_x86_cf $end -$var wire 1 k9h3G pwr_ov32_x86_df $end -$var wire 1 :gT<0 pwr_ov_x86_of $end -$var wire 1 &@$@{ pwr_so $end -$var wire 1 AN2pD pwr_cr_eq_x86_zf $end -$var wire 1 'o.y5 pwr_cr_gt_x86_pf $end -$var wire 1 /Y;lT pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct \[2] $end -$var wire 64 l+BtD int_fp $end -$scope struct flags $end -$var wire 1 lPEUN pwr_ca32_x86_af $end -$var wire 1 PU130 pwr_ca_x86_cf $end -$var wire 1 A-jIQ pwr_ov32_x86_df $end -$var wire 1 le~ab pwr_ov_x86_of $end -$var wire 1 )tm+d pwr_so $end -$var wire 1 f.^HY pwr_cr_eq_x86_zf $end -$var wire 1 KR"aY pwr_cr_gt_x86_pf $end -$var wire 1 1RdY# pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$upscope $end $var wire 1 0)TUv is_speculative $end -$var wire 1 )v-'V sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 W(6u9 \$tag $end +$scope struct src_values $end +$var string 1 'A@wz \$tag $end $scope struct HdlSome $end -$var wire 16 I$X8U id $end -$scope struct finished_successfully $end -$var string 1 +I_OK \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 m(rqD value $end -$var string 1 7_9R6 config $end +$scope struct \[0] $end +$var wire 64 h9RYr int_fp $end +$scope struct flags $end +$var wire 1 L8Q3W pwr_ca32_x86_af $end +$var wire 1 ^*bJk/ HdlSome $end -$upscope $end -$var string 1 ;X'?m config $end -$upscope $end -$upscope $end -$upscope $end -$scope struct caused_cancel $end -$var string 1 }e|w8 \$tag $end +$var string 1 ;gN|2 \$tag $end $scope struct HdlSome $end -$var wire 16 zwy>f id $end -$var wire 64 JRC(W start_at_pc $end -$var string 1 r;q-5 config $end +$var wire 64 >}}^N int_fp $end +$scope struct flags $end +$var wire 1 Z`G~( pwr_ca32_x86_af $end +$var wire 1 4$c8M pwr_ca_x86_cf $end +$var wire 1 r?-:1 pwr_ov32_x86_df $end +$var wire 1 ]c;U^ pwr_ov_x86_of $end +$var wire 1 jy;4M pwr_so $end +$var wire 1 xf.%9 pwr_cr_eq_x86_zf $end +$var wire 1 oxC-? pwr_cr_gt_x86_pf $end +$var wire 1 tH&1] pwr_cr_lt_x86_sf $end $upscope $end $upscope $end -$var string 1 5aCj^ config $end -$upscope $end $upscope $end +$var wire 1 EJ>vU ran_nonspeculatively $end +$var wire 1 )v-'V sent_cant_cause_cancel $end +$var wire 1 b_*\" sent_output_ready $end $var string 1 p??p% config $end $upscope $end $scope struct \[6] $end @@ -82753,513 +83882,119 @@ $var wire 4 Mp.}* size_in_bytes $end $var wire 1 ~XbTv is_first_mop_in_insn $end $scope struct mop $end $var string 1 ='~gB \$tag $end -$scope struct AluBranch $end -$var string 1 J[!(; \$tag $end -$scope struct AddSub $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 F; imm $end -$upscope $end -$var string 1 uLd"s output_integer_mode $end -$upscope $end -$var wire 1 ,1yky invert_src0 $end -$var wire 1 W4.2< src1_is_carry_in $end -$var wire 1 E=+\, invert_carry_in $end -$var wire 1 :Umx^ add_pc $end -$upscope $end -$scope struct AddSubI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 %N`b9 prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 -czKK adj_value $end -$var string 1 }Q7?n config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 :b?,2 value $end -$var string 1 Bu}Av config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 "h?fL \[0] $end -$var wire 7 x_/LV \[1] $end -$upscope $end -$var wire 34 5D`Kw imm $end -$upscope $end -$var string 1 L<%vx output_integer_mode $end -$upscope $end -$var wire 1 #_@j[ invert_src0 $end -$var wire 1 M+%gC src1_is_carry_in $end -$var wire 1 "1o&K invert_carry_in $end -$var wire 1 DO1Tl add_pc $end -$upscope $end -$scope struct LogicalFlags $end -$scope struct common $end -$var string 0 zO2H# prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 fD:sq adj_value $end -$var string 1 [oj}( config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 {OP^t value $end -$var string 1 bo67P config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 |/9^" \[0] $end -$var wire 7 NdC9m \[1] $end -$var wire 7 y$%sA \[2] $end -$upscope $end -$scope struct imm $end -$scope struct src0_start $end -$var wire 3 YA^B\ value $end -$var string 1 8vm=[ range $end -$upscope $end -$scope struct src1_start $end -$var wire 3 DkZ8: value $end -$var string 1 G!#WE range $end -$upscope $end -$scope struct src2_start $end -$var wire 3 hRFZ` value $end -$var string 1 D.~lN range $end -$upscope $end -$scope struct dest_start $end -$var wire 3 {!L4' value $end -$var string 1 -1K?i range $end -$upscope $end -$scope struct dest_count $end -$var wire 4 n:ruF value $end -$var string 1 a.Lhn range $end -$upscope $end -$upscope $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 \=oOO \[0] $end -$var wire 1 [#AWi \[1] $end -$var wire 1 3"C)3 \[2] $end -$var wire 1 0Ukv( \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct Logical $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 v!(q. prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 w>-h. adj_value $end -$var string 1 5[\3q config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 `SwGD value $end -$var string 1 >NBB_ config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 ea&r: \[0] $end -$var wire 7 o&1{4 \[1] $end -$upscope $end -$var wire 34 py+YW imm $end -$upscope $end -$var string 1 Mrp*^ output_integer_mode $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 |_Z8e \[0] $end -$var wire 1 (h,%_ \[1] $end -$var wire 1 DG@B0 \[2] $end -$var wire 1 ,uPth \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct LogicalI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 dG+V) prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 #P@K4 adj_value $end -$var string 1 aH6p^ config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 .q:5% value $end -$var string 1 C#o0w config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 Z>]Pm \[0] $end -$upscope $end -$var wire 34 ReE[J imm $end -$upscope $end -$var string 1 |\0^| output_integer_mode $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 .8|E> \[0] $end -$var wire 1 $Xt1R \[1] $end -$var wire 1 k\M"w \[2] $end -$var wire 1 @~0EP \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct ShiftRotate $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 lF_fO prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 ZND6Q adj_value $end -$var string 1 ]7(@c config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 %(&d< value $end -$var string 1 $vYb_ config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 Eo1)Y \[0] $end -$var wire 7 ZB^@' \[1] $end -$var wire 7 PM[pU \[2] $end -$upscope $end -$scope struct imm $end -$scope struct shift_rotate_amount $end -$var string 1 /`r[~ \$tag $end -$var wire 6 FQ%YH HdlSome $end -$upscope $end -$var wire 1 [A[|u shift_rotate_right $end -$scope struct dest_logic_op $end -$var string 1 T0YKd \$tag $end -$scope struct HdlSome $end -$var wire 6 -]jL? rotated_output_start $end -$var wire 6 _B_yi rotated_output_len $end -$var wire 1 KZ6Up fallback_is_src2 $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$var string 1 =(AmR output_integer_mode $end -$upscope $end -$var string 1 RZJ.3 mode $end -$upscope $end -$scope struct Compare $end -$scope struct common $end -$var string 0 KcL~q prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 >d@c, adj_value $end -$var string 1 7phuf config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 V^Tvd value $end -$var string 1 9:.v6 config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 V=jh3 \[0] $end -$var wire 7 (FdwO \[1] $end -$upscope $end -$var wire 34 k^Q*4 imm $end -$upscope $end -$var string 1 I3{[A compare_mode $end -$upscope $end -$scope struct CompareI $end -$scope struct common $end -$var string 0 [7cv& prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 zY#ML adj_value $end -$var string 1 'rKA; config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 _P@W~ value $end -$var string 1 vD({t config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 WJ_t( \[0] $end -$upscope $end -$var wire 34 MHiUX imm $end -$upscope $end -$var string 1 l?L&\ compare_mode $end -$upscope $end -$scope struct Branch $end -$scope struct common $end -$var string 0 [IL$y prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 6'(1^ adj_value $end -$var string 1 !j_[( config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 oTPVi value $end -$var string 1 %q.N( config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 .P]4y \[0] $end -$var wire 7 W,k%) \[1] $end -$var wire 7 fxu@- \[2] $end -$upscope $end -$var wire 26 1W$1. imm $end -$upscope $end -$var wire 1 G'o(f invert_src0_cond $end -$var string 1 Z9Lcs src0_cond_mode $end -$var wire 1 kOjNd invert_src2_eq_zero $end -$var wire 1 U.)=I pc_relative $end -$var wire 1 !_yVf is_call $end -$var wire 1 Y]NrK is_ret $end -$upscope $end -$scope struct BranchI $end -$scope struct common $end -$var string 0 R8cF2 prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 J`g/x adj_value $end -$var string 1 *%b[[ config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 %VONS value $end -$var string 1 %m#1\ config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 Hs1Eh \[0] $end -$var wire 7 hkZVc \[1] $end -$upscope $end -$var wire 34 |h-w[ imm $end -$upscope $end -$var wire 1 yKxQ` invert_src0_cond $end -$var string 1 9Ds7j src0_cond_mode $end -$var wire 1 =-N/% invert_src2_eq_zero $end -$var wire 1 L:'FS pc_relative $end -$var wire 1 iGjzH is_call $end -$var wire 1 kAFSB is_ret $end -$upscope $end -$scope struct ReadSpecial $end -$scope struct common $end -$var string 0 '}KM_ prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 lUgSF adj_value $end -$var string 1 @-,Af config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 @@ia6 value $end -$var string 1 .wT8w config $end -$upscope $end -$upscope $end -$scope struct src $end -$upscope $end -$var string 1 DOlX> imm $end -$upscope $end -$upscope $end -$upscope $end -$scope struct TransformedMove $end -$var string 1 AI"Ti \$tag $end -$scope struct ReadL2Reg $end -$scope struct common $end -$var wire 3 cl;@i prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 H'#w4 adj_value $end -$var string 1 SlA&j config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 Ik-$C value $end -$var string 1 F)g^o config $end -$upscope $end -$upscope $end -$scope struct src $end -$upscope $end -$scope struct imm $end -$var wire 8 p5v^c value $end -$upscope $end -$upscope $end -$upscope $end -$scope struct WriteL2Reg $end -$scope struct common $end -$var wire 3 %zL0h prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 7 pwr_ov32_x86_df $end -$var wire 1 >aK|$ pwr_ov_x86_of $end -$var wire 1 +-o#7 pwr_so $end -$var wire 1 h_)yL pwr_cr_eq_x86_zf $end -$var wire 1 ,"Z!Y pwr_cr_gt_x86_pf $end -$var wire 1 'wot, pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct \[2] $end -$var wire 64 15HNY int_fp $end -$scope struct flags $end -$var wire 1 9".BY pwr_ca32_x86_af $end -$var wire 1 LZ)7& pwr_ca_x86_cf $end -$var wire 1 ])_0O pwr_ov32_x86_df $end -$var wire 1 7WP8& pwr_ov_x86_of $end -$var wire 1 %))X& pwr_so $end -$var wire 1 AP"N{ pwr_cr_eq_x86_zf $end -$var wire 1 #I;^ pwr_cr_gt_x86_pf $end -$var wire 1 4hjoR pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$upscope $end $var wire 1 zqM{a is_speculative $end -$var wire 1 !V!E` sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 ]o0<" \$tag $end +$scope struct src_values $end +$var string 1 r~.dt \$tag $end $scope struct HdlSome $end -$var wire 16 KgHz# id $end -$scope struct finished_successfully $end -$var string 1 $`C*B \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 d?ygW value $end -$var string 1 !e)FJ config $end +$scope struct \[0] $end +$var wire 64 b@q_< int_fp $end +$scope struct flags $end +$var wire 1 u@~#* pwr_ca32_x86_af $end +$var wire 1 o=0## pwr_ca_x86_cf $end +$var wire 1 (rY}) pwr_ov32_x86_df $end +$var wire 1 9&38R pwr_ov_x86_of $end +$var wire 1 L;uz4 pwr_so $end +$var wire 1 _M?ut pwr_cr_eq_x86_zf $end +$var wire 1 ~4KnV pwr_cr_gt_x86_pf $end +$var wire 1 3A^k0 pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct \[1] $end +$var wire 64 6"2AS int_fp $end +$scope struct flags $end +$var wire 1 vp*GU pwr_ca32_x86_af $end +$var wire 1 9)*c^ pwr_ca_x86_cf $end +$var wire 1 4Y}`G pwr_ov32_x86_df $end +$var wire 1 FyU4k pwr_ov_x86_of $end +$var wire 1 N%FFq pwr_so $end +$var wire 1 a62hb pwr_cr_eq_x86_zf $end +$var wire 1 2FnIo pwr_cr_gt_x86_pf $end +$var wire 1 l2%o% pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct \[2] $end +$var wire 64 KV]Ln int_fp $end +$scope struct flags $end +$var wire 1 ,AR]B pwr_ca32_x86_af $end +$var wire 1 c)vv pwr_ca32_x86_af $end +$var wire 1 k^[xW pwr_ca_x86_cf $end +$var wire 1 R?>n^ pwr_ov32_x86_df $end +$var wire 1 G81\` pwr_ov_x86_of $end +$var wire 1 ^gImP pwr_so $end +$var wire 1 w*OTv pwr_cr_eq_x86_zf $end +$var wire 1 %%0W2 pwr_cr_gt_x86_pf $end +$var wire 1 5S^Tc pwr_cr_lt_x86_sf $end $upscope $end $upscope $end -$var string 1 s[&XX config $end -$upscope $end $upscope $end +$var wire 1 s7#^2 ran_nonspeculatively $end +$var wire 1 !V!E` sent_cant_cause_cancel $end +$var wire 1 oL{C@ sent_output_ready $end $var string 1 -iT*H config $end $upscope $end $scope struct \[7] $end @@ -83272,513 +84007,119 @@ $var wire 4 Mv%DW size_in_bytes $end $var wire 1 -}!(w is_first_mop_in_insn $end $scope struct mop $end $var string 1 xz:Or \$tag $end -$scope struct AluBranch $end -$var string 1 rT/]7 \$tag $end -$scope struct AddSub $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 *@{]x prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 ctQZ< adj_value $end -$var string 1 kY=G. config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 B%4mC value $end -$var string 1 eX(+E config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 !YV5F \[0] $end -$var wire 7 N-a?P \[1] $end -$var wire 7 ?E1H- \[2] $end -$upscope $end -$var wire 26 mW5_k imm $end -$upscope $end -$var string 1 @UE8} output_integer_mode $end -$upscope $end -$var wire 1 <2Q4. invert_src0 $end -$var wire 1 ?b92t src1_is_carry_in $end -$var wire 1 Iw7_K invert_carry_in $end -$var wire 1 Dmrai add_pc $end -$upscope $end -$scope struct AddSubI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 J'hQ, prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 {6DIg adj_value $end -$var string 1 p",2Z config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 !U}1O value $end -$var string 1 ndl?[ config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 (wqp* \[0] $end -$var wire 7 FrgB< \[1] $end -$upscope $end -$var wire 34 ~nq)r imm $end -$upscope $end -$var string 1 3)7r_ output_integer_mode $end -$upscope $end -$var wire 1 d{L?: invert_src0 $end -$var wire 1 65e.f src1_is_carry_in $end -$var wire 1 dV?H$ invert_carry_in $end -$var wire 1 j~T=W add_pc $end -$upscope $end -$scope struct LogicalFlags $end -$scope struct common $end -$var string 0 ZT~$= prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 `7RlT adj_value $end -$var string 1 Xc)c range $end -$upscope $end -$scope struct src1_start $end -$var wire 3 K@.?0 value $end -$var string 1 SGiJk range $end -$upscope $end -$scope struct src2_start $end -$var wire 3 gyM;J value $end -$var string 1 Rvgx_ range $end -$upscope $end -$scope struct dest_start $end -$var wire 3 1GtYW value $end -$var string 1 @,rR9 range $end -$upscope $end -$scope struct dest_count $end -$var wire 4 $z!^n value $end -$var string 1 F[70, range $end -$upscope $end -$upscope $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 7B3^1 \[0] $end -$var wire 1 a+#]1 \[1] $end -$var wire 1 R?+c6 \[2] $end -$var wire 1 b,8ms \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct Logical $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 /s>v^ prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 K>1r$ adj_value $end -$var string 1 2Aw*E config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 (k}H value $end -$var string 1 h2c/- config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 7|U(] \[0] $end -$var wire 7 UfZ-{ \[1] $end -$upscope $end -$var wire 34 pv9)F imm $end -$upscope $end -$var string 1 \ZRW' output_integer_mode $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 "*V"_ \[0] $end -$var wire 1 19L0a \[1] $end -$var wire 1 lx4y} \[2] $end -$var wire 1 <'&Yq \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct LogicalI $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 6?DZo prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 L8Jk. adj_value $end -$var string 1 C;>Q} config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 x{Jj0 value $end -$var string 1 =U*L( config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 DnFB' \[0] $end -$upscope $end -$var wire 34 6/*[d imm $end -$upscope $end -$var string 1 3Njk~ output_integer_mode $end -$upscope $end -$scope struct lut $end -$scope struct lut $end -$var wire 1 i>aY5 \[0] $end -$var wire 1 V??J8 \[1] $end -$var wire 1 +q>\i \[2] $end -$var wire 1 nj9&E \[3] $end -$upscope $end -$upscope $end -$upscope $end -$scope struct ShiftRotate $end -$scope struct alu_common $end -$scope struct common $end -$var string 0 gx!e: prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 Sw16[ adj_value $end -$var string 1 ysQ84 config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 ju_k= value $end -$var string 1 &fWr= config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 =@L]f \[0] $end -$var wire 7 mOh6i \[1] $end -$var wire 7 >2S@_ \[2] $end -$upscope $end -$scope struct imm $end -$scope struct shift_rotate_amount $end -$var string 1 N8;x; \$tag $end -$var wire 6 Bdxxt HdlSome $end -$upscope $end -$var wire 1 9X'?, shift_rotate_right $end -$scope struct dest_logic_op $end -$var string 1 JUyT^ \$tag $end -$scope struct HdlSome $end -$var wire 6 mT\uj rotated_output_start $end -$var wire 6 ]nKhe rotated_output_len $end -$var wire 1 Vkh|? fallback_is_src2 $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$var string 1 `3@AU output_integer_mode $end -$upscope $end -$var string 1 ASghc mode $end -$upscope $end -$scope struct Compare $end -$scope struct common $end -$var string 0 4p4// prefix_pad $end -$scope struct dest $end -$scope struct unit_num $end -$var wire 3 G9EnD adj_value $end -$var string 1 H7o$` config $end -$upscope $end -$scope struct unit_out_reg $end -$var wire 4 -Q8OP value $end -$var string 1 sYW1` config $end -$upscope $end -$upscope $end -$scope struct src $end -$var wire 7 %D_l4 \[0] $end -$var wire 7 m|'D* \[1] $end -$upscope $end -$var wire 34 ~m9{' imm $end -$upscope $end -$var string 1 6~!vx compare_mode $end -$upscope $end -$scope struct CompareI $end -$scope struct common $end -$var string 0 L&I*F adj_value $end +$var string 1 GY3xn config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 >LWEp value $end -$var string 1 eS_Ht config $end +$var wire 4 $\I@A value $end +$var string 1 m|"L0 config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 c;\lx \[0] $end +$var wire 7 n1t~e \[0] $end $upscope $end -$var wire 34 =\_|J imm $end +$var wire 34 cbepZ imm $end $upscope $end -$var string 1 fAX~# width $end -$var string 1 REB>x conversion $end +$var string 1 4@i71 width $end +$var string 1 "p\/0 conversion $end $upscope $end $upscope $end $scope struct Store $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 '>XMD prefix_pad $end +$var wire 3 {t@2 int_fp $end -$scope struct flags $end -$var wire 1 LCaFh pwr_ca32_x86_af $end -$var wire 1 0Vd7a pwr_ca_x86_cf $end -$var wire 1 :6!O!: value $end -$var string 1 `#A*' config $end +$scope struct \[0] $end +$var wire 64 b6P?{ int_fp $end +$scope struct flags $end +$var wire 1 tLJ+m pwr_ca32_x86_af $end +$var wire 1 P0noP pwr_ca_x86_cf $end +$var wire 1 P0r2Z pwr_ov32_x86_df $end +$var wire 1 aF':h pwr_ov_x86_of $end +$var wire 1 0aP[@ pwr_so $end +$var wire 1 asvt7 pwr_cr_eq_x86_zf $end +$var wire 1 sHDO{ pwr_cr_gt_x86_pf $end +$var wire 1 spZ;T pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct \[1] $end +$var wire 64 P>2sP int_fp $end +$scope struct flags $end +$var wire 1 kS2hO pwr_ca32_x86_af $end +$var wire 1 kZu)x pwr_ca_x86_cf $end +$var wire 1 h=%t< pwr_ov32_x86_df $end +$var wire 1 /.+f\ pwr_ov_x86_of $end +$var wire 1 k.XpI pwr_so $end +$var wire 1 IwI7T pwr_cr_eq_x86_zf $end +$var wire 1 ^)SoV pwr_cr_gt_x86_pf $end +$var wire 1 emLu& pwr_so $end +$var wire 1 ~d4kH pwr_cr_eq_x86_zf $end +$var wire 1 K0wW9 pwr_cr_gt_x86_pf $end +$var wire 1 R+B-= pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$upscope $end $upscope $end $scope struct dest_value $end -$var wire 64 wy*1m int_fp $end -$scope struct flags $end -$var wire 1 B-'qA pwr_ca32_x86_af $end -$var wire 1 Wi|Bt pwr_ca_x86_cf $end -$var wire 1 =$D`J pwr_ov32_x86_df $end -$var wire 1 8v'E# pwr_ov_x86_of $end -$var wire 1 K+8NY pwr_so $end -$var wire 1 5%BmY pwr_cr_eq_x86_zf $end -$var wire 1 QMXom pwr_cr_gt_x86_pf $end -$var wire 1 0Y%%2 pwr_cr_lt_x86_sf $end -$upscope $end -$upscope $end -$scope struct predictor_op $end -$scope struct call_stack_op $end -$var string 1 aM;m5 \$tag $end -$var wire 64 q1Cg2 Push $end -$upscope $end -$scope struct cond_br_taken $end -$var string 1 vdK>3 \$tag $end -$var wire 1 4>Mvb HdlSome $end -$upscope $end -$var string 1 B;OeY config $end -$upscope $end -$upscope $end -$upscope $end -$scope struct caused_cancel $end -$var string 1 ]j:Vx \$tag $end +$var string 1 u.~5n \$tag $end $scope struct HdlSome $end -$var wire 16 gCl+W id $end -$var wire 64 b5Wwx start_at_pc $end -$var string 1 92JOn config $end +$var wire 64 r`LPU int_fp $end +$scope struct flags $end +$var wire 1 D%3f5 pwr_ca32_x86_af $end +$var wire 1 *-$SR pwr_ca_x86_cf $end +$var wire 1 "n\54 pwr_ov32_x86_df $end +$var wire 1 /=b>H pwr_ov_x86_of $end +$var wire 1 dloo pwr_so $end +$var wire 1 fUv6\ pwr_cr_eq_x86_zf $end +$var wire 1 s6u2K pwr_cr_gt_x86_pf $end +$var wire 1 gTG1l pwr_cr_lt_x86_sf $end $upscope $end $upscope $end -$var string 1 n^uz\ config $end -$upscope $end $upscope $end +$var wire 1 KiI1@ ran_nonspeculatively $end +$var wire 1 S"eVIL> value $end $var string 1 vz0q< range $end $upscope $end $upscope $end -$scope struct execution_state $end $scope struct memory $end -$var string 1 gv+5w \[0] $end -$var string 1 ?Gy-l \[1] $end -$var string 1 |WTh \[2] $end -$var string 1 OuQq] \[3] $end -$var string 1 %LbO$ \[4] $end -$var string 1 [4b \[9] $end -$var string 1 ."bi9 \[10] $end -$var string 1 p-fi4 \[11] $end -$var string 1 ,mel? \[12] $end -$var string 1 g\a\^ \[13] $end -$var string 1 Z~'?@ \[14] $end -$var string 1 n}Err \[15] $end -$var string 1 _"T~` \[16] $end -$var string 1 T|>sC \[17] $end -$var string 1 XukB~ \[18] $end -$var string 1 l|[mj \[19] $end -$var string 1 %J[XK \[20] $end -$var string 1 ^I\}l \[21] $end -$var string 1 )-fq\ \[22] $end -$var string 1 h1J6# \[23] $end -$var string 1 ez{T8 \[24] $end -$var string 1 :NLbY \[25] $end -$var string 1 NpL3^ \[26] $end -$var string 1 c@UR@ \[27] $end -$var string 1 f-?v| \[28] $end -$var string 1 {72Tq \[29] $end -$var string 1 B]6g. \[30] $end -$var string 1 t388V \[31] $end +$var wire 1 sOSum wrote_output $end +$scope struct memory $end +$var string 1 ix'Be \[0] $end +$var string 1 H~H-k \[1] $end +$var string 1 5u]|o \[2] $end +$var string 1 e(%p" \[3] $end +$var string 1 *_@LM \[4] $end +$var string 1 &8XI[ \[5] $end +$var string 1 -.^$. \[6] $end +$var string 1 %k{>m \[7] $end +$var string 1 3[NDt \[8] $end +$var string 1 lI_Gz \[9] $end +$var string 1 (:\x* \[10] $end +$var string 1 MtO)8 \[11] $end +$var string 1 3K8]* \[12] $end +$var string 1 1A\vNu \[27] $end +$var string 1 Qx=DW \[28] $end +$var string 1 JXPL, \[29] $end +$var string 1 73-]? \[30] $end +$var string 1 DuS1o \[31] $end +$upscope $end +$scope struct l1_cache $end +$scope struct \[0] $end +$var string 1 YU?FT \$tag $end +$scope struct HdlSome $end +$var wire 64 pEM&] chunk_addr $end +$upscope $end +$upscope $end +$scope struct \[1] $end +$var string 1 9'#D= \$tag $end +$scope struct HdlSome $end +$var wire 64 +.@By chunk_addr $end +$upscope $end +$upscope $end +$scope struct \[2] $end +$var string 1 En8dv \$tag $end +$scope struct HdlSome $end +$var wire 64 G1n!U chunk_addr $end +$upscope $end +$upscope $end +$scope struct \[3] $end +$var string 1 :cz=3 \$tag $end +$scope struct HdlSome $end +$var wire 64 MTt+q chunk_addr $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$scope struct speculative_memory $end +$var wire 1 vnbJY wrote_output $end +$scope struct memory $end +$var string 1 :ZBGp \[0] $end +$var string 1 0>Zml \[1] $end +$var string 1 ZwL}Q \[2] $end +$var string 1 9I \[3] $end +$var string 1 VkhU= \[4] $end +$var string 1 ~ap2. \[5] $end +$var string 1 ancnK \[6] $end +$var string 1 {*t>' \[7] $end +$var string 1 Q'LVp \[8] $end +$var string 1 G]_@3 \[9] $end +$var string 1 RwNA; \[10] $end +$var string 1 h#MHa \[11] $end +$var string 1 w$3?E \[12] $end +$var string 1 /6Bn3 \[13] $end +$var string 1 OC=]J \[14] $end +$var string 1 t)\o{/ \[16] $end +$var string 1 YgFH* \[17] $end +$var string 1 xS[TB \[18] $end +$var string 1 A,.1GT \[25] $end +$var string 1 :drug \[26] $end +$var string 1 zK,\4 \[27] $end +$var string 1 Yd|/a \[28] $end +$var string 1 >1&kH \[29] $end +$var string 1 QEu6~ \[30] $end +$var string 1 \{?56 \[31] $end +$upscope $end +$scope struct l1_cache $end +$scope struct \[0] $end +$var string 1 ,+[`- \$tag $end +$scope struct HdlSome $end +$var wire 64 OO/v- chunk_addr $end +$upscope $end +$upscope $end +$scope struct \[1] $end +$var string 1 i{>C< \$tag $end +$scope struct HdlSome $end +$var wire 64 GLq6r chunk_addr $end +$upscope $end +$upscope $end +$scope struct \[2] $end +$var string 1 b-prJ \$tag $end +$scope struct HdlSome $end +$var wire 64 $[Ue" chunk_addr $end +$upscope $end +$upscope $end +$scope struct \[3] $end +$var string 1 9&"AN \$tag $end +$scope struct HdlSome $end +$var wire 64 :O))\ chunk_addr $end +$upscope $end +$upscope $end $upscope $end -$var wire 1 g{$T+ wrote_output $end $upscope $end $var string 1 CH}r| config $end $upscope $end @@ -83834,430 +84264,863 @@ $var wire 1 %/Ado clk $end $var wire 1 uH]!m rst $end $upscope $end $scope struct from_execute $end -$scope struct start $end +$scope struct enqueue $end $scope struct data $end -$var string 1 wf2C6 \$tag $end +$var string 1 qpx\a \$tag $end $scope struct HdlSome $end $scope struct mop $end -$var wire 8 dKNDK fetch_block_id $end -$var wire 16 wJ""P id $end -$var wire 64 $K7z~ pc $end -$var wire 64 WA(l. predicted_next_pc $end -$var wire 4 s*O:& size_in_bytes $end -$var wire 1 %&=Ab is_first_mop_in_insn $end +$var wire 8 4MnxU fetch_block_id $end +$var wire 16 h8|hD id $end +$var wire 64 fEJN@ pc $end +$var wire 64 QOV.K predicted_next_pc $end +$var wire 4 J~ecr size_in_bytes $end +$var wire 1 9H~h/ is_first_mop_in_insn $end $scope struct mop $end -$var string 1 r=M,3 \$tag $end +$var string 1 9?ZqM \$tag $end $scope struct AluBranch $end -$var string 1 qD$wy \$tag $end +$var string 1 *w[!t \$tag $end $scope struct AddSub $end $scope struct alu_common $end $scope struct common $end -$var string 0 (w?\C prefix_pad $end +$var string 0 :3JL6 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 I4s2c adj_value $end -$var string 1 !$FI* config $end +$var wire 3 A%_OM adj_value $end +$var string 1 z"f"w config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 ;4273 value $end -$var string 1 [Y&+q config $end +$var wire 4 x10;0 value $end +$var string 1 [ous= config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 p}o^; \[0] $end -$var wire 7 ~j/IT \[1] $end -$var wire 7 |QT2s \[2] $end +$var wire 7 MBpV3 \[0] $end +$var wire 7 i1Eze \[1] $end +$var wire 7 T#]F^ \[2] $end $upscope $end -$var wire 26 r0h|$ imm $end +$var wire 26 ]f{.B imm $end $upscope $end -$var string 1 #SD,7 output_integer_mode $end +$var string 1 f2[xD output_integer_mode $end $upscope $end -$var wire 1 ;vYbV invert_src0 $end -$var wire 1 /I8y~ src1_is_carry_in $end -$var wire 1 'Ld@K invert_carry_in $end -$var wire 1 @;1qW add_pc $end +$var wire 1 JMIv_ invert_src0 $end +$var wire 1 SoHR( src1_is_carry_in $end +$var wire 1 Ea)Ga invert_carry_in $end +$var wire 1 ojRX" add_pc $end $upscope $end $scope struct AddSubI $end $scope struct alu_common $end $scope struct common $end -$var string 0 ~ID1~ prefix_pad $end +$var string 0 ~~J7; prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 1BV\b adj_value $end -$var string 1 E@y"D config $end +$var wire 3 6>Hy8 adj_value $end +$var string 1 K0dmi config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 EB~{J value $end -$var string 1 )gWlU config $end +$var wire 4 !B\^t value $end +$var string 1 TIZdi config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 LzPFc \[0] $end -$var wire 7 Y,^)g \[1] $end +$var wire 7 (Z&#. \[0] $end +$var wire 7 nchS: \[1] $end $upscope $end -$var wire 34 zZMDz imm $end +$var wire 34 -("q imm $end $upscope $end -$var string 1 ]`6)m output_integer_mode $end +$var string 1 rbtQc output_integer_mode $end $upscope $end -$var wire 1 1I(=# invert_src0 $end -$var wire 1 'fa4@ src1_is_carry_in $end -$var wire 1 *Y(l- invert_carry_in $end -$var wire 1 f,+or add_pc $end +$var wire 1 n"-Ji invert_src0 $end +$var wire 1 A6Uh> src1_is_carry_in $end +$var wire 1 =I||J invert_carry_in $end +$var wire 1 3o~jM add_pc $end $upscope $end $scope struct LogicalFlags $end $scope struct common $end -$var string 0 {z&"a prefix_pad $end +$var string 0 S!HYR prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 k-`z] adj_value $end -$var string 1 E[rKx config $end +$var wire 3 ?mN9& adj_value $end +$var string 1 [&;,\ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 G6]O6 value $end -$var string 1 L`]}( config $end +$var wire 4 ~ value $end +$var string 1 z(H~ range $end $upscope $end $scope struct src1_start $end -$var wire 3 Q+8~: value $end -$var string 1 J8fBJ range $end +$var wire 3 zKyx% value $end +$var string 1 uF$r2 range $end $upscope $end $scope struct src2_start $end -$var wire 3 Z`]r% value $end -$var string 1 (Hl6' range $end +$var wire 3 tg]N/ value $end +$var string 1 F|Jq. range $end $upscope $end $scope struct dest_start $end -$var wire 3 1wnM_ value $end -$var string 1 )Rllp range $end +$var wire 3 J0`Da value $end +$var string 1 T$Dj= range $end $upscope $end $scope struct dest_count $end -$var wire 4 Fq>|# value $end -$var string 1 /+i$F range $end +$var wire 4 ?mAFL value $end +$var string 1 'l"fo range $end $upscope $end $upscope $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 6>)09 \[0] $end -$var wire 1 9O?y? \[1] $end -$var wire 1 wQKEH \[2] $end -$var wire 1 i$,:( \[3] $end +$var wire 1 9jvDO \[0] $end +$var wire 1 7-8xA \[1] $end +$var wire 1 e;wQA \[2] $end +$var wire 1 v(X$" \[3] $end $upscope $end $upscope $end $upscope $end $scope struct Logical $end $scope struct alu_common $end $scope struct common $end -$var string 0 Xw]J$ prefix_pad $end +$var string 0 {9h!4 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 ,.kXV adj_value $end -$var string 1 *XY3h config $end +$var wire 3 ~wUi7 adj_value $end +$var string 1 )iHZP config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 q2"Xm value $end -$var string 1 /%9n% config $end +$var wire 4 I6>`f value $end +$var string 1 UCO1$ config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 HD0/T \[0] $end -$var wire 7 hs"E{ \[1] $end +$var wire 7 S@*,z \[0] $end +$var wire 7 D=)K> \[1] $end $upscope $end -$var wire 34 u6YDR imm $end +$var wire 34 /'Sn8 imm $end $upscope $end -$var string 1 YQcbR output_integer_mode $end +$var string 1 g{pqa output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 :w7w9 \[0] $end -$var wire 1 l{.<9 \[1] $end -$var wire 1 QG72/ \[2] $end -$var wire 1 HRw!P \[3] $end +$var wire 1 q!:v, \[0] $end +$var wire 1 ]z&;A \[1] $end +$var wire 1 <6^^] \[2] $end +$var wire 1 @%//i \[3] $end $upscope $end $upscope $end $upscope $end $scope struct LogicalI $end $scope struct alu_common $end $scope struct common $end -$var string 0 E92"y prefix_pad $end +$var string 0 a{YZk prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 @j0%` adj_value $end -$var string 1 9zAM. config $end +$var wire 3 d\aat adj_value $end +$var string 1 TDoX0 config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 ZBpcD value $end -$var string 1 2/f!~ config $end +$var wire 4 1=0?x value $end +$var string 1 2gUQp config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 75\ae \[0] $end +$var wire 7 nH/y+ \[0] $end $upscope $end -$var wire 34 FkbIc imm $end +$var wire 34 l]rc& imm $end $upscope $end -$var string 1 Sds~W output_integer_mode $end +$var string 1 \GZtg output_integer_mode $end $upscope $end $scope struct lut $end $scope struct lut $end -$var wire 1 g*\~r \[0] $end -$var wire 1 }t7HR \[1] $end -$var wire 1 G"9TC \[2] $end -$var wire 1 yz4s` \[3] $end +$var wire 1 JV09w \[0] $end +$var wire 1 HpP.{ \[1] $end +$var wire 1 ZNh9Z \[2] $end +$var wire 1 oMyf\ \[3] $end $upscope $end $upscope $end $upscope $end $scope struct ShiftRotate $end $scope struct alu_common $end $scope struct common $end -$var string 0 S4T%x prefix_pad $end +$var string 0 w0Z'A prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 xt>xu adj_value $end -$var string 1 #Y\07 config $end +$var wire 3 (WqD} adj_value $end +$var string 1 ghF=U config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 M|g< value $end -$var string 1 `%+Bi config $end +$var wire 4 Q*~Tj value $end +$var string 1 ;a|#I config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 #SMn& \[0] $end -$var wire 7 jC~' \[1] $end -$var wire 7 u*{RN \[2] $end +$var wire 7 v>Jgy \[0] $end +$var wire 7 KTS8: \[1] $end +$var wire 7 dZ;;l \[2] $end $upscope $end $scope struct imm $end $scope struct shift_rotate_amount $end -$var string 1 :M:Zn \$tag $end -$var wire 6 Oi]HZ HdlSome $end +$var string 1 ^BS^\ \$tag $end +$var wire 6 h4u&w HdlSome $end $upscope $end -$var wire 1 {Tb?- shift_rotate_right $end +$var wire 1 JX0a& shift_rotate_right $end $scope struct dest_logic_op $end -$var string 1 C`Y7} \$tag $end +$var string 1 qT/n{ \$tag $end $scope struct HdlSome $end -$var wire 6 [jP.X rotated_output_start $end -$var wire 6 WyW,d rotated_output_len $end -$var wire 1 4ZTsw fallback_is_src2 $end +$var wire 6 a+@EG rotated_output_start $end +$var wire 6 m'=mR rotated_output_len $end +$var wire 1 _dY,- fallback_is_src2 $end $upscope $end $upscope $end $upscope $end $upscope $end -$var string 1 .]Ah5 output_integer_mode $end +$var string 1 Vhy$] output_integer_mode $end $upscope $end -$var string 1 ?,\S1 mode $end +$var string 1 ^Dr`X mode $end $upscope $end $scope struct Compare $end $scope struct common $end -$var string 0 @?hN8 prefix_pad $end +$var string 0 )W$wF prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 qs.w( adj_value $end -$var string 1 |U`ne config $end +$var wire 3 Rj^jL adj_value $end +$var string 1 cfsQ( config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 ~B(_H value $end -$var string 1 LXj6} config $end +$var wire 4 7#tSY value $end +$var string 1 zWbq, config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 h$rr5 \[0] $end -$var wire 7 NQ,oR \[1] $end +$var wire 7 eVw|` \[0] $end +$var wire 7 =KDDH \[1] $end $upscope $end -$var wire 34 <}G+c imm $end +$var wire 34 ^.!<5 imm $end $upscope $end -$var string 1 xSD3` compare_mode $end +$var string 1 NvxJ: compare_mode $end $upscope $end $scope struct CompareI $end $scope struct common $end -$var string 0 `#=k> prefix_pad $end +$var string 0 ypzN; prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 2}(2; adj_value $end -$var string 1 Z^fCc config $end +$var wire 3 L?HjS adj_value $end +$var string 1 D0P8n config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 HJ{UO value $end -$var string 1 '@z7v config $end +$var wire 4 H83`a value $end +$var string 1 f*6'r config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 7:B59 \[0] $end +$var wire 7 k2Z]8 \[0] $end $upscope $end -$var wire 34 9)g(n imm $end +$var wire 34 Vk>o9 imm $end $upscope $end -$var string 1 ^LO?x compare_mode $end +$var string 1 /Mqv8 compare_mode $end $upscope $end $scope struct Branch $end $scope struct common $end -$var string 0 Pp[,x prefix_pad $end +$var string 0 u9^+[ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 tC@Q2 adj_value $end -$var string 1 ,Nc,h config $end +$var wire 3 ^G!?A adj_value $end +$var string 1 wbj:, config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 v]E4M value $end -$var string 1 !K&B7 config $end +$var wire 4 =VfNd value $end +$var string 1 !5CTC config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 vb[_4 \[0] $end -$var wire 7 "~Bk^ \[1] $end -$var wire 7 Nt?), \[2] $end +$var wire 7 ojk9" \[0] $end +$var wire 7 mosr; \[1] $end +$var wire 7 ur:%x \[2] $end $upscope $end -$var wire 26 j+G<{ imm $end +$var wire 26 Mz`Ew imm $end $upscope $end -$var wire 1 =[w=9 invert_src0_cond $end -$var string 1 +ERIl src0_cond_mode $end -$var wire 1 \"nHp invert_src2_eq_zero $end -$var wire 1 `T)`& pc_relative $end -$var wire 1 /XKg^ is_call $end -$var wire 1 X|RKO is_ret $end +$var wire 1 s"jnU invert_src0_cond $end +$var string 1 gTT:" src0_cond_mode $end +$var wire 1 lo5JS invert_src2_eq_zero $end +$var wire 1 s0je4 pc_relative $end +$var wire 1 ECL/K is_call $end +$var wire 1 S*}?n is_ret $end $upscope $end $scope struct BranchI $end $scope struct common $end -$var string 0 +[PE* prefix_pad $end +$var string 0 v`P@} prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 .?:e] adj_value $end -$var string 1 23=[@ config $end +$var wire 3 R;/k' adj_value $end +$var string 1 =ibZP config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 |{}!P value $end -$var string 1 Jg}3- config $end +$var wire 4 Z=\I' value $end +$var string 1 rvKM: config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 1&aj: \[0] $end -$var wire 7 XFFr) \[1] $end +$var wire 7 HvTV` \[0] $end +$var wire 7 Y;G]z \[1] $end $upscope $end -$var wire 34 1}'z@ imm $end +$var wire 34 _)p&G imm $end $upscope $end -$var wire 1 IZBeE invert_src0_cond $end -$var string 1 6a=k$ src0_cond_mode $end -$var wire 1 z{z+@ invert_src2_eq_zero $end -$var wire 1 flGFh pc_relative $end -$var wire 1 )k[Gh is_call $end -$var wire 1 :,Sh4 is_ret $end +$var wire 1 ^Ldb` invert_src0_cond $end +$var string 1 QouII src0_cond_mode $end +$var wire 1 AbPOu invert_src2_eq_zero $end +$var wire 1 i[g&5 pc_relative $end +$var wire 1 %`g/0 is_call $end +$var wire 1 "~qI1 is_ret $end $upscope $end $scope struct ReadSpecial $end $scope struct common $end -$var string 0 Cgr]> prefix_pad $end +$var string 0 ;J,bm prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 /C#'S adj_value $end -$var string 1 <(q}n config $end +$var wire 3 ~^XmU adj_value $end +$var string 1 )dA+F config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 ap%IV value $end -$var string 1 OFjYn config $end +$var wire 4 */u34 value $end +$var string 1 2O{Ht config $end $upscope $end $upscope $end $scope struct src $end $upscope $end -$var string 1 RRAoV imm $end +$var string 1 !t:yX imm $end $upscope $end $upscope $end $upscope $end $scope struct TransformedMove $end -$var string 1 ?a](X \$tag $end +$var string 1 v2Hx3 \$tag $end $scope struct ReadL2Reg $end $scope struct common $end -$var wire 3 xIy^[ prefix_pad $end +$var wire 3 tXJP$ prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 :OiO, adj_value $end -$var string 1 yeP]O config $end +$var wire 3 3K:\K adj_value $end +$var string 1 N^m@F config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 *SWv0 value $end -$var string 1 tTdz& config $end +$var wire 4 LY\Z$ value $end +$var string 1 %_)Ll config $end $upscope $end $upscope $end $scope struct src $end $upscope $end $scope struct imm $end -$var wire 8 "Po*f value $end +$var wire 8 R:Cet value $end $upscope $end $upscope $end $upscope $end $scope struct WriteL2Reg $end $scope struct common $end -$var wire 3 |hOSQ prefix_pad $end +$var wire 3 UGKW= prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 C?Tr? adj_value $end -$var string 1 q!|o8 config $end +$var wire 3 "y\_} adj_value $end +$var string 1 ~LmWx config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 xDnn$ value $end -$var string 1 75c%, config $end +$var wire 4 TcN-& value $end +$var string 1 I{qN# config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 6:60t \[0] $end +$var wire 7 k@iWF \[0] $end $upscope $end $scope struct imm $end -$var wire 8 H$U~W value $end +$var wire 8 s6\IS value $end $upscope $end $upscope $end $upscope $end $upscope $end $scope struct LoadStore $end -$var string 1 66MQD \$tag $end +$var string 1 {<"Na \$tag $end $scope struct Load $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 E$Q^} prefix_pad $end +$var wire 3 7=HOP prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 ;gnT@ adj_value $end -$var string 1 E|{Vw config $end +$var wire 3 .rnJZ adj_value $end +$var string 1 usv.4 config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 eCM=C value $end -$var string 1 l!GtU config $end +$var wire 4 ]lbGg value $end +$var string 1 hQ\sB config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 @Lg,e \[0] $end +$var wire 7 q$d8< \[0] $end $upscope $end -$var wire 34 @/esZ imm $end +$var wire 34 v@,P) imm $end $upscope $end -$var string 1 gq3@3 width $end -$var string 1 v[yF^ conversion $end +$var string 1 BOln6 width $end +$var string 1 j[#OO conversion $end $upscope $end $upscope $end $scope struct Store $end $scope struct load_store_common $end $scope struct common $end -$var wire 3 h'aPy prefix_pad $end +$var wire 3 h",X7 prefix_pad $end $scope struct dest $end $scope struct unit_num $end -$var wire 3 Q1?rF adj_value $end -$var string 1 Oq?TN config $end +$var wire 3 U&#xI adj_value $end +$var string 1 JZ]g{ config $end $upscope $end $scope struct unit_out_reg $end -$var wire 4 Fkp@i value $end -$var string 1 RmtX0 config $end +$var wire 4 dH-Of value $end +$var string 1 CI*W/ config $end $upscope $end $upscope $end $scope struct src $end -$var wire 7 0ll1I \[2] $end +$upscope $end +$var wire 26 :;(:r imm $end +$upscope $end +$var string 1 4%/%H output_integer_mode $end +$upscope $end +$var wire 1 g#zdr invert_src0 $end +$var wire 1 #c^:D src1_is_carry_in $end +$var wire 1 -b55I invert_carry_in $end +$var wire 1 _vcQ> add_pc $end +$upscope $end +$scope struct AddSubI $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 k@&7K prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 Rdh~i adj_value $end +$var string 1 |8|Lv config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 l.x04 value $end +$var string 1 -{z2( config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 \2H^' \[0] $end +$var wire 7 \0%^L \[1] $end +$upscope $end +$var wire 34 /J7HH imm $end +$upscope $end +$var string 1 d"N>t output_integer_mode $end +$upscope $end +$var wire 1 bAp}{ invert_src0 $end +$var wire 1 .c0][ src1_is_carry_in $end +$var wire 1 T69<4 invert_carry_in $end +$var wire 1 S1kS: add_pc $end +$upscope $end +$scope struct LogicalFlags $end +$scope struct common $end +$var string 0 \2SAS prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 $4xMK adj_value $end +$var string 1 ?0U5_ config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 +O$2~ value $end +$var string 1 ZN2uK config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 ~g4Uy \[0] $end +$var wire 7 n`wkw \[1] $end +$var wire 7 kVkft \[2] $end +$upscope $end +$scope struct imm $end +$scope struct src0_start $end +$var wire 3 a){Qt value $end +$var string 1 [/ssW range $end +$upscope $end +$scope struct src1_start $end +$var wire 3 ]v!HQ value $end +$var string 1 .j3Oo range $end +$upscope $end +$scope struct src2_start $end +$var wire 3 NL#oZ value $end +$var string 1 Hl9v1 \[0] $end +$var wire 1 F0mrn \[1] $end +$var wire 1 [cU-F \[2] $end +$var wire 1 U`]>Q \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct Logical $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 Vfu%) prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 3OI{n adj_value $end +$var string 1 `@J}v config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 7Df(n value $end +$var string 1 +A3== config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 (p/D- \[0] $end +$var wire 7 -h/C: \[1] $end +$upscope $end +$var wire 34 #y#${ imm $end +$upscope $end +$var string 1 K+ko} output_integer_mode $end +$upscope $end +$scope struct lut $end +$scope struct lut $end +$var wire 1 z9wgB \[0] $end +$var wire 1 o(VXd \[1] $end +$var wire 1 X'tyX \[2] $end +$var wire 1 f&4qQ \[3] $end +$upscope $end +$upscope $end +$upscope $end +$scope struct LogicalI $end +$scope struct alu_common $end +$scope struct common $end +$var string 0 g5r}# prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 POSM# adj_value $end +$var string 1 q?i&< config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 gqPfY value $end +$var string 1 s\7b{ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 6Bl;M \[0] $end +$upscope $end +$var wire 34 WM@Xx imm $end +$upscope $end +$var string 1 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 r]fR# value $end +$var string 1 M_3G^ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 *a}1; \[0] $end +$var wire 7 m|hY^ \[1] $end +$var wire 7 %w}]P \[2] $end +$upscope $end +$scope struct imm $end +$scope struct shift_rotate_amount $end +$var string 1 jQ;:^ \$tag $end +$var wire 6 Z~`7` HdlSome $end +$upscope $end +$var wire 1 x+bQQ shift_rotate_right $end +$scope struct dest_logic_op $end +$var string 1 _zix# \$tag $end +$scope struct HdlSome $end +$var wire 6 #uNxw rotated_output_start $end +$var wire 6 }?%Zo rotated_output_len $end +$var wire 1 cP*ht fallback_is_src2 $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$var string 1 ],8RX output_integer_mode $end +$upscope $end +$var string 1 ;+|]? mode $end +$upscope $end +$scope struct Compare $end +$scope struct common $end +$var string 0 KE!m_ prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 J*i:h adj_value $end +$var string 1 d7~F* config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 }W9y* value $end +$var string 1 t&iID config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 :lgZe \[0] $end +$var wire 7 7[+9H \[1] $end +$upscope $end +$var wire 34 r=iS/ imm $end +$upscope $end +$var string 1 ,DDH` compare_mode $end +$upscope $end +$scope struct CompareI $end +$scope struct common $end +$var string 0 $;*T< prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 n<^A@ adj_value $end +$var string 1 b;'^r config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 h6loV value $end +$var string 1 %]h$3 config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 bl_YZ \[0] $end +$upscope $end +$var wire 34 z*RwC imm $end +$upscope $end +$var string 1 cDyRD compare_mode $end +$upscope $end +$scope struct Branch $end +$scope struct common $end +$var string 0 7E=%K prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 =[zA] adj_value $end +$var string 1 FTE#> config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 q_?uA value $end +$var string 1 )4?S| config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 sl=^} \[0] $end +$var wire 7 }bq`*7 config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 *#&hB value $end +$var string 1 "\SY} config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 JM8@= \[0] $end +$var wire 7 MvSJ{ \[1] $end +$upscope $end +$var wire 34 'kiKD imm $end +$upscope $end +$var wire 1 g4una invert_src0_cond $end +$var string 1 eH)a- src0_cond_mode $end +$var wire 1 IUr>$ invert_src2_eq_zero $end +$var wire 1 `gdd# pc_relative $end +$var wire 1 CWT}y is_call $end +$var wire 1 2Jms% is_ret $end +$upscope $end +$scope struct ReadSpecial $end +$scope struct common $end +$var string 0 JA0{= prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 8,!=0 adj_value $end +$var string 1 ZR*Yh config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 IO2V3 value $end +$var string 1 z@3{; config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$var string 1 Y*Lgi imm $end +$upscope $end +$upscope $end +$upscope $end +$scope struct TransformedMove $end +$var string 1 fx-|# \$tag $end +$scope struct ReadL2Reg $end +$scope struct common $end +$var wire 3 R75&' prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 \&fY8 adj_value $end +$var string 1 RedEI config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 +`Vgg value $end +$var string 1 ?&LJW config $end +$upscope $end +$upscope $end +$scope struct src $end +$upscope $end +$scope struct imm $end +$var wire 8 J-\!x value $end +$upscope $end +$upscope $end +$upscope $end +$scope struct WriteL2Reg $end +$scope struct common $end +$var wire 3 e*Ae? prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 juh1k adj_value $end +$var string 1 &$[Jv config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 }Mp1- value $end +$var string 1 *ho`L config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 &SuOx \[0] $end +$upscope $end +$scope struct imm $end +$var wire 8 5y@`] value $end +$upscope $end +$upscope $end +$upscope $end +$upscope $end +$scope struct LoadStore $end +$var string 1 d1S&+ \$tag $end +$scope struct Load $end +$scope struct load_store_common $end +$scope struct common $end +$var wire 3 "r]6M prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 Jx%G$ adj_value $end +$var string 1 >T4-b config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 '_|+w value $end +$var string 1 0Vs5[ config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 D_8}[ \[0] $end +$upscope $end +$var wire 34 -W`H, imm $end +$upscope $end +$var string 1 _UVIc width $end +$var string 1 q@Nz/ conversion $end +$upscope $end +$upscope $end +$scope struct Store $end +$scope struct load_store_common $end +$scope struct common $end +$var wire 3 yMN/p prefix_pad $end +$scope struct dest $end +$scope struct unit_num $end +$var wire 3 __ISb adj_value $end +$var string 1 4}D4F config $end +$upscope $end +$scope struct unit_out_reg $end +$var wire 4 L3`&e value $end +$var string 1 ow,yW config $end +$upscope $end +$upscope $end +$scope struct src $end +$var wire 7 Eta`C \[0] $end +$var wire 7 [!5R) \[1] $end +$upscope $end +$var wire 34 5z`J; imm $end +$upscope $end +$var string 1 cf/Fe width $end +$var string 1 lsZtr conversion $end $upscope $end $upscope $end $upscope $end @@ -84265,50 +85128,108 @@ $upscope $end $upscope $end $scope struct src_values $end $scope struct \[0] $end -$var wire 64 IQj|E int_fp $end +$var wire 64 "\Oh' int_fp $end $scope struct flags $end -$var wire 1 sPi$R pwr_ca32_x86_af $end -$var wire 1 "2&@j pwr_ca_x86_cf $end -$var wire 1 Q int_fp $end $scope struct flags $end -$var wire 1 -t$zm pwr_ca32_x86_af $end -$var wire 1 Hs"}< pwr_ca_x86_cf $end -$var wire 1 H*b"V pwr_ov32_x86_df $end -$var wire 1 `(q{* pwr_ov_x86_of $end -$var wire 1 Mg!{@ pwr_so $end -$var wire 1 :%]vh pwr_cr_eq_x86_zf $end -$var wire 1 |mgR* pwr_cr_gt_x86_pf $end -$var wire 1 wJMkn pwr_cr_lt_x86_sf $end +$var wire 1 4[z~? pwr_ca32_x86_af $end +$var wire 1 }c82o pwr_ca_x86_cf $end +$var wire 1 >cs/L pwr_ov32_x86_df $end +$var wire 1 j#Wad pwr_ov_x86_of $end +$var wire 1 |SE'f pwr_so $end +$var wire 1 ^o$$# pwr_cr_eq_x86_zf $end +$var wire 1 De#xt pwr_cr_gt_x86_pf $end +$var wire 1 _7t%} pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct \[2] $end -$var wire 64 %%t:( int_fp $end +$var wire 64 [urL int_fp $end $scope struct flags $end -$var wire 1 {AYM# pwr_ca32_x86_af $end -$var wire 1 7MHNF pwr_ca_x86_cf $end -$var wire 1 i<1hP pwr_ov32_x86_df $end -$var wire 1 ReT)e pwr_ov_x86_of $end -$var wire 1 jO2eu pwr_so $end -$var wire 1 0}ft> pwr_cr_eq_x86_zf $end -$var wire 1 Xa+-^ pwr_cr_gt_x86_pf $end -$var wire 1 /n)#y id $end +$var string 1 P[h\, config $end +$upscope $end +$upscope $end +$scope struct output_ready $end +$var string 1 {i-sT \$tag $end +$scope struct HdlSome $end +$var wire 16 pWo65 id $end +$scope struct dest_value $end +$var wire 64 O,0kh int_fp $end +$scope struct flags $end +$var wire 1 0f!`B pwr_ca32_x86_af $end +$var wire 1 9D_)+ pwr_ca_x86_cf $end +$var wire 1 <%JIm pwr_ov32_x86_df $end +$var wire 1 g;P8h pwr_ov_x86_of $end +$var wire 1 2<%b/ pwr_so $end +$var wire 1 W5s"[ pwr_cr_eq_x86_zf $end +$var wire 1 pdm#+ pwr_cr_gt_x86_pf $end +$var wire 1 *:hic pwr_cr_lt_x86_sf $end +$upscope $end +$upscope $end +$scope struct predictor_op $end +$scope struct call_stack_op $end +$var string 1 dRd9D \$tag $end +$var wire 64 YQe0B Push $end +$upscope $end +$scope struct cond_br_taken $end +$var string 1 QcEBQ \$tag $end +$var wire 1 9cyl\ HdlSome $end +$upscope $end +$var string 1 l&`wf config $end +$upscope $end +$upscope $end +$upscope $end +$scope struct finish_cause_cancel $end +$var string 1 x)rw` \$tag $end +$scope struct HdlSome $end +$var wire 16 "rIjZ id $end +$scope struct caused_cancel $end +$var string 1 hDU!w \$tag $end +$scope struct HdlSome $end +$var wire 64 ;}}Gp start_at_pc $end +$var wire 1 s0'XI cancel_after_retire $end +$var string 1 -,1~f config $end +$upscope $end +$upscope $end +$var string 1 `O!i{ config $end +$upscope $end +$upscope $end +$var wire 1 *mSKU unit_outputs_ready $end $scope struct cancel_all $end $scope struct data $end $var string 1 P,u id $end -$var string 1 :Pk^F config $end -$upscope $end -$upscope $end -$var wire 1 6d1qy ready $end -$upscope $end -$scope struct cant_cause_cancel $end -$scope struct data $end -$var string 1 AnPXd \$tag $end -$scope struct HdlSome $end -$var wire 16 15(b> id $end -$var string 1 7!MC* config $end -$upscope $end -$upscope $end -$var wire 1 Qka&% ready $end -$upscope $end -$scope struct finished $end -$scope struct data $end -$var string 1 `VI*A \$tag $end -$scope struct HdlSome $end -$var wire 16 t;U_N id $end -$scope struct finished_successfully $end -$var string 1 value $end -$var string 1 #S:c^ config $end -$upscope $end +$var wire 16 3t}Wc id $end $scope struct dest_value $end -$var wire 64 (wMH+ int_fp $end +$var wire 64 B>Ll0 int_fp $end $scope struct flags $end -$var wire 1 vgk<2 pwr_ca32_x86_af $end -$var wire 1 :]6K> pwr_ca_x86_cf $end -$var wire 1 s|.X" pwr_ov32_x86_df $end -$var wire 1 C_88~ pwr_ov_x86_of $end -$var wire 1 [u\e} pwr_so $end -$var wire 1 e+Xuh pwr_cr_eq_x86_zf $end -$var wire 1 ji!tq= \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 p1=ff value $end -$var string 1 +-azQ config $end -$upscope $end +$var wire 16 oa8t4 id $end $scope struct dest_value $end -$var wire 64 cmf3Y int_fp $end +$var wire 64 ~;3z2 int_fp $end $scope struct flags $end -$var wire 1 OR2Qh pwr_ca32_x86_af $end -$var wire 1 (Muz0 pwr_ca_x86_cf $end -$var wire 1 "p*Ly pwr_ov32_x86_df $end -$var wire 1 ,Kg%W pwr_ov_x86_of $end -$var wire 1 Y\V,n pwr_so $end -$var wire 1 :Lk(: pwr_cr_eq_x86_zf $end -$var wire 1 R:7Hq pwr_cr_gt_x86_pf $end -$var wire 1 {LCBf pwr_cr_lt_x86_sf $end +$var wire 1 g|=k: pwr_ca32_x86_af $end +$var wire 1 @i^Sv pwr_ca_x86_cf $end +$var wire 1 ))_!L pwr_ov32_x86_df $end +$var wire 1 .:#$k pwr_ov_x86_of $end +$var wire 1 \x{qt pwr_so $end +$var wire 1 Byx$7 pwr_cr_eq_x86_zf $end +$var wire 1 jM,T} pwr_cr_gt_x86_pf $end +$var wire 1 -aN.Y pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 khfM? \$tag $end -$var wire 64 E.Og- Push $end +$var string 1 6dULy \$tag $end +$var wire 64 i9IB` Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 @<,cU \$tag $end -$var wire 1 ET8Ml HdlSome $end +$var string 1 3rgi; \$tag $end +$var wire 1 hyL"@ HdlSome $end $upscope $end -$var string 1 \D.6= config $end +$var string 1 Qbldq config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 8)Vmq \$tag $end +$var string 1 Qw+xT \$tag $end $scope struct HdlSome $end -$var wire 16 v\mT\ id $end -$var wire 64 XpMNj start_at_pc $end -$var string 1 jpCE; config $end -$upscope $end -$upscope $end -$var string 1 de9Lc config $end +$var wire 64 V)O;' start_at_pc $end +$var wire 1 wI\ls cancel_after_retire $end +$var string 1 7O15l config $end $upscope $end $upscope $end $var string 1 U}cV3 config $end @@ -85898,54 +86726,43 @@ $var wire 1 -bX`J pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 q_O-* is_speculative $end $var wire 1 4|*VS sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 ud.5~ \$tag $end +$scope struct output_ready $end +$var string 1 /^_J> \$tag $end $scope struct HdlSome $end -$var wire 16 b0RHG id $end -$scope struct finished_successfully $end -$var string 1 c:\!K \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 uWt0D value $end -$var string 1 0+|+G config $end -$upscope $end +$var wire 16 iW0:E id $end $scope struct dest_value $end -$var wire 64 nCqr: int_fp $end +$var wire 64 Y|a{| int_fp $end $scope struct flags $end -$var wire 1 ,3Z4l pwr_ca32_x86_af $end -$var wire 1 2dNN& pwr_ca_x86_cf $end -$var wire 1 ?>^{f pwr_ov32_x86_df $end -$var wire 1 Y[X)1 pwr_ov_x86_of $end -$var wire 1 ~ROJP pwr_so $end -$var wire 1 Y3P>4 pwr_cr_eq_x86_zf $end -$var wire 1 0rF!G pwr_cr_gt_x86_pf $end -$var wire 1 .xHH1 pwr_cr_lt_x86_sf $end +$var wire 1 .96Yc pwr_ca32_x86_af $end +$var wire 1 #eK2{ pwr_ca_x86_cf $end +$var wire 1 wZ8oJ pwr_ov32_x86_df $end +$var wire 1 K[67/ pwr_ov_x86_of $end +$var wire 1 2$~zP pwr_so $end +$var wire 1 'i5$z pwr_cr_eq_x86_zf $end +$var wire 1 6PQg5 pwr_cr_gt_x86_pf $end +$var wire 1 7}B5L pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 |GiOV \$tag $end -$var wire 64 d3vW? Push $end +$var string 1 pn]i" \$tag $end +$var wire 64 +zVV' Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 7"]T5 \$tag $end -$var wire 1 S%G#. HdlSome $end +$var string 1 8T|I? \$tag $end +$var wire 1 ,MU3d HdlSome $end $upscope $end -$var string 1 ;heJe config $end +$var string 1 Ovq#C config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 YH,TR \$tag $end +$var string 1 GgGz+ \$tag $end $scope struct HdlSome $end -$var wire 16 ZoM]J id $end -$var wire 64 Q&WtG start_at_pc $end -$var string 1 N#^JB config $end -$upscope $end -$upscope $end -$var string 1 %zrkp config $end +$var wire 64 zpG8T start_at_pc $end +$var wire 1 e|4ZQ cancel_after_retire $end +$var string 1 LEH-/ config $end $upscope $end $upscope $end $var string 1 %g+3t config $end @@ -86417,54 +87234,43 @@ $var wire 1 )yukc pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 QV{=\ is_speculative $end $var wire 1 eyd|_ sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 fGIZ$ \$tag $end +$scope struct output_ready $end +$var string 1 N\p\H \$tag $end $scope struct HdlSome $end -$var wire 16 '5p3b id $end -$scope struct finished_successfully $end -$var string 1 &nVS5 \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 {8y+Z value $end -$var string 1 1jxD config $end -$upscope $end +$var wire 16 Ww7ME id $end $scope struct dest_value $end -$var wire 64 /I?pL int_fp $end +$var wire 64 G8W. int_fp $end $scope struct flags $end -$var wire 1 6NGc7 pwr_ca32_x86_af $end -$var wire 1 m_Clu pwr_ca_x86_cf $end -$var wire 1 eS#%6 pwr_ov32_x86_df $end -$var wire 1 uut#( pwr_ov_x86_of $end -$var wire 1 SKCe) pwr_so $end -$var wire 1 iSU`7 pwr_cr_eq_x86_zf $end -$var wire 1 OE_K_ pwr_cr_gt_x86_pf $end -$var wire 1 5XJ-P pwr_cr_lt_x86_sf $end +$var wire 1 L*2hK pwr_ca32_x86_af $end +$var wire 1 ]$1%3 pwr_ca_x86_cf $end +$var wire 1 h?huS pwr_ov32_x86_df $end +$var wire 1 \2@dO pwr_ov_x86_of $end +$var wire 1 ax@X4 pwr_so $end +$var wire 1 |gbfI pwr_cr_eq_x86_zf $end +$var wire 1 ypNN3 pwr_cr_gt_x86_pf $end +$var wire 1 /->z{ pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 ?dg&r \$tag $end -$var wire 64 !mYJF Push $end +$var string 1 )eKdF \$tag $end +$var wire 64 xS&w? Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 ~KKjJ \$tag $end -$var wire 1 lA`_} HdlSome $end +$var string 1 *\;vI \$tag $end +$var wire 1 B{UQR HdlSome $end $upscope $end -$var string 1 S"W-0 config $end +$var string 1 &w0~h config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 2I^i) \$tag $end +$var string 1 WNT)T \$tag $end $scope struct HdlSome $end -$var wire 16 8Tu}* id $end -$var wire 64 Us5Fk start_at_pc $end -$var string 1 =-Ytb config $end -$upscope $end -$upscope $end -$var string 1 xO'7a config $end +$var wire 64 n?/fN start_at_pc $end +$var wire 1 FoJ"G cancel_after_retire $end +$var string 1 a \$tag $end +$scope struct output_ready $end +$var string 1 7[0u| \$tag $end $scope struct HdlSome $end -$var wire 16 TRN,1 id $end -$scope struct finished_successfully $end -$var string 1 ziPEL \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 0G/M* value $end -$var string 1 !1Pe[ config $end -$upscope $end +$var wire 16 *bo>O id $end $scope struct dest_value $end -$var wire 64 >mR}^ int_fp $end +$var wire 64 Rm\r5 int_fp $end $scope struct flags $end -$var wire 1 c7pRJ pwr_ca32_x86_af $end -$var wire 1 @KQ4T pwr_ca_x86_cf $end -$var wire 1 J#h"x pwr_ov32_x86_df $end -$var wire 1 ^QJBT pwr_ov_x86_of $end -$var wire 1 iK.>O pwr_so $end -$var wire 1 5!NU; pwr_cr_eq_x86_zf $end -$var wire 1 N-tnk pwr_cr_gt_x86_pf $end -$var wire 1 ^}ys) pwr_cr_lt_x86_sf $end +$var wire 1 *BC=[ pwr_ca32_x86_af $end +$var wire 1 Ql) pwr_ca_x86_cf $end +$var wire 1 'DQ7\ pwr_ov32_x86_df $end +$var wire 1 !Y)]_ pwr_ov_x86_of $end +$var wire 1 ?`&p$ pwr_so $end +$var wire 1 )eR*o pwr_cr_eq_x86_zf $end +$var wire 1 ar^&n pwr_cr_gt_x86_pf $end +$var wire 1 $:`!' pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 K7&Sx \$tag $end -$var wire 64 s6PbC Push $end +$var string 1 }#FfA \$tag $end +$var wire 64 lo|s] Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 2pE"6 \$tag $end -$var wire 1 J1JO; HdlSome $end +$var string 1 |f%q5 \$tag $end +$var wire 1 +92^B HdlSome $end $upscope $end -$var string 1 c|sOM config $end +$var string 1 +y:,3 config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 fwWNf \$tag $end +$var string 1 X[j,a \$tag $end $scope struct HdlSome $end -$var wire 16 `lAKQ id $end -$var wire 64 gs_Gv start_at_pc $end -$var string 1 @\%`5 config $end -$upscope $end -$upscope $end -$var string 1 71/Jx config $end +$var wire 64 u"2OT start_at_pc $end +$var wire 1 0[J($ cancel_after_retire $end +$var string 1 ATlw: config $end $upscope $end $upscope $end $var string 1 ]V \$tag $end $scope struct HdlSome $end -$var wire 16 )@&e% id $end -$scope struct finished_successfully $end -$var string 1 igz~: \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 ,]+VP value $end -$var string 1 HN.\ pwr_cr_gt_x86_pf $end -$var wire 1 p]AV@ pwr_cr_lt_x86_sf $end +$var wire 1 .F\b" pwr_ca32_x86_af $end +$var wire 1 .a1ys pwr_ca_x86_cf $end +$var wire 1 Z%ulC pwr_ov32_x86_df $end +$var wire 1 |FVom pwr_ov_x86_of $end +$var wire 1 -`"[3 pwr_so $end +$var wire 1 5[SCN pwr_cr_eq_x86_zf $end +$var wire 1 ru>#% pwr_cr_gt_x86_pf $end +$var wire 1 `!?!F pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 5])IO \$tag $end -$var wire 64 `\iR$ Push $end +$var string 1 fC|9b \$tag $end +$var wire 64 vGsPE Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 (-{H} \$tag $end -$var wire 1 ~>A|H HdlSome $end +$var string 1 Bi:l> \$tag $end +$var wire 1 p9l/l HdlSome $end $upscope $end -$var string 1 W|./: config $end +$var string 1 [ZJoK config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 \8|j3 \$tag $end +$var string 1 PL|9I \$tag $end $scope struct HdlSome $end -$var wire 16 X8~j id $end -$var wire 64 Dt:|` start_at_pc $end -$var string 1 >(xZ1 config $end -$upscope $end -$upscope $end -$var string 1 OR*2V config $end +$var wire 64 =|1]4 start_at_pc $end +$var wire 1 {0_{" cancel_after_retire $end +$var string 1 @LR^~ config $end $upscope $end $upscope $end $var string 1 E/?OJ config $end @@ -88493,54 +89266,43 @@ $var wire 1 E`Y|# pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $upscope $end -$var wire 1 !Qd}, is_speculative $end $var wire 1 Y8Poq sent_cant_cause_cancel $end -$scope struct finished $end -$var string 1 =j'?k \$tag $end +$scope struct output_ready $end +$var string 1 .u)n] \$tag $end $scope struct HdlSome $end -$var wire 16 I0&qD id $end -$scope struct finished_successfully $end -$var string 1 g:9zw \$tag $end -$scope struct HdlSome $end -$scope struct dest $end -$var wire 4 2C>>3 value $end -$var string 1 L1@Qa config $end -$upscope $end +$var wire 16 \v4r| id $end $scope struct dest_value $end -$var wire 64 LZR*: int_fp $end +$var wire 64 F]9t< int_fp $end $scope struct flags $end -$var wire 1 {L(>{ pwr_ca32_x86_af $end -$var wire 1 a.lRS pwr_ca_x86_cf $end -$var wire 1 @7Ox) pwr_ov32_x86_df $end -$var wire 1 pc_@. pwr_ov_x86_of $end -$var wire 1 #G+71 pwr_so $end -$var wire 1 *Z{P8 pwr_cr_eq_x86_zf $end -$var wire 1 V$j5* pwr_cr_gt_x86_pf $end -$var wire 1 h,w7d pwr_cr_lt_x86_sf $end +$var wire 1 6ewYQ pwr_ca32_x86_af $end +$var wire 1 FW:us pwr_ca_x86_cf $end +$var wire 1 K5k{n pwr_ov32_x86_df $end +$var wire 1 B6IIh pwr_ov_x86_of $end +$var wire 1 $^1II pwr_so $end +$var wire 1 J~{f[ pwr_cr_eq_x86_zf $end +$var wire 1 .wjwx pwr_cr_gt_x86_pf $end +$var wire 1 zU31C pwr_cr_lt_x86_sf $end $upscope $end $upscope $end $scope struct predictor_op $end $scope struct call_stack_op $end -$var string 1 1bW&c \$tag $end -$var wire 64 WRn:y Push $end +$var string 1 %6KKf \$tag $end +$var wire 64 $v6Ib Push $end $upscope $end $scope struct cond_br_taken $end -$var string 1 @c@f} \$tag $end -$var wire 1 Ck,~T HdlSome $end +$var string 1 $?#Nt \$tag $end +$var wire 1 G3f4$ HdlSome $end $upscope $end -$var string 1 5[{L? config $end +$var string 1 srqIL config $end $upscope $end $upscope $end $upscope $end $scope struct caused_cancel $end -$var string 1 ]!gtZ \$tag $end +$var string 1 DgMuJ \$tag $end $scope struct HdlSome $end -$var wire 16 NR)d+ id $end -$var wire 64 [M'.F start_at_pc $end -$var string 1 o:#4i config $end -$upscope $end -$upscope $end -$var string 1 iU!sb config $end +$var wire 64 yrgGC start_at_pc $end +$var wire 1 fTI7* cancel_after_retire $end +$var string 1 a_BnG config $end $upscope $end $upscope $end $var string 1 YpqWW config $end @@ -88555,7 +89317,6 @@ $scope struct execution_state $end $upscope $end $var string 1 .VVRp config $end $upscope $end -$var wire 1 z@WVH all_outputs_written $end $upscope $end $upscope $end $enddefinitions $end @@ -97379,1260 +98140,2180 @@ sWidth8Bit\x20(0) >gU.T sZeroExt\x20(0) 'd$+_ b0 J8qAt sPhantomConst(\"0..=20\") %JRz8 -sHdlNone\x20(0) VJ:mT -b0 f!i?v -b0 +?{gZ -b0 tSx2q -b0 jju=" -b0 _m#Zq -0`;B2N -sAluBranch\x20(0) &(g7' -sAddSub\x20(0) N[/9_ -s0 {phOl -b0 oi`O4 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) t}+e? -b0 2kK*) -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) O|8 -b0 BbABA -b0 1rg%6 -sFull64\x20(0) 4J8fv -041!AK -0o^*Y^ -0{-hrb -0~j-7E -s0 #(_sk -b0 !]>#@ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) |ucI= -b0 5]4N1 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "5UV} -b0 mDy.( -b0 yr>]q -b0 (*Q6} -b0 }R-j? -sPhantomConst(\"0..8\") ZX_*B -b0 F1;&) -sPhantomConst(\"0..8\") /-b+1 -b0 dv~[o -sPhantomConst(\"0..8\") -04P3Q -b0 36JT# -sU64\x20(0) /hG;( -s0 7<}y( -b0 ];fx$ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ^Bn#W -b0 [{%|y -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) *=Ef` -b0 h -b0 5yk5H -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 6D3lv -b0 !:LjQ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) k9U^q -b0 C4ELY -b0 DuhJc -sWidth8Bit\x20(0) -4fM3 -sZeroExt\x20(0) h1;^ -0_JPVl -033"=x -b0 WpLF` -0bd!U5 -0WR(LL -0-t]'_ -0:?t+] -0B%rlv -0@\[,2 -0w$g+C -0.eyjC -b0 CNG-p -0aKB\g -0MFro& -0+cpEB -0,n.P( -0c);#x -0h(#c8 -0A~im7 -0\n(W2 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) jNLfo -0Om`/7 +sHdlNone\x20(0) GsdD" +b0 }:QxN +b0 hh!}] +b0 k@R+E +b0 +PXSv +b0 l?S\m +0\V<+8 +sAluBranch\x20(0) sJTZb +sAddSub\x20(0) MblDA +s0 zQ44F +b0 [1QYf +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) z*cYY +b0 Q?&yg +b0 NO?~f +b0 iX+/, +b0 J6fRs +sFull64\x20(0) +,=3, +0HQq2i +0?G4M` +0r(3|= +0\UBkS +s0 _&d`I +b0 :7n0q +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) VOtA8 +b0 >rfq~ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 1NMN1 +b0 gFsv> +b0 v#Ski +b0 ^I6uW +sFull64\x20(0) jv4j- +04Q|Y. +0J,yZi +0Q(xye +0e?j97 +s0 uh9X/ +b0 ;y<{T +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) lOG,' +b0 oe:=f +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 1uH7} +b0 n%YVO +b0 "g!AL +b0 U_&Hd +b0 A~ME4 +sPhantomConst(\"0..8\") dUJ_s +b0 4F'jO +sPhantomConst(\"0..8\") Fla=% +b0 r!)u; +sPhantomConst(\"0..8\") B$UP# +b0 Q(_@E +sPhantomConst(\"0..8\") rT+M' +b0 gCWse +sPhantomConst(\"0..=8\") v/\*> +0O7 +b0 g@~^Z +sFull64\x20(0) (J25l +0T.dW< +0ya|,V +0X<9${ +0_P{B; +s0 .ivy8 +b0 >k6Kc +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Ro}w, +b0 GkaGC +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %WO@/ +b0 m]~n+ +b0 Gda?f +sFull64\x20(0) "/NTK +0-s3Dz +0>GxH3 +06eEiB +0!u&gK +s0 nrkCS +b0 -,5HB +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) f8#AS +b0 mW0X1 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) *u^a, +b0 scS,5 +b0 A1IAK +b0 .,)Z1 +sHdlNone\x20(0) OFD]7 +b0 hV-6p +05QA@A +sHdlNone\x20(0) 3Wj>) +b0 sgm96 +b0 T$&2x +0oX!NS +sFull64\x20(0) n_r0= +sFunnelShift2x8Bit\x20(0) Q64:/ +s0 4_f|) +b0 !S[oU +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ),t]w +b0 <`".; +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) JX +b0 PQAEX +b0 sng'| +0'z$9[ +sEq\x20(0) 1g08^ +0ik+D+ +0.1XW( +0lgl;{ +0c+]'G +s0 #Q&/6 +b0 n0w"3 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) -[O(u +b0 ?NS&) +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) bPV&o +sPowerIsaTimeBase\x20(0) n)CBx +sReadL2Reg\x20(0) @6Wh^ +b0 y1^x4 +b0 vz]]| +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) o7;!$ +b0 DBl,V +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) OsVJ} +b0 JO/R^ +b0 b3\P: +b0 #A\{" +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) V6s%) +b0 RrKX{ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) BsOc< +b0 Jje[. +b0 Ga+b] +sLoad\x20(0) GFU6/ +b0 :UwDD +b0 BD*k +b0 b6@Yv +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) O2Tjg +b0 B`];W +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +~t=G +b0 o7@]L +b0 QFU4L +b0 pEu:L +sWidth8Bit\x20(0) ,Nq9K +sZeroExt\x20(0) ,z6@( +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `#xg- +0OWS\? +sHdlNone\x20(0) 6i^,, +b0 _CFax +b0 *P-sE +b0 T.E%| +b0 (VgN[ +b0 !Z5Ty +0yJx~x +sAluBranch\x20(0) +5"', +sAddSub\x20(0) PsP"T +s0 qh])8 +b0 -Fa@y +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) PKqdi +b0 %A{4m +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ^P@;a +b0 MFvrw +b0 XD%rz +b0 o%w2Y +b0 ]uq,* +sFull64\x20(0) @\M,% +0yVfRu +0Yl*Er +0Z90r- +0\`]'0 +s0 4n{6, +b0 GDd@2 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) -"kNT +b0 jhS=S +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ,(p+0 +b0 D0k%7 +b0 q[71A +b0 !|=YH +sFull64\x20(0) Kio{o +0T$o+K +0N{o1z +0HvbL? +01V->> +s0 rp@s +b0 g%"]c +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) -.XlV +b0 +o{Lu +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 5[z*G +b0 Ty,}4 +b0 u4]F} +b0 ~=]e4 +b0 `Ar=O +sPhantomConst(\"0..8\") Hl/nx +b0 N^W~U +sPhantomConst(\"0..8\") Eh0Ef +b0 'KOL@ +sPhantomConst(\"0..8\") Dje$T +b0 zWEGD +sPhantomConst(\"0..8\") 2osob +b0 $+BOf +sPhantomConst(\"0..=8\") I1%5B +00]j]# +0E2NJP +0)a!E8 +0#v50) +s0 4qC2M +b0 +V=.G +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }nAR8 +b0 YU_A+ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) CuOl% +b0 1L'{g +b0 !P)'T +b0 GIe"C +sFull64\x20(0) uXAuw +0'Y_P) +0+(M1\ +0jE85, +0Zs/"7 +s0 y?f,< +b0 Cz?In +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 14b5; +b0 ZXiJ& +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }:A2U +b0 |b,hL +b0 \9[(V +sFull64\x20(0) 5Ym+? +0Au,$Y +0}"i#Y +0U}R,Y +0XgFW= +s0 lGQ}a +b0 AV=HX +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `VZj1 +b0 2./7I +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ys3|[ +b0 Jd33- +b0 ~pkel +b0 (D$x- +sHdlNone\x20(0) ^"3]Z +b0 p09^| +0:M$y: +sHdlNone\x20(0) LM8dP +b0 Y>)8i +b0 ;cJ{> +03YwB| +sFull64\x20(0) xkm?J +sFunnelShift2x8Bit\x20(0) H+S~7 +s0 G5|UZ +b0 @`@]V +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) J#V/F +b0 [c(CY +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) EJE;J +b0 %pEQJ +b0 HW{;; +b0 39{aZ +sU64\x20(0) Bf?P) +s0 .VB%4 +b0 q]xmK +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ;bC@N +b0 @hNKD +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) w](Z( +b0 ~PyR3 +b0 F|ri< +sU64\x20(0) 5GC.k +s0 s4lVc +b0 G~T< +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) &yhiG +b0 +u>M +b0 Y+BM= +b0 ,a)oI +0j(,Qx +sEq\x20(0) L{hVn +0/qS._ +0;?1"6 +0(hrAN +0.'K62 +s0 Zq<4& +b0 &}w3a +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) -)_i" +b0 )P2I& +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ,l$7F +b0 nKPbm +b0 o(}0m +b0 l4P?K +0q-{yY +sEq\x20(0) 2;g(9 +0C25mI +0{\6sd +0G9XEI +0k3iN" +s0 FSF-S +b0 p7%jw +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) $n|v} +b0 kOS3l +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) aic3a +sPowerIsaTimeBase\x20(0) SIzxc +sReadL2Reg\x20(0) `>N@0 +b0 mPk)^ +b0 _[R+r +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }]nO- +b0 ;`i}o +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) E2Z+N +b0 (L^Fn +b0 p| +b0 QvkOT +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) [=)?) +b0 Z_00_ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) SD1hR +b0 {\c3P +b0 .v-"B +sLoad\x20(0) 1/&bx +b0 (iD}V +b0 rxq7X +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) z-;|{ +b0 yN">T +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `EAn+ +b0 %wW1d +b0 d`61s +sWidth8Bit\x20(0) ]E"x\ +sZeroExt\x20(0) #y5o` +b0 kn)7+ +b0 >Ps_l +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) n{0G, +b0 qUG2P +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) E#s>z +b0 YPwsE +b0 F@g9n +b0 ioPCT +sWidth8Bit\x20(0) P41Z| +sZeroExt\x20(0) zQ<~U +b0 XNCWD +0.pVCw +0zr63H +06es3Y +0]ov([ +0KcUSw +0/7Jza +0~E=z+ +0v~bcI +0!.%bg +0I?>RH +0=%`jR +0%h=\i +0^4.g) +0">{_J +b0 g&EdS +0;=hS~ +00C~US +0=b3VS +0y{&|/ +02dY|= +0}KxZ0 +09$jJ6 +0g>/7+ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) g7 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) _kwXw +sHdlNone\x20(0) thK|e +b0 eRj@a +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) MkR3. +sHdlNone\x20(0) -VNX5 +b0 \Svf* +b0 R*\|t +0/K1Z0 +0m#bm, +0bA\60 +0%Axu~ +0':5*N +0a=bs| +0][$`O +09JoCj +sNone\x20(0) u@Ihv +b0 dGztT +sHdlNone\x20(0) H>&>b +0f)cR- +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) EL`/H +sHdlNone\x20(0) k5NJV +b0 XQXA5 +sHdlNone\x20(0) JGIEY +b0 n[TMZ +0K^rQs +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) p]IKw +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }Ei36 +0<:f=P sHdlNone\x20(0) eil|L 0!D)]| -sHdlNone\x20(0) -sHdlNone\x20(0) msjmY -b0 AamaS -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !x\t8 -0r%t\` -sHdlNone\x20(0) QL_0i| -sAddSub\x20(0) 8hkh9 -s0 b15?w -b0 bUp#B -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) I5g{l -b0 JL4A> -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 'ygD -0b2OJ3 -0#{: -b0 K`=$2 -sPhantomConst(\"0..8\") *(^Mv -b0 v{mC< -sPhantomConst(\"0..8\") feS09 -b0 (DU*: -sPhantomConst(\"0..=8\") uwQK| -0^J3^n -0~pp)j -0Ex`Em -0uln6G -s0 W$o]V -b0 :+&~) -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ]*^ni -b0 |P@&m -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) /=%Zn -b0 cUh*3 -b0 ~aTFm -b0 h@h}, -sFull64\x20(0) 6;QR" -0xg|Nv -0!(Adt -0fzA\P -0>Izy& -s0 L:#F7 -b0 ,mJP* -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) rtMVp -b0 "K)Z{ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) y(Pb% -b0 pRmIE -b0 F2`Fk -sFull64\x20(0) 0j[M" -01x@"9 -0i.FlO -0ZF$"Q -0`_%o5 -s0 |A%1a -b0 7$4~) -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ]h*9` -b0 O|LA0 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "xxw -s0 ?tYLe -b0 W%m) -0r34^u -0/s^;{ -0a(Qos -0l(wt( -b0 BbaL( -0@h+|m -01b0?R -0WNoZd -0>~OOE -0[[m/5 -0fp|lO -0?X_:3 -0v3_u? -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Y.JM< -0`G0 +b0 T9|v +b0 !:mCD +sFull64\x20(0) M[>K& +0#FSXJ +0E5@;] +0RUY~q +0B.|N9 +s0 Mo,\" +b0 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }` +b0 c|YDQ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %TA`? +b0 PlfY7 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }>;Kr +b0 jK1(D +b0 :HnM_ +b0 x+bLK +sFull64\x20(0) iN|/x +00x/vh +0(oYiB +0O'd__ +0E\**t +s0 <;4Db +b0 ~/SU@ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {apy6 +b0 7N(2B +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) P2/9@ +b0 Ry^d6 +b0 r]5!T +sFull64\x20(0) 0x +s0 w1.ox +b0 #C +sU64\x20(0) Es'.K +s0 xn+"] +b0 Zhb;B +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) qMq+K +b0 6Bs+q +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) a7)^V +b0 q>44& +b0 -aB'c +sU64\x20(0) 46QGd +s0 psHY% +b0 I-P?< +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "Y4g] +b0 PUwX9 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) :rjBr +b0 cAAiR +b0 x{;A$ +b0 Il`'' +b0 1{H(9 +0$nq= +sEq\x20(0) K#iLK +0Z#4JW +0dtC%c +0yXhJ? +0tk7() +s0 A~[ +0TR(mK +0n0Y\5 +0;o/>Q +s0 UKmPl +b0 9h,[u +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) i)Jpb +b0 =%q +sReadL2Reg\x20(0) d"z,m +b0 L4vhD +b0 fRBsa +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) WOa]? +b0 nQ]F$ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 6E3M) +b0 O%K'j +b0 F-eaL +b0 !+vbL +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) tu:d, +b0 TKqtx +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) qbx^_ +b0 2Ha^E +b0 N)Ytv +sLoad\x20(0) gF{%3 +b0 WDN^" +b0 MLv]\ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) A)gd; +b0 Z5vY) +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ~Bw4% +b0 :Zs7T +b0 hxR^= +sWidth8Bit\x20(0) ,XY*g +sZeroExt\x20(0) ZK:%} +b0 iuTMY +b0 d;an= +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Iu+(7 +b0 S(YP[ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 1v[m2 +b0 #HCal +b0 @5p#t +b0 [w)"8 +sWidth8Bit\x20(0) i=J$R +sZeroExt\x20(0) B-XFE +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) y?%7& +0QE +sFull64\x20(0) Dvp%M +0<`mE +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) daZg; +b0 :YQxf +b0 bFsw0 +b0 eR>$x +sFull64\x20(0) -fC*U +0;qLr= +0R\CH] +0Ig#;G +0%RdWB +s0 L:|^W +b0 {0U!T +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) dR(TB +b0 d`/e2 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 9f$Gf +b0 yIU&4 +b0 e43Se +b0 yuK|, +b0 ;X?|/ +sPhantomConst(\"0..8\") Ihu +0l9f,< +s0 Ev>&6 +b0 }2PwT +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Z~`sl +b0 m1"BU +b0 j+!SB +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) YT0j$ +b0 /@;B` +b0 <;m]T +b0 5IJ}i +sU64\x20(0) +{hT8 +s0 6C7%S +b0 1#)3: +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) \hw_< +b0 t'zwk +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) s,c01 +b0 ^6\.l +b0 r-f1) +b0 vZ>qo +b0 x?/rZ +0Xcg]i +sEq\x20(0) !57k| +0%@IdW +0V}7vf +0xU`([ +0[[M5R +s0 (`=m% +b0 V9dUY +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) hrlv: +b0 `Z^@3 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) i;$}W +b0 j&*}- +b0 9^Uc$ +b0 _5:60 +02DP2W +sEq\x20(0) xv=B3 +0j+e;1 +03?/8? +02p;(= +0fKx*t +s0 kWv'Z +b0 4xi~I +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) U)0#0 +b0 MU7Uo +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 6NVW; +sPowerIsaTimeBase\x20(0) Xb!5U +sReadL2Reg\x20(0) dUI> +b0 -6a\% +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) :DPe; +b0 Fq:+& +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ywf_) +b0 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 3o;bV +b0 65DPk +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) c|.Pz +b0 %q-iN +b0 6Vemt +b0 :'5Bw +sWidth8Bit\x20(0) 6Jn3p +sZeroExt\x20(0) g20MF +b0 ^%m{q +0f:.e` +0Aa}g~ +0f8A]I +04nlx- +0nNRhb +0,(%5n +0pfJpK +0g0.L_ +b0 1{Sk2 +0t7Id? +0\w'^t +0[CaRs +0p:{=i +009m3y +0n1"-g +0fRe,` +06kzjv +b0 'kF+W +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ;3f\* +sHdlNone\x20(0) }hvfM +b0 e5cJx +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 4XS}' +sHdlNone\x20(0) 2W|uV +b0 uXv)' +b0 A#ToM +07$t2L +0!c-M4 +0xx`\1 +0E~R4B +0+YrxS +0Wg'Tj +0I1PB? +0O~a0B +sNone\x20(0) ou-xr +b0 =@cUN +sHdlNone\x20(0) uj.l +0-S^`G +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ~fj", +sHdlNone\x20(0) C2a|] +b0 5/_]$ +sHdlNone\x20(0) lAbku +b0 &_{$I +07om9) +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) s5U'} +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) uHoe8 +0eAD4` sHdlNone\x20(0) ^(+@* 07at%k -sHdlNone\x20(0) jyyZ) -b0 'w7!U -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) kX7_h -0/JM+{ -sHdlNone\x20(0) *b(`_ -b0 ?(:vI -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) (z$>S -04%,Xt -sHdlNone\x20(0) izATH -b0 qgt(( -sHdlNone\x20(0) `q|PV -b0 #Vf?p -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) z6gQj -b0 )kx2j -0bLMa` -0}Z^CO -0"fzX_ -0kWvSo -0MEsw0 -0Y@HSo -0;-H)( -0iD[#d -sNone\x20(0) fA{[; -b0 [,|/c -sHdlNone\x20(0) rvE^f -0VtIzB -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) bjKoN -sHdlNone\x20(0) Trx-c -b0 mm`!P -b0 G-w]) -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) f\QCF -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "'Qe. -0+/udA sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ^h`~v -sHdlNone\x20(0) $C6zm -b0 RJ\9: -b0 R&1Sp -b0 RF2'I -b0 ,5>Ls -b0 N=9s$ -0b..ii -sAluBranch\x20(0) 13PcX -sAddSub\x20(0) +]vTu -s0 "*!k# -b0 i0XGM -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 9&q#$ -b0 T&WER -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) lj6;V -b0 4/&]{ -b0 Lf?9< -b0 *Py9= -b0 CKdoe -sFull64\x20(0) +.3X2 -0!Yh*@ -0d`dt| -0oD0?s -0d^GZ4 -s0 iBHat -b0 AP}j_ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) F!ebT -b0 +AVji -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) F=2Qa -b0 ?7pr/ -b0 OlzSk -b0 r%\mx -sFull64\x20(0) su`^* -0)30G$ -0.6JgW -0F9qN -0RBn:{ -s0 j-59. -b0 +tY{) -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) -QA7# -b0 f:CfB -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) >>]g^ -b0 .G!\S -b0 wmCVY -b0 I%;yk -b0 XC\wq -sPhantomConst(\"0..8\") w#b&B -b0 Uw`vm -sPhantomConst(\"0..8\") x#.ws -b0 A'\H) -sPhantomConst(\"0..8\") &!I_L -b0 1X}}l -sPhantomConst(\"0..8\") M|5H% -b0 sz@6d -sPhantomConst(\"0..=8\") UzHJ} -0"|gUl -0<;=q? -0d%H@8 -0k{ZN^ -s0 jm0Fz -b0 G\=d= -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) #(xxJ -b0 TLC'O -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) VRL9p -b0 9am6& -b0 0C8Nk -b0 sPsi" -sFull64\x20(0) -|fxi -06oWcd -0Q>S5K -09;h'R -0rlO"u -s0 w2i|3 -b0 N9;^T -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) gvQ(M -b0 z.UKo -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) d\4jg -b0 E'\so -b0 F;FJ? -sFull64\x20(0) 67<=e -0NV311 -0,Fev@ -0=N-}| -0@H1X; -s0 D0\W0 -b0 lgRf& -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) VF>;p -b0 WfylE -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) #Vv@m -b0 >FwDD -b0 7-=ei -b0 /:8Q1 -sHdlNone\x20(0) ES=8A -b0 Ya(=, -0c]8(3 -sHdlNone\x20(0) }Xbo$ -b0 ,Nixl -b0 ($mtT -06w@dS -sFull64\x20(0) EKQF] -sFunnelShift2x8Bit\x20(0) `bh*_ -s0 {9Lg$ -b0 e&cM -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Z'Mng -b0 >,PT2 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) RnJ*& -b0 OT_Q# -b0 w"vJq -b0 y67vQ -sU64\x20(0) Y@ZT6 -s0 R86;n -b0 79G'` -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) n;_Zp -b0 JZTEb -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) (\OwC -b0 Oi$;> -b0 mGr9D -sU64\x20(0) >]6mj -s0 pyr*t -b0 :0&7< -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) MFE$| -b0 d(M4f -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) a't(? -b0 5QS!S -b0 "I9av -b0 _{A^} -b0 *8z82 -0#W_ey -sEq\x20(0) G>,DG -0t]j-M -0@9Th7 -0:@CpG -01t3$W -s0 KXnw{ -b0 :y{jP -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 6_FrO -b0 6:bd[ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %k*dK -b0 ~jyo< -b0 S[8xx -b0 r9u&4 -0Q2m' -sEq\x20(0) #=);e -0-aHy$ -01ZbWS -0T.MO] -0l[RV% -s0 wXkp, -b0 I}bAd -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) :CGI_ -b0 p'3Bg -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 2J'1w -sPowerIsaTimeBase\x20(0) 9)f6E -sReadL2Reg\x20(0) Sq%D, -b0 ^qdk4 -b0 `XBe' -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) |vWZ% -b0 Salbx -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `P@5s -b0 `HA|' -b0 ;b%5v -b0 KHf-Y -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) GSrEp -b0 Ghv%h -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) (g`f_ -b0 BGss/ -b0 U#N2\ -sLoad\x20(0) S'cKn -b0 .){3^ -b0 JrUXq -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) wEWa4 -b0 Hodtq -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) W39Bm -b0 PM&5) -b0 O/U.N -sWidth8Bit\x20(0) EDwT$ -sZeroExt\x20(0) R9?"- -b0 ]`>xJ -b0 90J+V -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) e.Vo1 -b0 >mY_r -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) =USwD -b0 LuE.W -b0 IT`NN -b0 73]@& -sWidth8Bit\x20(0) :T!Xy -sZeroExt\x20(0) qVLd6q -0vOd]2 -0ZE9PC -0{)X>k -0kGO2a -0q(X1j -08`iH& -0",jYu -b0 kxh+h -0!d +b0 Pf4v- +b0 w(Y.E +b0 #77!F +b0 N8AJ[ +0WqnyH +sAluBranch\x20(0) ],5#` +sAddSub\x20(0) hO;,E +s0 S#foh +b0 o70n3 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) TiI?a +b0 o_fn1 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) M9_Jr +b0 koytw +b0 |]{tm +b0 ic)l7 +b0 Fb^`# +sFull64\x20(0) !#$|) +0IXi?} +0`5|fP +0,dHzD +0#mS/Q +s0 :%Zum +b0 4ZiR{ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !X}Wi +b0 bo=u; +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) aFvXV +b0 >7qi% +b0 x~qr' +b0 }{9s? +sFull64\x20(0) .X3*Y +0\/O!; +0MdC]g +0uEIl' +0)U6jj +s0 gVQ|q +b0 T}6F{ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ENaV$ +b0 i\g~u +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 9/5a= +b0 rM7-O +b0 0y8~g +b0 x#u|# +b0 2qgU| +sPhantomConst(\"0..8\") F#9K1 +b0 S6jJW +sPhantomConst(\"0..8\") W7;SO +b0 J+fq` +sPhantomConst(\"0..8\") U?/W> +b0 vErr. +sPhantomConst(\"0..8\") A=5)l +b0 19u~E +sPhantomConst(\"0..=8\") )c@i| +0yp8qN +03pl!7 +0^i2k\ +05@{;| +s0 NB`T. +b0 PlkVY +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) y6ZwY +b0 Jd~Pb +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Zt=`A +b0 edNTB +b0 @p-u+ +b0 GBP=# +sFull64\x20(0) V9g+: +0z-ZYh +0!$70f +0{M,9L +0|Qmtn +s0 1%t2j +b0 4UYzc +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) N!N$L +b0 PL1n; +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %,.t1 +b0 4tao> +b0 TdVa( +sFull64\x20(0) 8xZ+? +0:,;bn +0bO2,? +0$'?mR +0H3&*T +s0 aK\r- +b0 c;]X: +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 3m`rW +b0 2Hd\+ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !U}MQ +b0 ^'3#Y +b0 F0ah~ +b0 @mWc| +sHdlNone\x20(0) pyQf< +b0 Mf}"1 +0Di-yd +sHdlNone\x20(0) *ECrH +b0 T-eB3 +b0 3UK-V +0%|A)e +sFull64\x20(0) rG.-, +sFunnelShift2x8Bit\x20(0) =?~c: +s0 HtR]@ +b0 vK5MO +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) T?^mt +b0 ;F|s= +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) UokO{ +b0 *kE&> +b0 nauI4 +b0 `6k&. +sU64\x20(0) []~,Y +s0 9hr3r +b0 WN]D: +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) $|O=c +b0 Do[v_ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 60)m" +b0 Mc(T# +b0 =La9s +sU64\x20(0) _zsO} +s0 BS)Wt +b0 Hg%`D +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) UOU9u +b0 &OrI| +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) EYZ$A +b0 GNhZj +b0 .PD=R +b0 7tgJR +b0 gn4!j +0]?L-J +sEq\x20(0) '-L5Z +0dm'qM +0iH0;i +0}5`yD +0Y(xel +s0 2j;F# +b0 <3&o{ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) VXlyM +b0 `KhXe +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 2SI:6 +b0 J&bcl +b0 J7bMW +b0 L)/~: +0qTLL~ +sEq\x20(0) PYr8_ +0Q,I4A +0(^ad; +0PNX:n +0}m9o( +s0 ov~FY +b0 +%u8S +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) @3{=5 +b0 w+b0u +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ?D:k@ +sPowerIsaTimeBase\x20(0) OI&:* +sReadL2Reg\x20(0) yK$C< +b0 .LF;N +b0 dyBI< +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) YMh,y +b0 >L(9z +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) &9%kA +b0 8d>S1 +b0 Dkv_< +b0 q27kl +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) R~UK5 +b0 R+JSz +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) IJz0u +b0 /U8+( +b0 euR(] +sLoad\x20(0) zwMR* +b0 a7Z34 +b0 N~"3y +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) kx7" +sWidth8Bit\x20(0) +uLF* +sZeroExt\x20(0) *wUd8 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ~7k"c +0t_zS6 +sHdlNone\x20(0) }&+TC +b0 mRC_, +b0 4)DEa +b0 hX]+$ +b0 8ETVJ +b0 >?[dF +0C0O|* +sAluBranch\x20(0) ,)" +sFull64\x20(0) yM}[a +0+e*<} +0d%&`E +0L@;wI +0T?tdw +s0 BTkjc +b0 :OiER +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 2N,;l +b0 :.opf +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {W\uJ +b0 @hGR( +b0 x^SZ6 +b0 ;Q:Ic +sFull64\x20(0) ]4BA< +04<3XP +0e1Xo/ +0DOG[a +0jCQXL +s0 >}*qk +b0 Aq78/ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %B$Mb +b0 +U}/' +sPhantomConst(\"0..8\") THb*u +b0 Xy8}E +sPhantomConst(\"0..=8\") |T(=^ +011IPQ +0"3Kp +s0 N';0| +b0 (:S=c +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) N:qq% +b0 J*I|< +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) PsXs[ +b0 l!A~' +b0 ibP5N +b0 [S,/K +sFull64\x20(0) 1oeWN +0m]iR6 +0WZT5B +0^ +05XgS` +s0 qV6K6 +b0 DeL)W +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Giq&t +b0 9#9%H +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) G;Pi/ +b0 (8/)1 +b0 _>xIs +b0 Zap2# +sHdlNone\x20(0) *1VY' +b0 }QHl= +0o"d4H +sHdlNone\x20(0) ^/N8S +b0 DDbT^ +b0 ,$?hn +0I"(>Y +sFull64\x20(0) +OUit +sFunnelShift2x8Bit\x20(0) F"/%U +s0 hwu~w +b0 lm!8m +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) M%:4R +b0 tk"+A +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) n09j[ +b0 A4W>N +b0 WAE7: +b0 #YdXT +sU64\x20(0) j~ilT +s0 0ChjY +b0 #**`C +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) lAoUw +b0 .Q\$j +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) &Bv<3 +b0 ,g4_m +b0 oJTHi +sU64\x20(0) /Rd]Q +s0 S4##A +b0 WqFGd +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) dNC[h +b0 u]U06 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) z~6Gi +b0 ^OM{\ +b0 YGcK? +b0 (#nmX +b0 +gJjj +0(y\Q7 +sEq\x20(0) Q68Fi +05C/b. +07&{>U +0j8~u] +0Qthh. +s0 )Wlfi +b0 9S\,q +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) iSoZJ +b0 !>paD +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) \C1Yt +b0 4,LIq +b0 B:TV0 +b0 _/bAq +0aIBb= +sEq\x20(0) !jq9^ +0XC0Fj +0B_HFB +0+~l}K +0^WPgI +s0 `,e/: +b0 [MFit +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 6MfYh +b0 ^W`2q +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 8NeoH +sPowerIsaTimeBase\x20(0) 5VApm +sReadL2Reg\x20(0) >;((h +b0 Xz1eH +b0 n]Up7 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) DN9:h +b0 /c:]K +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) PRl+f +b0 gZWR@ +b0 ^6q{l +b0 8EXM/ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +b0 g[(5. +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) (W_|w +b0 |oC@' +b0 C4vg\ +sWidth8Bit\x20(0) :}ITB +sZeroExt\x20(0) o{DA? +b0 pV@;n +b0 &+~"` +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) J6rr0 +b0 mQc8/ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) iB4(u +b0 lG->` +b0 nBc[f +b0 XRIzz +sWidth8Bit\x20(0) |:7{B +sZeroExt\x20(0) xSY4a +b0 o{AjW +0;Uq-A +0f8n-Q +028RBt +0[V0nd +0U?b&] +0*]zR? +0BpBOD +0Q/O/E +b0 Jah%E +0ViAVp +0pwz45 +0CLI!/ +0n{aGJ +021jnf +0:6Hc@ +0,Evw# +0|PWeT +b0 (-b;& +0d>36@ +0mRVTa +04L/Ei +0g!^"^ +0H96*( +05TyNf +0_A^X1 +0D_.0: +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) =(Q{Q +sHdlNone\x20(0) \j3ql +b0 ,EmuS +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Sa,jH +sHdlNone\x20(0) b&/Ct +b0 |pGpG +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Qgpwd +sHdlNone\x20(0) jKoZE +b0 FzvmA +b0 /o`t` +0_%nH: +0),jPs +0A@vqf +0EGJvs +0"MdQ7 +0lQQI[ +0L>/;( +0UW~V- +sNone\x20(0) wuO#2 +b0 uk1,# +sHdlNone\x20(0) _+^Po +0NLDTJ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) )WSbi +sHdlNone\x20(0) l -0|qnK2 -0oGC+g -0/w[x2 -0)-1[~ -0Z|F+W -0C3Auw -0c;%"| -sNone\x20(0) Da!uq -b0 T=.CP -sHdlNone\x20(0) Ld[Z` -0L+0z -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) k(n74 -0N,UY= sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) (xcO& -sHdlNone\x20(0) `~abz -b0 Nfy_/ -b0 Z"QXv -b0 `=rQp -b0 Sr(_e -b0 EQG5u -04i"0\ -sAluBranch\x20(0) Rz2_# -sAddSub\x20(0) %2|wF -s0 zKO9~ -b0 _srr\ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 'NhwJ -b0 Kc4s_ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Z2=ZV -b0 f%+e6 -b0 o;0+G -b0 )7V4k -b0 9dybB -sFull64\x20(0) 'vaxF -0l:.Ac -0EkJl) -0'`ju\ -06Dz#R -s0 >xCCr -b0 k!QDF -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 77R%= -b0 FUH,S -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) xJ&i- -b0 GkQv\ -b0 ArAdw -b0 Xz)LV -sFull64\x20(0) pBEi< -0{x+V/ -0~fJ02 -0=#2'< -0?P_@z -s0 4vv*n -b0 zR"7[ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) WDe4| -b0 iRGCU -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 2Z<{z -b0 DWKXz -b0 0~hP? -b0 B(YCL -b0 Rl}#t -sPhantomConst(\"0..8\") s*-0r -b0 dnLY0 -sPhantomConst(\"0..8\") S}(%^ -b0 D4"Fk -sPhantomConst(\"0..8\") ~Tgbi -b0 @Ey{[ -sPhantomConst(\"0..8\") -'HC -b0 OQcL0 -sPhantomConst(\"0..=8\") D!.f& -0*AWsr -0y>&e= -0M#jy) -0pV*YR -s0 s0g:; -b0 [rp,_ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {Y<=@ -b0 |-Hl) -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) >s+\8 -b0 f3E$U -b0 p!TmQ -b0 nC_y@ -sFull64\x20(0) 8?]WE -0o}-o$ -0wl+&m -0l|I+M -0Ib|#y -s0 |}4Lp -b0 v[7Y3 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) FUa2u -b0 ;zLU: -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Su1./ -b0 j^~&R -b0 i#:6I -sFull64\x20(0) jT{gO -0<-";I -07{4xq -0Z?b5( -0D?Sb. -s0 p.X$T -b0 "R+BF -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) uG%2V -b0 lYz-E -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) jIMLv -b0 0~{Ld -b0 HcSvH -b0 .q-fO -sHdlNone\x20(0) M?/lx -b0 zt!P; -0fX^Pj -sHdlNone\x20(0) +N"AI -b0 f(bQ@ -b0 ?^h"q -0YamXq -sFull64\x20(0) m&|GZ -sFunnelShift2x8Bit\x20(0) 5&M90 -s0 FmR2% -b0 ()^]$ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) :E}"l -b0 C_%M[ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) cb6nQ -b0 5{OP; -b0 +;B|F -b0 U3VF| -sU64\x20(0) Q?Fgz -s0 ,S -0Rs*-X -sEq\x20(0) Hx.*b -0,MQ&^ -00NPA} -0Buw(J -0yDQ(w -s0 `G~i% -b0 Z4hLQ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 7$xy; -b0 [.Y:N -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) <0j3* -b0 59k<} -b0 ~b0gc -b0 ]s$?X -0[~!1s -sEq\x20(0) BQR=& -0u`Cy? -0Y&Y`k -06fMv, -0~hJ;a -s0 +w4kQ -b0 qZy~1 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) B){L^ -b0 Nv=25 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) lCNUw -sPowerIsaTimeBase\x20(0) aAM%u -sReadL2Reg\x20(0) !G!p, -b0 Ym&By -b0 ?53yR -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %Jr'\ -b0 !7>-F -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) J1#>H -b0 R!+vv -b0 5K=,H -b0 ?D1!P -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %~25j -b0 lZdKq -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) &5W1] -b0 r6xKd -b0 @v4gv -sLoad\x20(0) UP\M\ -b0 @HS -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 1X8,] -b0 dI+M< -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) v-&:n -b0 9c!EF -b0 x:oJZ -b0 /IlZk -sWidth8Bit\x20(0) !Vjy] -sZeroExt\x20(0) 2i*$N -b0 ]N([G -01y$i+ -0P=N@= -01Z.@{ -09n1E+ -0uatzL -0k-a;j -0#=4e} -0~bM_c -b0 (k\W8 -0836&: -0i+|pc -04owWQ -0c(`v} -0Da?,< -0%FtNK -07Ns`= -0bReO9 -b0 `.gV/ -0A~hn~ -06"wf2 -0vRfGQ -0[]#I$ -0$:t,+ -0whR+b -0Vj@?+ -0K +b0 @>$7) +b0 ?E'qI +0og~1> +sAluBranch\x20(0) lvD"q +sAddSub\x20(0) (.R$r +s0 y.EEd +b0 pfayd +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) X\@2& +b0 Oa~d4 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) txz\6 +b0 e*[Uq +b0 *c.=A +b0 1'|y+ +b0 0_X)K +sFull64\x20(0) WZ$#^ +0#.[<> +0-/E<4 +0m]3V] +0IYKn# +s0 )1PW~ +b0 Dfchk +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 1`%VU +b0 t3vX" +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Vscjq +b0 {}v": +b0 e48]; +b0 Om=R2 +sFull64\x20(0) )^O6a +0GdJpG +0+FJtl +0EORO- +03[#2q +s0 XP3Hh +b0 pU[WY +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) o0icp +b0 `9-7* +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +)cc\ +b0 `OY#I +b0 s9Del +b0 )lreY +b0 v;(dj +sPhantomConst(\"0..8\") lGy +b0 o8[nM +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) M&(u' +b0 ft?eF +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 7QL|< +b0 Q[`GK +b0 %>NWw +b0 .&rua +sFull64\x20(0) T;W:h +01`*m\ +0`Gz>7 +04q +sFull64\x20(0) ~)&}( +0w]b1V +0`HM_4 +0t\xN6 +0^"$TA +s0 CI$BP +b0 zV^l$ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) o@N;x +b0 50ZOV +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) bamy| +b0 krOy> +b0 Zi8HQ +b0 (4T0D +sHdlNone\x20(0) G5Xt& +b0 }{I^X +0bQ|jI +sHdlNone\x20(0) q<'`l +b0 OaI~& +b0 &}qEw +0if"O& +sFull64\x20(0) k>c>' +sFunnelShift2x8Bit\x20(0) hD~;f +s0 7mHt\ +b0 ?uct: +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .r7p~ +b0 8?5_q +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) SXlYO +b0 vFC(* +b0 F*[*f +b0 ULjET +sU64\x20(0) $op8_ +s0 BC%j> +b0 SU$Vk +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }e\k, +b0 *kfe, +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) oIfu; +b0 QN/HH +b0 bia5L +sU64\x20(0) VtOfE +s0 YcV6/ +b0 :=Cq0 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) _g\o8 +b0 ov+9` +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 23L[L +b0 p:A&% +b0 w0L(n +b0 +Bu`| +b0 n1^GQ +0obP/v +sEq\x20(0) S7GGZ +0cgW71 +0M;{0] +0{YS~y +0+cKqW +s0 gnput +b0 &%x.Z +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 56[hD +b0 CFq.z +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) >v}/0 +b0 QT/}s +b0 1JI\O +b0 Dy|*^ +0"t~Xg +sEq\x20(0) 5Ej+U +0vJu+7 +0uhXN~ +0ZkYF# +0-Ajzh +s0 m9":2 +b0 BSxks +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 5 +b0 ]@)%< +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) <0Ahz +b0 FEL/2 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) iI=M +b0 RDG@% +b0 ;u!*b +b0 tRFnH +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Izru# +b0 ~E8x2 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) J/O[z +b0 2oi3Z +b0 #IF +sLoad\x20(0) K:_W] +b0 2w@<6 +b0 RG#r@ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) hA'.1 +b0 [@C"7 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) SVrs` +b0 1d~Bk +b0 +?0Ji +sWidth8Bit\x20(0) K.=gg +sZeroExt\x20(0) OUp]U +b0 LC-Ao +b0 $Pz+f +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ,*f7u +b0 BZqq7 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .T3Fj +b0 {\ok+ +b0 nI1%n +b0 #gkH} +sWidth8Bit\x20(0) ?\a<@ +sZeroExt\x20(0) IaNhK +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ;JN_2 +0Uv[i; +sHdlNone\x20(0) e2InP +b0 [qb%< +b0 W\wJR +b0 ,($>= +b0 8^v[N +b0 Uo0#B +0<(bo` +sAluBranch\x20(0) 56-k+ +sAddSub\x20(0) M'ntL +s0 K?)E_ +b0 gkX*9 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) EKGb; +b0 ""}la +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 8P<&[ +b0 >qj?1 +b0 Vk"[W +b0 eQwV[ +b0 4a1`I +sFull64\x20(0) s9wOt +0Luk:m +0oP70] +0iiS^& +0tjA^h +s0 U7TmS +b0 ,4$(m +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !Nv:/ +b0 MiPQ- +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) dH*2+ +b0 r%'~J +b0 *L[h~ +b0 4[!Kv +sFull64\x20(0) C3+>< +0*LTna +03d=#$ +b0 Ul}ik +sFull64\x20(0) YM%.H +0NS-Sa +0)~M6K +0!2.V| +08GR!8 +s0 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ECAz4 +b0 ~Q!~' +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Iv|~% +b0 ,kT.K +b0 9dA4_ +b0 f&`w< +sHdlNone\x20(0) [TBuR +b0 3@E*t +0;<]po +sHdlNone\x20(0) (rxrF +b0 ,O(%Y +b0 ~:GCy +0k:a#H +sFull64\x20(0) {2nSr +sFunnelShift2x8Bit\x20(0) viPM8 +s0 "yiF^ +b0 Z;k|n +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) qEE,8 +b0 Q?YZI +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) HS'#C +b0 Y!Zka +b0 'FA&q +b0 GcfeE +sU64\x20(0) JDQBG +s0 sC5;& +b0 k3Box +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) LP%Cf +b0 *oJnQ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) DlH{| +b0 Gg+j' +b0 $?>Op +sU64\x20(0) EnKft +s0 (-KlW +b0 YGuK' +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) v,~c2 +b0 GL,KO +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) z.0[& +b0 $E&7^ +b0 9!s[| +b0 sdq?( +b0 oz%iQ +0'"5n$ +sEq\x20(0) !S(zx +0%pe1P +0XyEc~ +03!b1$ +07r|hj +s0 4la"m +b0 (Od4c +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Ajxjm +b0 kDyM+ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) zq^Bz +b0 bsz[F +b0 !9~F~ +b0 }nFsD +0i^u- +sEq\x20(0) NsvQT +0tA`Gq +0x`dET +0"]"(^ +0GQ~y$ +s0 8tO#{J +b0 /2E?V +b0 8`vM& +sWidth8Bit\x20(0) qq)~) +sZeroExt\x20(0) isX2f +b0 B:~TB +b0 u<<6{ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) \)FZV +b0 #w&D: +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) s;&Q< +b0 \fg;\ +b0 T?.Fi +b0 'MZ#S +sWidth8Bit\x20(0) M/hz% +sZeroExt\x20(0) Kv;ei +b0 G;AUi +0Ynom1 +07)|Vy +0Si5ko +0gtXl +0*RP#s +0PN'Y& +0zG0Bt +0'v<1[ +b0 Kk?6= +0]N{|A +0W[)43 +0w@=w6 +0W/&21 +0@n>um +09tX|: +0RCfW +01^g~~ +b0 ~%p +0kGPYO +0ZY;Dl +0bxa{B +0ZLG:R +0Z(fWB +0JQ:Iq +0Vfmr/ +05Q(,{ +sNone\x20(0) {D71n +b0 9hEz' +sHdlNone\x20(0) c24'd +0*WA9u +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) aq=]$ +sHdlNone\x20(0) uL:F2 +b0 J[h{L +sHdlNone\x20(0) o{xvI +b0 87}I= +0WNe`/ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) BzgDt +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !b/?g +0aXd0H sHdlNone\x20(0) O}TB$ 070$9# -sHdlNone\x20(0) p~GLZ -b0 d(ga: -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) l3b^O -0|@pvR -sHdlNone\x20(0) 2k?E` -b0 +$s4a -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +TB2s -0vPE=z -sHdlNone\x20(0) "9Qc# -b0 1EInB -sHdlNone\x20(0) w{Q_X -b0 5|;Y) -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) dAI*U -b0 \kl\# -0Q)rJW -0orG+y -0=V3(H -0\QUCE -0+B[e} -06E9Xp -02ab87 -0dSS=] -sNone\x20(0) 7fk(+ -b0 *B2_n -sHdlNone\x20(0) ?Tz1- -0,JrbU -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 5"X*: -sHdlNone\x20(0) SMJ;- -b0 'R-5A -b0 .6m`Q -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) rE$Xf -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ?BUd> -0_\CFN sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) xI$mR -sHdlNone\x20(0) r?.0) -b0 1HwPL -b0 ?qbN_ -b0 JPyK( -0_lq,R -sAluBranch\x20(0) z9E== -sAddSub\x20(0) m:p;o -s0 JJ]?; -b0 j_':B -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) RyNm> -b0 _rKMK -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `7K6M -b0 _D[kk -b0 S&8,b -b0 *v06] -b0 w=m_q -sFull64\x20(0) 2e{gl -0g`7p3 -0x}ZTU -0Ldg+i -0/`T_v -s0 c[z*u -b0 @XBQk -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ?(9Q& -b0 ^C -b0 Ui[_s -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {:$g_ -b0 kn*"k -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) HI,x0 -b0 *}P+D -b0 @Vb(9 -b0 !!GXG -sFull64\x20(0) A*<9% -0P6F0M -0x4P+R -0TMek& -0`#f<5 -s0 iy2vt -b0 8MdU; -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) wuQIO -b0 .<1u/ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) CI,K% -b0 KAA?& -b0 SSlVu -sFull64\x20(0) v1pUG -0D'*(? -0Ue4*, -0@$kWo -0-Uxaw -s0 x[#(E -b0 8e~AF -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) t5H?\ -b0 [- -b0 4&TQ( -b0 $XZJ( -b0 x\}@2 -sHdlNone\x20(0) Ie)*s -b0 kPb/T -0oI2>M -sHdlNone\x20(0) CZ}_w -b0 enV1J -b0 ?U$fI -0-nK}t -sFull64\x20(0) "7[2' -sFunnelShift2x8Bit\x20(0) :ao}? -s0 W'W5r -b0 )_02H -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +[@-j -b0 00dS8 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) uUU\[ -b0 nG.h7 -b0 ~8+n- -b0 nBbag -sU64\x20(0) LS|tH -s0 tqe'9 -b0 fb>b^ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) cc^-y -b0 ?H\CJ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +<6Xa -b0 eG`[Y -b0 ZN>n. -sU64\x20(0) UbSA. -s0 )Dg't -b0 KgadH -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Hw<*Z -b0 DCV_8 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) gqer% -b0 L?*GO -b0 l,cj\ -b0 YTcxa -b0 WE%4& -0cr3A> -sEq\x20(0) ]|9c| -07qVr4 -0G -b0 M-%EF -b0 )qkg* -b0 slaYh -0_Nd#i -sEq\x20(0) 8F@eu -0>On5V -0yo"RE -0w$HxX -0H+0]k -s0 T*&+] -b0 5%CVz -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 3@Ej^ -b0 nh&M3 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) no2l: -sPowerIsaTimeBase\x20(0) ,-oT> -sReadL2Reg\x20(0) c[QqZ -b0 {Omj[ -b0 sCdSg -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) iH/"5 -b0 MpfP- -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) U?Czw -b0 9b+D9 -b0 6&_Ol -b0 DQGex -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) WV$rk -b0 J[fu~ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) TO3yb -b0 f;'Pj -b0 &P{z7 -sLoad\x20(0) f\Fem -b0 y|a#u -b0 _j6Br -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +7GtP -b0 h"Py: -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ca&B, -b0 37QcM -b0 v3&EF -sWidth8Bit\x20(0) ciDLg -sZeroExt\x20(0) 6yw!~ -b0 /,+dg -0pIN2J -0yNM!@ -0"9J0Z -0RhIg8 -0`@nOn -0e?k`< -b0 XExa{ -0Bv{t1 -02Gy*T -0Eq=_~ -0t2m+; -0|;T[% -0j/Pu6 -0}+79Y -0U^{D0 -b0 KveY( -0NN -0bs-8M -0<+LcT -0P's/# -0[/.- -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 6j?t1 -0sz~[3 +sHdlNone\x20(0) R]s+W +b0 esX't +b0 /)"Kk +b0 ;/QcF +b0 dJ{vw +b0 {hjpH +059Y2T +sAluBranch\x20(0) ux~&S +sAddSub\x20(0) }w!FR +s0 Z1uDX +b0 pjn|4 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) B1*f\ +b0 2t +sFull64\x20(0) wW?.a +0%fffp +0^R[wf +0-aU'@ +0U-%51 +s0 X%:n~ +b0 ,I~Og +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 0F$uz +b0 q23\X +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) P.j\0 +b0 ujL~0 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ]qJgN +b0 "|HdC +b0 1#vae +b0 cy@?; +b0 8e$iO +sPhantomConst(\"0..8\") !0}%N +b0 BH=T3 +sPhantomConst(\"0..8\") x17Z. +b0 -a5?& +sPhantomConst(\"0..8\") y6=kk +b0 EpLs5 +sPhantomConst(\"0..8\") u=Mju +b0 .J/QB +sPhantomConst(\"0..=8\") S)tSg +0ZQ`ra +0SBq:$ +0@$mQ@ +0[~hJY +s0 t{S9C +b0 S8Q>I +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) n.)Pv +b0 tNFJ> +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ;a2e~ +b0 :GS]_ +b0 k?"A& +b0 fjSzu +sFull64\x20(0) cXVIo +0d*&?L +0~-#I2 +094pR4 +0I(}_] +s0 73MdU +b0 CM42O +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) r]h&z +b0 L)U7a +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !dGTq +b0 q17 +b0 /1r*x +sHdlNone\x20(0) dYkR* +b0 !KJk[ +0kc/Pj +sHdlNone\x20(0) Ioa{D +b0 U,Gmq +b0 zd>M. +0~"vsv +sFull64\x20(0) 9=,`: +sFunnelShift2x8Bit\x20(0) U3t>^ +s0 ?5Cn\ +b0 R=u6' +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) *cn1[ +b0 oyK3" +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) qsV+c +b0 BeZM= +b0 c$al8 +b0 3"1so +sU64\x20(0) G0dU` +s0 5{kx5 +b0 &lTZ< +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) b-Z?Z +b0 1bHc1 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Emi@@ +b0 u{*,5 +b0 V]tG +sU64\x20(0) "V\W# +s0 ~h%B_ +b0 =,C6[ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Fum]3 +b0 y1ysJ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) o']H' +b0 %rNEL +b0 a`rOD +b0 Oa_q" +b0 tqnrk +0/T$(2 +sEq\x20(0) t*1-0 +0p@tKU +0T)*4n +0)]2=' +07w/L] +s0 vB9!& +b0 "nS$h +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) u2%=4 +b0 H`TSG +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) R'I8H +b0 /'2Fn +b0 49lzz +b0 >NrP& +0pv1YZ +sEq\x20(0) (18=I +0I.gQN +0$5b9i +06Bl}a +0|5gs9 +s0 Z_4wc +b0 OX/iF +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) X7,lU +b0 9Fo#< +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) a{J,: +sPowerIsaTimeBase\x20(0) `RUe] +sReadL2Reg\x20(0) l)Ze3 +b0 ]i0[7 +b0 @7U^? +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) VHF-a +b0 lIIdu +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) |21W6 +b0 WcJ]O +b0 3qe9? +b0 Kp]MJ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %,\eN +b0 \#fa` +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Kt#B7 +b0 T'$O( +b0 &'V}< +sLoad\x20(0) "o1H/ +b0 3a-5v +b0 Gy> +sAluBranch\x20(0) UE:mZ +sAddSub\x20(0) .C;12 +s0 ?dL7[ +b0 h2tU_ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) t/lr5 +b0 t.S8( +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) O;E.3 +b0 ~8Ysd +b0 Kn&sm +b0 wfYgt +b0 3E!G` +sFull64\x20(0) 0Qpfm +0m,kuO +0dxL.o +0uLd}0 +0bw074 +s0 1<1ZL +b0 Z3J<{ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) @yH(n +b0 G2$x4 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) JM!pA +b0 /@sU~ +b0 &\"o] +b0 !9h%J +sFull64\x20(0) eE@Bf +0Viqzx +0j1r;- +0y>=Xa +0Fwx@3 +s0 J&v-u +b0 I2]Jo +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) TD!wC +b0 gDLy^ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) &tZ%3 +b0 t57GD +b0 evueB +b0 #rW&> +b0 tr-MJ +sPhantomConst(\"0..8\") N&n`% +b0 2Kc7+ +b0 4-*}D +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) $N|d8 +b0 qv&8c +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) \6+'9 +b0 c54#I +b0 mJdSk +b0 #7_AJ +sFull64\x20(0) P&0(l +02x2i +07{eT9 +0}]irn +0VyBzn +s0 zdt2/ +b0 [XQSW +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) SrL5/ +b0 13,.= +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) gbbT@ +b0 S=kFJTs +b0 iFu:a +b0 $~ +b0 ,Mc}E +0=rPaJ +sEq\x20(0) g+.@[ +0DSIZo +0Jm{GD +02dd]2 +0}mP10 +s0 (`/oa +b0 a9C)a +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) V?J7% +b0 <$=;z +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) (w7NI +sPowerIsaTimeBase\x20(0) cBJ}' +sReadL2Reg\x20(0) c;s[b +b0 j3Fqg +b0 om=oe +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) j~Rz# +b0 5)$R3 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ,|HoS +b0 Zwh6F +b0 %P5e& +b0 WK=l: +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) g~y{n +b0 MtD}e +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) vA(yD +b0 h~(=P +b0 5Y,3N +sLoad\x20(0) ~>})} +b0 $*;cK +b0 D`GQ_ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 5=QZi +b0 u%2Ua +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) PU_{s +b0 /BKr@ +b0 M)I!$ +sWidth8Bit\x20(0) !NIUf +sZeroExt\x20(0) PV!i{ +b0 |M;l^ +b0 M2A{A +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) N-MD8 +b0 [IDiw +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) iwHr{ +b0 E/F?P +b0 |_MN$ +b0 q$$W +sWidth8Bit\x20(0) m'!+z +sZeroExt\x20(0) s1Fu- +b0 `fSOn +0c=Clb +0f#=Z3 +0Cj;Vz +0]g7D_ +0X'>t[ +0lo~1A +00Ck3$ +0ze2rS +b0 S3!3f +0||9Ge +0EQD[V +0&WLvI +0p[gw" +0a^OZ< +0J3{Uv +0<>U%) +0,{%56 +b0 +~\O| +0n>B\N +0ixZy5 +0!BvZM +0$kZJu +0es/FE +0NIih% +0IqIR2 +0i^'9o +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) FJ&[/ +sHdlNone\x20(0) *nEv[ +b0 +b0 V:7/k +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) D0xEs +sHdlNone\x20(0) H\$(< +b0 &Ck*Y +b0 >B#OE +0@e!oD +0%,Qn& +0gm*t' +0s/I(s +0S1L+% +0zHJsh +0jJrZK +0q,i>c +sNone\x20(0) cZ%sk +b0 l@:Z} +sHdlNone\x20(0) 8\'@U +0dvm=c +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) (o*D^ +sHdlNone\x20(0) +q2{1 +b0 Jy0G} +sHdlNone\x20(0) cpdLQ +b0 (e_Q% +0}sU^d +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) &k5~x +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 6g:0 +0oQMaW sHdlNone\x20(0) |0hb' 0M"^lQ -sHdlNone\x20(0) 3;v(O -b0 2uirs -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) (4X_4 -0[?'*& -sHdlNone\x20(0) NHWYJ -b0 B;1;T -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) vFRTX -0MF&;( -sHdlNone\x20(0) *%Mz3 -0!zZcP -0]V!Xx -03`>R> -0[4-d^ -0=c=8g -0!baQ= -sNone\x20(0) oHr!V -b0 d@hfU -sHdlNone\x20(0) v.g6N -0TS~&5 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) &/%%u -sHdlNone\x20(0) FfGZn -b0 $YA#v -b0 7829A -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) t-d~0 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) FqPSX -09ciH. sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "_2i- sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) J1Kd= b0 iVDm$ @@ -106727,18 +108408,17 @@ b0 Smig] b0 fq]^I sWidth8Bit\x20(0) 3-cHk sZeroExt\x20(0) PYePx +sNotYetEnqueued ?3a@- 0S!`>i -0pZ8e) -0yv"Nd -sNotStarted\x20(0) L3vq1 -sNone\x20(0) zOva} -b0 ??hI/ -sHdlNone\x20(0) }OC{Z -06xaH& -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) l#.5O +sHdlNone\x20(0) k1G%O +sNone\x20(0) AAskA +b0 lFQF# +sHdlNone\x20(0) X5t~7 +0$@E7; +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) YkuMq sHdlNone\x20(0) ]W*CP -b0 d#JE; b0 XstEQ +0NI;4S sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +`nj* b0 \JyLS b0 ?*wvf @@ -106925,18 +108605,17 @@ b0 ,.>l\ b0 k#V%U sWidth8Bit\x20(0) 6ia34 sZeroExt\x20(0) >"ko6 +sNotYetEnqueued R=4[: 0^-O3N -0Rnb|H -0N+a6? -sNotStarted\x20(0) 3u!f8 -sNone\x20(0) 1tJ/+ -b0 G4d"3 -sHdlNone\x20(0) Xk%Hi -0@jIF? -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) '.{: b0 4q:R| @@ -107519,18 +109196,17 @@ b0 :$9gM b0 ]gveA sWidth8Bit\x20(0) CNLNO sZeroExt\x20(0) "tg6v +sNotYetEnqueued zdMbX 0v!82V -0hi-DW -07P\i5 -sNotStarted\x20(0) l*TA' -sNone\x20(0) ?4qDy -b0 *~uHb -sHdlNone\x20(0) }{n6; -0[2*<8 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) _p6"P +sHdlNone\x20(0) ZKLKw +sNone\x20(0) SN97Y +b0 ^B@8. +sHdlNone\x20(0) ))ZvF +0ocV)/ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) y&w'1 sHdlNone\x20(0) P?$5Z -b0 xoX~] b0 FXAyH +0*[d&g sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Y$q8& b0 ||dv( b0 a01#R @@ -107717,18 +109393,17 @@ b0 ^qd-_ b0 a$(KU sWidth8Bit\x20(0) D9/h$ sZeroExt\x20(0) ooIOt +sNotYetEnqueued s^w4E 08ZV~; -0ucBaO -0JZ&(3 -sNotStarted\x20(0) .S}72 -sNone\x20(0) M*Z=. -b0 *GHes -sHdlNone\x20(0) t#17j -0v&&#} -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) :c8~. +sHdlNone\x20(0) LpMdn +sNone\x20(0) H7=G[ +b0 |V%tQ +sHdlNone\x20(0) O?4e6 +0$G.Cz +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {i4kU sHdlNone\x20(0) wv-$r -b0 ]Ng}I b0 %@YOC +0#9yAV sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) W&1e{ b0 j*d(7 b0 {\}3\ @@ -107915,18 +109590,17 @@ b0 ig[Fo b0 P$4Hz sWidth8Bit\x20(0) )imJ4 sZeroExt\x20(0) 'e|r9 +sNotYetEnqueued -d6zU 0=ejS| -0]A/uH -0BBs(z -sNotStarted\x20(0) n@~;A -sNone\x20(0) @be&L -b0 N1,2S +0j*GD. +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) X|mMC sHdlNone\x20(0) ga4#t -b0 E,Quv b0 I^[qO +0+fs!f sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) | +b0 =`Rew +sHdlNone\x20(0) gEDsJ +0eUWXy +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) f&qS` sHdlNone\x20(0) />"29 -b0 ?BDXs b0 ]!^,t +0EP%;) sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) u:@z: b0 mwpM9 b0 #%BAH @@ -108311,18 +109984,17 @@ b0 %@&?g b0 "TdTF sWidth8Bit\x20(0) vmb:S sZeroExt\x20(0) g#4+L +sNotYetEnqueued wWrbg 0;$9pA -0cCN3% -04{,M+ -sNotStarted\x20(0) .Lf6a -sNone\x20(0) }KFL_ -b0 )Tksw -sHdlNone\x20(0) %'#`\ +b0 evQ,0 +sHdlNone\x20(0) 4u7C- +0a|*Q/ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !,}L\ sHdlNone\x20(0) #h1y= -b0 ej]f0 b0 4uvJu +0.XCG` sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ]v8@- b0 QtQus b0 cc3YE @@ -108707,18 +110378,17 @@ b0 a{$x_ b0 40:o -b0 d;nC$ -sHdlNone\x20(0) Ghr/y -06Y=(` -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) n]4UF +sHdlNone\x20(0) +AmvJ +sNone\x20(0) aYL#a +b0 sHnr* +sHdlNone\x20(0) zW&0" +0$0J83 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) d!HK< sHdlNone\x20(0) 4da~m -b0 )2aiI b0 UO,Hw +0%MjpT sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) lpHw_ b0 :;cZ3 b0 &E{1( @@ -109103,18 +110772,17 @@ b0 "5+|+ b0 )})VC sWidth8Bit\x20(0) .T'v; sZeroExt\x20(0) -=7U1 +sNotYetEnqueued Lvq.B 0<|b(< -0-uS^F -0e@1-` -sNotStarted\x20(0) 0xp7{ -sNone\x20(0) z!Qum -b0 V[kr -sHdlNone\x20(0) vA*"H -0}';fz -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ah04ly4 b0 ^P>a` sWidth8Bit\x20(0) ]!W17 sZeroExt\x20(0) Yq/^s +sNotYetEnqueued :'F7d 0egWe{ -0L%7T( -0iLC%x -sNotStarted\x20(0) !\'X| -sNone\x20(0) 9Ifpq -b0 |n0&~ -sHdlNone\x20(0) X[*W; -0,Z,KP -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) v_NMl +sHdlNone\x20(0) s>bKi +sNone\x20(0) U0`py +b0 =u(&O +sHdlNone\x20(0) K14C` +0=0hT1 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) cF7#( sHdlNone\x20(0) by4&; -b0 n\c33 b0 E\8oa +0k(V9a sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +:su& b0 +"nCD b0 3gfqL @@ -109499,18 +111166,17 @@ b0 fvX:_ b0 {W7(c sWidth8Bit\x20(0) TntwO sZeroExt\x20(0) ]/Kgv +sNotYetEnqueued ~Nt<3 0zpn(j -05('=c -0V$^`% -sNotStarted\x20(0) c +0;IDVM +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) HuEvi sHdlNone\x20(0) *QC:: -b0 B+qxu b0 n3$|M +0IcnEG sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) w'I,> b0 qLZN) b0 ))Q$A @@ -109697,18 +111363,17 @@ b0 &.xv@ b0 6O9=Y sWidth8Bit\x20(0) E/H6) sZeroExt\x20(0) C:\-I +sNotYetEnqueued .Wvo% 0D0ef/ -0Wxegp -0Nxf^v -sNotStarted\x20(0) yj7ax -sNone\x20(0) B1Q[b -b0 fiB8x -sHdlNone\x20(0) PM"Gn -0/p6xG -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) x\%U" +sHdlNone\x20(0) v:e~X +sNone\x20(0) +~n4a +b0 2d9`y +sHdlNone\x20(0) <3Kj1 +0/w-lR +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +K17n sHdlNone\x20(0) LkQ"b -b0 M^w-, b0 UNXaA +0dclx& sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) P.XEW b0 RB'$4 b0 >=QYV @@ -109895,18 +111560,17 @@ b0 {hFU& b0 P0{9N sWidth8Bit\x20(0) `=Vql sZeroExt\x20(0) w*\Zs +sNotYetEnqueued )v>cJ 0{_}^Z -0S#2UW -0e9cj} -sNotStarted\x20(0) y+($# -sNone\x20(0) @Ut3 -b0 Oj4>E -sHdlNone\x20(0) TmP]8 -02\zlB -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "SFap +sHdlNone\x20(0) O);Mj +sNone\x20(0) J.t^b +b0 HXioDZ7 sWidth8Bit\x20(0) Z+z7l sZeroExt\x20(0) $\4q" +sNotYetEnqueued 6anx9 0]f._L -01t]>b -0U3`EH -sNotStarted\x20(0) :m,$1 -sNone\x20(0) 1+@"I -b0 "l>nW -sHdlNone\x20(0) Q)|^" -0>33ou -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }.ytN +sHdlNone\x20(0) O##n0 +sNone\x20(0) i{F`f +b0 i8[SK +sHdlNone\x20(0) ]agQ- +07=?61 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ?~5c[ sHdlNone\x20(0) Yhr|k -b0 d6({V b0 l4m$5 +0ym!@< sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) #Y$88 b0 ue{+% b0 *<#Nl @@ -110489,18 +112151,17 @@ b0 b01.0 b0 z~cb{ sWidth8Bit\x20(0) Zk}h} sZeroExt\x20(0) NdmU. +sNotYetEnqueued &LfWg 0b9.7} -0<;Gp+ -0CgZvw -sNotStarted\x20(0) '}^|b -sNone\x20(0) 84+?< -b0 +r2ps -sHdlNone\x20(0) $VFx0 -0T\G5_ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) nGsZa +sHdlNone\x20(0) &cr5m +sNone\x20(0) k){a" +b0 Rz6iG +sHdlNone\x20(0) g$e<' +0Pv)^hsW -s0 Qf%1X -b0 'ldc- -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) |S;={ -b0 I2&<9 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) bJ7E -b0 ;7Moi -b0 <*}#G -b0 1 -b0 ,|"TP -sPhantomConst(\"0..=8\") PjGU. -0Hp"Hg -0>,73( -0 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) A8u<7 -b0 a)w#M -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) eb(fM -b0 ($pZ> -b0 [YqX" -b0 U~qZ@ -sFull64\x20(0) :CBQt -0e1~_ -0;Z''\r# -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 6No@Q -b0 UXG'/ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) *GEk9 -b0 5&W6% -b0 7SVV+ -b0 $kB{6 -sU64\x20(0) E@Ndd -s0 +6_?b -b0 24qw1 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) YWlz~ -b0 &(\"4 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .!Q'< -b0 Oc2zW -b0 #D%Ft -sU64\x20(0) yv##> -s0 6gUt$ -b0 ^Q3O0 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ol`s< -b0 Kx8Be -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) d;osr -b0 "Sfg' -b0 WP[<_ -b0 !kk2Z -b0 F:O?m -0nj5y$ -sEq\x20(0) MQ+QI -0Hj6>k -0j\pJ0 -0"k8Rv -0-T=Hs -s0 v>vee -b0 WMOz+ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ]|ygS -b0 ]d9cB -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 1}0HB -b0 `3$=c -b0 ."%7| -b0 mdh!R -0c`e@i -sEq\x20(0) uJ!:d -05!&6= -0[z~f& -0i=fp\ -0T?lR9 -s0 $DL_Y -b0 PbvNp -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 5m~LM -b0 s`+kU -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) m{N9b -sPowerIsaTimeBase\x20(0) s][m) -sReadL2Reg\x20(0) I&7gG -b0 A)U6\ -b0 abw30 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) R<&'A -b0 ct@uh -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !?/v2 -b0 (GN8T -b0 3%9:` -b0 [.Fe~ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) (')(n -b0 \h`2[ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Cve"% -b0 r]kP] -b0 /WdK` -sLoad\x20(0) r>3h_ -b0 h@UW3 -b0 %l;:* -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .%|Ry -b0 fm5w* -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 3i5FC -b0 9Nma. -b0 r2@9* -sWidth8Bit\x20(0) a}7@] -sZeroExt\x20(0) ;z!hm -b0 (O7_^ -b0 O%0Lr -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ao_Uo -b0 7)WL< -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 8K'Q$ -b0 x5bL5 -b0 oZDdc -b0 W7YRE -sWidth8Bit\x20(0) %c@u& -sZeroExt\x20(0) /8#;r -b0 6SxMy -0FsZMG -0jF -0!SM!W -0_QNl5 -0vKF:` -07Adxc -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) G9!:& -0*jBNb +sHdlNone\x20(0) [C%Hf +b0 %RtTH +b0 8/pV| +b0 j2-1L +b0 NbFkw +b0 3AP`S +0')1eW +sAluBranch\x20(0) Dsj;< +sAddSub\x20(0) VT<5| +s0 S9p|g +b0 X.9SR +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) tg[k1 +b0 }I;A' +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) q{%`_tJ +b0 ^=0uJ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) (rmL* +b0 NOOLi +b0 4QQWB +b0 PYs8w +sFull64\x20(0) 8P9[/ +0g*m[T +0<}HP} +0{'6af +00?hgv +s0 VEbXU +b0 nZ{}2 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) zMw} +b0 :)nQ; +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {@j"t +b0 QR`Ib +b0 !@O&[ +b0 D+rmX +b0 M8z%l +sPhantomConst(\"0..8\") 8mli= +b0 V"R=R +sPhantomConst(\"0..8\") ho%z3 +b0 V%(mx +sPhantomConst(\"0..8\") ]z^fs +b0 |%SnM +sPhantomConst(\"0..8\") wt/*5 +b0 *zky* +sPhantomConst(\"0..=8\") PR1Hb +0oy5AD +0e>loV +0VnkZp +0A%z-x +s0 YU"8i +b0 @up]M +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ^=A:+ +b0 e~"?/ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) p)q{) +b0 vNrz +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) M5X;6 +b0 1{YN5 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) hR@}$ +b0 {\p-O +b0 B?Iu; +sFull64\x20(0) CF"Xn +0qer3/ +0&nRd& +0-X@Ff +0T>MQU +s0 o3xT8 +b0 '&`u] +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) axe9F +b0 @nvij +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) e}=p" +b0 {H8aD +b0 Oc*E_ +b0 WpJ&( +sHdlNone\x20(0) Ihtib +b0 $~k+p +00S_Yn +sHdlNone\x20(0) =.[GV +b0 TL"W@ +b0 +j.'* +0VoysQ +sFull64\x20(0) v2p/3 +sFunnelShift2x8Bit\x20(0) 4LPcH +s0 pmCPo +b0 gxzt: +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) #L'l$ +b0 h.q}< +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) mTr@" +b0 "$OJ) +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {93VO +b0 H#5g" +b0 ]AqLG +sU64\x20(0) br>{% +s0 s*S6b +b0 rIzGO +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) vIVn8 +b0 "G]bW +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) LaJ8$ +b0 N&t8( +b0 T6t8` +b0 gBdp| +b0 4n&=f +0@$`{S +sEq\x20(0) b!)ty +0!D.dd +0]WOvK +0~tXwG +0.bNhV +s0 4r!/G +b0 n0QT5 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .fGhh +b0 q_)`Q +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "pfH$ +b0 OB`3w +b0 %v}4, +b0 *?{=$ +0p+AHT +sEq\x20(0) 3eKCk +0A{zpA +074#|A +0znC]r +026myU +s0 +NcW? +b0 OTQ[C +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) DO%^] +b0 8krPb +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) K3[|I +sPowerIsaTimeBase\x20(0) _orp# +sReadL2Reg\x20(0) (RD!N +b0 .&|EK +b0 [O*PO +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +!k!/ +b0 oxIol +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Z<5`_ +b0 pVs1C +b0 (&;{I +b0 :'Ba1 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) @\,=D +b0 kwl{E +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) A{#5d +b0 ]B3q( +b0 ]y>): +sLoad\x20(0) yqT@W +b0 BJQ-k +b0 @Z]rc +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ft`K: +b0 "al1e +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) X/_Ui +b0 /%~37 +b0 qXBAS +sWidth8Bit\x20(0) %}qKh +sZeroExt\x20(0) 'Xz^e +b0 9hOd2 +b0 r7:zo +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) gDa;= +b0 %|w/X +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) y]$r3 +b0 8opUH +b0 ^xzLU +b0 V^Kh, +sWidth8Bit\x20(0) -r]rP +sZeroExt\x20(0) N7G~0 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) L'^H8 +0?N6#F +sHdlNone\x20(0) &#$?z +b0 .awP3 +b0 IG_UF +b0 ^xl +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) E%sP$ +b0 0/PIf +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) xi#"h +b0 sd_DG +b0 4jJE? +b0 tk@m4 +b0 #$jt +sFull64\x20(0) m+G8Q +0}r>E> +0g*3Zj +0I_N#f +0Uii^8 +s0 {B/Zx +b0 Cr27@ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 'nr]7 +b0 #hui_ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) qYAjS +b0 ?et?X +b0 ru{-f +b0 8Y2z> +sFull64\x20(0) 7Li:6 +0|yaAy +0p/Lg| +0d)4MS +0Y_bgr +s0 ~H_^E +b0 "Yv%^ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ysW1t +b0 I",m| +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Fj%x1 +b0 8KkCM +b0 "^:4D +b0 Emkj +sFull64\x20(0) %w@Di +0;a\yo +03#W5z +0bf^y@ +0~7@j, +s0 X/5}' +b0 irH\u +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) B$1$1 +b0 =rr~l +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) jHvdA +b0 :E$DI +b0 G|:nk +sFull64\x20(0) y'qUc +0u\EQ: +0&7vvF +0OaVR5 +0go.m) +s0 yKl"v +b0 W.W#{ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) il6D- +b0 JXWH1 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) kb=ud +b0 @/B_* +b0 BJREk +b0 c7SL{ +sHdlNone\x20(0) j45)M +b0 ?x`CL +04G@9\ +sHdlNone\x20(0) ;"I"Y +b0 Zr$u= +b0 L)t/@ +0{;)bQ +sFull64\x20(0) f3zY\ +sFunnelShift2x8Bit\x20(0) +pXf& +s0 E24R_ +b0 @+ls* +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) GdHwO +b0 -cl?W +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) >31~= +b0 -GhBo +b0 &8U|( +b0 48?;s +sU64\x20(0) /T4/p +s0 _x.-Q +b0 Sb%Ui +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) oHfyY +b0 +H=Q2 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) bR:@j +b0 {)=GO +b0 k0dqB +sU64\x20(0) 0.t|p +s0 byaSn +b0 [C/-c +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) VwF0K +b0 vxnvo +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 3wA2C +b0 _>-91 +b0 |2Tmj +b0 TZ!FZ +b0 O~C<7 +0NseSm +sEq\x20(0) ^IYwb +0FCbB' +0m=$p8 +0ouYh= +0_5IE] +s0 EC]/5 +b0 !CWHY +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) \#YrN +b0 -L,m3 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) (#L9i +b0 cLGjI +b0 B&dJX +b0 N1)y2 +0M9x)B +sEq\x20(0) |x!`T +07)SX< +07U*%Q +0Zf03/ +0C4K9Z +s0 71E3V +b0 %V|(, +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) /KB[B +b0 )qta8 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ;!8?x +sPowerIsaTimeBase\x20(0) bo~C* +sReadL2Reg\x20(0) $WN2= +b0 p!{UR +b0 bp:)O +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) /2M +b0 4qiQ< +b0 $nw8p +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `7F-8 +b0 _D +sWidth8Bit\x20(0) p`X6F +sZeroExt\x20(0) Zm~0M +b0 6pNrY +b0 y?T<= +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) mM@gp +b0 }rl73 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) [nnJ/ +b0 a"Kf' +b0 }j5Ay +b0 Our\- +sWidth8Bit\x20(0) hrvk( +sZeroExt\x20(0) qtZ>[ +b0 ^l/01 +0e6"'_ +0}7GyH +0W+;N_ +0'zl]^ +0&J(yf +0KoiLK +0@*(2U +0D61_S +b0 |B[v> +0~}\&a +04Cc=( +0lPYpL +0C3e0f +0X)T#" +02rqZ' +0J@(o; +0>Zcyv +b0 VIJO= +0\F!Wq +0eWovS +0s8B{c +08sOtj +0"AsP= +0j`Uj4 +0n1h^$ +0*WL1Q +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) N6wdn +sHdlNone\x20(0) \-QnV +b0 0#q!l +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) p3,Ug +sHdlNone\x20(0) >(vzZ +b0 c_u\s +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) T4AUI +sHdlNone\x20(0) n}C`` +b0 %]!={ +b0 }Dz;f +05fD<- +0.\@3Z +0D9q\Q +0B;[e| +0=7+DP +0Z&?d~ +0IK&!? +0jD&ce +sNone\x20(0) 27P3( +b0 4Qvfn +sHdlNone\x20(0) iOBsL +0_!L=d +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) I:cPf +sHdlNone\x20(0) r+(d7 +b0 Oa2s_ +sHdlNone\x20(0) 2~W&e +b0 fF=(o +06|~Ts +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) MfsXP +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) [jFe& +0$A_'2 sHdlNone\x20(0) u2peT 0k,__> -sHdlNone\x20(0) nkQ2N -b0 )mz0| -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) py)pL -0U0en] -sHdlNone\x20(0) 5hZ>q -b0 7h!LU -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %}2/& -0f)A)g -sHdlNone\x20(0) $"9>$ -b0 %/xoj -sHdlNone\x20(0) F[4T> -b0 }>"!D -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) AnjZB -b0 @uKa` -0PXS4< -0bwT%C -0x2_4& -0kr^K, -0PsAC 0,%;%9 04@,%h -0f)+I, 0/3VD} -sHdlNone\x20(0) .Nmg3 -b0 Vy&#: -sHdlNone\x20(0) DK^@) -b0 ?0KVC -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) *])G3 -b0 'B=b6 -09DHE) -0p~Wt4 -0=rD=C -0*,/\h -0`Xhwq -06VKh> -0Bll@V -0$&g|Y -sNone\x20(0) ^toP? -b0 /@\X+ -sHdlNone\x20(0) 3.,%e -0*9)8B -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) dZ[Ro -sHdlNone\x20(0) x7"Ev -b0 Ew'zp -b0 eb|by -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ?Ga;8 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ,vtMa +sHdlNone\x20(0) o8ZI) +b0 ;`X#H +b0 NN +b0 d8VUs +b0 4Dr*q +0Uh%UW +08qJbm +0lp$|[ +0Px.W= +0^]X)@ +0'1_Hm +0ETh'v +0H&vw, +sNone\x20(0) 9#j&b +b0 ;vO:- +sHdlNone\x20(0) 9;(SZ +0V!?T? +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 5dX"y +sHdlNone\x20(0) ,{,'% +b0 8L0<[ +0UDCIa +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) X^?=7 sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 3/uiF b0 P^N]# b0 gJgjO @@ -112766,32 +114591,27 @@ b0 KiR^e 0K,@m# 0?U8Bl 0Q.jw} -0Zn%.R 0Hn?_6 -sHdlNone\x20(0) 8i`qs -b0 Y*Gl1 -sHdlNone\x20(0) 693@R -b0 +9ah1 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) IiWW} -b0 9+bV; -0#SCY8 -0&34Qu -0P;pj" -0j%5e/ -0RO>n` -0O"`Uf -0JyPFN -0S$\$^ -sNone\x20(0) *k/f$ -b0 w5AkQ -sHdlNone\x20(0) ZX{]y -0#dt^6 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Gihcp -sHdlNone\x20(0) P=qz7 -b0 $$q\ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ^>LF; +sHdlNone\x20(0) >ppw= +b0 #Xr@3 +b0 cY)WH +0J%>7, +0w9woN +0\by)D +0,/mIW +0,W^`~ +0JeKZ] +06w$ik +0@a|Ho +sNone\x20(0) +,foy +b0 k]FH@ +sHdlNone\x20(0) #"Zk^ +0]aJ~L +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) NLy?U +sHdlNone\x20(0) cA5ib +b0 ]gr$W +0a83Z& +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) /N@YC sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {eU2J b0 ;L.Sl b0 9Jcz; @@ -113005,32 +114825,27 @@ b0 6TuL< 0RPoeC 0bG#hy 0,OqIs -0>o"A4 0Y-w)F -sHdlNone\x20(0) *lZU? -b0 &nj[' -sHdlNone\x20(0) 8L1x= -b0 3nvu' -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .].!h -b0 NG=Jo -0?MY#@ -00#o(q -0FH1dm -0W1t_c -0A_bbf -0>d$M: +sHdlNone\x20(0) -drPY +b0 y_z`] +b0 [`(!D +0);k/6 +0A8'qr +0"t6iY +0ROH>Q +0ja$8v +0urh}> +0Y[9#" +0b[P'b +sNone\x20(0) [>>7/ +b0 Y/h(1 +sHdlNone\x20(0) $`lWO +0CN;>8 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 7Jca` +sHdlNone\x20(0) (<6[# +b0 5Cg\y +0;CN;* +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 6M@VT sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) lmh)% b0 Q=%\E b0 EwHht @@ -113244,32 +115059,27 @@ b0 g0E -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %DxHj -b0 V<'~_ -0Phxs~ -0eK,#2 -0j@1|b -0XfOJK -0/{si) -0\&-|i -0s9RFs -0CCOyj -sNone\x20(0) Q#$MV -b0 bDsv3 -sHdlNone\x20(0) !8c"l -09!or. -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) -kcL2 -sHdlNone\x20(0) Q\Z6? -b0 :AA9^ -b0 (_|yh -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }z]`P -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `zjr^ +sHdlNone\x20(0) {d0u$ +b0 nsGlP +b0 hi)GF +0VboZ, +0kyf\> +0=vIwG +0Cx4k) +0`3K{" +0(Jx,T +0D[9s. +0e?0P" +sNone\x20(0) Ma*\7 +b0 `'P++ +sHdlNone\x20(0) wB1.d +0 -b0 =Gdu9 -b0 /Prl& -b0 ]=,I. -b0 A")OE -b0 !Cp.7 -03P=sb -sAluBranch\x20(0) ^tR^1 -sAddSub\x20(0) [(35J -s0 z9fRn -b0 Q>BJ_ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) OajAc -b0 .)i$ -b0 o!W:Q -b0 /hz1' -b0 tbK}; -sFull64\x20(0) pubkA -0t0xh7 -0]F~eo -0vlpGz -0{WJ.. -s0 }gV)k -b0 &"{BA -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ^<&Wk -b0 bc/2$ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) -0Ad?K5 -0c2DNG -0{h]WO -0E,NsS -s0 e?_zJ -b0 x54e& -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ,eQf^ -b0 sM]"f -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) inVR; -b0 W)m{: -b0 M!.x# -b0 1g/nf -sHdlNone\x20(0) ;S35F -b0 f@xLZ -0Q~YaY -sHdlNone\x20(0) Z+x][ -b0 )zFYC -b0 _p|u^ -0.s:kj -sFull64\x20(0) *x,Aa -sFunnelShift2x8Bit\x20(0) G($'f -s0 ]DMBM -b0 E?PC -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) FR*gE -b0 CPAZ( -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Rcb'R -b0 (D$.h -b0 (568` -b0 CH%YO -sU64\x20(0) !cgxo -s0 |~|!} -b0 (i7#U -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) /,$bU -b0 y\%J. -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) @1(?7 -b0 5F|'f -b0 9e@}L -sU64\x20(0) udTwd -s0 +^$mp -b0 2LL:I -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) O6oH3 -b0 8!p8k -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) l$RS+ -b0 `$a[L -b0 ??hpN -b0 ct9l, -b0 =VIv9 -0Ys0-a -sEq\x20(0) |$p24 -0"@kGG -0}_6&3 -0]sw&Q -0q`Z`T -s0 Kz)L% -b0 ^U@Hk -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) t:J!G -b0 tf!y~ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) EJgZ% -b0 D8E3y -b0 -Aa%$ -b0 Q:PuW -0i{"lg -sEq\x20(0) P"T.O -0T*+|z -0NxK=0 -04?{tJ -0fy6!3 -s0 +6|0* -b0 +tJN_ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) lz++, -b0 Y/dMN -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 5+(*m -sPowerIsaTimeBase\x20(0) +*5ql -sReadL2Reg\x20(0) QZ[[< -b0 MK&N -b0 %n==B -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) JSp>X -b0 VvWw: -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ,1df' -b0 k`u~A -b0 #$m\f -b0 K>t)> -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) KtZU` -b0 cV'[} -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ~8vW? -b0 5$[Xg -b0 !1B(F -sLoad\x20(0) ?D3u= -b0 #PIXg -b0 Tvc%' -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) #>G7$ -b0 XS-*@ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !ml{K -b0 7a*6C -b0 ?9G"z -sWidth8Bit\x20(0) \e_5< -sZeroExt\x20(0) .Vh[% -b0 @:7~L -b0 mpJW; -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) :(.Ae -b0 c\(hi -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 10+4[ -b0 v$oyL -b0 RQDmA -b0 ,t+G4 -sWidth8Bit\x20(0) >HjT& -sZeroExt\x20(0) @Q3Vf -b0 s8Gem -0IV%{K -0F}&A& -0e|W -08rEU{ -b0 5O$@= -0U6&I} -0P{z~$ -0>A9tT -03~6GP -0ag;T< -01w^&R -06`r4z -09C +0uf7[L +s0 Dn1\{ +b0 3d\u4 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) '~8%y +b0 F/5[; +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) EZId& +b0 g_PPN +b0 eKS-Z +b0 `,uj" +sFull64\x20(0) *TN*V +0\"rJJ +0@j{GW +00-CB" +0#3yAy +s0 c7hdj +b0 yot\: +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) lA|@. +b0 s:}ri +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) #Bz/? +b0 95nzG +b0 jV,?h +b0 UfS!X +b0 BM%*) +sPhantomConst(\"0..8\") zP+F> +b0 Ps:}@ +sPhantomConst(\"0..8\") }e6EV +b0 1wVLv +sPhantomConst(\"0..8\") !>CSl +b0 LKAD] +sPhantomConst(\"0..8\") iQ07` +b0 "MB1D +sPhantomConst(\"0..=8\") zU1:x +03X)y^ +0G/ +b0 +fttv +sFull64\x20(0) i|21& +0*0P*m +0&x.e2 +0R\{hG +0.Q,+* +s0 >eym| +b0 ^WW@= +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) AUM_| +b0 F2T,# +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) QOFKL +b0 ~g4$S +b0 xr]Nk +b0 L%ctK +sHdlNone\x20(0) oIT.0 +b0 lB~:5 +0+B5b) +sHdlNone\x20(0) n3H#F +b0 +sFull64\x20(0) }G)Sg +sFunnelShift2x8Bit\x20(0) ^Vk|< +s0 6\yA0 +b0 C>+,& +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) o|zS2 +b0 k$G01 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) (/9E6 +b0 ]_'&* +b0 9]dyk +b0 Vut&j +sU64\x20(0) IkdRr +s0 8ez?N +b0 ;C=+Z +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 6yAm- +b0 j(|or +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) bu5\t +b0 hY;?S +b0 @)Nkq +sU64\x20(0) c[p|u +s0 +w;}) +b0 *Ri +b0 E9^9J +b0 x3p:L +b0 )ZfuF +0kO7vP +sEq\x20(0) v"b4$ +0tfk52 +0UqlWF +05z2>Q +0LmrA' +s0 avQ}; +b0 SLwRF +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) G/f'I +b0 g.qP +06@+$e +0`rlBE +0iwpB- +s0 t:dO0 +b0 )()VL +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ~nbL( +b0 V39rE +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) cR@%" +sPowerIsaTimeBase\x20(0) &.(F^ +sReadL2Reg\x20(0) [.HiI +b0 F6CUV +b0 buQm? +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) )]ra{ +b0 c3Pz +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ipU-n +b0 ;4?h^ +b0 =~3eG +b0 lLDRV +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `3Nx7 +b0 =K_m# +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Fpm6` +b0 DW;BZ +b0 iG>:b +sLoad\x20(0) {fBT, +b0 AMbg: +b0 7(J,^ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 2w^0~ +b0 Z|v*^ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) FPj-r +b0 0?x/& +b0 8+!~W +sWidth8Bit\x20(0) ny&+j +sZeroExt\x20(0) ,,FiS +b0 I7C._ +b0 kiFO, +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 8Sm\+ +b0 )OPb/ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 9rqy +b0 6kDhN +b0 ha>\v +b0 >L;;6 +sWidth8Bit\x20(0) _eGK7 +sZeroExt\x20(0) ZE3L7 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !U9:# +0>YMCs +sHdlNone\x20(0) 26y~o +b0 K#=r~ +b0 InY9- +b0 zM@z. +b0 LBirM +b0 WzI`m +0irxdd +sAluBranch\x20(0) Lpmzp +sAddSub\x20(0) c@wGa +s0 l+:E= +b0 I66X_ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ,2y\3 +b0 zps{; +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) A6xme +b0 1\Sjd +b0 KXwX) +b0 :wBWg +b0 o-vN; +sFull64\x20(0) !nDf? +0Qs7F# +0"fV$z +0]5A'N +0Ln5TQ +s0 Mz4f< +b0 G%avb +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) A*M>- +b0 K9Lmx +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) /OOMd +b0 >sni~ +b0 \cw}; +b0 <]W'p +sFull64\x20(0) vns.. +0gRD=8 +0hs}j( +0V-6W@ +0\1X.v +s0 ..;w9 +b0 w~3u6 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) r}VGt +b0 &)-g( +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) c4"b +b0 ZHj6B +b0 "I&YM +b0 (wLOq +b0 4X{o$ +sPhantomConst(\"0..8\") 2/;$" +b0 e&(M# +sPhantomConst(\"0..8\") ?V&w3 +b0 Z>{<] +sPhantomConst(\"0..8\") TQZw+ +b0 c`s8f +sPhantomConst(\"0..8\") sGXDl +b0 hHRr> +sPhantomConst(\"0..=8\") :w/'m +0dh-9$ +0WzFza +0vAx6 +06Y1ny +s0 D)/kH +b0 DVtq; +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) tUP|G +b0 ,g~P% +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) oa!I> +b0 gO\ck +b0 b9G4$ +b0 P%b*; +sFull64\x20(0) zR#F +0W_70q +0s57# +0{*[ZE +0-!eT- +s0 i'!OW +b0 +0imFF5 +s0 Vro1Z +b0 a]y8_ +0(qrY; +sHdlNone\x20(0) dCl9H +b0 >(jJ% +b0 )[W/l +0[8i;s +sFull64\x20(0) 9^!bp +sFunnelShift2x8Bit\x20(0) ,C$FO +s0 p_fYF +b0 O;"di +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ]-!tb +b0 I)TA\ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ;?(]= +b0 Ig:rJ +b0 fO2D; +b0 yvxDt +sU64\x20(0) c2:Uq +s0 76rDC +b0 -!h[o +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) rlQ~{ +b0 ,=]me +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) d!}y\ +b0 w<#Nt +b0 4N#b> +sU64\x20(0) gU7~K +s0 T6Zey +b0 foxD +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "pP'1 +b0 $,B@r +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) X=rpu +b0 fMK]j +b0 -jRL= +b0 c+~nn +b0 m'a-Z +0=)SYx +sEq\x20(0) s.BHF +0f=Nx3 +0PR"*( +0'E0c) +0cf)C3 +s0 Z;8w> +b0 {VoG= +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Z0Q/> +b0 CK9NK +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) y_|3E +b0 7%nUf +b0 6b4#" +b0 oVK!V +00;jX) +sEq\x20(0) ;IK53 +0Xz+j- +0^i63m +0N8ymd +0e!u +b0 u*zBi +b0 C|eJ +b0 R}HI% +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) I'^}, +b0 Nr!]K +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) J,w{* +b0 uNu^> +b0 !o84R +sLoad\x20(0) Wyy6% +b0 /Ub8; +b0 f$6dC +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) R!p4l +b0 ftM6e +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) kT_7* +b0 4tP}| +b0 Fz#Yt +sWidth8Bit\x20(0) iQ2/T +sZeroExt\x20(0) sQijI +b0 uIBF' +b0 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .5+$K -0BtLzB -sHdlNone\x20(0) =AE%r -b0 /G/El -sHdlNone\x20(0) |Sy<) -b0 D.S&M -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) j:R!2 -b0 006DP -0B')v" -0cWgV| -0t~kbW -0=LJ\> -0`%B#e -0gR=]a -06o/bl -0W:JoW -sNone\x20(0) hNa.b -b0 k>x=G -sHdlNone\x20(0) n&4Z$ -0@o}tL -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 3t}dG -sHdlNone\x20(0) 7.I$5 -b0 j]NEJ -b0 G2F;n -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ]Un9z -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) fBaJC -0r?$@B sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ";FVr b0 E[Fv@ b0 oKzpD @@ -113979,32 +115967,27 @@ b0 oy`L5 0t}1{} 0Ht?~s 0wYlVP -0|V/N- 0r5B<) -sHdlNone\x20(0) .PDqI -b0 QeL5a -sHdlNone\x20(0) .Wv(g -b0 f3FnL -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) BDckD -b0 . -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) s&V0I -sHdlNone\x20(0) ImXZn -b0 IIeI* -b0 *]"Rc -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 0$/s6 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) S/U32 +sHdlNone\x20(0) rO&kb +b0 Os~O@ +b0 >O:GV +0o{Qqq +0dYJH1 +0B:(/s +0^@{4f +0=3[m? +0ab@bQ +0j0i>2 +00Z69G +sNone\x20(0) 7UX>\ +b0 >SZg2 +sHdlNone\x20(0) nWBO[ +0.Hh}T +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) G$Z_y +sHdlNone\x20(0) VFR}l +b0 ;LdQx +0&e%@k +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Z019_ sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 7fIl# b0 S;kzO b0 Ek|_E @@ -114218,32 +116201,27 @@ b0 }#'0V 0Afi^v 0)?KvW 0+R0.[ -07Fn4F 0oRdKT -sHdlNone\x20(0) q+].+ -b0 (C/\< -sHdlNone\x20(0) OKq6= -b0 GJy$~ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 7x2l+ -b0 UYRNz -0hT"ir -0zF)/m -0p%f,[ -0(IM\L -0{[af+ -0lI]oV -0Ky{db -0,d>|w -sNone\x20(0) k(R!% -b0 H(sC( -sHdlNone\x20(0) sC#JY -0)_o8u -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) fY2os -sHdlNone\x20(0) QR`Un -b0 65vqJ -b0 /z]H) -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) h(9X1 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 96(|- +sHdlNone\x20(0) NVYSS +b0 [}=X* +b0 jwZMO +0p8MtX +07U)J- +0QgU|= +05?i{= +0oah)Q +0'{Se1 +0[f`CN +0N1y(/ +sNone\x20(0) z|mg> +b0 /xG%> +sHdlNone\x20(0) &y{E= +0LzGU( +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ~lx|2 +sHdlNone\x20(0) wwwZ: +b0 2="a. +0t/JD+ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) X^C3& sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) []lIi b0 o7fWf b0 R.ep| @@ -114457,32 +116435,27 @@ b0 23iqT 0(:)&9 0_T%5A 0'kxi& -0T_flR 0REE7% -sHdlNone\x20(0) b|].9 -b0 /-PcX -sHdlNone\x20(0) ZPA36 -b0 eqLlI -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) c-T@D -b0 A^F,X -0pfj|L -0p"h[C -08~]W_ -0mdu5H -0>mFyI -0}7Nh6 -0C>xxM -0/[eSV -sNone\x20(0) ]N&]z -b0 ttgbC -sHdlNone\x20(0) T[,Y. -0/@[/O -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) A=n|y -sHdlNone\x20(0) ?]_Y* -b0 Xl#W" -b0 AOQVx -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `I@+M -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {<0M4 +sHdlNone\x20(0) $/wE: +b0 I+-N_ +b0 =]Z~E +0E`f:d +0:[_g^ +0GlUn) +0#=/cO +0`B$Os +0{rgO^ +0a&fD@ +0b))z8 +sNone\x20(0) SFh>Z +b0 p"e\H +sHdlNone\x20(0) S5<1| +08$V1# +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) =`gS{ +sHdlNone\x20(0) i,9Y3 +b0 Fu|LJ +0O{I-_ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) &?KA1 sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) j=K24 b0 !1C32 b0 QoXq6 @@ -114696,32 +116669,27 @@ b0 =?4^? 0)WkGD 0ZN!K/ 0GWcWj -0}B];1 0LU' -0D=.t( -0lN<8& -0XY5KK -0)m5vX -0}UZJ: -0au9vm -sNone\x20(0) $1Sp9 -b0 8/;M( -sHdlNone\x20(0) (OA*Q -0T`E<^ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ;hJ1a -sHdlNone\x20(0) ,B_Uv -b0 #f0r# -b0 +8`b9 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) -n0W7 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) wSYU. +sHdlNone\x20(0) |Mn;7 +b0 c@@0? +b0 Bn_2> +04v}<` +0]~~N9 +0Wr0HZ +06(Bzr +0\o;j% +0y!C_{n -0qHXO0 -0l{efd -0*J&:t -sNone\x20(0) D$+,r -b0 0yHUo -sHdlNone\x20(0) CJ+NB -0-NG__ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) |NMx2 -sHdlNone\x20(0) <8:5s -b0 >S?ov -b0 "b+RB -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {A?v> -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) s#:!H +sHdlNone\x20(0) 6ybnL +b0 en*Z# +b0 FiOeQ +0}nrf{ +0Q(;H[ +0sx|N] +0XpCP" +0`,lz] +0yWxjb +0|HACB +0J6jk/ +sNone\x20(0) iioOD +b0 .6=o} +sHdlNone\x20(0) o'az~ +0+Gvn@ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ?iCY6 +sHdlNone\x20(0) vKeg. +b0 >A;!w +0vnM7( +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) =&s!\ sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `dgJr b0 ^Trnd b0 6ttQP @@ -115174,32 +117137,27 @@ b0 0mfKr 0h,fT@ 0"F<6b 0Ady*N -0>+JCr 0'Ac6? -sHdlNone\x20(0) 'a;-p -b0 IT%I` -sHdlNone\x20(0) wAG^H -b0 M=UUD -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) -S,ic -b0 ZSV#U -0na*4} -0)AO?? -0MjeK9 -0YNV1j -03xedS -0bS?l1 -0!+,xv -09]\T= -sNone\x20(0) eelDM -b0 wjB/J -sHdlNone\x20(0) ]vzLn -0(ghn" -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Tmy." -sHdlNone\x20(0) F&Kx? -b0 :cT^( -b0 65wAe -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Tb-!z -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) d@#:' +sHdlNone\x20(0) 7_yXG +b0 >K8k1 +b0 ]Ba4? +0j/W^~ +0w?(5B +0qT\9D +0~)haX +0k}@ix +0E#u@x +0P/x^c +0NIIUq +sNone\x20(0) ]G9L) +b0 8glNW +sHdlNone\x20(0) [Tm3t +0|MbDc +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) RXPd> +sHdlNone\x20(0) u}w#m +b0 @|4ci +0-|?5C +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) sDg<$ sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) W)z]( b0 .0R`S b0 5%6Po @@ -115413,32 +117371,27 @@ b0 ;w;pP 0h)*Z, 0oKps3 0NPf%' -0`?+*g 0;dXCb -sHdlNone\x20(0) 8CYXN -b0 +EPh` -sHdlNone\x20(0) lTy8- -b0 V'Fpz -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) <}3_) -b0 tdLl) -0Y\2%h -00'0Wt -0"mS~- -0R-Ar| -0^4&A: -0e.QV& -0v7h]H -0&Gt6R -sNone\x20(0) J=)(U -b0 !Ib^i -sHdlNone\x20(0) ![5W8 -02."|b -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) )'Pg# -sHdlNone\x20(0) *x~?8 -b0 H>#'0 -b0 O +0QHW1s +06A@'} +0+WUpk +0A](2| +06TRJi +0^4br( +0bGZ?} +0E14wU +sNone\x20(0) j$Zn~ +b0 SF3dn +sHdlNone\x20(0) XV"ac +0ja:68 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) oWL7d +sHdlNone\x20(0) u#o5+ +b0 u4C+t +0"b2h +b0 vKm}n +b0 u2V-e +0Wvs't +0a"sml +0_Y"E6 +02}d+W +038>)7 +0t}bP +05RC<3 +0s0UDm +sNone\x20(0) ue5$A +b0 @(42T +sHdlNone\x20(0) wBB/n +0SHm,c +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }3|NC +sHdlNone\x20(0) /D4EE +b0 !Gam< +0w<(-f +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ]=rfA sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) E~hax b0 :ni]o sPhantomConst(\"0..=8\") \8'R- sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) jVV,n -b0 E|F~\ -b0 g.&#[ -b0 eqz@h -0vjjSN -sAluBranch\x20(0) @k8nt -sAddSub\x20(0) i!S`, -s0 6Ddby -b0 dk$96 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) _vUy+ -b0 >=YqK -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) d6?]D -b0 gRKlk -b0 @{`"z -b0 p#4w_ -b0 ;!osD -sFull64\x20(0) qRHgN -0VmY&Q -0$sR$y -0s&Px1 -0P)U%M -s0 X}u0$ -b0 !_\Jt -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) R@@k| -b0 ScZ4T -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) #5I(Z -b0 WX6$} -b0 [cy(, -b0 Wyu%d -sFull64\x20(0) u-0IS -0A:e$_ -01N,Z{ -0;.K4l -0$vW5P -s0 ~QA!W -b0 Hl)sN -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ;%5)w -b0 s|3GU -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) -smtw -b0 %8Q)T -b0 qB)p{ -b0 BbO+g -b0 @i3K@ -sPhantomConst(\"0..8\") 3=58l -b0 NOUO# -sPhantomConst(\"0..8\") ,;-wb -b0 7!*sK -sPhantomConst(\"0..8\") w-{#v -b0 `[Z&^ -sPhantomConst(\"0..8\") @@}5' -b0 0%JZB -sPhantomConst(\"0..=8\") Ig[j= -0+^O)K -0$%?_( -0^A3rV -0dW)W" -s0 =\l1+ -b0 k;}"q -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) uj*(j -b0 PbPI0 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) NsQzC -b0 .(3AL -b0 v74s -0UD@{6 -0Pr] -0HRvVC -sHdlNone\x20(0) Gkn]I -b0 `cRrJ -b0 O'_SD -0}J?R -sEq\x20(0) xH^!T -0)Tc1M -0X[;ke -0R'S?t -0vAZGH -s0 0;WMW -b0 06LtC -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) EAn'r -b0 qd6#n -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) =I9w< -sPowerIsaTimeBase\x20(0) mdAy: -sReadL2Reg\x20(0) f_sp? -b0 X&_8a -b0 >[?*l -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) _CLe4 -b0 i3{q( -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 7T$MG -b0 PANmh -b0 =Z^3V -b0 r!>-| -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) =:!l+ -b0 >1Ld\ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ]?pDv -b0 bzakF -b0 jS*v& -sLoad\x20(0) M|NN. -b0 hOP54 -b0 -H/ +s0 M+VD> +b0 #'>Kb +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Rq%X) +b0 7KC4r +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) fl4 +b0 B6j+a +b0 0&K$9 +b0 V;j=| +sFull64\x20(0) :4FXk +0'`GI# +0e+w}) +0wy?VK +0B*HGB +s0 K5<4C +b0 &{w6( +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) #$HxQ +b0 ;CO,F +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) *?Dxc +b0 h**~) +b0 k,g+Z +b0 3v-QX +b0 ]RXZa +sPhantomConst(\"0..8\") ]@3fB +b0 F:D-Z +sPhantomConst(\"0..8\") M$V%O +b0 ;/<%D +sPhantomConst(\"0..8\") $3jcN +b0 k5?pH +sPhantomConst(\"0..8\") cJUM6 +b0 $K6j< +sPhantomConst(\"0..=8\") hHeI_ +0@*~C+ +0GE*|/ +0EA_M2 +0?{MM" +s0 Rt#'o +b0 @tQ0| +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) pZ~0" +b0 ZmqS_ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) gSOPR +b0 C=F}S +b0 pb#D. +b0 :9`Mi +sFull64\x20(0) L]'dG +0y<`|` +0q`Kc1 +0\/|'+ +0qypN> +s0 V1B=v +b0 ~C9?J +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) *fz9C +b0 oYP]b +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ~5>pa +b0 -W14c +b0 J~Qrj +sFull64\x20(0) tHst^ +0ls2}< +0\t^<) +0)4QA@ +0Ig"j( +s0 ::6J} +b0 %6B9R_: +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Nc"$E +b0 ^py|E +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) /KVBE +b0 ~La}- +b0 o2/7} +b0 m9fl. +0}nudm +sEq\x20(0) ~K@F3 +0Euph" +0mX_DB +0kn%<~ +0v"cY_ +s0 Ktsg1 +b0 \l\CN +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) PO)G; +b0 h@X~z +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) woV~4 +sPowerIsaTimeBase\x20(0) >`u|? +sReadL2Reg\x20(0) KWF^i +b0 D/9k6 +b0 ^FEx_ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) a7O?: +b0 5Ij8& +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) f&k-r +b0 ln-L2 +b0 mSbG% +b0 /I;}9 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) xWB!O +b0 u_^j` +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ff#;F +b0 mVr!x +b0 q"l'E +sLoad\x20(0) 5R,d^ +b0 T|7)^ +b0 %l~FW +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 0:QzP +b0 Ah".5 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 99Itk +b0 56{qw +b0 E,~7$ +sWidth8Bit\x20(0) Aq>CQ +sZeroExt\x20(0) )3;6* +b0 6oeD. +b0 P2sr9 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 1AkAN +b0 $TU|I +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 4`o!v +b0 K#he3 +b0 UF=-n +b0 1'2]8 +sWidth8Bit\x20(0) G*c=t +sZeroExt\x20(0) f4ld2 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) C(=[x +0c7WAd +sHdlNone\x20(0) 4Cq); +b0 einTN +b0 <'~E5 +b0 Cj$s$ +b0 [ZgUa +b0 O4-+K +0bFngG +sAluBranch\x20(0) dz,g/ +sAddSub\x20(0) pR)p +s0 GQ=1V +b0 ER)|f +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) h_1@, +b0 g*%59 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) sOe#[ +b0 b{U;y +b0 ^O@=^ +b0 qLRQT +b0 \|NAG +sFull64\x20(0) pn]_v +0Zzn2C +0v2`^l +0fWd2. +0<0/C| +s0 %[fZC +b0 p#1r2 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) #C=.: +b0 (s$ue +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {?#Q_ +b0 MDVIh +b0 fLZ +sFull64\x20(0) p&'n8 +0LALMA +0o5T'D +0[+dgb +0,Qrp$ +s0 Tnqf. +b0 ,h0hu +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .+)5` +b0 Lr*l= +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) V*D2b +b0 hY35; +b0 u2H{= +b0 cxAkf +sHdlNone\x20(0) )o`H0 +b0 9f{bJ +0o)z}# +sHdlNone\x20(0) *1yp' +b0 ]"rac +b0 `BA?# +0cd`x\ +sFull64\x20(0) 5JTvd +sFunnelShift2x8Bit\x20(0) CM3@? +s0 `TCIA +b0 "\AiF +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 1j+?T +b0 ua-5? +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +b0 ShDYq +sU64\x20(0) XXWeF +s0 }0xm| +b0 <*jWF +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) UWya +0RgOj: +0uDx], +0,rIuT +0tZGUS +s0 SA@"c +b0 =hUet +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ,$KA6 +b0 1pY.6 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) @{u~> +b0 C(!B{ +b0 LvZS7 +b0 >$ZPq +0wFhav +sEq\x20(0) Gt@z8 +0|CPb9 +01lf5X +0w&]h5 +0dqPKp +s0 9U\W +b0 B'C%C +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) lsLru +b0 hWPEo +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "(SbU +sPowerIsaTimeBase\x20(0) Y`~E( +sReadL2Reg\x20(0) B)[[# +b0 ZrSF- +b0 /D}!O +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) > +0y"N0C +0b}.w) +0~M"i/ +0HAu2: +0y\aF# +0'mlg) +b0 K0lMp +0pO_Ci +0EQUq] +0)YVKF +0H%\K# +08S:u -sHdlNone\x20(0) vU+/Z -b0 %oL}m -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) rK^)_ -0?V|^< -sHdlNone\x20(0) GtNa# -b0 gkxN' -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !b(C\ -0*Sc*] -sHdlNone\x20(0) RirX_ -b0 {tauw -sHdlNone\x20(0) _<_;A -b0 L"|L~ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ?yG02 -b0 Hfj> -0k"1? -0H>`4` -08*_Y. -00?a4R -0(SY}, -0jk%c/ -0r$7x: -0FAevN -sNone\x20(0) l+syH -b0 Qb9Dr -sHdlNone\x20(0) *8Mj* -0Xhoo4 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) e~/aS -sHdlNone\x20(0) a{h@4 -b0 WdR1s -b0 {6v6 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %u`$u -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ,'fLM -0a+s2L sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) p4_Ao b0 xo`bv b0 rqJ]# @@ -116148,32 +118279,27 @@ b0 'd*;H 0&O+kM 0ZfMi< 0?s-9b -0c0) -0\@<%W -0u+0]T -0#P;5" -0'i%}( -0EWn-Z -0;/u=L -0%yoA/ -0?__0R -sNone\x20(0) pHm=( -b0 ]mu~l -sHdlNone\x20(0) ]?v~C -0~v5h? -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) FNka| -sHdlNone\x20(0) dr@L5 -b0 (U-2G -b0 @R:rF -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Gmh86 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) e~\c9 +sHdlNone\x20(0) C=d\= +b0 _((Yx +b0 ??'d2 +0bfa1Z +05AY2A +0suoPI +0emc^4 +0RA2ef +0>[/)V +0XKCaY +0exMcc +sNone\x20(0) ^V[\v +b0 efAjP +sHdlNone\x20(0) j84bV +0S_g\) +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) fo/?& +sHdlNone\x20(0) k3L+l +b0 c+?Lt +08s6I -09;GDM -0ewRKp -0$t(3P -0_HqS2 -0^ZmXH -0r%?}> -0u;%es -09]!N: -sNone\x20(0) Bld$D -b0 =ThuN -sHdlNone\x20(0) yb+jA -0!|H"l -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 5Ycr( -sHdlNone\x20(0) 1$`^M -b0 >?Yf> -b0 O3<}k -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) bH4`m -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) c}tPF +sHdlNone\x20(0) }6s$j +b0 .vwK7 +b0 0X/?A +0+\zI7 +0bj{JV +0TqB`x +0P2n.^ +0i(J4/ +0MpR_O +0#u!w/ +0Y'f+Y +sNone\x20(0) j!!Be +b0 |%)6\ +sHdlNone\x20(0) 4\7%: +0[A&E# +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) K*/pa +sHdlNone\x20(0) VGX-# +b0 @6e$t +0_Q8[B +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) OuTGf sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "}hr5 b0 %P5D( b0 g7uY$ @@ -116865,32 +118981,27 @@ b0 8?\!j 0P\uSz 0nPzZk 0]^MH9 -0,]@P& 0IM`R| -sHdlNone\x20(0) myMt7 -b0 GTu3] -b0 yq)CT -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) =r@nu -b0 ]xss: -0;;rP1 -0uH]LD -0tM\$H -0qt/q# -0Zm| -sHdlNone\x20(0) l8/Xj -0`Wru> -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) y:HAf -sHdlNone\x20(0) Uvv/_ -b0 :m30H -b0 J]f&" -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 9?i/S -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) pele4 +sHdlNone\x20(0) "@}z| +b0 58oC' +b0 `['lV +0+F`n8 +0Fqv;= +0jl9-M +0Jui^ 0/wt*& 07=Chk -0I=+xI 0T+$TD -sHdlNone\x20(0) y&j~m -b0 XXbw6 -sHdlNone\x20(0) gspiI -b0 YaTtf -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) C1pZ{ -b0 W^q+B -0s%wqL -0nAwcr -0eLOc] -05|ywx -0=<{4* -0ABp`k -0L~*bp -0jVzm, -sNone\x20(0) Z>jzZ -b0 ,@$_@ -sHdlNone\x20(0) X;HoB -08eZ;g -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) qmEXy -sHdlNone\x20(0) fA[J2 -b0 ~N<0T -b0 )IL7C -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) \/{wV -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) r]azE +sHdlNone\x20(0) CNyl% +b0 w!*cV +b0 .*E^m +0,]y58 +0}VH# +0z`L^p +0?!j=} +0n^_Wd +0L`}.5 +0|`[,D +0qmq4h +sNone\x20(0) (:`@w +b0 ;VcJ} +sHdlNone\x20(0) nYiHz +0hd21v +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ?gb{K +sHdlNone\x20(0) +'bOz +b0 '[^b6 +0?.]Gl +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) #Qd}8 sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ovdsN b0 3)+wc b0 q~,j4 @@ -117343,32 +119449,27 @@ b0 E-:@r 0D|nzh 0I(~\) 0wI'jm -00%XTs 0copVS -sHdlNone\x20(0) yi4xX -b0 \wzuE -sHdlNone\x20(0) fG-Kk -b0 {jpFK -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ^J@I3 -b0 zh1Nz -0_$~E9 -0`YH)g -0%8srg -0yA9uh -0\3qa? -0R%OFj -0F;du< -0"MVQo -sNone\x20(0) DSn8w -b0 V"XxT -sHdlNone\x20(0) r^M^Q -0r2G@V -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) L*sRn -sHdlNone\x20(0) M][ZA -b0 F|".( -b0 m3lRd -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "8N=U -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) IvB4< +sHdlNone\x20(0) l1)-I +b0 c8^8' +b0 22\OD +0Y*NUG +01,8jh +0'4u3n +0\A"F( +0PA[*r +09Tbm= +0+V1(t +0C$a++ +sNone\x20(0) $^y<> +b0 9z]/W +sHdlNone\x20(0) K,!<" +0A~Z6< +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) j"ud/ +sHdlNone\x20(0) C|LT7 +b0 pF;wV +0{U8:a +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) w((E_ sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) hBo-| b0 K^bRB b0 ~J0Ml @@ -117582,32 +119683,27 @@ b0 sOTxb 0PhPx? 0H,jL1 0w.#(b -0[F0%8 0E#NP4 -sHdlNone\x20(0) wBvq% -b0 T~z{2 -sHdlNone\x20(0) O?y1- -b0 uT1%o -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ]~|D~ -b0 R -b0 +7%H8 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) HZk.w -b0 umne3 -0y+'F/ -0z{n|U -0TtjQm -0u|*]H -0m4oir -0E"}&1 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) =w~57 -sHdlNone\x20(0) R5$RV -b0 v{1_> -b0 K_iT* -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 5dqC^ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) $a{Q, +sHdlNone\x20(0) a` +0>P}Ka +sNone\x20(0) ,"UD- +b0 w}p!R +sHdlNone\x20(0) Zz|#, +0FqF}v +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !UKz@ +sHdlNone\x20(0) +sj-G +b0 jI$_V +0JgO,V +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .`4!I sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) jE,R; b0 [hqJq sPhantomConst(\"0..=8\") 4@cK: sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) E#:dV -0)=\zt 0LCUP8 1U/A-E -sHdlNone\x20(0) (E.MA -b0 ,\yG+ -b0 oq`sY -b0 F8{y> -b0 tbmpF -b0 >PdI? -0h!Wpj -sAluBranch\x20(0) 3e\d+ -sAddSub\x20(0) \vCX= -s0 cOFWY -b0 }h\}N -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) j7`7Y -b0 a^`h6 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) F"'K) -b0 4Y:_v -b0 Pq5$S -b0 }IlNx -b0 %@'i$ -sFull64\x20(0) :&#s" -0Y|>`r -0vh2bN -0(\QU6 -0)cM=E -s0 =O/nH -b0 ]H_!q -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) c%d}O -b0 gX&sj -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .CVQ@ -b0 ^Tv"" -b0 _4\S; -b0 3-T&$ -sFull64\x20(0) pa{zV -0$f012 -0LrWg) -050z[l -0Qr4=W -s0 _Tzjy -b0 Z/D,B -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) wN#P0 -b0 +V*d -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) [c:\< -b0 !otF( -b0 [].:n -b0 RU}P[ -b0 p,X,H -sPhantomConst(\"0..8\") @-r8* -b0 w@+0- -sPhantomConst(\"0..8\") S4aa+ -b0 VPVY\ -sPhantomConst(\"0..8\") d$8;= -b0 N>FN$ -sPhantomConst(\"0..8\") VV3p; -b0 kpKC" -sPhantomConst(\"0..=8\") 5.@b- -0tw05^ -0`R:#) -0.44p) -0$m~Ot -s0 Z+_E_ -b0 CHg4I -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) [PbPh -b0 nt?^h -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) )NmO} -b0 QhCeJ -b0 HfXSc -b0 ^0e~n -sFull64\x20(0) OUG-z -0TgD1< -0>>.}P -0CiLrN -0oav5j -s0 Q=NI] -b0 0eR" -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !Q7bx -b0 zzJh< -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) _r/Rq -b0 Su'_; -b0 r.C#s -sFull64\x20(0) 3G,Jv -0F|~-< -09a\(J -0gSMPr -0G7}wS -s0 0_?jw -b0 w1}|0 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) lbi^H -sWidth8Bit\x20(0) m9:Wx -sZeroExt\x20(0) -uXtc -b0 4dk/1 -0V}`k5 -03!f(s -0-M73^ -0.Qcdm -0OSA'= -09jS// -00^Y3O -0L>:sy -b0 L?y;b -0Bf +b0 >3pf8 +b0 v[[V? +b0 ty2c$ +sHdlNone\x20(0) P~kp" +b0 "-W)j +0TOfK@ +sHdlNone\x20(0) }wKA5 +b0 z2;_9 +b0 AcO_k +0:R(jf +sFull64\x20(0) zW89B +sFunnelShift2x8Bit\x20(0) JTGV` +s0 xuLo; +b0 #4dBu +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) _"he) +b0 mPoN: +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .6Viq +b0 OcSb\ +b0 o?8IN +b0 <9E{j +sU64\x20(0) =!ftg +s0 6sen" +b0 {+lD# +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) FSIlx +b0 E<,{b +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ,=8Wg +b0 ApuA@ +b0 -.l$l +sU64\x20(0) HS:sG +s0 A8zPP +b0 k(0+m +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !oL|: +b0 s;{.' +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) M&R1M +b0 Bv[[X +b0 *y2X^ +b0 &H_UH +b0 )&cNK +0qZpOA +sEq\x20(0) G`lUq +0iD)tp +0t>>8K +0K~@'2 +0&4kx/ +s0 ?62Er +b0 ,n*cU +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) E22<5 +b0 {Y9_^ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) /=9DG +b0 Bh/-k +b0 {Y8/\ +b0 {+RfY +03&~fa +sEq\x20(0) LvMO~ +0}.:"| +0<3CL" +0>XbI@ +0N1imX +s0 P%&u& +b0 I_(nG +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) AVm/^ +b0 Y?Lm{ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) K|jb\ +sPowerIsaTimeBase\x20(0) `PENj +sReadL2Reg\x20(0) OZG&u +b0 '/f8j +b0 "fp!n +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) dY+YV +b0 >,I|4 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) p%&D8 +b0 98ekT +b0 t[5d\ +b0 Z'E<* +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) jw++\ +b0 H'/WC +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) TENn' +b0 {g/i< +b0 =jn7d +sLoad\x20(0) l17_z +b0 \&WH^ +b0 ^k>|b +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) j{av# +b0 p8EBF +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) mW#%@ +b0 q,A#3 +b0 <49e% +sWidth8Bit\x20(0) gzcfX +sZeroExt\x20(0) EoeT) +b0 zuOV; +b0 t@$_$ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) mZr0S +b0 XP1Wf +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) sv%cU +b0 2i>{X +b0 ~c{'k +b0 C';^3 +sWidth8Bit\x20(0) &U<*T +sZeroExt\x20(0) oXu?l +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) K(H{T +0Ch^Vn +sHdlNone\x20(0) r:u1S +b0 [h3v% +b0 Sq>rR +b0 .uI%G +b0 >k=a* +b0 a8NsS +0-NgP8 +sAluBranch\x20(0) =c{8k +sAddSub\x20(0) +0[01 +s0 E6@u) +b0 ""CvX +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 9$-}t +b0 j=olj +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) tUoaN +b0 k|9Y, +b0 ,n[ch +b0 EU]UO +b0 HU1E& +sFull64\x20(0) GvQP- +0m^=5S +0<+[l? +08pS{ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) i;Pt~ +b0 Iuo"e +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) &Ef6n +b0 v9+e\ +b0 DNBfr +b0 jDJMi +sFull64\x20(0) SzS04 +0e+\la +0GYrJN +0Y20^E +b0 B8@f# +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) P;8Gs +b0 3-gZF +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) OgGj0 +b0 m;o"H +b0 b0wW$ +b0 w;>EN +sFull64\x20(0) C.6\1 +0>c!$$ +0nw&k\ +03kMeJ +05qrLu +s0 !<%)L +b0 7}$0k +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }*k>J +b0 l})t: +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) yEfaS +b0 g~}[r +b0 ijbq) +sFull64\x20(0) D=_" +0otTOY +0}F^'+ +0OI+u: +0_u7ic +s0 sG?}= +b0 HZ?mi +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) DPYow +b0 d0u<7 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) _8qfU +b0 Hd(P. +b0 )]vo` +b0 PAO|k +sHdlNone\x20(0) M#.r- +b0 +\*TX +0]^?(w +sHdlNone\x20(0) `gF7G +b0 W{QWz +b0 f`#iz +0;;idR +sFull64\x20(0) K%80z +sFunnelShift2x8Bit\x20(0) al}H8 +s0 /:L+_ +b0 H'By] +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ]U;lZ +b0 "N/K/ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) [`4/{ +b0 i'D>T +b0 lhv#( +b0 O{%Bf +sU64\x20(0) Nf[vd +s0 *v*KJ +b0 gQeXN +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) aWlWb +b0 wQTc& +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) IY~M; +b0 him9F +b0 9R!), +sU64\x20(0) RE8%I +s0 QDG-W +b0 (j]'3 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ~)V-< +b0 ROj-i +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) li5'W +b0 t>BCz +b0 x<e?9F +0meT"o +0\$wL, +0T4:~d +s0 w(d56 +b0 Z$|h2 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) J:%5u +b0 qvP&B +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) iBd'J +b0 <8%EB +b0 DXp&g +b0 QF/jp +0SPJ"6 +sEq\x20(0) lo!FX +0.DCK& +0!qH>K +0yfk.c +0~88-a +s0 4#<19 +b0 #'Y+/ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ~OTh^ +b0 W;4S^ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) [95AI +sPowerIsaTimeBase\x20(0) h]?w" +sReadL2Reg\x20(0) z=Qmy +b0 5}jId +b0 9c7a. +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) C5U)U +b0 6Oqyq +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) zK7vT +b0 %CSMI +b0 w?Q%F +b0 ~r49< +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) :Jbe5 +b0 )f}]_ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) *)K{= +b0 8bwN_ +b0 8$!=7 +sLoad\x20(0) SdC>7 +b0 ?EDti +b0 NvtlJ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) jN0"B +b0 )@O=u +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) u&Ude +b0 zg1GD +b0 \n[TM +sWidth8Bit\x20(0) 6lP7& +sZeroExt\x20(0) u/tq' +b0 W%k0p +b0 OJwQ% +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ~1>2& +b0 "rY*{ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 'kkoI +b0 zHG_e +b0 _mo7p +b0 jY49{ +sWidth8Bit\x20(0) pHl^5 +sZeroExt\x20(0) 'g$;8 +b0 cBNJ) +0:4{\t +0e\&qJ +0L60jL +0nzH=R +0OWxe, +0"TJr# +0^4!`q +00o2)5 +b0 1262J +0MyzJi +00#YH2 +0&t%@- +0kN<0F +0*+a0A +02]yEn +0+]xzw +0cqqf7 +b0 XE;_f +08Qc9{ +03b8NE +0y#2V$ +06;!mP +0x)MhU +0b]m~\ +0pYCi# +0g6{W" +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) R55Q^ +sHdlNone\x20(0) t4,=+ +b0 ^A~6' +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) aur7p +sHdlNone\x20(0) ^@S~ +b0 R\*2y +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) V>!z5 +sHdlNone\x20(0) p0*Hh +b0 &tSqD +b0 y3_*g +0cjMD^ +0T3@^. +0on?H% +0p\GM8 +0M9@0G +0B2Fe& +0q)haA +0BB;Zd +sNone\x20(0) fkwCS +b0 f^`/o +sHdlNone\x20(0) W]9>j +0RW%I4 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) u3>;f +sHdlNone\x20(0) qs`Co +b0 ,6\L' +sHdlNone\x20(0) es#0} +b0 N#6d/ +0;0sH` +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) h)Vr7 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) L;1Q? +0\0cMO sHdlNone\x20(0) O0sJ{ 0++n\a -sHdlNone\x20(0) 5klD7 -b0 /kZ&q -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) X|=*x -0mM(5# -sHdlNone\x20(0) 6;O_q -b0 ST8:c -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) g[9^2 -0$E.h( -sHdlNone\x20(0) uqEBt -b0 Xv*qw -sHdlNone\x20(0) .G99P -b0 kC:;H -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) PhOO4 -b0 HxN>0 -0cI8gD -0UGU:L -0V[Gfv -0^9%Lb -0p7$0( -090@z\ -0Ou=Cv -0,eCQ3 -sNone\x20(0) Mu@He -b0 `ljr& -sHdlNone\x20(0) jxC!' -0aOiJ1 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) T=1g@ -sHdlNone\x20(0) n=,A> -b0 |!:#) -b0 V5XrK -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) /'T(Y -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) no!(p -0q?QFN sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) *-T -b0 _%3am -b0 C{lRu -b0 w^K^< -b0 RREw> -sFull64\x20(0) @'B8} -0FB(X[ -0b0y^g -0b}3oU -0z\/^/ -s0 <+}a] -b0 T}.0u -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) zz0+" -b0 9}gFJ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) XBk`C -b0 Obk{_ -b0 Wi1C- -b0 +ZOPv -sFull64\x20(0) (."#m -00":g{ -0k[1$: -0C1pp) -0\y7:R -s0 U4{k% -b0 )*,68 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ox)Tg -b0 z/po/ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) OF#r? -b0 P!Zvk -b0 e'pdD -b0 CTTKA -b0 85~PN -sPhantomConst(\"0..8\") F{Wq' -b0 $Y-|y -sPhantomConst(\"0..8\") x:M\o -b0 E0{yK -sPhantomConst(\"0..8\") YnPvd -b0 euod+ -sPhantomConst(\"0..8\") C2Ep% -b0 >AQ=C -sPhantomConst(\"0..=8\") 3+XR? -0mF%o( -0o2@AW -0xJ(?z -0clTP7 -s0 EV4*U -b0 KZ#,G -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) e{h,D -b0 9w{?I -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Oi+z( -b0 *t"v& -b0 #4i>a -b0 n5OOB -sFull64\x20(0) v90_U -0=@FSm -0E;ts> -0@A;VU -0%F($] -s0 #Rarh -b0 nSbs( -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) mUDU -b0 = -s0 =iIM. -b0 `:Q4[ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ?tE)R -b0 =u/?~ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) yY't) -b0 JL/U@ -b0 X#?as -b0 }?V>G -sU64\x20(0) D(,+5 -s0 ocW&; -b0 i)j,u -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !z'[" -b0 4/FF; -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) q(33i -b0 ;%3ls -b0 d(fOb -sU64\x20(0) u&mn+ -s0 HPH:; -b0 [^<=f -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) x}QiX -b0 iF[|# -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "j]I| -b0 bwtPq -b0 Ds(d[ -b0 rkIri -b0 "$(5' -0%y?}# -sEq\x20(0) 7>;a> -0uYku& -0eLb>R -0aX{L4 -0@*`h5 -s0 CXM0[ -b0 8H,b^ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) \x_en -b0 Dh\S< -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) I{#'3 -b0 E05bd -b0 Rwf'g -b0 'a@$$ -0/Y+Bt -sEq\x20(0) @v6+< -0k"()r -0eTf+u -00QL\$ -0/]t'R -s0 i^O4W -b0 /-4uJ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Qyk3i -b0 [m~m5 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) cFiF, -sPowerIsaTimeBase\x20(0) =//FY -sReadL2Reg\x20(0) U8r6t -b0 u!tsM -b0 N~Hjb -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) $WY8B -b0 1(pD0 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ^$0tM -b0 ?p\qW -b0 D~Lim -b0 Y(1Uh -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 5fYhJ -b0 %kpbI -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) dGQM1 -b0 3XA^F -b0 *2{;& -sLoad\x20(0) (kI4~ -b0 |m#Y^ -b0 .v7R: -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) JL[.x -b0 )(Fz -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {T%J- -b0 qA%>y -b0 ]wG*] -sWidth8Bit\x20(0) xULRt -sZeroExt\x20(0) k$~'s -b0 nBI\l -b0 zcdML -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) rLKx^ -b0 nkop4 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) D|-Z/ -b0 5>Xy( -b0 h9UPu -b0 -N<(2 -sWidth8Bit\x20(0) zT+wR -sZeroExt\x20(0) pdKd] -b0 rh780 -0]Am#V -0":TOC -0|rWH- -0!)OcL -0$GRmZ -0F[7DA -0-S@F: -07^PP5 -b0 mLmP2 -0_#IHd -0r{:jy -0@I]CP -0{s(Hv -0rv9F` -0@#|GH -0,}xw2 -0}0{PX -b0 K3N+2 -0tv4(z -08?79V -0iMs2b -0[7.Z] -0}ID78 -0/Q,ts -0K6g5z -07|+&| +sLoad\x20(0) ^b-Z* +b0 (y?lM +b0 f0Q(] +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `VhBs +b0 sdoWn +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) GM]j' +b0 HLps$ +b0 Ynf=K +sWidth8Bit\x20(0) 18y~. +sZeroExt\x20(0) VI__l +b0 Ofs0+ +b0 ss +0("IqO +0*CWwe +0DI}m? +b0 bb}IP +0)1IYS +0@|hHQ +0SFxf[ +0A_V' +0sytE|kY2 -sHdlNone\x20(0) qd[}< -b0 Mb.3T -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `A=_I -b0 3dn=z -0z:\Cj -0Uid!y -0oPf"( -0b6'jY -0XR'zQ -0Z;2o^ -0M{9~E -0-={nS -sNone\x20(0) 0h244 -b0 (GW4h -sHdlNone\x20(0) h|j`/ -0r'ux2 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) tZc/_ -sHdlNone\x20(0) TN"E8 -b0 PJIQa -b0 ;[yvU -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {:jI% -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) )P7Mm +0YYF98 sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) NBZkO b0 ^Z&{g b0 6Lu+O @@ -118350,238 +120454,68 @@ b0 qD!Qh b0 U9G}* b0 Ubq}? 0aUmW$ -sAluBranch\x20(0) %$9%^ -sAddSub\x20(0) A{,+V -s0 i?uHN -b0 o( -sFull64\x20(0) z%sV7 -0`+jX& -0@]l]/ -0EVCec -0~De2t -s0 u6`kn -b0 Vc&A5 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) h]"[. -b0 Wu;TP -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Dia"| -b0 .kO56 -b0 s'2l< -b0 m!KZ8 -sFull64\x20(0) .;KlJ -0')*"Z -0@NiV( -0'@#o\ -06B -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) CDEXr -b0 :}4OL -b0 9r7Ou -b0 -WR*D -b0 ByUq4 -sPhantomConst(\"0..8\") uTAiw -b0 EN,7f -sPhantomConst(\"0..8\") >\/=\ -b0 0V,+V -sPhantomConst(\"0..8\") %EC3f -b0 ab"-" -sPhantomConst(\"0..8\") g;J2> -b0 yi?C: -sPhantomConst(\"0..=8\") AE5Vf -0m=}jr -b0 cCS.2 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) S}^3y -b0 '7>3R -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) kR3qS -b0 e-eKR -b0 s%@:[ -b0 \@;15 -sU64\x20(0) \[(+6 -s0 ?knX4 -b0 .%gjF -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) uI+Il< -b0 k:Yd, -b0 S7[D, -b0 XPdQ. -b0 J3m4+ -0Cifmh -sEq\x20(0) cj?'U -0'al|} -0UZ8Ii -0w?>\. -0_a@W{ -s0 _5st^ -b0 P]47* -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) bOo75 -b0 WLfQu -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {0~ms -b0 wr{PT -b0 di()$ -b0 LK^}7 -0&P'R1 -sEq\x20(0) Mi(/7 -0"4T`t -0d/_U] -0Sc,pv -0Fk%(T -s0 I-!VD -b0 *{c&% -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) yKVdV -b0 BL@g+ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .{^Xm -sPowerIsaTimeBase\x20(0) ZM+{> -sReadL2Reg\x20(0) n7v}$ -b0 W-;^8 -b0 (Zjt| -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) f(}xt -b0 J_Iw: -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }cU7? -b0 sy`Gi -b0 dt]#D -b0 fu<_y -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 29|Z) -b0 TF"SY -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {tMye -b0 JLt{P -b0 mgSK1 -sLoad\x20(0) y4D4( -b0 \Ve~p -b0 r[C>" -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) wi=Mc -b0 !SLRX -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) fL,Im -b0 6]]*\ -b0 /na!- -sWidth8Bit\x20(0) zvoRG -sZeroExt\x20(0) LX?-= -b0 ?WC~: -b0 *)9ET -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `KQfe -b0 TpMj^ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ZSo4U -b0 l(I"B -b0 /YLH} -b0 ZX!yJ -sWidth8Bit\x20(0) m%a0G -sZeroExt\x20(0) p/@a5 -b0 Gb*Ff -0q0b_O -0X/!.7 -0,e14< -0Xw-8_ -0_0Mkg -0J?bbW -0;gXhm -0NtYb+ -b0 ]WS[u -0^F#i| -0}.drm -0+ENrK -0H/Yw- -0thuC8 -0kt+k8 -0>k>J8 -0b"d44 -b0 .f@BW -0o8*id -0-fI@A -0Es(uO -0mw#{(8c +b0 a2+[P +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) c:!CC +b0 Uspo: +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .|}+= +b0 'Z;!x +b0 Xj&0r +sWidth8Bit\x20(0) XH]ZN +sZeroExt\x20(0) ~M_I[ +b0 l\+Gi +b0 vGfE( +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 6)P>O +b0 _l\:U +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) xG!d7 +b0 )#ja% +b0 j`B,E +b0 OdqDG +sWidth8Bit\x20(0) (sKks +sZeroExt\x20(0) v1`Cj 0Nn9`9 +sHdlNone\x20(0) 4z61- +b0 [hfUt +0a'|F} +0z3s5R +0q)h%S +0fXR?I +0}uAe_ +06@*wT +0DFXye +0o8%Pn +b0 Azi"O +0C\y4` +0V@$ad +0Zy@e +07|Y6 -0ZH-[l -0}P/qE -0cBC=' -0cQ\0J -sNone\x20(0) SS$Fu -b0 {U.SF -sHdlNone\x20(0) -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) I$(6R +09Pf\. sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) mv\|a b0 .TZzH b0 K!&vA @@ -118589,238 +120523,68 @@ b0 a'it} b0 TH(;Q b0 dwPvC 0KPl!R -sAluBranch\x20(0) `qkl/ -sAddSub\x20(0) r?B=v -s0 h:dM2 -b0 3Y]TV -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) C[Q'8 -b0 gP;xh -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) LX>E6 -b0 ifiE0 -b0 *lzG# -b0 -z&Jd -b0 >wW@z -sFull64\x20(0) !BP|6 -0s5nA[ -02J].y -0f/0a" -0*$xA~ -s0 D3ky% -b0 KIF}) -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ,Y4]k -b0 qVSsb -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Q{oOV -b0 <>"%V -b0 E~b5D -b0 Z"L+8 -sFull64\x20(0) }^2:. -06]rnz -08xs_] -0AY9,; -0nF:A0 -s0 Z}75j -b0 @);_r -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) yA>,{ -b0 lj1~@ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) &2JVi -b0 2*+KB -b0 thq\K -b0 o/HO -b0 V-0w1 -sPhantomConst(\"0..8\") P=."1 -b0 s|HlZ -sPhantomConst(\"0..8\") }&2m& -b0 }pi-[ -sPhantomConst(\"0..8\") i8m&B -b0 g?4m$ -sPhantomConst(\"0..8\") :)4Fd -b0 e&gN: -sPhantomConst(\"0..=8\") 7$fcw -0}?u$( -00q1+H -0tQg2K -0@y}oi -s0 pf"]] -b0 vvlU+ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) YJe;) -b0 {SdwK -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) QEA-~ -b0 0S|'k -b0 9DdgW -b0 >;v=N -sFull64\x20(0) +jcYW -0""h^C -0j3ZYg -0?Q|-F -0!wrB< -s0 XIEFX -b0 uxUb$ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Kg~r@ -b0 u*GX4 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !s{sd -b0 v:4I$ -b0 :Beg$ -sFull64\x20(0) tqWbx -0vp.h1 -0^[N2y -0N3P4G -0=.-=c -s0 xWsVp -b0 >PzrY -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) d+7+1 -b0 @i?f| -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) \Y/F` -b0 ?'(`4 -b0 kT.UE -b0 !kN@6 -sHdlNone\x20(0) _q3hd -b0 2Kti -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) i+VW* -b0 '5,,w -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ~xea6 -b0 z]~1B -b0 h^j,g -b0 JixO -sU64\x20(0) \4"EX -s0 [,-iV -b0 m}v@d -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !|U0Y -b0 5p\\$ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 34<,= -b0 BT^eM -b0 J56<[ -sU64\x20(0) bwTx< -s0 $%UA^ -b0 V0]9e -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Q4r@O -b0 nHiei -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ?4dob -b0 0=D0z -b0 n2?7N -b0 {|,'@ -b0 2 -b0 $hmHT -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Z|hE, -b0 ^zT"H -b0 3~X|0 -b0 1Z@S0 -0lr.r3 -sEq\x20(0) QHcpL -0O]&SK -0Dd"p] -0\R$Qy -0<">LM -s0 JMG;{ -b0 ferz? -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ;-Vlr -b0 bi -b0 ;iSAp -b0 JAG"d -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) |xl;& -b0 -k:'< -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) /EBT~ -b0 &!A|) -b0 f-5}R -sWidth8Bit\x20(0) 9!z[o -sZeroExt\x20(0) &$cT6 -b0 @da8h -b0 oH/0@ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "caTI -b0 --"B= -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Jt.IQ -b0 `Y\z7 -b0 4U?Q[ -b0 c=9Sp -sWidth8Bit\x20(0) Q/7$ +0:r[h> +0x(/(R +0-Pbp( +b0 SD3Xl +0%Z!5g +0k44,v +05IhSd +0A|]}\ +0Axk?c +0o!gda +03}8D1 +0NII%F +b0 egI@Z +0CNU?y +0M.B|v +0ihdAV +0}%}KI +0brg\" +0pl%5c +0]>*v4 +0E?f)v +sHdlNone\x20(0) *%y;O +b0 (W+=L +0_)*r 08HVM{ -sHdlNone\x20(0) L7+c_ -b0 pgu] -sHdlNone\x20(0) ZH?XE -b0 `)$Ac -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 28)C| -b0 s*FML -0TvK(] -0:K+y^ -0Q:7|2 -02C+a/ -020./F -0j(xk0 -0mu!!P -0#

{F -0?%wG= -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) bFGb_ -sHdlNone\x20(0) DQm3o -b0 RazQp -b0 "I*N; -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) y$q0K -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) K!B(P +0?yy.` sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) IUsdm b0 v@'<\ b0 qO{^A @@ -118828,238 +120592,68 @@ b0 *T?Ov b0 7|9qg b0 v\3h1 0e&:b( -sAluBranch\x20(0) >;j`{ -sAddSub\x20(0) ]8koN -s0 u;[~P -b0 8%fc) -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) H@N2f -b0 9eL[M -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) LpY4~ -b0 ^psvI -b0 lp9=^ -b0 A/m(Y -b0 p{XiK -sFull64\x20(0) Bcm;e -06aW:c -0Ch,Pl -0>vnvm -0BH=wd -s0 N+~eg -b0 9f9.] -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 1Q-cm -b0 m!gC\ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) DQ$9} -b0 iA|$/ -b0 jAI33 -b0 ~ue`N -sFull64\x20(0) /K-WN -0A7WF4 -0Cz'P' -0NQ_NG -0'>Y)v -s0 @CePj -b0 UJ[=M -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Azr:K -b0 tU,o9 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 5+ac? -b0 4T$B' -b0 ;9JxO -b0 T,?][ -b0 1TZ?G -sPhantomConst(\"0..8\") Afz0g -b0 t~.yo -sPhantomConst(\"0..8\") L+=60 -b0 >+-1* -sPhantomConst(\"0..8\") f@ -b0 4 -0'TGc< -s0 Lu1aE -b0 >muh -0v+XsS -0q#\cB -s0 9wX]: -b0 R*Wfx -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "Od}w -b0 o8!d4 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 4aTdT -b0 wboSO -b0 $V#5v -sFull64\x20(0) S9)wc -09B9d` -0e$C*R -05;Qg# -06aM9z -s0 oN@d5 -b0 Q5[:> -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) YI@WG -b0 hhe`t -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) j2PQQ -b0 \@tRg -b0 k71wJ -b0 @RDUa -sHdlNone\x20(0) m:Wj~ -b0 ]Y[,~ -0*"zdH -sHdlNone\x20(0) MNW1J -b0 >K0]U -b0 EMF(8 -0"CBBN -sFull64\x20(0) &B2Rw -sFunnelShift2x8Bit\x20(0) ($/L7 -s0 {^GcB -b0 \T&/1 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Zqluk -b0 Fd)Ay -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) PM\bZ -b0 MUJE0 -b0 Lvd4= -b0 ?j?W3 -sU64\x20(0) #dEq4 -s0 W;OD< -b0 @u{/b -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) m=/yF -b0 4c(;h -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) fWXPT -b0 xi\5[ -b0 =;76M -sU64\x20(0) *f`;< -s0 Qd;P: -b0 -O*/2 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) h3rXw -b0 h"$>X -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) w7YRL -b0 s^lqa -b0 AI'Ty -b0 BALL? -b0 I6!W} -07dT0m -sEq\x20(0) n&'#z -00':,w -0#sJQP -0<: -b0 ERKBA -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) K(ZUJ -b0 @iRQ~ -b0 "zB!1 -b0 2~/~; -0YaH8D -sEq\x20(0) %OAWo -0n1YQ% -09wSZp -0(mgET -01=M~B -s0 ..&Z) -b0 xz-Sa -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) E-Xbm -b0 N;7z= -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) sl"z& -sPowerIsaTimeBase\x20(0) u:vOs -sReadL2Reg\x20(0) nVYR1 -b0 .c]D2 -b0 !6&|Y -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) kVb(y -b0 'FFEY -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Z6<;H -b0 Z?U., -b0 +J/FG -b0 LBpYc -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Bz`b` -b0 4JE)k -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) RRfQD -b0 7v'8/ -b0 EO+#` -sLoad\x20(0) 9_Ug] -b0 qPhjE -b0 a8,EV -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) $A!Z+ -b0 !+ZI: -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) IJR8a -b0 4unmn -b0 9;31y -sWidth8Bit\x20(0) "nlr` -sZeroExt\x20(0) TT=i~ -b0 x_}%V -b0 %9or" -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) {Z)jm -b0 Q@H#D -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) c;k?& -b0 Y#s,t -b0 lzFGu -b0 C(9Nl -sWidth8Bit\x20(0) _s.2~ -sZeroExt\x20(0) ybi.& -b0 #*8sc -0qp0K> -0p;Ya$ -0AHSak -0Kw.(L -07FMm, -08/@\\ -0OL.Z$ -0uLtr+ -b0 sg;q1 -0./pAA -0g*%!< -07FZ@D -0r1mz[ -0P#uh< -0-$*?( -0$V=== -0f2)S< -b0 ;j`{ +b0 q1Z^@ +b0 WK#jg +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }v/TQ +b0 dR_?D +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 7Y+SC +b0 %=a== +b0 R_f8z +sWidth8Bit\x20(0) jvzT= +sZeroExt\x20(0) `mUai +b0 60Ei| +b0 1%j_5 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) a[#lv +b0 @Yt0r +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 3Wj?| +b0 NW*Mk +b0 t+bnU +b0 g@;f8 +sWidth8Bit\x20(0) ?tV!S +sZeroExt\x20(0) d\m8K 0Xn:n{ +sHdlNone\x20(0) tlT:} +b0 Ayfb. +0=Y+E* +0B]{iE +0c6=)w +0=p!eB +0&Q2>D +0PH~m~ +0)v4m5 +0B#:nc +b0 PlLjA +0|e;{] +0/5w%r +0ao'tN +0V7ukE +0_VdPO +0)~Y>( +01-Td) +0"r>:9 +b0 y"Eg- +0,\T:a +0#d3sZ +06nKQm +0V$=is +0BFh7/ +0-@"b[ +0sX\|n +0+7Nk1 +sHdlNone\x20(0) [.4zd +b0 5Pl!x +0atLwC +0U[M'0 +0wQG9g +0f<^Q" +0'Elz4 +0AJE5 -s0 M#ei8 -b0 D|;u} -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) V*P[x -b0 -!Ywp -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Eidp{ -b0 [HjO` -b0 6SoI( -b0 /-G-v -sFull64\x20(0) *FX^s -0OrxcR -0Q2ePy -0u.F$z -02b|Q# -s0 t"m]K -b0 k$sW5 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Haz>U -b0 2[-Vh -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) EPJ}x -b0 WP%97 -b0 U]4o[ -b0 /ms5> -b0 G`0Ou -sPhantomConst(\"0..8\") i17<> -b0 !sl}a -sPhantomConst(\"0..8\") &1pGr -b0 Sa3/% -sPhantomConst(\"0..8\") +%@Fb -b0 $7\$+ -sPhantomConst(\"0..8\") C%7s1 -b0 D8SjD -sPhantomConst(\"0..=8\") +.LQ$ -0Y|0>7 -0U0{U5 -0*jkFd -0rSEL& -s0 pc?|T -b0 KL*H9 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 6g)'b -b0 rk&3f -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) u0}{s -b0 Z},K} -b0 S3Zb7 -b0 hp%Lc -sFull64\x20(0) `7}6g -0.8rj\ -0W7*N) -0voki$ -0Q[(DK -s0 .HlMf -b0 PVKjP -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) >-Jo~ -b0 f`@SA -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 3~28# -b0 Ak%;Z -b0 B\rfX -sFull64\x20(0) F$Qbd -01wlc3 -0GM9=$ -0kr7'y -0l0$uq -s0 bh; -b0 YQGU7 -000iuW -sFull64\x20(0) bFF@{ -sFunnelShift2x8Bit\x20(0) K/Q]p -s0 (\XUv -b0 ]Q2b\ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) /r<)R -b0 9X^\m -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) BB -sEq\x20(0) Qab"@ -0=-7Yl -0oGsrP -03R+3F -0Gx;sq -s0 S_D7O -b0 <}xWc -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) i9<$D -b0 k-^uM -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) NJi}` -sPowerIsaTimeBase\x20(0) nC?0r -sReadL2Reg\x20(0) :T=&< -b0 waajI -b0 d/=tq -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 8)5J: -b0 ;v+ZA -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) RBse` -b0 }.!!. -b0 V,n1j -b0 hqF\t -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) z?L.) -b0 -$R5K -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) /GkgO -b0 *5"{" -b0 5]b"| -sLoad\x20(0) mpciY -b0 ba,*& -b0 \K:<$ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) )sBr> -b0 ,D[E{ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Gb=bK -b0 =$;^k -b0 bL=ii5 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) (C>KS -b0 nO%g- -b0 \AlnN -b0 AsQE; -sWidth8Bit\x20(0) i7922 -sZeroExt\x20(0) 5hScR -b0 <.1Q- -0#.yY| -0QUzg- -0f;gjV -0k;Ff/ -02DR?w -08o8eF -0?|g>v -0jdR]m -b0 w/4Dr -0vl*5C -0,Rc~v -0*COr1 -0u1N%~ -03&;b) -0q4$n/ -0-X/fM -0G^e#R -b0 ((^+/ -0f+*$O -0&K8>L -0C(jI( -0\j5aN -0;*h!C -0eBE/$ -0'C<50 -015PW& +sLoad\x20(0) Ff86' +b0 `2@n[ +b0 N^yXH +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) @v" +b0 JqV8U +sWidth8Bit\x20(0) 2|8ra +sZeroExt\x20(0) #;6=v +b0 6KKX| +b0 .*iYZ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 7hu5w +b0 4r})m +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) W|* +b0 3b[/z +b0 %R\yi +sWidth8Bit\x20(0) /g,x^ +sZeroExt\x20(0) X+LF# 0FF-FC +sHdlNone\x20(0) jA*Q +0$$)pn +0[&]z. +0!j-Ld +0/r!L$ +0,*<`I +0*9T8^ +0LHxN4 +b0 uG+&C +0*W`gz +0WJQrb +0f14lN +0*arfi +0EPg'Y +0BV#4$ +0S+Y': +0ja;ZA +b0 Y9-$x +0{x@0m +0z=b;R +0{Ae.( +0O?U?7 +0Cn*|d +0?9{vd +0_&mmZ +0-aOY# +sHdlNone\x20(0) T7h/S +b0 mWCr; +07m)C` +0Fsn>} +0w?Ar> +0h[|X7 +0781Si +09ob2r +0mh6*' +03A(NL +0a,DIZ 03wNfi -sHdlNone\x20(0) Z(/St -b0 LP%,( -sHdlNone\x20(0) 7"!mQ -b0 r[44{ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 'a0d] -b0 gKHD. -0!WR{9 -0=7JXx -0Ji_:D -0A0JhM -0d7Y0E -0BM;ip -0w5!uh -0~aa$] -sNone\x20(0) (har: -b0 kNjt^ -sHdlNone\x20(0) nSYi< -0UoUB* -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) GKDlG -sHdlNone\x20(0) %jFSx -b0 tH]4~ -b0 F{c86 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Y/t*; -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) w~i,Q +0a&Iwl sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) F.An( b0 \T'P` b0 `1+%L @@ -119306,238 +120730,68 @@ b0 m -sAluBranch\x20(0) -sAddSub\x20(0) Umkp5 -s0 3]A9- -b0 (964n -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) VdGHT -b0 o(Stb -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) (oeMl -b0 [B1\p -b0 lkiNP -b0 +G?#| -b0 >nooU -sFull64\x20(0) p8n}L -0KgDO( -0iVJsK -0'R*%& -00PznI -s0 FJUlU -b0 t&c4j -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) NJ>![ -b0 }XFM& -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Vaw'w -b0 0vhW7 -b0 %7har -b0 lukOC -sFull64\x20(0) !-[D0 -0=yA>/ -0:0!fI -0'CQKh -0;o7g3 -s0 *>AZ- -b0 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) [:|Mv -b0 j4I2< -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) yRZO- -b0 5e}xS -b0 +x/\y -b0 BGBWT -b0 (Uq^c -sPhantomConst(\"0..8\") &pkjj -b0 j.l|m -sPhantomConst(\"0..8\") C!9-n -b0 .O/7* -sPhantomConst(\"0..8\") OP&x> -b0 v4+{V -sPhantomConst(\"0..8\") %/\l; -b0 J>e]" -sPhantomConst(\"0..=8\") UhLl[ -0~GbW; -03{!}? -0nB>(c -0pIm<% -s0 (WD.^ -b0 WjmZ; -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 1.S&u -b0 gTP+Z -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) p,25 -04LO9T -s0 T3MsO -b0 :)Z61 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) yx|NM -b0 yqZcs -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) */I2{ -b0 xS|nm -b0 H0a?y -sFull64\x20(0) .{Ts- -0m}&qw -0*M,[ -0wj6oH -0rz<*~ -s0 Dpg[a -b0 Q!1s? -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) c$$FO -b0 akGsV -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ZjyzY -b0 s=@!+ -b0 PQ7PP -b0 6`LHX -sHdlNone\x20(0) <.3*3 -b0 ^p"83 -0GL70\ -sHdlNone\x20(0) jw}[T -b0 .0WG< -b0 "?O]Z -0BHio' -sFull64\x20(0) ZF~7= -sFunnelShift2x8Bit\x20(0) @w&-- -s0 7&UaC -b0 -cx-s -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `!k[C -b0 HLpLq -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) DBEdI -b0 :lZ6? -b0 'jEwm -b0 $v^B7 -sU64\x20(0) U\WKl -s0 pT5,p -b0 gO~JX -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) s&w*, -b0 asV*8 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 8lx19 -b0 ;p$ht -b0 C\C;Q -sU64\x20(0) [VbX -s0 ~%rmg -b0 ~A-f+ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) eXr;} -b0 6ZP|o -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) rh=+y -b0 YPuT_ -b0 i"jm8 -b0 [}vXe -b0 X3$6Y -0xk@w; -sEq\x20(0) 6Q!Ln -0cP8Iy -07+lmr -0hv9xE -0XuSPN -s0 lievs -b0 4(C_9 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ^+z&% -b0 :&LZh -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) rq(,U -b0 [|i#? -b0 9a99q -b0 #e/AP -0x*AYL -sEq\x20(0) Ui"a0 -0Nk^Pm -0p4Nx{ -0wnH]Z -0(vp\R -s0 A+%gR -b0 `u)m6 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) w&)%_ -b0 A+;W@ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `k2*/ -sPowerIsaTimeBase\x20(0) }?ds* -sReadL2Reg\x20(0) R>d@- -b0 Ewkz# -b0 (#|M" -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) =&5Nv -b0 #_8|/ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) WiAf5 -b0 Ncft8 -b0 Ir6%O -b0 LO]c0 -0)NA(v -0ONRZc -b0 qv:nh -0,;7!| -0LX0+l -0k9h3G -0:gT<0 -0&@$@{ -0AN2pD -0'o.y5 -0/Y;lT -b0 l+BtD -0lPEUN -0PU130 -0A-jIQ -0le~ab -0)tm+d -0f.^HY -0KR"aY -01RdY# +sLoad\x20(0) +b0 *tYIi +b0 6!XS+ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 4=]^: +b0 uN|CA +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) e,{4D +b0 ,8Wx@ +b0 ?>Irf +sWidth8Bit\x20(0) bJa-J +sZeroExt\x20(0) */i-$ +b0 Fxd". +b0 7zJHF +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Z#x-n +b0 z-@Fs +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 0%@:` +b0 >'c/7 +b0 (_/EI +b0 2T_h^ +sWidth8Bit\x20(0) ECoGk +sZeroExt\x20(0) 1orZB 00)TUv +sHdlNone\x20(0) 'A@wz +b0 h9RYr +0L8Q3W +0^*}}^N +0Z`G~( +04$c8M +0r?-:1 +0]c;U^ +0jy;4M +0xf.%9 +0oxC-? +0tH&1] +0EJ>vU 0)v-'V -sHdlNone\x20(0) W(6u9 -b0 I$X8U -sHdlNone\x20(0) +I_OK -b0 m(rqD -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 7_9R6 -b0 v^YeB -0XhV#N -0b6VrN -0-$ll -0Tl%%z -0\,D!B -0^EpzY -0($3ps -0Yv5W0 -sNone\x20(0) v^Ss4 -b0 a(X;5 -sHdlNone\x20(0) ?Z9Hv -0>bJk/ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ;X'?m -sHdlNone\x20(0) }e|w8 -b0 zwy>f -b0 JRC(W -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) r;q-5 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 5aCj^ +0b_*\" sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) p??p% b0 v{eFk b0 bRCjy @@ -119545,238 +120799,68 @@ b0 ]XvsT b0 G+d2P b0 Mp.}* 0~XbTv -sAluBranch\x20(0) ='~gB -sAddSub\x20(0) J[!(; -s0 F; -sFull64\x20(0) uLd"s -0,1yky -0W4.2< -0E=+\, -0:Umx^ -s0 %N`b9 -b0 -czKK -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }Q7?n -b0 :b?,2 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Bu}Av -b0 "h?fL -b0 x_/LV -b0 5D`Kw -sFull64\x20(0) L<%vx -0#_@j[ -0M+%gC -0"1o&K -0DO1Tl -s0 zO2H# -b0 fD:sq -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) [oj}( -b0 {OP^t -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) bo67P -b0 |/9^" -b0 NdC9m -b0 y$%sA -b0 YA^B\ -sPhantomConst(\"0..8\") 8vm=[ -b0 DkZ8: -sPhantomConst(\"0..8\") G!#WE -b0 hRFZ` -sPhantomConst(\"0..8\") D.~lN -b0 {!L4' -sPhantomConst(\"0..8\") -1K?i -b0 n:ruF -sPhantomConst(\"0..=8\") a.Lhn -0\=oOO -0[#AWi -03"C)3 -00Ukv( -s0 v!(q. -b0 w>-h. -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 5[\3q -b0 `SwGD -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) >NBB_ -b0 ea&r: -b0 o&1{4 -b0 py+YW -sFull64\x20(0) Mrp*^ -0|_Z8e -0(h,%_ -0DG@B0 -0,uPth -s0 dG+V) -b0 #P@K4 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) aH6p^ -b0 .q:5% -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) C#o0w -b0 Z>]Pm -b0 ReE[J -sFull64\x20(0) |\0^| -0.8|E> -0$Xt1R -0k\M"w -0@~0EP -s0 lF_fO -b0 ZND6Q -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ]7(@c -b0 %(&d< -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) $vYb_ -b0 Eo1)Y -b0 ZB^@' -b0 PM[pU -sHdlNone\x20(0) /`r[~ -b0 FQ%YH -0[A[|u -sHdlNone\x20(0) T0YKd -b0 -]jL? -b0 _B_yi -0KZ6Up -sFull64\x20(0) =(AmR -sFunnelShift2x8Bit\x20(0) RZJ.3 -s0 KcL~q -b0 >d@c, -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 7phuf -b0 V^Tvd -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 9:.v6 -b0 V=jh3 -b0 (FdwO -b0 k^Q*4 -sU64\x20(0) I3{[A -s0 [7cv& -b0 zY#ML -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 'rKA; -b0 _P@W~ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) vD({t -b0 WJ_t( -b0 MHiUX -sU64\x20(0) l?L&\ -s0 [IL$y -b0 6'(1^ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !j_[( -b0 oTPVi -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %q.N( -b0 .P]4y -b0 W,k%) -b0 fxu@- -b0 1W$1. -0G'o(f -sEq\x20(0) Z9Lcs -0kOjNd -0U.)=I -0!_yVf -0Y]NrK -s0 R8cF2 -b0 J`g/x -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) *%b[[ -b0 %VONS -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %m#1\ -b0 Hs1Eh -b0 hkZVc -b0 |h-w[ -0yKxQ` -sEq\x20(0) 9Ds7j -0=-N/% -0L:'FS -0iGjzH -0kAFSB -s0 '}KM_ -b0 lUgSF -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) @-,Af -b0 @@ia6 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .wT8w -sPowerIsaTimeBase\x20(0) DOlX> -sReadL2Reg\x20(0) AI"Ti -b0 cl;@i -b0 H'#w4 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) SlA&j -b0 Ik-$C -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) F)g^o -b0 p5v^c -b0 %zL0h -b0 7 -0>aK|$ -0+-o#7 -0h_)yL -0,"Z!Y -0'wot, -b0 15HNY -09".BY -0LZ)7& -0])_0O -07WP8& -0%))X& -0AP"N{ -0#I;^ -04hjoR +sLoad\x20(0) ='~gB +b0 `fhOY +b0 a:QZ+ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) -,TZM +b0 ?)Z|J +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) qjp+} +b0 rB'Xq +b0 RHS&x +sWidth8Bit\x20(0) _fM[\ +sZeroExt\x20(0) g3{Z\ +b0 ?Gi$x +b0 Jqr~9 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) mmsy( +b0 G._VI +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) c)vv +0k^[xW +0R?>n^ +0G81\` +0^gImP +0w*OTv +0%%0W2 +05S^Tc +0s7#^2 0!V!E` -sHdlNone\x20(0) ]o0<" -b0 KgHz# -sHdlNone\x20(0) $`C*B -b0 d?ygW -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !e)FJ -b0 R`"'Q -0)GLvm -0{ft{k -0yG<'e -0SS[wQ -0aqOhr -0_z$:X -0Dh4'd -0OyV%~ -sNone\x20(0) 9vV(q -b0 B7|@O -sHdlNone\x20(0) 1mnM= -0r!J1s -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 1tf7% -sHdlNone\x20(0) "0!6" -b0 cT]{y -b0 YV)$t -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) K"Q3t -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) s[&XX +0oL{C@ sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) -iT*H b0 ~5ueO b0 rUV9V @@ -119784,528 +120868,591 @@ b0 n;GKx b0 "]6C0 b0 Mv%DW 0-}!(w -sAluBranch\x20(0) xz:Or -sAddSub\x20(0) rT/]7 -s0 *@{]x -b0 ctQZ< -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) kY=G. -b0 B%4mC -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) eX(+E -b0 !YV5F -b0 N-a?P -b0 ?E1H- -b0 mW5_k -sFull64\x20(0) @UE8} -0<2Q4. -0?b92t -0Iw7_K -0Dmrai -s0 J'hQ, -b0 {6DIg -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) p",2Z -b0 !U}1O -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ndl?[ -b0 (wqp* -b0 FrgB< -b0 ~nq)r -sFull64\x20(0) 3)7r_ -0d{L?: -065e.f -0dV?H$ -0j~T=W -s0 ZT~$= -b0 `7RlT -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Xc)c -b0 K@.?0 -sPhantomConst(\"0..8\") SGiJk -b0 gyM;J -sPhantomConst(\"0..8\") Rvgx_ -b0 1GtYW -sPhantomConst(\"0..8\") @,rR9 -b0 $z!^n -sPhantomConst(\"0..=8\") F[70, -07B3^1 -0a+#]1 -0R?+c6 -0b,8ms -s0 /s>v^ -b0 K>1r$ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 2Aw*E -b0 (k}H -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) h2c/- -b0 7|U(] -b0 UfZ-{ -b0 pv9)F -sFull64\x20(0) \ZRW' -0"*V"_ -019L0a -0lx4y} -0<'&Yq -s0 6?DZo -b0 L8Jk. -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) C;>Q} -b0 x{Jj0 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) =U*L( -b0 DnFB' -b0 6/*[d -sFull64\x20(0) 3Njk~ -0i>aY5 -0V??J8 -0+q>\i -0nj9&E -s0 gx!e: -b0 Sw16[ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ysQ84 -b0 ju_k= -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) &fWr= -b0 =@L]f -b0 mOh6i -b0 >2S@_ -sHdlNone\x20(0) N8;x; -b0 Bdxxt -09X'?, -sHdlNone\x20(0) JUyT^ -b0 mT\uj -b0 ]nKhe -0Vkh|? -sFull64\x20(0) `3@AU -sFunnelShift2x8Bit\x20(0) ASghc -s0 4p4// -b0 G9EnD -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) H7o$` -b0 -Q8OP -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) sYW1` -b0 %D_l4 -b0 m|'D* -b0 ~m9{' -sU64\x20(0) 6~!vx -s0 L&ILWEp -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) eS_Ht -b0 c;\lx -b0 =\_|J -sWidth8Bit\x20(0) fAX~# -sZeroExt\x20(0) REB>x -b0 '>XMD -b0 t*SWW -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 0+#h: -b0 {<})O -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) SIF3v -b0 v2 -0LCaFh -00Vd7a -0:6!*F +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) GY3xn +b0 $\I@A +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) m|"L0 +b0 n1t~e +b0 cbepZ +sWidth8Bit\x20(0) 4@i71 +sZeroExt\x20(0) "p\/0 +b0 {t@2sP +0kS2hO +0kZu)x +0h=%t< +0/.+f\ +0k.XpI +0IwI7T +0^)SoV +0emLu& +0~d4kH +0K0wW9 +0R+B-= +sHdlNone\x20(0) u.~5n +b0 r`LPU +0D%3f5 +0*-$SR +0"n\54 +0/=b>H +0dloo +0fUv6\ +0s6u2K +0gTG1l +0KiI1@ 0S"eO!: -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `#A*' -b0 wy*1m -0B-'qA -0Wi|Bt -0=$D`J -08v'E# -0K+8NY -05%BmY -0QMXom -00Y%%2 -sNone\x20(0) aM;m5 -b0 q1Cg2 -sHdlNone\x20(0) vdK>3 -04>Mvb -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) B;OeY -sHdlNone\x20(0) ]j:Vx -b0 gCl+W -b0 b5Wwx -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 92JOn -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) n^uz\ +0%&0]Y sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 4Zy)W b0 >VIL> sPhantomConst(\"0..=8\") vz0q< -s gv+5w -s ?Gy-l -s |WTh -s OuQq] -s %LbO$ -s [ (1';C -s II7$S -s fqn2m -s 5V>4b -s ."bi9 -s p-fi4 -s ,mel? -s g\a\^ -s Z~'?@ -s n}Err -s _"T~` -s T|>sC -s XukB~ -s l|[mj -s %J[XK -s ^I\}l -s )-fq\ -s h1J6# -s ez{T8 -s :NLbY -s NpL3^ -s c@UR@ -s f-?v| -s {72Tq -s B]6g. -s t388V -0g{$T+ +0sOSum +s ix'Be +s H~H-k +s 5u]|o +s e(%p" +s *_@LM +s &8XI[ +s -.^$. +s %k{>m +s 3[NDt +s lI_Gz +s (:\x* +s MtO)8 +s 3K8]* +s 1A +p-od +s BZfcA +s /Qo!M +s b(&ok +s i^|&_ +s uyC@| +s \#)]h +s +~l8T +s 1K={0 +s .#VHx +s 1NtjH +s x9#Dy +s ',tun +s >\vNu +s Qx=DW +s JXPL, +s 73-]? +s DuS1o +sHdlNone\x20(0) YU?FT +b0 pEM&] +sHdlNone\x20(0) 9'#D= +b0 +.@By +sHdlNone\x20(0) En8dv +b0 G1n!U +sHdlNone\x20(0) :cz=3 +b0 MTt+q +0vnbJY +s :ZBGp +s 0>Zml +s ZwL}Q +s 9I +s VkhU= +s ~ap2. +s ancnK +s {*t>' +s Q'LVp +s G]_@3 +s RwNA; +s h#MHa +s w$3?E +s /6Bn3 +s OC=]J +s t) >\o{/ +s YgFH* +s xS[TB +s A,. 5Whv/ +s {36-9 +s h;*=4 +s lC;*3 +s D@Yr, +s W>1GT +s :drug +s zK,\4 +s Yd|/a +s >1&kH +s QEu6~ +s \{?56 +sHdlNone\x20(0) ,+[`- +b0 OO/v- +sHdlNone\x20(0) i{>C< +b0 GLq6r +sHdlNone\x20(0) b-prJ +b0 $[Ue" +sHdlNone\x20(0) 9&"AN +b0 :O))\ sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) CH}r| 0BqYmm 0%/Ado 1uH]!m -sHdlNone\x20(0) wf2C6 -b0 dKNDK -b0 wJ""P -b0 $K7z~ -b0 WA(l. -b0 s*O:& -0%&=Ab -sAluBranch\x20(0) r=M,3 -sAddSub\x20(0) qD$wy -s0 (w?\C -b0 I4s2c -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !$FI* -b0 ;4273 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) [Y&+q -b0 p}o^; -b0 ~j/IT -b0 |QT2s -b0 r0h|$ -sFull64\x20(0) #SD,7 -0;vYbV -0/I8y~ -0'Ld@K -0@;1qW -s0 ~ID1~ -b0 1BV\b -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) E@y"D -b0 EB~{J -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) )gWlU -b0 LzPFc -b0 Y,^)g -b0 zZMDz -sFull64\x20(0) ]`6)m -01I(=# -0'fa4@ -0*Y(l- -0f,+or -s0 {z&"a -b0 k-`z] -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) E[rKx -b0 G6]O6 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) L`]}( -b0 ?1-;) -b0 Q[Z92 -b0 ?4Ys} -b0 )gbR$ -sPhantomConst(\"0..8\") qPg)w -b0 Q+8~: -sPhantomConst(\"0..8\") J8fBJ -b0 Z`]r% -sPhantomConst(\"0..8\") (Hl6' -b0 1wnM_ -sPhantomConst(\"0..8\") )Rllp -b0 Fq>|# -sPhantomConst(\"0..=8\") /+i$F -06>)09 -09O?y? -0wQKEH -0i$,:( -s0 Xw]J$ -b0 ,.kXV -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) *XY3h -b0 q2"Xm -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) /%9n% -b0 HD0/T -b0 hs"E{ -b0 u6YDR -sFull64\x20(0) YQcbR -0:w7w9 -0l{.<9 -0QG72/ -0HRw!P -s0 E92"y -b0 @j0%` -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 9zAM. -b0 ZBpcD -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 2/f!~ -b0 75\ae -b0 FkbIc -sFull64\x20(0) Sds~W -0g*\~r -0}t7HR -0G"9TC -0yz4s` -s0 S4T%x -b0 xt>xu -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) #Y\07 -b0 M|g< -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `%+Bi -b0 #SMn& -b0 jC~' -b0 u*{RN -sHdlNone\x20(0) :M:Zn -b0 Oi]HZ -0{Tb?- -sHdlNone\x20(0) C`Y7} -b0 [jP.X -b0 WyW,d -04ZTsw -sFull64\x20(0) .]Ah5 -sFunnelShift2x8Bit\x20(0) ?,\S1 -s0 @?hN8 -b0 qs.w( -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) |U`ne -b0 ~B(_H -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) LXj6} -b0 h$rr5 -b0 NQ,oR -b0 <}G+c -sU64\x20(0) xSD3` -s0 `#=k> -b0 2}(2; -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Z^fCc -b0 HJ{UO -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) '@z7v -b0 7:B59 -b0 9)g(n -sU64\x20(0) ^LO?x -s0 Pp[,x -b0 tC@Q2 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ,Nc,h -b0 v]E4M -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !K&B7 -b0 vb[_4 -b0 "~Bk^ -b0 Nt?), -b0 j+G<{ -0=[w=9 -sEq\x20(0) +ERIl -0\"nHp -0`T)`& -0/XKg^ -0X|RKO -s0 +[PE* -b0 .?:e] -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 23=[@ -b0 |{}!P -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Jg}3- -b0 1&aj: -b0 XFFr) -b0 1}'z@ -0IZBeE -sEq\x20(0) 6a=k$ -0z{z+@ -0flGFh -0)k[Gh -0:,Sh4 -s0 Cgr]> -b0 /C#'S -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) <(q}n -b0 ap%IV -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) OFjYn -sPowerIsaTimeBase\x20(0) RRAoV -sReadL2Reg\x20(0) ?a](X -b0 xIy^[ -b0 :OiO, -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) yeP]O -b0 *SWv0 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) tTdz& -b0 "Po*f -b0 |hOSQ -b0 C?Tr? -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) q!|o8 -b0 xDnn$ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 75c%, -b0 6:60t -b0 H$U~W -sLoad\x20(0) 66MQD -b0 E$Q^} -b0 ;gnT@ -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) E|{Vw -b0 eCM=C -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) l!GtU -b0 @Lg,e -b0 @/esZ -sWidth8Bit\x20(0) gq3@3 -sZeroExt\x20(0) v[yF^ -b0 h'aPy -b0 Q1?rF -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Oq?TN -b0 Fkp@i -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) RmtX0 -b0 0ll -0Xa+-^ -0/Hy8 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) K0dmi +b0 !B\^t +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) TIZdi +b0 (Z&#. +b0 nchS: +b0 -("q +sFull64\x20(0) rbtQc +0n"-Ji +0A6Uh> +0=I||J +03o~jM +s0 S!HYR +b0 ?mN9& +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) [&;,\ +b0 ~ +sPhantomConst(\"0..8\") z(H~ +b0 zKyx% +sPhantomConst(\"0..8\") uF$r2 +b0 tg]N/ +sPhantomConst(\"0..8\") F|Jq. +b0 J0`Da +sPhantomConst(\"0..8\") T$Dj= +b0 ?mAFL +sPhantomConst(\"0..=8\") 'l"fo +09jvDO +07-8xA +0e;wQA +0v(X$" +s0 {9h!4 +b0 ~wUi7 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) )iHZP +b0 I6>`f +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) UCO1$ +b0 S@*,z +b0 D=)K> +b0 /'Sn8 +sFull64\x20(0) g{pqa +0q!:v, +0]z&;A +0<6^^] +0@%//i +s0 a{YZk +b0 d\aat +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) TDoX0 +b0 1=0?x +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 2gUQp +b0 nH/y+ +b0 l]rc& +sFull64\x20(0) \GZtg +0JV09w +0HpP.{ +0ZNh9Z +0oMyf\ +s0 w0Z'A +b0 (WqD} +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ghF=U +b0 Q*~Tj +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ;a|#I +b0 v>Jgy +b0 KTS8: +b0 dZ;;l +sHdlNone\x20(0) ^BS^\ +b0 h4u&w +0JX0a& +sHdlNone\x20(0) qT/n{ +b0 a+@EG +b0 m'=mR +0_dY,- +sFull64\x20(0) Vhy$] +sFunnelShift2x8Bit\x20(0) ^Dr`X +s0 )W$wF +b0 Rj^jL +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) cfsQ( +b0 7#tSY +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) zWbq, +b0 eVw|` +b0 =KDDH +b0 ^.!<5 +sU64\x20(0) NvxJ: +s0 ypzN; +b0 L?HjS +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) D0P8n +b0 H83`a +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) f*6'r +b0 k2Z]8 +b0 Vk>o9 +sU64\x20(0) /Mqv8 +s0 u9^+[ +b0 ^G!?A +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) wbj:, +b0 =VfNd +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !5CTC +b0 ojk9" +b0 mosr; +b0 ur:%x +b0 Mz`Ew +0s"jnU +sEq\x20(0) gTT:" +0lo5JS +0s0je4 +0ECL/K +0S*}?n +s0 v`P@} +b0 R;/k' +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) =ibZP +b0 Z=\I' +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) rvKM: +b0 HvTV` +b0 Y;G]z +b0 _)p&G +0^Ldb` +sEq\x20(0) QouII +0AbPOu +0i[g&5 +0%`g/0 +0"~qI1 +s0 ;J,bm +b0 ~^XmU +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) )dA+F +b0 */u34 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 2O{Ht +sPowerIsaTimeBase\x20(0) !t:yX +sReadL2Reg\x20(0) v2Hx3 +b0 tXJP$ +b0 3K:\K +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) N^m@F +b0 LY\Z$ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %_)Ll +b0 R:Cet +b0 UGKW= +b0 "y\_} +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ~LmWx +b0 TcN-& +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) I{qN# +b0 k@iWF +b0 s6\IS +sLoad\x20(0) {<"Na +b0 7=HOP +b0 .rnJZ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) usv.4 +b0 ]lbGg +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) hQ\sB +b0 q$d8< +b0 v@,P) +sWidth8Bit\x20(0) BOln6 +sZeroExt\x20(0) j[#OO +b0 h",X7 +b0 U&#xI +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) JZ]g{ +b0 dH-Of +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) CI*W/ +b0 ?+#~^ +b0 /[]Os +b0 7L7=c +sWidth8Bit\x20(0) d4p~] +sZeroExt\x20(0) Tkp#z +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) c`0`x +0P{5N4 +sHdlNone\x20(0) .Ca1D +b0 ~~XwG +b0 I#$4Q +b0 {fBiU +b0 fy3P: +b0 KIfGA +0mpdF~ +sAluBranch\x20(0) uA&z{ +sAddSub\x20(0) #Cu+F +s0 H.Mc- +b0 7L-JO +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) M-,ZD +b0 Y^^n) +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) *1sUz +b0 46SrU +b0 @A@0* +b0 B,>1I +b0 :;(:r +sFull64\x20(0) 4%/%H +0g#zdr +0#c^:D +0-b55I +0_vcQ> +s0 k@&7K +b0 Rdh~i +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) |8|Lv +b0 l.x04 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) -{z2( +b0 \2H^' +b0 \0%^L +b0 /J7HH +sFull64\x20(0) d"N>t +0bAp}{ +0.c0][ +0T69<4 +0S1kS: +s0 \2SAS +b0 $4xMK +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ?0U5_ +b0 +O$2~ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ZN2uK +b0 ~g4Uy +b0 n`wkw +b0 kVkft +b0 a){Qt +sPhantomConst(\"0..8\") [/ssW +b0 ]v!HQ +sPhantomConst(\"0..8\") .j3Oo +b0 NL#oZ +sPhantomConst(\"0..8\") Hl9v1 +0F0mrn +0[cU-F +0U`]>Q +s0 Vfu%) +b0 3OI{n +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `@J}v +b0 7Df(n +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +A3== +b0 (p/D- +b0 -h/C: +b0 #y#${ +sFull64\x20(0) K+ko} +0z9wgB +0o(VXd +0X'tyX +0f&4qQ +s0 g5r}# +b0 POSM# +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) q?i&< +b0 gqPfY +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) s\7b{ +b0 6Bl;M +b0 WM@Xx +sFull64\x20(0) +b0 r]fR# +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) M_3G^ +b0 *a}1; +b0 m|hY^ +b0 %w}]P +sHdlNone\x20(0) jQ;:^ +b0 Z~`7` +0x+bQQ +sHdlNone\x20(0) _zix# +b0 #uNxw +b0 }?%Zo +0cP*ht +sFull64\x20(0) ],8RX +sFunnelShift2x8Bit\x20(0) ;+|]? +s0 KE!m_ +b0 J*i:h +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) d7~F* +b0 }W9y* +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) t&iID +b0 :lgZe +b0 7[+9H +b0 r=iS/ +sU64\x20(0) ,DDH` +s0 $;*T< +b0 n<^A@ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) b;'^r +b0 h6loV +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %]h$3 +b0 bl_YZ +b0 z*RwC +sU64\x20(0) cDyRD +s0 7E=%K +b0 =[zA] +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) FTE#> +b0 q_?uA +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) )4?S| +b0 sl=^} +b0 }bq`*7 +b0 *#&hB +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) "\SY} +b0 JM8@= +b0 MvSJ{ +b0 'kiKD +0g4una +sEq\x20(0) eH)a- +0IUr>$ +0`gdd# +0CWT}y +02Jms% +s0 JA0{= +b0 8,!=0 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ZR*Yh +b0 IO2V3 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) z@3{; +sPowerIsaTimeBase\x20(0) Y*Lgi +sReadL2Reg\x20(0) fx-|# +b0 R75&' +b0 \&fY8 +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) RedEI +b0 +`Vgg +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ?&LJW +b0 J-\!x +b0 e*Ae? +b0 juh1k +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) &$[Jv +b0 }Mp1- +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) *ho`L +b0 &SuOx +b0 5y@`] +sLoad\x20(0) d1S&+ +b0 "r]6M +b0 Jx%G$ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) >T4-b +b0 '_|+w +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 0Vs5[ +b0 D_8}[ +b0 -W`H, +sWidth8Bit\x20(0) _UVIc +sZeroExt\x20(0) q@Nz/ +b0 yMN/p +b0 __ISb +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 4}D4F +b0 L3`&e +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ow,yW +b0 Eta`C +b0 [!5R) +b0 5z`J; +sWidth8Bit\x20(0) cf/Fe +sZeroExt\x20(0) lsZtr +b0 "\Oh' +0l!Eif +0(T.,t +0_Hxzl +0H/,Q +0[#1_e +0_\~PE +05&Ifq +0qSkQ~ +b0 A66]> +04[z~? +0}c82o +0>cs/L +0j#Wad +0|SE'f +0^o$$# +0De#xt +0_7t%} +b0 [urL +0hD_n)#y +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) P[h\, +sHdlNone\x20(0) {i-sT +b0 pWo65 +b0 O,0kh +00f!`B +09D_)+ +0<%JIm +0g;P8h +02<%b/ +0W5s"[ +0pdm#+ +0*:hic +sNone\x20(0) dRd9D +b0 YQe0B +sHdlNone\x20(0) QcEBQ +09cyl\ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) l&`wf +sHdlNone\x20(0) x)rw` +b0 "rIjZ +sHdlNone\x20(0) hDU!w +b0 ;}}Gp +0s0'XI +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) -,1~f +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) `O!i{ +0*mSKU sHdlNone\x20(0) P,u -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) :Pk^F -06d1qy -sHdlNone\x20(0) AnPXd -b0 15(b> -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 7!MC* -0Qka&% -sHdlNone\x20(0) `VI*A -b0 t;U_N -sHdlNone\x20(0) -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) #S:c^ -b0 (wMH+ -0vgk<2 -0:]6K> -0s|.X" -0C_88~ -0[u\e} -0e+Xuh -0jiLl0 +0WC$,Q +0`0r7h +0T0`QI +0CThe_ +0D*@P\ +0H!s,B +0(2sC4 +0C)}PV +sNone\x20(0) v^D." +b0 6EfZY +sHdlNone\x20(0) Em\d_ +0wHVOC +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) }{R1Z +sHdlNone\x20(0) |C.hQ +b0 X+,CT +0,Q*SB +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) n|vA( sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +$n'W b0 sEa[? b0 Zo[MF @@ -120758,32 +121900,27 @@ b0 HiX^v 0(,9Ny 0Z!x9c 0|kq%R -0YJB:k 0M~<1@ -sHdlNone\x20(0) #2Y4l -b0 NO(p/ -sHdlNone\x20(0) >!tq= -b0 p1=ff -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +-azQ -b0 cmf3Y -0OR2Qh -0(Muz0 -0"p*Ly -0,Kg%W -0Y\V,n -0:Lk(: -0R:7Hq -0{LCBf -sNone\x20(0) khfM? -b0 E.Og- -sHdlNone\x20(0) @<,cU -0ET8Ml -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) \D.6= -sHdlNone\x20(0) 8)Vmq -b0 v\mT\ -b0 XpMNj -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) jpCE; -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) de9Lc +sHdlNone\x20(0) Ay6WG +b0 oa8t4 +b0 ~;3z2 +0g|=k: +0@i^Sv +0))_!L +0.:#$k +0\x{qt +0Byx$7 +0jM,T} +0-aN.Y +sNone\x20(0) 6dULy +b0 i9IB` +sHdlNone\x20(0) 3rgi; +0hyL"@ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Qbldq +sHdlNone\x20(0) Qw+xT +b0 V)O;' +0wI\ls +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 7O15l sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) U}cV3 b0 L@ClC b0 CTYdc @@ -120997,32 +122134,27 @@ b0 tBWIe 039|k& 0\u!.O 0-bX`J -0q_O-* 04|*VS -sHdlNone\x20(0) ud.5~ -b0 b0RHG -sHdlNone\x20(0) c:\!K -b0 uWt0D -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 0+|+G -b0 nCqr: -0,3Z4l -02dNN& -0?>^{f -0Y[X)1 -0~ROJP -0Y3P>4 -00rF!G -0.xHH1 -sNone\x20(0) |GiOV -b0 d3vW? -sHdlNone\x20(0) 7"]T5 -0S%G#. -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ;heJe -sHdlNone\x20(0) YH,TR -b0 ZoM]J -b0 Q&WtG -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) N#^JB -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %zrkp +sHdlNone\x20(0) /^_J> +b0 iW0:E +b0 Y|a{| +0.96Yc +0#eK2{ +0wZ8oJ +0K[67/ +02$~zP +0'i5$z +06PQg5 +07}B5L +sNone\x20(0) pn]i" +b0 +zVV' +sHdlNone\x20(0) 8T|I? +0,MU3d +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) Ovq#C +sHdlNone\x20(0) GgGz+ +b0 zpG8T +0e|4ZQ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) LEH-/ sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) %g+3t b0 GIR6y b0 =c1w? @@ -121236,32 +122368,27 @@ b0 ~001j 0?!OTD 05`v}s 0)yukc -0QV{=\ 0eyd|_ -sHdlNone\x20(0) fGIZ$ -b0 '5p3b -sHdlNone\x20(0) &nVS5 -b0 {8y+Z -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 1jxD -b0 /I?pL -06NGc7 -0m_Clu -0eS#%6 -0uut#( -0SKCe) -0iSU`7 -0OE_K_ -05XJ-P -sNone\x20(0) ?dg&r -b0 !mYJF -sHdlNone\x20(0) ~KKjJ -0lA`_} -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) S"W-0 -sHdlNone\x20(0) 2I^i) -b0 8Tu}* -b0 Us5Fk -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) =-Ytb -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) xO'7a +sHdlNone\x20(0) N\p\H +b0 Ww7ME +b0 G8W. +0L*2hK +0]$1%3 +0h?huS +0\2@dO +0ax@X4 +0|gbfI +0ypNN3 +0/->z{ +sNone\x20(0) )eKdF +b0 xS&w? +sHdlNone\x20(0) *\;vI +0B{UQR +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) &w0~h +sHdlNone\x20(0) WNT)T +b0 n?/fN +0FoJ"G +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) a -b0 TRN,1 -sHdlNone\x20(0) ziPEL -b0 0G/M* -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) !1Pe[ -b0 >mR}^ -0c7pRJ -0@KQ4T -0J#h"x -0^QJBT -0iK.>O -05!NU; -0N-tnk -0^}ys) -sNone\x20(0) K7&Sx -b0 s6PbC -sHdlNone\x20(0) 2pE"6 -0J1JO; -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) c|sOM -sHdlNone\x20(0) fwWNf -b0 `lAKQ -b0 gs_Gv -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) @\%`5 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 71/Jx +sHdlNone\x20(0) 7[0u| +b0 *bo>O +b0 Rm\r5 +0*BC=[ +0Ql) +0'DQ7\ +0!Y)]_ +0?`&p$ +0)eR*o +0ar^&n +0$:`!' +sNone\x20(0) }#FfA +b0 lo|s] +sHdlNone\x20(0) |f%q5 +0+92^B +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) +y:,3 +sHdlNone\x20(0) X[j,a +b0 u"2OT +00[J($ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ATlw: sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) ]HN.\ -0p]AV@ -sNone\x20(0) 5])IO -b0 `\iR$ -sHdlNone\x20(0) (-{H} -0~>A|H -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) W|./: -sHdlNone\x20(0) \8|j3 -b0 X8~j -b0 Dt:|` -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) >(xZ1 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) OR*2V +sHdlNone\x20(0) .n_>V +b0 u#% +0`!?!F +sNone\x20(0) fC|9b +b0 vGsPE +sHdlNone\x20(0) Bi:l> +0p9l/l +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) [ZJoK +sHdlNone\x20(0) PL|9I +b0 =|1]4 +0{0_{" +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) @LR^~ sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) E/?OJ b0 ydYhm b0 \_CKL @@ -122192,37 +123304,31 @@ b0 <6Jcy 02g;'] 0pqDJM 0E`Y|# -0!Qd}, 0Y8Poq -sHdlNone\x20(0) =j'?k -b0 I0&qD -sHdlNone\x20(0) g:9zw -b0 2C>>3 -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) L1@Qa -b0 LZR*: -0{L(>{ -0a.lRS -0@7Ox) -0pc_@. -0#G+71 -0*Z{P8 -0V$j5* -0h,w7d -sNone\x20(0) 1bW&c -b0 WRn:y -sHdlNone\x20(0) @c@f} -0Ck,~T -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) 5[{L? -sHdlNone\x20(0) ]!gtZ -b0 NR)d+ -b0 [M'.F -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) o:#4i -sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) iU!sb +sHdlNone\x20(0) .u)n] +b0 \v4r| +b0 F]9t< +06ewYQ +0FW:us +0K5k{n +0B6IIh +0$^1II +0J~{f[ +0.wjwx +0zU31C +sNone\x20(0) %6KKf +b0 $v6Ib +sHdlNone\x20(0) $?#Nt +0G3f4$ +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) srqIL +sHdlNone\x20(0) DgMuJ +b0 yrgGC +0fTI7* +sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) a_BnG sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) YpqWW b0 I&uIW sPhantomConst(\"0..=8\") 5s\w: sPhantomConst({\"units\":[{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"AluBranch\",\"max_in_flight\":null},{\"kind\":\"LoadStore\",\"max_in_flight\":null},{\"kind\":\"TransformedMove\",\"max_in_flight\":null}],\"out_reg_num_width\":4,\"fetch_width\":3,\"max_branches_per_fetch\":1,\"max_fetches_in_flight\":16,\"log2_fetch_width_in_bytes\":3,\"log2_cache_line_size_in_bytes\":6,\"log2_l1_i_cache_line_count\":8,\"l1_i_cache_max_misses_in_flight\":2,\"default_unit_max_in_flight\":8,\"rob_size\":20}) .VVRp -0z@WVH $end b100 ZT&'? 1`8zR0 @@ -122284,7 +123390,84 @@ sWidth64Bit\x20(3) hQW$1 sSignExt\x20(1) hddmj b1000 #}\qx b1111111111111111111111111111110000 l1v\t -b1 HcXS= +b100 q7AbU +b100 vo/2$ +sLoadStore\x20(2) .ec(O +b100011 y7)D$ +b1000 }pc}= +b11000000000000000000 0PBB~ +b100011 6l2a= +b1000 S((or +b1100000000000000000000000000 3MwsK +b100011 //E) +b1000 N>ZJ +b1000 YL%&; +b1100000000000000000000000000 GsS![ +b100011 st\ge +b100011 P6V.p +b1000 -J&/x +b100011 aOT,e +b1000 4>2B) +sWidth64Bit\x20(3) Q:en@ +b100011 VA4I, +b1000 jawjF +b1100000000000000000000000000 -HxLj +b100 A'=Rz +b1000 Lu@[& +b100 S:lLM +1t_DKN +sAddSubI\x20(1) (5Ule +b100001 ,(~"Z +b1000000 JfH*[ +b100001 /%NB$ +b100000000000000 BN0Pi +b100001 tiOj/ +b1 UR'K9 +b100001 25"-0 +b100000000000000 =Kc,7 +b100001 ct#Y1 +b10000000000000000000000 {Ko6C +b100001 VsL;G +b100000 j:-4~ +b100001 vTy6) +b100000000000000 *+[85 +b100001 I)IKr +b10000000000000000000000 >XpS4 +b100001 #YbS, +b1000000 Xk?DD +b100001 G|+;# +b100000000000000 aoo[G +b100001 Y|kUw +b1 ;}jO` +b100001 #q@'& +b10000000000000000000000 2IwCh +sStore\x20(1) eRLjP +b100001 do+%C +b10000000000000000000000 'GRou +b100001 i~}(P +b100000000000000 8l,xt +b11 HcXS= 1m'mZs b1000 u];=A b1 %4VT6 @@ -122486,66 +123669,119 @@ sWidth64Bit\x20(3) e'!k# sSignExt\x20(1) EblHw b1000 NNw^> b1111111111111111111111111111110000 r80>T -b1 L9B+' +b100 jFa=K +b100 &V`_k +sLoadStore\x20(2) GDNaT +b100011 #2OQ} +b1000 vksO, +b11000000000000000000 sh};) +b100011 ,V^rO +b1000 sD6!8 +b1100000000000000000000000000 df:Hc +b100011 Dj{+ +b1000 W^wOb +1]<_1W +1@&b.U +b100011 @jX] +b1000 |@vsF +b1100000000000000000000000000 `&Nae +b100011 ^Z&bQ +b1000 MTD,2 +sSignExt32\x20(3) 3,+!U +b100011 .>zxg +b1000 -<[`2 +b11000 6U>6D +b100011 fu";+ +b1000 RZytC +b1100000000000000000000000000 /BJ([ +b100011 `l|qB +b1000 1:FjN +sS32\x20(3) ,,Krw +b100011 7([Jb +b1000 YY4%x +b11000000000000000000 >8k +b100001 },g58 +b1000000 KZwr&?+ +b100000000000000 ~zcGR +b100001 uE%zT +b1 7L~~= +b100001 zrC*% +b100000000000000 ]x5Ix +b100001 f?]#A +b10000000000000000000000 A^5^n +b100001 so_5p +b100000 Jd9.m +b100001 z]_l= +b100000000000000 V8Bj\ +b100001 %l:7J +b10000000000000000000000 YQ.n` +b100001 h6[&a +b1000000 &Z[@x +b100001 ^;#MP +b100000000000000 RS~%L +b100001 nG&}O +b1 LQ#r] +b100001 76Lmw +b10000000000000000000000 >9=-u +sStore\x20(1) JRL\s +b100001 T+JxD +b10000000000000000000000 WB*d$ +b100001 KfRhZ +b100000000000000 tO`2q +b11 L9B+' 1O-c3- b11 hKgHc sHdlSome\x20(1) ]9B5g b11 G9@U` sHdlSome\x20(1) }B99~ -1r%t\` -1%YYDK -14%,Xt -1+/udA -13Q+dy -1N,UY= -1vPE=z -1_\CFN -1MF&;( -19ciH. -1f)A)g -1r#?jv -1BtLzB -1r?$@B -1*Sc*] -1a+s2L -1$E.h( -1q?QFN -1Qka&% -1B{^Lw -1Om`/7 +1<:f=P +1eAD4` +1sgUt] +1aXd0H +1oQMaW +1$A_'2 +1:*ifa +16*h=6 +1\0cMO +1*mSKU +1OWS\? 1!D)]| -1bbPd> -1*jBNb +1?N6#F 1k,__> -1U0en] -1MRGzG -1`G0YMCs 1{bf:` -1nfMS4 -10X&Lb -1lIN3u +1t_zS6 1]G2vi -11Df8] -1LSHXS +1c7WAd 1C>S:u -1?V|^< -1)=\zt -1yRqfy +1Uv[i; 170$9# -1|@pvR -1?n2 -0`8zR0 -sLoadStore\x20(2) DSuu| -sAddSub\x20(0) ~&~b| -b100011 \SE_R -b1000 tBZ -b1000 GerxR -b1100000000000000000000000000 F\$v' -b100011 ZQs0& -b1000 :UWF( -b0 \55fC -b0 xdN*8 -b0 2`:l +b1 PEA1+ +b1000 I-08w +b1000000000000 1Z&s> +sBranchI\x20(9) ~&~b| +b1 \SE_R +b11111000 D%-{C +b1111 ]80eu +sSignExt32\x20(3) hBth_ +1Osgv1 +1FtE#g +b1 -'a5> +b111111111000 F\$v' +sSignExt32\x20(3) 4K~NA +1+*xfD +1mTDxc +b1 ZQs0& +b11111000 \55fC +b1 2`:l b0 Bg5Xt b0 t:_&v b0 ZZI +b0 T^2+| +b11111111 +r*}d +b100011 /@-K| +b1 t%X^U +b0 O{o|u +b11111111 T+eDu +b100011 w@}@Q +b1 v3:u- +sU64\x20(0) 71U1s +b11111111 CpG-f +b100011 J +b100011 YL%&; +b1 _XE3n +b0 GsS![ +b11111111 st\ge +sPowerIsaTimeBaseU\x20(1) )+x<8 +b111 _mE.y +b11111111 P6V.p +b100011 -J&/x +b1 8vEg3 +sStore\x20(1) w4Y}F +b11 aJW>` +b11111111 aOT,e +b100011 4>2B) +b1 ].)~" +sWidth8Bit\x20(0) Q:en@ +b11 .&`Wq +b11111111 VA4I, +b100011 jawjF +b1 9tSJZ +b0 -HxLj +b1 tHOJj +b1000000000100 A'=Rz +b1000000001000 Lu@[& +sBranch\x20(8) (5Ule +b0 ,(~"Z +b11111111 DQV+h +b1001000 JfH*[ +sDupLow32\x20(1) WN.jv +12iV50 +1>*@wE +b0 /%NB$ +b11111111 fmbnW +b100100000000000 BN0Pi +sDupLow32\x20(1) w@W?^ +1y4*ay +1aZ!9t +b0 tiOj/ +b11111111 =iLU* +b1 YN,?x +b0 25"-0 +b11111111 nR}z\ +b100100000000000 =Kc,7 +sDupLow32\x20(1) |N@&U +1W8*(@ +1l6oNR +b0 ct#Y1 +b11111111 ;;n*/ +b10010000000000000000000 {Ko6C +b0 VsL;G +b11111111 qb;sd +b100100 j:-4~ +sFunnelShift2x32Bit\x20(2) (8smv +b0 vTy6) +b11111111 066is +b100100000000000 *+[85 +sCmpRBTwo\x20(9) 9?P>e +b0 I)IKr +b11111111 X&%Q: +b10010000000000000000000 >XpS4 +b0 #YbS, +b11111111 H,Vvy +b1001000 Xk?DD +1VQsc) +sSGt\x20(4) YJ30i +1etxN% +b0 G|+;# +b11111111 h2cR< +b100100000000000 aoo[G +1q}_t4 +sSGt\x20(4) Ca$-J +17-VND +b0 Y|kUw +sPowerIsaTimeBaseU\x20(1) z:6c< +b1000 ;}jO` +b0 #q@'& +b11111111 $;3m1 +b10010000000000000000000 2IwCh +sLoad\x20(0) eRLjP +b100 ;JSI] +b0 do+%C +b11111111 <,ios +b10010000000000000000000 'GRou +b100 [h`Z\ +b0 i~}(P +b11111111 !w2ms +b100100000000000 8l,xt +sWidth16Bit\x20(1) J57w$ +b1000000001000 u];=A b1100 '{kd> b1 Yk8$* b10 %4VT6 -b100 QlkNC -05eQ.? -sLoadStore\x20(2) /]!O. -sAddSub\x20(0) gTl08 -b100011 iT~h` -b1000 TS=!3 -b0 eja+\ -b11000000000000000000 Q'66= -b100011 8)c"z -b1000 G7|vg -b1100000000000000000000000000 XHR-X -b100011 D9>eb -b1000 F~x!8 -b0 l:@`] -b0 owfWm -b0 c8c^_ +b1 N.OXU +b1000 9`!,u +b1000000000000 QlkNC +sBranchI\x20(9) gTl08 +b1 iT~h` +b11111000 eja+\ +b1111 Q'66= +sSignExt32\x20(3) F#;rq +1K(0F/ +1JbT}L +b1 8)c"z +b111111111000 XHR-X +sSignExt32\x20(3) S}^+t +1[>F.` +1O]7p~ +b1 D9>eb +b11111000 l:@`] +b1 c8c^_ b0 a)qoJ b0 5xvu} b0 ]":{i 0'sD>s 00V@C} -b100011 .W!T/ -b1000 `;fd_ -b1100000000000000000000000000 J_~S< -b100011 Cy4nP -b1000 W$"e\ -b0 I:m){ -sSignExt32\x20(3) F4&^( +04$,Y~ +0~QzJ` +b1 .W!T/ +b111111111000 J_~S< +sSignExt32\x20(3) 8wIW7 +1Yt_29 +17IwfS +b1 Cy4nP +b11111111100000000000 I:m){ +sFull64\x20(0) F4&^( 02/!rI 0#@b`# 0S0--: 0COyM_ -b100011 YAr\k -b1000 K|,p_ -b0 /gz0| -sHdlNone\x20(0) jot"3 -b0 r%%5y +b1 YAr\k +b11111000 /gz0| +b111 r%%5y 0.#hFi sHdlNone\x20(0) .fibJ b0 2]^15 -b11000 UHIo; +b0 UHIo; 0B%j@{ sFull64\x20(0) {O;7u -sFunnelShift2x8Bit\x20(0) 7Yd -b0 ^fpBb -sS32\x20(3) 0j53c -b100011 I"E#p -b1000 pQ-j( -b0 g.;g$ -b11000000000000000000 wxA}Q -b100011 SDCz$ -b1000 c$:Xv -b1100000000000000000000000000 H|1P# -b100011 ;~Hln -b0 XeL<% -b100011 $u9je -b1000 J)8I| -b0 rd6;k -sLoad\x20(0) $hy$k -b100011 -a#jV -b1000 ,XW2] -b0 =N%V@ +sSignExt32To64BitThenShift\x20(6) 7[:C +sULt\x20(1) fO_6D +15bo0, +1kK}3f +b1 ;~Hln +b1001 XeL<% +b1 $u9je +b11111111100000000000 rd6;k +b100 W:(}Z +b1 -a#jV +b11111111100000000000 =N%V@ +sWidth8Bit\x20(0) %k=W= sZeroExt\x20(0) p={M3 -b100011 2;07E -b1000 %ZUdK -b1100000000000000000000000000 (FHYG -b100 +.1SM -b1000 dp]}: +b100 13M=1 +b1 2;07E +b111111111000 (FHYG +sWidth64Bit\x20(3) rp9WJ +b1 `%:u/ +b1000000000000 +.1SM +b1000000000100 dp]}: 1/ZO0i sAluBranch\x20(0) ?ES_( -sAddSubI\x20(1) wijWV -b100001 zNb>V -b0 !1lK: -b1000000 t?Oy0 -b100001 zR!_3 -b0 ^Ck6B -b100000000000000 !@5Gr -b100001 Zc#vz -b0 acelg -b1 V!V +b100011 !1lK: +b1 +2qPD +b0 t?Oy0 +b11111111 zR!_3 +b100011 ^Ck6B +b1 WNlr4 +b0 !@5Gr +b11111111 Zc#vz +b100011 acelg +b1 K'`PE 0VZ6x* 0DzSZq -b100001 l6"y| -b0 kp1o0 -b100000000000000 2_(r4 -b100001 3N~"3 -b0 1;4pe -b10000000000000000000000 rLWzP +b11111111 l6"y| +b100011 kp1o0 +b1 |,by: +b0 2_(r4 +b11111111 3N~"3 +b100011 1;4pe +b1 rLWzP sFull64\x20(0) !cG2F -b100001 b'u5e -b0 ?^#7< -b100000 *NoKM +b11111111 b'u5e +b100011 ?^#7< +b1 HEwA' b0 7WeZ~ -b100001 d|k7\ -b0 +)cK1 -b100000000000000 WZ8. -b100001 Ot/;: -b0 /s&|Z -b100000000000000 Src+k +b11 @\Rzx +b11111111 Ot/;: +b100011 /s&|Z +b1 @aTtz +b0 Src+k b1 ){&o_ -b1000 F0~]I -b1000000000000 _|Rnb -sBranchI\x20(9) !H"--'1 +b0 I##*P +b11111111 Tv6xg +b100100000000000 ;F[y[ +sDupLow32\x20(1) >--'1 +1]d,K? 1{U*;] -1Mo_aO -b1 ,7EpA -b11111000 C*8p( -b111 VEfTR +b0 ,7EpA +b11111111 ;'X`% b1 =l/3p -b0 uOHSo -b1 xjgd` -b111111111000 ""Ld; -sSignExt32\x20(3) }\}kL +b0 xjgd` +b11111111 g/YKL +b100100000000000 ""Ld; +sDupLow32\x20(1) }\}kL +1m[5ta 1ci8O+ -17AE;Q -b1 BB2ux -b11111111100000000000 n%}L0 -b1 @Tuw~ -b11111000 hz$]J -sHdlSome\x20(1) JIDpd -b111 niwY> -sSignExt32To64BitThenShift\x20(6) ~xDx- -b1 V\V!B -b111111111000 9bae_ -sS32\x20(3) 9F:Pu -b1 qaV=[ -b11111111100000000000 ivF'. -b1 ]K20. -b11111000 An$p| -b1111 {$yG& +b0 BB2ux +b11111111 -*$nE +b10010000000000000000000 n%}L0 +b0 @Tuw~ +b11111111 ~"gxI +b100100 niwY> +sFunnelShift2x32Bit\x20(2) ~xDx- +b0 V\V!B +b11111111 3:(Fa +b100100000000000 9bae_ +sCmpRBTwo\x20(9) 9F:Pu +b0 qaV=[ +b11111111 Z0-R( +b10010000000000000000000 ivF'. +b0 ]K20. +b11111111 K|1s| +b1001000 {$yG& 1+E"k8 -sULt\x20(1) >v9Z| +sSGt\x20(4) >v9Z| 1\A/^J -19@Q;* -b1 7}63> -b111111111000 [Qh#a +b0 7}63> +b11111111 h,z|` +b100100000000000 [Qh#a 1:AS_p -sULt\x20(1) 3vjOu +sSGt\x20(4) 3vjOu 1n,5~S -1HtXod -b1 b&t'A -b1001 .\b7q -b1 rn\:K -b11111111100000000000 r`U0s +b0 b&t'A +sPowerIsaTimeBaseU\x20(1) 4{x.8 +b1000 .\b7q +b0 rn\:K +b11111111 54$." +b10010000000000000000000 r`U0s +sLoad\x20(0) u3W!- b100 -{>s -b1 DQ^uL -b11111111100000000000 d@1., +b0 DQ^uL +b11111111 J@k.S +b10010000000000000000000 d@1., b100 \OySK -b1 Ef\Qh -b111111111000 ]Mhp- -sWidth64Bit\x20(3) 87tGF -b100 gTqRd -0RBJ?^ -sLoadStore\x20(2) ,'3lf -sAddSub\x20(0) saxDL -b100011 nmNJ, -b1000 GFy&u -b0 gQi\j -b11000000000000000000 h,ii, -b100011 y[NOL -b1000 ?/NUH -b1100000000000000000000000000 :Xe5e -b100011 J1T8? -b1000 Y}*O- -b0 3i>HA -b0 VI'z@ -b0 hKeXi +b0 Ef\Qh +b11111111 h)z,a +b100100000000000 ]Mhp- +sWidth16Bit\x20(1) 87tGF +b1 ,Pv?r +b1000 a:tIz +b1000000000000 gTqRd +sBranchI\x20(9) saxDL +b1 nmNJ, +b11111000 gQi\j +b1111 h,ii, +sSignExt32\x20(3) =P|XW +1Okz_6 +1]obQt +b1 y[NOL +b111111111000 :Xe5e +sSignExt32\x20(3) LTp&~ +1AITll +1XPfL( +b1 J1T8? +b11111000 3i>HA +b1 hKeXi b0 h2_xP b0 ;p&nS b0 )YDFF 0h';2G 0v:-i] -b100011 ([Dqp -b1000 @F~J' -b1100000000000000000000000000 $?GYs -b100011 ?^om, -b1000 lWc>F -b0 +P7Rq -sSignExt32\x20(3) BeiV# +0!~GyI +0@'|mL +b1 ([Dqp +b111111111000 $?GYs +sSignExt32\x20(3) 'n2+# +1:sW)\ +1B5o-v +b1 ?^om, +b11111111100000000000 +P7Rq +sFull64\x20(0) BeiV# 0B+I|B 0C99vz 0[b=u( 055qp0 -b100011 o1\{N -b1000 35I%s -b0 L=cu[ -sHdlNone\x20(0) {p2dz -b0 hVB5 +b1 o1\{N +b11111000 L=cu[ +b111 hVB5 0yvbT4 sHdlNone\x20(0) ~uskf b0 =dL?G -b11000 nFmk, +b0 nFmk, 0?2x+z sFull64\x20(0) <^#6K -sFunnelShift2x8Bit\x20(0) <{?Id -b100011 I5HN% -b1000 c{zZ0 -b1100000000000000000000000000 Z/St+ -b100011 &G2h\ -b1000 stmPk -b0 i7?i4 -sS32\x20(3) x8a$: -b100011 E:HrB -b1000 8xhS] -b0 F6*0y -b11000000000000000000 Z_OAO -b100011 +~dd4 -b1000 s9p}o -b1100000000000000000000000000 `C]WJ -b100011 j\m^R -b0 .39{v -b100011 %w/L -b1000 AMh.? -b0 ,A9~X -sLoad\x20(0) +SQw~ -b100011 '=f3; -b1000 Ub>G= -b0 L!bB, +sSignExt32To64BitThenShift\x20(6) <{?Id +b1 I5HN% +b111111111000 Z/St+ +sS32\x20(3) yf6z] +b1 &G2h\ +b11111111100000000000 i7?i4 +sU64\x20(0) x8a$: +b1 E:HrB +b11111000 F6*0y +b1111 Z_OAO +125cGr +sULt\x20(1) 7<'-` +1H6H%Y +1\UFOQ +b1 +~dd4 +b111111111000 `C]WJ +1Y=:H? +sULt\x20(1) )Z^qC +1u/`<> +1h\5o, +b1 j\m^R +b1001 .39{v +b1 %w/L +b11111111100000000000 ,A9~X +b100 /N,f, +b1 '=f3; +b11111111100000000000 L!bB, +sWidth8Bit\x20(0) e'!k# sZeroExt\x20(0) EblHw -b100011 NNw^> -b1000 LKEU1 -b1100000000000000000000000000 r80>T +b100 wivAP +b1 NNw^> +b111111111000 r80>T +sWidth64Bit\x20(3) |*%dP +b1 b;gWF +b1000000000000 v%{gr +b1000000000100 jFa=K +1UU?*I +sAluBranch\x20(0) GDNaT +sCompareI\x20(7) 2*-)= +b11111111 #2OQ} +b100011 vksO, +b1 GN@^o +b0 sh};) +b11111111 ,V^rO +b100011 sD6!8 +b1 tpI1J +b0 df:Hc +b11111111 Dj{+ +b100011 W^wOb +b1 ^;,60 +0]<_1W +0@&b.U +b11111111 @jX] +b100011 |@vsF +b1 ct%JD +b0 `&Nae +b11111111 ^Z&bQ +b100011 MTD,2 +b1 w4qo2 +sFull64\x20(0) 3,+!U +b11111111 .>zxg +b100011 -<[`2 +b1 5OTfn +b0 6U>6D +b11111111 fu";+ +b100011 RZytC +b1 t}'pz +b0 /BJ([ +b11111111 `l|qB +b100011 1:FjN +b1 Ry[w +sU64\x20(0) ,,Krw +b11111111 7([Jb +b100011 YY4%x +b1 Ttc7y +b0 >8k +b0 },g58 +b11111111 GJBDZ +b1001000 KZwr&?+ +b11111111 ?>\Q+ +b100100000000000 ~zcGR +sDupLow32\x20(1) ,vk"' +b0 f?]#A +b11111111 >,8GX +b10010000000000000000000 A^5^n +b0 so_5p +b11111111 +?W.q +b100100 Jd9.m +sFunnelShift2x32Bit\x20(2) x*8qY +b0 z]_l= +b11111111 +%;|Z +b100100000000000 V8Bj\ +sCmpRBTwo\x20(9) d/\TS +b0 %l:7J +b11111111 u}^=~ +b10010000000000000000000 YQ.n` +b0 h6[&a +b11111111 \C[M" +b1001000 &Z[@x +1d/e>+ +sSGt\x20(4) ][)s; +1o?"]V +b0 ^;#MP +b11111111 3aP4) +b100100000000000 RS~%L +1hvHwO +sSGt\x20(4) l7K6P +1]gfCo +b0 nG&}O +sPowerIsaTimeBaseU\x20(1) 0B!23 +b1000 LQ#r] +b0 76Lmw +b11111111 T.vI4 +b10010000000000000000000 >9=-u +sLoad\x20(0) JRL\s +b100 rR-,i +b0 T+JxD +b11111111 l[Apv +b10010000000000000000000 WB*d$ +b100 t_%P` +b0 KfRhZ +b11111111 (aT\. +b100100000000000 tO`2q +sWidth16Bit\x20(1) o/, +b1000 2zS5q +1HH`O, +1[0e\~ +b100011 RY6Hs +b1000 2)e\2 +b1100000000000000000000000000 P2oz} +b100011 Y"v^@ +b1000 OL-4 +sSignExt32\x20(3) {`VhP +b100011 #+.VW +b1000 h=z'N +b11000 _<("m +b100011 hGV2& +b1000 %GLZW +b1100000000000000000000000000 Naex' +b100011 8k'1U +b1000 c&8KS +sS32\x20(3) "yiBF +b100011 aHRp, +b1000 !phME +b11000000000000000000 W!l) +b100011 rY0KZ +b1000 drc5 +b1100000000000000000000000000 ohY_% +b100011 .nE6e +b100011 f]<$( +b1000 du5.B +b100011 6V48+ +b1000 duB_& +sWidth64Bit\x20(3) f9#T{ +b100011 KiG7b +b1000 c*C}t +b1100000000000000000000000000 R0VWD +b100 @;Sos +b1000 |8Ac" +b100 E[GDd +1uuc-% +sAddSubI\x20(1) [aA3[ +b100001 hdJJ$ +b1000000 6MX)H +b100001 >eU'[ +b100000000000000 bV|:b +b100001 juSO< +b1 9sgi6 +b100001 `>w~3 +b100000000000000 Cls3? +b100001 s\q[8 +b10000000000000000000000 /@@59 +b100001 7{rb~ +b100000 E*KZJ +b100001 Ty[zg +b100000000000000 ODmmU +b100001 a`x#d +b10000000000000000000000 vM#>F +b100001 x)lDW +b1000000 Ut}_I +b100001 /*7Qu +b100000000000000 4S[6f +b100001 MN|}N +b1 b`jl# +b100001 -M6#_ +b10000000000000000000000 %2FF} +sStore\x20(1) Wht$* +b100001 "/P'. +b10000000000000000000000 $`GAj +b100001 o]>Lv +b100000000000000 0]r=m +b11 50IDv b100 c7>{C 1K(]_v sAddSubI\x20(1) o=ClH @@ -123033,73 +124649,237 @@ sWidth64Bit\x20(3) Cc=e> sSignExt\x20(1) U/kD~ b1000 }CR8; b1111111111111111111111111111110000 M7"[? -b1 J8qAt -sHdlSome\x20(1) VJ:mT -b100 _m#Zq -1`;B2N -sAddSubI\x20(1) N[/9_ -b1 oi`O4 -b1110000 TRU:3 -b11111111111111111111111111 k5"q: -sDupLow32\x20(1) \y@d8 -b1 ,ah~[ -b1111111111111111111111111111110000 1rg%6 -b1 !]>#@ -b1110000 (*Q6} -b111 }R-j? -b111 F1;&) -b111 dv~[o -b111 hF0@* -b1111 =(2jV -1f`c~# -1@!lAF -1jDU*x -12-wg$ -b1 I+MM; -b1111111111111111111111111111110000 &ur0Y -b1 yD2z{ -b1111111111111111111111100000000000 ,ZcFw -sSignExt8\x20(7) aa51" -1$!)b( -1H,a_A -1pM6~+ -1wa;fm -b1 iq]J1 -b1110000 @Bg6- -sHdlSome\x20(1) pKqXt -b111111 kg9Q+ -1?h7Fk -sHdlSome\x20(1) T&q+y -b111111 /Eznn -b111111 4W$&~ -1Kq8j' -sSignExt8\x20(7) if=47 -sFunnelShift2x64Bit\x20(3) h(yi\ -b1 hG|4^ -b1111111111111111111111111111110000 _Y)?l -b1 nT15i -b1111111111111111111111100000000000 36JT# -s\x20(15) /hG;( -b1 ];fx$ -b1110000 !1u?u -b11111111111111111111111111 '0vuv -1aH?{= -b1 YK8EA -b1111111111111111111111111111110000 P+KFL -b1 iqy>^ -sWriteL2Reg\x20(1) ;AXLe -b1 Wmr9$ -b1 [N!*W -sStore\x20(1) ,.4}J -b1 5yk5H -b1111111111111111111111100000000000 DuhJc -sWidth64Bit\x20(3) -4fM3 -sSignExt\x20(1) h1 +b1000 /2iU7 +b1100000000000000000000000000 [Wbo> +b100011 "B{=v +b1000 oZeJn +sS32\x20(3) dw/Hh +b100011 tw&{J +b1000 2E^N2 +b11000000000000000000 5wj|[ +b100011 qa;%I +b1000 7Wh_I +b1100000000000000000000000000 Sa^/* +b100011 !Z4T6 +b100011 YQp.& +b1000 <}j$a +b100011 OmvnT +b1000 j$KQ{ +sWidth64Bit\x20(3) }ZVt\ +b100011 ;[U`( +b1000 xx]D$ +b1100000000000000000000000000 x&zFF +b100 5lbfo +b1000 \5[{: +b100 %0i> +1,$G&O +sAddSubI\x20(1) +yMbc +b100001 DniYH +b1000000 `%'vL +b100001 F1AFf +b100000000000000 >ViZ} +b100001 )$-Lt +b1 V^U[8 +b100001 F,qyO +b100000000000000 =n#90 +b100001 _$?%# +b10000000000000000000000 "W__$ +b100001 ;-Z"y +b100000 "Wkoq +b100001 XS%KQ +b100000000000000 cwkK~ +b100001 Cb*0/ +b10000000000000000000000 Q$@KV +b100001 nk}.b +b1000000 uIoBB +b100001 pt;A- +b100000000000000 mI`"O +b100001 s}7? +b1 SW{ld +b100001 (t:Hv +b10000000000000000000000 CmA.R +sStore\x20(1) KGv"y +b100001 2cqk6Kc +b1111111111111111111111100000000000 Gda?f +sSignExt8\x20(7) "/NTK +1-s3Dz +1>GxH3 +16eEiB +1!u&gK +b1 -,5HB +b1110000 .,)Z1 +sHdlSome\x20(1) OFD]7 +b111111 hV-6p +15QA@A +sHdlSome\x20(1) 3Wj>) +b111111 sgm96 +b111111 T$&2x +1oX!NS +sSignExt8\x20(7) n_r0= +sFunnelShift2x64Bit\x20(3) Q64:/ +b1 !S[oU +b1111111111111111111111111111110000 $v(C` +b1 EuQ&g +b1111111111111111111111100000000000 geKT" +s\x20(15) H["-5 +b1 Z3oTw +b1110000 i1LF- +b11111111111111111111111111 {sGuK +1AGMRB +b1 @BCQ( +b1111111111111111111111111111110000 sng'| +b1 n0w"3 +sWriteL2Reg\x20(1) @6Wh^ +b1 vz]]| +b1 #A\{" +sStore\x20(1) GFU6/ +b1 B#C +b10 Zhb;B +b1000000000000000000000 -aB'c +b10 I-P?< +b10000000 1{H(9 +b10 %kOhN +b100000000000000 #!i:O +b10 9h,[u +sWriteL2Reg\x20(1) d"z,m +b10 fRBsa +b10 !+vbL +sStore\x20(1) gF{%3 +b10 MLv]\ +b1000000000000000000000 hxR^= +b10 d;an= +b100000000000000 [w)"8 +sHdlSome\x20(1) @a:}a +b1 4rI|P +b100 @>$7) +b100 ?E'qI +sLoadStore\x20(2) lvD"q +b100 pfayd +b1 e*[Uq +b1100000000000000000000 0_X)K +b100 Dfchk +b1 {}v": +b11000000000000000000000000000 Om=R2 +b100 pU[WY +b1 `OY#I +b100 o8[nM +b1 Q[`GK +b11000000000000000000000000000 .&rua +b100 nDR%8 +b1 daYrb +sSignExt32\x20(3) ~)&}( +b100 zV^l$ +b1 krOy> +b100000 &}qEw +1if"O& +b100 ?uct: +b1 vFC(* +b11000000000000000000000000000 ULjET +b100 SU$Vk +b1 QN/HH +sS32\x20(3) VtOfE +b100 :=Cq0 +b1 p:A&% +b1100000000000000000000 n1^GQ +b100 &%x.Z +b1 QT/}s +b11000000000000000000000000000 Dy|*^ +b100 BSxks +sPowerIsaTimeBaseU\x20(1) ^/dzh +b100 ]@)%< +b1 RDG@% +b100 tRFnH +b1 2oi3Z +b100 RG#r@ +b1 1d~Bk +sWidth64Bit\x20(3) K.=gg +b100 $Pz+f +b1 {\ok+ +b11000000000000000000000000000 #gkH} b1 KzNR: b1 Hg:VN -b1 Rn&!X +b10 W{y*6 +b10 9x%q| +b100 *G9"E +b100 7u^cC +b11 Rn&!X b100 ^DZCw 1|N#!& sAddSubI\x20(1) g%IEJ @@ -123161,7 +124941,86 @@ sSignExt\x20(1) DNJ1C b1000 8dK&U b1111111111111111111111111111110000 $oBnc b1 :Uy;1 -b1 6ngWu +b100 C|A4: +b100 /S?l< +sLoadStore\x20(2) bkfL5 +b100011 A\+6: +b1000 &io.5 +b11000000000000000000 3eBHX +b100011 -"*&i +b1000 !^m1b +b1100000000000000000000000000 #X\4r +b100011 K>K!U +b1000 I./Cl +1r22^4 +1_:1bc +b100011 RCe"4 +b1000 {cyM" +b1100000000000000000000000000 p82[M +b100011 ^D#JT +b1000 -~]37 +sSignExt32\x20(3) !\003 +b100011 h*BXy +b1000 \QJ}z +b11000 =|"ZI +b100011 $vgQr +b1000 @xRqG +b1100000000000000000000000000 =qJTX +b100011 EMe*8 +b1000 p[wUw +b1100000000000000000000000000 hcck. +b1 m{W`y +b100 992f$ +b1000 l'eOs +b100 Xju#L +1&Q.q2 +sAddSubI\x20(1) 1cq;o +b100001 />!Hs +b1000000 @Z|g? +b100001 Su'a0 +b100000000000000 QK,v3 +b100001 u8VKG +b1 [xfN9 +b100001 LS(0[ +b100000000000000 $0Y*5 +b100001 ?q]vF +b10000000000000000000000 J]Kdl +b100001 ,O2AU +b100000 |/lEl +b100001 w@0h2 +b100000000000000 ~FhiP +b100001 ]GpVG +b10000000000000000000000 q93m) +b100001 _T%NE +b1000000 JH%6J +b100001 gb=:h +b100000000000000 MKQyf +b100001 >?kw` +b1 ~F|)' +b100001 dy#Xs +b10000000000000000000000 S[hlJ +sStore\x20(1) bVSom +b100001 aUj-P +b10000000000000000000000 7m,ii +b100001 TO=k3 +b100000000000000 N\ak/ +b1 c>*Yt +b11 6ngWu b100 rbsX} 1[H+i -1yv"Nd -b1 2/sm& -s\"(S)NotStarted:\x200x0:\x20AddSub\x20pu0_or0x0,\x20%0x0_u7,\x20%0x0_u7,\x20-0x10_i34\" jh9?I -sHdlSome\x20(1) wP@i@ -b100 HhRin -1QTs2x -sAddSubI\x20(1) ?9\dc -b1 i!,.| -b1110000 bp7}k -b11111111111111111111111111 -!*_q -sDupLow32\x20(1) MFxq: -b1 'ldc- -b1111111111111111111111111111110000 ,73( -1 -b1111111111111111111111111111110000 U~qZ@ -b1 "}BV- -b1111111111111111111111100000000000 XxZ5w -sSignExt8\x20(7) jg1[9 -1dYQ%K -19Vq0: -1.YYK" -1[)8Vb -b1 2Fp)7 -b1110000 edUVN -sHdlSome\x20(1) 88A#u -b111111 4k~tM -17e"qk -sHdlSome\x20(1) J7yj@ -b111111 !7r6Z -b111111 Stdk1 -14\~(C -sSignExt8\x20(7) E'_|o -sFunnelShift2x64Bit\x20(3) .vf+] -b1 >'\r# -b1111111111111111111111111111110000 $kB{6 -b1 24qw1 -b1111111111111111111111100000000000 #D%Ft -s\x20(15) yv##> -b1 ^Q3O0 -b1110000 !kk2Z -b11111111111111111111111111 F:O?m -1nj5y$ -b1 WMOz+ -b1111111111111111111111111111110000 mdh!R -b1 PbvNp -sWriteL2Reg\x20(1) I&7gG -b1 abw30 -b1 [.Fe~ -sStore\x20(1) r>3h_ -b1 %l;:* -b1111111111111111111111100000000000 r2@9* -sWidth64Bit\x20(3) a}7@] -sSignExt\x20(1) ;z!hm -b1 O%0Lr -b1111111111111111111111111111110000 W7YRE -#2000000 -0spsS) -0Trgwi -0VmrjO -0~ge89 -0%3;Sp -0BEBSD -0LCUP8 -0%/Ado -#2500000 -1spsS) -1Trgwi -1VmrjO -1~ge89 -1%3;Sp -1BEBSD -1LCUP8 -1%/Ado -b100 I-08w -b1000 1Z&s> -1`8zR0 -sAluBranch\x20(0) DSuu| -sAddSubI\x20(1) ~&~b| -b100001 \SE_R -b0 tBZ -b0 GerxR -b100000000000000 F\$v' -b100001 ZQs0& -b0 :UWF( -b1 Bg5Xt -0g22Z~ -0Ma:c| -b100001 Y)aua -b0 Xw8=f -b100000000000000 &#k4$ -b100001 }(y)g -b0 'gIGX -b10000000000000000000000 yn`;P -sFull64\x20(0) 8'B;4 -b100001 Nw=#6 -b0 /%bDo -b100000 iueve -b0 %`MIb -b100001 eyKDp -b0 6u1CU -b100000000000000 p*\44 -b100001 W:}rz -b0 *h(<2 -b10000000000000000000000 i<}9< -sU64\x20(0) ]4AD -b100001 bt}41 -b0 u/9D[ -b1000000 m:Ou% -b100001 M*}E5 -b0 0evK. -b100000000000000 ]4wOz -b100001 nL)6( -b1 }R#CU -b100001 m0{pQ -b0 OAU@@ -b10000000000000000000000 ;=xb? -sStore\x20(1) ^qXED -b100001 5v()u -b0 ^*VHQ -b10000000000000000000000 6pOL/ -sWidth8Bit\x20(0) hQW$1 -b100001 #}\qx -b0 CD%P= -b100000000000000 l1v\t -b1 ._e2c -b1000 &IybE -b1000000000000 q7AbU -b100 vo/2$ -1,2\{t -sBranchI\x20(9) Pn8v/ -b1 y7)D$ -b11111000 XeM2O -b1111 0PBB~ -sSignExt32\x20(3) +Sq21 -1e}:,6 -1~O$b+ -b1 6l2a= -b111111111000 3MwsK -sSignExt32\x20(3) s{po| -1SerLg -1Kt9ky -b1 //E) -b11111000 :{M]a -b111 [7N{m -b1 ]y\?p -b1 )-:pf -b111111111000 VgWm[ -sSignExt32\x20(3) #@d}^ -1e%hH@ -1z~=bS -b1 pX\`V -b11111111100000000000 WhjJ -b111111111000 GsS![ -1FCW1< -sULt\x20(1) e{z1' -1=v:#H -1f6+p& -b1 st\ge -b1001 _mE.y -b1 P6V.p -b11111111100000000000 8vEg3 -sStore\x20(1) w4Y}F -b100 aJW>` -b1 aOT,e -b11111111100000000000 ].)~" -b100 .&`Wq -b1 VA4I, -b111111111000 -HxLj -sWidth64Bit\x20(3) $X\vk -b10 tHOJj -b1000000000000 A'=Rz -b1000000000100 Lu@[& -b100 S:lLM -1t_DKN -sCompareI\x20(7) (5Ule -b11111111 ,(~"Z -b100011 DQV+h -b1 0Yr6K -b11111111 /%NB$ -b100011 fmbnW -b1 j1@2L -b11111111 tiOj/ -b100011 =iLU* -b1 C`/}p -b11111111 25"-0 -b100011 nR}z\ -b1 JuL(I -b11111111 ct#Y1 -b100011 ;;n*/ -b1 {Ko6C -b11111111 VsL;G -b100011 qb;sd -b1 UJ`qo -b11111111 vTy6) -b100011 066is -b1 CXz8V -b11111111 I)IKr -b100011 X&%Q: -b1 >XpS4 -b11111111 #YbS, -b100011 H,Vvy -b1 7u>}p -b11111111 G|+;# -b100011 h2cR< -b1 hY"y& -b11111111 Y|kUw -sPowerIsaTimeBaseU\x20(1) z:6c< -b111 ;}jO` -b11111111 #q@'& -b100011 $;3m1 -b1 2IwCh -sStore\x20(1) eRLjP -b11 ;JSI] -b11111111 do+%C -b100011 <,ios -b1 'GRou -b11 [h`Z\ -b11111111 i~}(P -b100011 !w2ms -b1 ~_lCL -b11 HcXS= -b1000000000100 u];=A -b11 %4VT6 -b100 9`!,u -b1000 QlkNC -15eQ.? -sAluBranch\x20(0) /]!O. -sAddSubI\x20(1) gTl08 -b100001 iT~h` -b0 TS=!3 -b1000000 Q'66= -b100001 8)c"z -b0 G7|vg -b100000000000000 XHR-X -b100001 D9>eb -b0 F~x!8 -b1 a)qoJ -04$,Y~ -0~QzJ` -b100001 .W!T/ -b0 `;fd_ -b100000000000000 J_~S< -b100001 Cy4nP -b0 W$"e\ -b10000000000000000000000 I:m){ -sFull64\x20(0) F4&^( -b100001 YAr\k -b0 K|,p_ -b100000 r%%5y -b0 UHIo; -b100001 h3wDD -b0 sMQpv -b100000000000000 ;U'_i -b100001 tes)z -b0 )/>Yd -b10000000000000000000000 ^fpBb -sU64\x20(0) 0j53c -b100001 I"E#p -b0 pQ-j( -b1000000 wxA}Q -b100001 SDCz$ -b0 c$:Xv -b100000000000000 H|1P# -b100001 ;~Hln -b1 XeL<% -b100001 $u9je -b0 J)8I| -b10000000000000000000000 rd6;k -sStore\x20(1) $hy$k -b100001 -a#jV -b0 ,XW2] -b10000000000000000000000 =N%V@ -sWidth8Bit\x20(0) %k=W= -b100001 2;07E -b0 %ZUdK -b100000000000000 (FHYG -b1 `%:u/ -b1000 +.1SM -b1000000000000 dp]}: -sBranchI\x20(9) wijWV -b1 zNb>V -b11111000 qiPq/ -b1111 t?Oy0 -sSignExt32\x20(3) +0rQ4 -1ZSkBW -19W2jB -b1 zR!_3 -b111111111000 !@5Gr -sSignExt32\x20(3) f"5we -1'@XYj -1`CFk2 -b1 Zc#vz -b11111000 X:2Ac -b111 eC\C' -b1 Ed*ET -b0 V!--'1 -0{U*;] -0Mo_aO -b11111111 ,7EpA -b100011 ;'X`% -b1 zUZ8E -b0 C*8p( -b0 VEfTR -b0 =l/3p -b11111111 xjgd` -b100011 g/YKL -b1 HdJ^6 -b0 ""Ld; -sFull64\x20(0) }\}kL -0ci8O+ -07AE;Q -b11111111 BB2ux -b100011 -*$nE -b1 n%}L0 -b11111111 @Tuw~ -b100011 ~"gxI -b1 ,C#0* -b0 hz$]J -sHdlNone\x20(0) JIDpd -b0 niwY> -sFunnelShift2x8Bit\x20(0) ~xDx- -b11111111 V\V!B -b100011 3:(Fa -b1 {-IuN -b0 9bae_ -sU64\x20(0) 9F:Pu -b11111111 qaV=[ -b100011 Z0-R( -b1 ivF'. -b11111111 ]K20. -b100011 K|1s| -b1 ./}9| -b0 An$p| -b0 {$yG& -0+E"k8 -sEq\x20(0) >v9Z| -0\A/^J -09@Q;* -b11111111 7}63> -b100011 h,z|` -b1 zJOBP -b0 [Qh#a -0:AS_p -sEq\x20(0) 3vjOu -0n,5~S -0HtXod -b11111111 b&t'A -sPowerIsaTimeBaseU\x20(1) 4{x.8 -b111 .\b7q -b11111111 rn\:K -b100011 54$." -b1 r`U0s -b11 -{>s -b11111111 DQ^uL -b100011 J@k.S -b1 d@1., -b11 \OySK -b11111111 Ef\Qh -b100011 h)z,a -b1 n|-pU -b0 ]Mhp- -sWidth8Bit\x20(0) 87tGF -b100 a:tIz -b1000 gTqRd -1RBJ?^ -sAluBranch\x20(0) ,'3lf -sAddSubI\x20(1) saxDL -b100001 nmNJ, -b0 GFy&u -b1000000 h,ii, -b100001 y[NOL -b0 ?/NUH -b100000000000000 :Xe5e -b100001 J1T8? -b0 Y}*O- -b1 h2_xP -0!~GyI -0@'|mL -b100001 ([Dqp -b0 @F~J' -b100000000000000 $?GYs -b100001 ?^om, -b0 lWc>F -b10000000000000000000000 +P7Rq -sFull64\x20(0) BeiV# -b100001 o1\{N -b0 35I%s -b100000 hVB5 -b0 nFmk, -b100001 I5HN% -b0 c{zZ0 -b100000000000000 Z/St+ -b100001 &G2h\ -b0 stmPk -b10000000000000000000000 i7?i4 -sU64\x20(0) x8a$: -b100001 E:HrB -b0 8xhS] -b1000000 Z_OAO -b100001 +~dd4 -b0 s9p}o -b100000000000000 `C]WJ -b100001 j\m^R -b1 .39{v -b100001 %w/L -b0 AMh.? -b10000000000000000000000 ,A9~X -sStore\x20(1) +SQw~ -b100001 '=f3; -b0 Ub>G= -b10000000000000000000000 L!bB, -sWidth8Bit\x20(0) e'!k# -b100001 NNw^> -b0 LKEU1 -b100000000000000 r80>T -b1 b;gWF -b1000 v%{gr -b1000000000000 jFa=K -b100 &V`_k -1UU?*I -sBranchI\x20(9) 2*-)= -b1 #2OQ} -b11111000 i]+5z -b1111 sh};) -sSignExt32\x20(3) xg&xE -1B2Xdz -1^Bh`$ -17="?/ -b1 ^Z&bQ -b11111111100000000000 w4qo2 -b1 .>zxg -b11111000 1Fx%S -sHdlSome\x20(1) -.lEL -b111 G"Qgz -sSignExt32To64BitThenShift\x20(6) p\9a> -b1 fu";+ -b111111111000 /BJ([ -sS32\x20(3) vcRr< -b1 `l|qB -b11111111100000000000 Ry[w -b1 7([Jb -b11111000 LHYn| -b1111 >8k -b11111111 },g58 -b100011 GJBDZ -b1 W$a\K -b11111111 >r&?+ -b100011 ?>\Q+ -b1 q084d -b11111111 uE%zT -b100011 Y8{\< -b1 r3i&v -b11111111 zrC*% -b100011 y-GAU -b1 fa8*B -b11111111 f?]#A -b100011 >,8GX -b1 A^5^n -b11111111 so_5p -b100011 +?W.q -b1 I`a%C -b11111111 z]_l= -b100011 +%;|Z -b1 :35UK -b11111111 %l:7J -b100011 u}^=~ -b1 YQ.n` -b11111111 h6[&a -b100011 \C[M" -b1 r*bPe -b11111111 ^;#MP -b100011 3aP4) -b1 95z1H -b11111111 nG&}O -sPowerIsaTimeBaseU\x20(1) 0B!23 -b111 LQ#r] -b11111111 76Lmw -b100011 T.vI4 -b1 >9=-u -sStore\x20(1) JRL\s -b11 rR-,i -b11111111 T+JxD -b100011 l[Apv -b1 WB*d$ -b11 t_%P` -b11111111 KfRhZ -b100011 (aT\. -b1 Ph_I_ -b11 L9B+' -b100 +/EjT -b100 *&hI/ -sLoadStore\x20(2) /-h%+ -b100011 m$V$t -b1000 [WBLm -b11000000000000000000 lKCJD -b100011 ux;59 -b1000 f#8^) -b1100000000000000000000000000 rQ1Vj -b100011 M*Q>, -b1000 2zS5q -1HH`O, -1[0e\~ -b100011 RY6Hs -b1000 2)e\2 -b1100000000000000000000000000 P2oz} -b100011 Y"v^@ -b1000 OL-4 -sSignExt32\x20(3) {`VhP -b100011 #+.VW -b1000 h=z'N -b11000 _<("m -b100011 hGV2& -b1000 %GLZW -b1100000000000000000000000000 Naex' -b100011 8k'1U -b1000 c&8KS -sS32\x20(3) "yiBF -b100011 aHRp, -b1000 !phME -b11000000000000000000 W!l) -b100011 rY0KZ -b1000 drc5 -b1100000000000000000000000000 ohY_% -b100011 .nE6e -b100011 f]<$( -b1000 du5.B -b100011 6V48+ -b1000 duB_& -sWidth64Bit\x20(3) f9#T{ -b100011 KiG7b -b1000 c*C}t -b1100000000000000000000000000 R0VWD -b10 50IDv -b100 Fj8r6 -b100 -b1000 /2iU7 -b1100000000000000000000000000 [Wbo> -b100011 "B{=v -b1000 oZeJn -sS32\x20(3) dw/Hh -b100011 tw&{J -b1000 2E^N2 -b11000000000000000000 5wj|[ -b100011 qa;%I -b1000 7Wh_I -b1100000000000000000000000000 Sa^/* -b100011 !Z4T6 -b100011 YQp.& -b1000 <}j$a -b100011 OmvnT -b1000 j$KQ{ -sWidth64Bit\x20(3) }ZVt\ -b100011 ;[U`( -b1000 xx]D$ -b1100000000000000000000000000 x&zFF -b10 J8qAt -sHdlNone\x20(0) VJ:mT -b0 _m#Zq -0`;B2N -sAddSub\x20(0) N[/9_ -b0 oi`O4 -b0 TRU:3 -b0 k5"q: -sFull64\x20(0) \y@d8 -b0 ,ah~[ -b0 1rg%6 -b0 !]>#@ -b0 (*Q6} -b0 }R-j? -b0 F1;&) -b0 dv~[o -b0 hF0@* -b0 =(2jV -0f`c~# -0@!lAF -0jDU*x -02-wg$ -b0 I+MM; -b0 &ur0Y -b0 yD2z{ -b0 ,ZcFw -sFull64\x20(0) aa51" -0$!)b( -0H,a_A -0pM6~+ -0wa;fm -b0 iq]J1 -b0 @Bg6- -sHdlNone\x20(0) pKqXt -b0 kg9Q+ -0?h7Fk -sHdlNone\x20(0) T&q+y -b0 /Eznn -b0 4W$&~ -0Kq8j' -sFull64\x20(0) if=47 -sFunnelShift2x8Bit\x20(0) h(yi\ -b0 hG|4^ -b0 _Y)?l -b0 nT15i -b0 36JT# -sU64\x20(0) /hG;( -b0 ];fx$ -b0 !1u?u -b0 '0vuv -0aH?{= -b0 YK8EA -b0 P+KFL -b0 iqy>^ -sReadL2Reg\x20(0) ;AXLe -b0 Wmr9$ -b0 [N!*W -sLoad\x20(0) ,.4}J -b0 5yk5H -b0 DuhJc -sWidth8Bit\x20(0) -4fM3 -sZeroExt\x20(0) h1K!U -b1000 I./Cl -1r22^4 -1_:1bc -b100011 RCe"4 -b1000 {cyM" -b1100000000000000000000000000 p82[M -b100011 ^D#JT -b1000 -~]37 -sSignExt32\x20(3) !\003 -b100011 h*BXy -b1000 \QJ}z -b11000 =|"ZI -b100011 $vgQr -b1000 @xRqG -b1100000000000000000000000000 =qJTX -b100011 EMe*8 -b1000 p[wUw -b1100000000000000000000000000 hcck. -b1 m{W`y -b10 6ngWu -0S!`>i -sStarted\x20(1) L3vq1 b1 ?*wvf b100 n`9AE b100 Vz+N5 @@ -124093,150 +125130,193 @@ b100 +[),73( -0 -b0 U~qZ@ -b0 "}BV- -b0 XxZ5w -sFull64\x20(0) jg1[9 -0dYQ%K -09Vq0: -0.YYK" -0[)8Vb -b0 2Fp)7 -b0 edUVN -sHdlNone\x20(0) 88A#u -b0 4k~tM -07e"qk -sHdlNone\x20(0) J7yj@ -b0 !7r6Z -b0 Stdk1 -04\~(C -sFull64\x20(0) E'_|o -sFunnelShift2x8Bit\x20(0) .vf+] -b0 >'\r# -b0 $kB{6 -b0 24qw1 -b0 #D%Ft -sU64\x20(0) yv##> -b0 ^Q3O0 -b0 !kk2Z -b0 F:O?m -0nj5y$ -b0 WMOz+ -b0 mdh!R -b0 PbvNp -sReadL2Reg\x20(0) I&7gG -b0 abw30 -b0 [.Fe~ -sLoad\x20(0) r>3h_ -b0 %l;:* -b0 r2@9* -sWidth8Bit\x20(0) a}7@] -sZeroExt\x20(0) ;z!hm -b0 O%0Lr -b0 W7YRE -sHdlSome\x20(1) nkQ2N -sHdlSome\x20(1) msjmY -sHdlSome\x20(1) QL_q -sHdlSome\x20(1) $"9>$ -sHdlSome\x20(1) F[4T> -b1111111111111111111111111111111111111111111111111111111111110000 @uKa` -b100 ->lH -b111111 \Jbke -1rQ+Wq -sHdlSome\x20(1) o;l?4 -b111111 t|[\v -b111111 iV8/h -1U=Xm. -sSignExt8\x20(7) e$!yk -sFunnelShift2x64Bit\x20(3) V54m` -b1 +TF]] -b1111111111111111111111111111110000 JCe!} -b1 pU:_s -b1111111111111111111111100000000000 !PpX3 -s\x20(15) $fqWW -b1 #)mJJ -b1110000 H4CsI -b11111111111111111111111111 l<9ZG -1W3Ez> -b1 ,:H/N -b1111111111111111111111111111110000 Y^){/ -b1 hCrGT -sWriteL2Reg\x20(1) {q.)5 -b1 poEpV -b1 :NCNs -sStore\x20(1) dI&E& -b1 I;k+B -b1111111111111111111111100000000000 kXl_6 -sWidth64Bit\x20(3) IO_,q -sSignExt\x20(1) 8uiu\ -b1 -aW&V -b1111111111111111111111111111110000 srF&M -1f)+I, -sHdlSome\x20(1) .Nmg3 -sHdlSome\x20(1) DK^@) -b1111111111111111111111111111111111111111111111111111111111110000 'B=b6 -b1 ^D|wP -#3000000 +b10 plxh` +b100 eY|O> +b1000 :KovG +b100 uson +1'4GAU +sAddSubI\x20(1) rb)R> +b10 [ExK\ +b10000000 H+ZT5 +b10 Sr|Sb +b100000000000000 |[lOv +b10 >~Ihq +b10 loV +1VnkZp +1A%z-x +b1 @up]M +b1111111111111111111111111111110000 :)P7$ +b1 >vNrz +b1111111111111111111111100000000000 B?Iu; +sSignExt8\x20(7) CF"Xn +1qer3/ +1&nRd& +1-X@Ff +1T>MQU +b1 '&`u] +b1110000 WpJ&( +sHdlSome\x20(1) Ihtib +b111111 $~k+p +10S_Yn +sHdlSome\x20(1) =.[GV +b111111 TL"W@ +b111111 +j.'* +1VoysQ +sSignExt8\x20(7) v2p/3 +sFunnelShift2x64Bit\x20(3) 4LPcH +b1 gxzt: +b1111111111111111111111111111110000 o!ZS* +b1 h.q}< +b1111111111111111111111100000000000 ]AqLG +s\x20(15) br>{% +b1 rIzGO +b1110000 gBdp| +b11111111111111111111111111 4n&=f +1@$`{S +b1 n0QT5 +b1111111111111111111111111111110000 *?{=$ +b1 OTQ[C +sWriteL2Reg\x20(1) (RD!N +b1 [O*PO +b1 :'Ba1 +sStore\x20(1) yqT@W +b1 @Z]rc +b1111111111111111111111100000000000 qXBAS +sWidth64Bit\x20(3) %}qKh +sSignExt\x20(1) 'Xz^e +b1 r7:zo +b1111111111111111111111111111110000 V^Kh, +sHdlSome\x20(1) #"r$8 +b10 <`a(d +b100 mmsOk +b1000 7XMZr +b100 66w1a +1h}^7~ +sAddSubI\x20(1) ,XZ}d +b10 Jl~uo +b10000000 .*eQ[ +b10 3d\u4 +b100000000000000 `,uj" +b10 yot\: +b10 1wVLv +b10 H"ySy +b100000000000000 2K^8/ +b10 '#~4, +b1000000000000000000000 +fttv +b10 ^WW@= +1+B5b) +b10 C>+,& +b100000000000000 Vut&j +b10 ;C=+Z +b1000000000000000000000 @)Nkq +b10 *L;;6 +sHdlSome\x20(1) N;QS\ +b1 #zFMy +b100 [cyqx +b100 uu}aP +sLoadStore\x20(2) h:a+q +b100 +WpKR +b1 O=#b< +b1100000000000000000000 !KJiJ +b100 P1/U: +b1 !D8r, +b11000000000000000000000000000 P@Yr9 +b100 V{xD} +b1 dilqP +b100 g.$CP +b1 juBcI +b11000000000000000000000000000 $vt;n +b100 6S":= +b1 N4Qj0 +sSignExt32\x20(3) krT~4 +b100 P#lh@ +b1 >3pf8 +b100000 AcO_k +1:R(jf +b100 #4dBu +b1 OcSb\ +b11000000000000000000000000000 <9E{j +b100 {+lD# +b1 ApuA@ +sS32\x20(3) HS:sG +b100 k(0+m +b1 Bv[[X +b1100000000000000000000 )&cNK +b100 ,n*cU +b1 Bh/-k +b11000000000000000000000000000 {+RfY +b100 I_(nG +sPowerIsaTimeBaseU\x20(1) `PENj +b100 "fp!n +b1 98ekT +b100 Z'E<* +b1 {g/i< +b100 ^k>|b +b1 q,A#3 +sWidth64Bit\x20(3) gzcfX +b100 t@$_$ +b1 2i>{X +b11000000000000000000000000000 C';^3 +#2000000 0spsS) 0Trgwi 0VmrjO @@ -124245,7 +125325,7 @@ b1 ^D|wP 0BEBSD 0LCUP8 0%/Ado -#3500000 +#2500000 1spsS) 1Trgwi 1VmrjO @@ -124254,636 +125334,690 @@ b1 ^D|wP 1BEBSD 1LCUP8 1%/Ado -b11 PEA1+ -b1000000000100 I-08w -b1000000001000 1Z&s> -sBranch\x20(8) ~&~b| -b0 \SE_R -b11111111 tBZ -b11111111 GerxR -b100100000000000 F\$v' -sDupLow32\x20(1) 4K~NA -1TK%nF -1+*xfD -b0 ZQs0& -b11111111 :UWF( -b1 2`:l -b0 Y)aua -b11111111 Xw8=f -b100100000000000 &#k4$ -sDupLow32\x20(1) 0e.`n -1nI|r+ -1dBz6X -b0 }(y)g -b11111111 'gIGX -b10010000000000000000000 yn`;P -b0 Nw=#6 -b11111111 /%bDo -b100100 iueve -sFunnelShift2x32Bit\x20(2) f`Q{~ -b0 eyKDp -b11111111 6u1CU -b100100000000000 p*\44 -sCmpRBTwo\x20(9) A}Xg% -b0 W:}rz -b11111111 *h(<2 -b10010000000000000000000 i<}9< -b0 bt}41 -b11111111 u/9D[ -b1001000 m:Ou% -1&//~f -sSGt\x20(4) ZxX/a -11Y8\ -b0 M*}E5 -b11111111 0evK. -b100100000000000 ]4wOz -1&LOc, -sSGt\x20(4) #uq)w -1VzF}' -b0 nL)6( +b10 PEA1+ +b1000000001000 I-08w +b1000000001100 1Z&s> +sTransformedMove\x20(1) DSuu| +sAddSub\x20(0) ~&~b| +b100000 \SE_R +b1 tBZ +b1 GerxR +b0 F\$v' +sFull64\x20(0) 4K~NA +0+*xfD +0mTDxc +b100000 ZQs0& +b1 :UWF( +b0 \55fC +b0 xdN*8 +b0 2`:l +b100000 Y)aua +b1 Xw8=f +b0 &#k4$ +sFull64\x20(0) 0e.`n +0dBz6X +0of/A| +b100000 }(y)g +b1 'gIGX +b0 yn`;P +b100000 Nw=#6 +b1 /%bDo +b0 j2Ts? +sHdlNone\x20(0) v2v+' +b0 iueve +sFunnelShift2x8Bit\x20(0) f`Q{~ +b100000 eyKDp +b1 6u1CU +b0 p*\44 +sU64\x20(0) A}Xg% +b100000 W:}rz +b1 *h(<2 +b0 i<}9< +b100000 bt}41 +b1 u/9D[ +b0 -0;Ik +b0 m:Ou% +0&//~f +sEq\x20(0) ZxX/a +01Y8\ +01B\J -b0 GsS![ -0FCW1< -sEq\x20(0) e{z1' -0=v:#H -0f6+p& -b0 st\ge -b0 _mE.y -b0 P6V.p -b0 8vEg3 -sLoad\x20(0) w4Y}F +b0 -Q7hl +b100000 5v()u +b1 ^*VHQ +b0 6pOL/ +b0 'Z#$S +b100000 #}\qx +b1 CD%P= +b0 l1v\t +sWidth8Bit\x20(0) 8*+Sv +b10 ._e2c +b1000000001100 &IybE +b1000000010000 q7AbU +sAddSubI\x20(1) Pn8v/ +b100001 y7)D$ +b100001 }pc}= +b0 UV/0J +b11110000 XeM2O +b11111111111111111111111111 0PBB~ +b100001 6l2a= +b100001 S((or +b0 >ZS]P +1AG![i +1W0_by +b100001 faRN. +b100001 0ZR7S +b0 tD->I +b11110000 ^Fj6N +sHdlSome\x20(1) wGU:r +b111111 "=jp} +1VO!/0 +sHdlSome\x20(1) c]q&W +b111111 Ae\E\ +b111111 T^2+| +1^Y]il +sSignExt8\x20(7) I>!7l +sFunnelShift2x16Bit\x20(1) "A:0. +b100001 +r*}d +b100001 /@-K| +b0 t%X^U +b1111111111111111111111111111110000 O{o|u +b100001 T+eDu +b100001 w@}@Q +b1111111111111111111111000000000000 v3:u- +s\x20(15) 71U1s +b100001 CpG-f +b100001 J +b100001 YL%&; +b0 _XE3n +b1111111111111111111111111111110000 GsS![ +b100001 st\ge +b1 _mE.y +b100001 P6V.p +b100001 -J&/x +b1111111111111111111111000000000000 8vEg3 b0 aJW>` -b0 aOT,e -b0 ].)~" +b100001 aOT,e +b100001 4>2B) +b1111111111111111111111000000000000 ].)~" +sWidth64Bit\x20(3) Q:en@ +sSignExt\x20(1) 2$PGM b0 .&`Wq -b0 VA4I, -b0 -HxLj -sWidth8Bit\x20(0) $X\vk -b0 tHOJj -b0 A'=Rz -b0 Lu@[& -b0 S:lLM -0t_DKN -sAddSub\x20(0) (5Ule -b0 ,(~"Z -b0 DQV+h -b0 0Yr6K -b0 /%NB$ -b0 fmbnW -b0 j1@2L -b0 tiOj/ -b0 =iLU* -b0 C`/}p -b0 25"-0 -b0 nR}z\ -b0 JuL(I -b0 ct#Y1 -b0 ;;n*/ +b100001 VA4I, +b100001 jawjF +b0 9tSJZ +b1111111111111111111111111111110000 -HxLj +b10 tHOJj +b1000000010000 A'=Rz +b1000000010000 Lu@[& +sAddSubI\x20(1) (5Ule +b1000 ,(~"Z +b100001 DQV+h +b0 JfH*[ +sFull64\x20(0) WN.jv +02iV50 +0>*@wE +b1000 /%NB$ +b100001 fmbnW +b0 BN0Pi +sFull64\x20(0) w@W?^ +0y4*ay +0aZ!9t +b1000 tiOj/ +b100001 =iLU* +b0 YN,?x +b0 UR'K9 +b1000 25"-0 +b100001 nR}z\ +b0 =Kc,7 +sFull64\x20(0) |N@&U +0W8*(@ +0l6oNR +b1000 ct#Y1 +b100001 ;;n*/ b0 {Ko6C -b0 VsL;G -b0 qb;sd -b0 UJ`qo -b0 vTy6) -b0 066is -b0 CXz8V -b0 I)IKr -b0 X&%Q: +b1000 VsL;G +b100001 qb;sd +b0 j:-4~ +sFunnelShift2x8Bit\x20(0) (8smv +b1000 vTy6) +b100001 066is +b0 *+[85 +sU64\x20(0) 9?P>e +b1000 I)IKr +b100001 X&%Q: b0 >XpS4 -b0 #YbS, -b0 H,Vvy -b0 7u>}p -b0 G|+;# -b0 h2cR< -b0 hY"y& -b0 Y|kUw -sPowerIsaTimeBase\x20(0) z:6c< -b0 ;}jO` -b0 #q@'& -b0 $;3m1 +b1000 #YbS, +b100001 H,Vvy +b0 Xk?DD +0VQsc) +sEq\x20(0) YJ30i +0etxN% +b1000 G|+;# +b100001 h2cR< +b0 aoo[G +0q}_t4 +sEq\x20(0) Ca$-J +07-VND +b1000 Y|kUw +b1 ;}jO` +b1000 #q@'& +b100001 $;3m1 b0 2IwCh -sLoad\x20(0) eRLjP +sStore\x20(1) eRLjP b0 ;JSI] -b0 do+%C -b0 <,ios +b1000 do+%C +b100001 <,ios b0 'GRou b0 [h`Z\ -b0 i~}(P -b0 !w2ms -b0 ~_lCL -b1 HcXS= +b1000 i~}(P +b100001 !w2ms +b0 8l,xt +sWidth8Bit\x20(0) J57w$ b1000000010000 u];=A -b100 %4VT6 -b11 N.OXU -b1000000000100 9`!,u -b1000000001000 QlkNC -sBranch\x20(8) gTl08 -b0 iT~h` -b11111111 TS=!3 -b1001000 Q'66= -sDupLow32\x20(1) F#;rq -1[3:A" -1K(0F/ -b0 8)c"z -b11111111 G7|vg -b100100000000000 XHR-X -sDupLow32\x20(1) S}^+t -1|?Ur@ -1[>F.` -b0 D9>eb -b11111111 F~x!8 -b1 c8c^_ -b0 .W!T/ -b11111111 `;fd_ -b100100000000000 J_~S< -sDupLow32\x20(1) 8wIW7 -1(8$VO -1Yt_29 -b0 Cy4nP -b11111111 W$"e\ -b10010000000000000000000 I:m){ -b0 YAr\k -b11111111 K|,p_ -b100100 r%%5y -sFunnelShift2x32Bit\x20(2) 7Yd -b10010000000000000000000 ^fpBb -b0 I"E#p -b11111111 pQ-j( -b1001000 wxA}Q -1@'i^} -sSGt\x20(4) 1 { -1cp4|$ -b0 SDCz$ -b11111111 c$:Xv -b100100000000000 H|1P# -1`>[:C -sSGt\x20(4) fO_6D -15bo0, -b0 ;~Hln +b1 yzxH' +b11 %4VT6 +b10 N.OXU +b1000000001000 9`!,u +b1000000001100 QlkNC +sTransformedMove\x20(1) /]!O. +sAddSub\x20(0) gTl08 +b100000 iT~h` +b1 TS=!3 +b0 eja+\ +b0 Q'66= +sFull64\x20(0) F#;rq +0K(0F/ +0JbT}L +b100000 8)c"z +b1 G7|vg +b0 XHR-X +sFull64\x20(0) S}^+t +0[>F.` +0O]7p~ +b100000 D9>eb +b1 F~x!8 +b0 l:@`] +b0 owfWm +b0 c8c^_ +b100000 .W!T/ +b1 `;fd_ +b0 J_~S< +sFull64\x20(0) 8wIW7 +0Yt_29 +07IwfS +b100000 Cy4nP +b1 W$"e\ +b0 I:m){ +b100000 YAr\k +b1 K|,p_ +b0 /gz0| +sHdlNone\x20(0) jot"3 +b0 r%%5y +sFunnelShift2x8Bit\x20(0) 7Yd +b0 ^fpBb +b100000 I"E#p +b1 pQ-j( +b0 g.;g$ +b0 wxA}Q +0@'i^} +sEq\x20(0) 1 { +0cp4|$ +0,k{cY +b100000 SDCz$ +b1 c$:Xv +b0 H|1P# +0`>[:C +sEq\x20(0) fO_6D +05bo0, +0kK}3f +b100000 ;~Hln sPowerIsaTimeBaseU\x20(1) ?a"}} -b1000 XeL<% -b0 $u9je -b11111111 J)8I| -b10010000000000000000000 rd6;k +b0 XeL<% +b100000 $u9je +b1 J)8I| +b0 rd6;k sLoad\x20(0) $hy$k -b100 W:(}Z -b0 -a#jV -b11111111 ,XW2] -b10010000000000000000000 =N%V@ -b100 13M=1 -b0 2;07E -b11111111 %ZUdK -b100100000000000 (FHYG -sWidth16Bit\x20(1) rp9WJ -b11 `%:u/ -b1000000001000 +.1SM -b1000000001100 dp]}: -sTransformedMove\x20(1) ?ES_( -sAddSub\x20(0) wijWV -b100000 zNb>V -b1 !1lK: -b0 qiPq/ -b0 t?Oy0 -sFull64\x20(0) +0rQ4 -0ZSkBW -09W2jB -b100000 zR!_3 -b1 ^Ck6B -b0 !@5Gr -sFull64\x20(0) f"5we -0'@XYj -0`CFk2 -b100000 Zc#vz -b1 acelg -b0 X:2Ac -b0 eC\C' -b0 Ed*ET -b100000 l6"y| -b1 kp1o0 -b0 2_(r4 -sFull64\x20(0) d'`'x -0s=bSe -0(B"n` -b100000 3N~"3 -b1 1;4pe -b0 rLWzP -b100000 b'u5e -b1 ?^#7< -b0 |`0Y@ -sHdlNone\x20(0) sUi=U -b0 *NoKM -sFunnelShift2x8Bit\x20(0) bm4'{ -b100000 d|k7\ -b1 +)cK1 -b0 WZ8V +b100001 !1lK: +b0 +2qPD +b11110000 qiPq/ +b11111111111111111111111111 t?Oy0 +b100001 zR!_3 +b100001 ^Ck6B +b0 WNlr4 +b1111111111111111111111111111110000 !@5Gr +b100001 Zc#vz +b100001 acelg +b0 K'`PE +b11110000 X:2Ac +b111 eC\C' +b111 Ed*ET +b111 V!\x20(15) o-D;G +b100001 +uz|. +b100001 BKd|u +b0 i":zn +b11110000 `(kC~ +b11111111111111111111111111 5f@LH +b100001 }nR9J +b100001 6?!l5 +b0 c{|8e +b1111111111111111111111111111110000 czn[e +b100001 mZ"q' +b1 ED+_D +b100001 XicV& +b100001 }[+Z( +b1111111111111111111111000000000000 N..e| b0 .WUf] -b100000 gm@a\ -b1 RPB}I -b0 WfKEm +b100001 gm@a\ +b100001 RPB}I +b1111111111111111111111000000000000 WfKEm +sWidth64Bit\x20(3) 0Sp>. +sSignExt\x20(1) +Ax03 b0 @\Rzx -b100000 Ot/;: -b1 /s&|Z -b0 Src+k -sWidth8Bit\x20(0) yC:+, -b11 ){&o_ -b1000000001100 F0~]I +b100001 Ot/;: +b100001 /s&|Z +b0 @aTtz +b1111111111111111111111111111110000 Src+k +b10 ){&o_ +b1000000010000 F0~]I b1000000010000 _|Rnb sAddSubI\x20(1) !H"--'1 +0]d,K? +0{U*;] +b1000 ,7EpA b100001 ;'X`% -b0 zUZ8E -b11110000 C*8p( -b111 VEfTR -b111 =l/3p -b111 uOHSo -b111 }1{wd -b1111 xjGjK -1@?c)` -1ec8ZG -1nn`cR -1?0\?g -b100001 xjgd` +b0 =l/3p +b0 uOHSo +b1000 xjgd` b100001 g/YKL -b0 HdJ^6 -b1111111111111111111111111111110000 ""Ld; -b100001 BB2ux +b0 ""Ld; +sFull64\x20(0) }\}kL +0m[5ta +0ci8O+ +b1000 BB2ux b100001 -*$nE -b1111111111111111111111000000000000 n%}L0 -sSignExt8\x20(7) `ej:F -1e98Pn -1VH""n -1>gQxD -19`*Px -b100001 @Tuw~ +b0 n%}L0 +b1000 @Tuw~ b100001 ~"gxI -b0 ,C#0* -b11110000 hz$]J -sHdlSome\x20(1) JIDpd -b111111 niwY> -1,>Oc` -sHdlSome\x20(1) vQL"G -b111111 11mQJ -b111111 \]ww> -1ubXf5 -sSignExt8\x20(7) [gcwU -sFunnelShift2x16Bit\x20(1) ~xDx- -b100001 V\V!B +b0 niwY> +sFunnelShift2x8Bit\x20(0) ~xDx- +b1000 V\V!B b100001 3:(Fa -b0 {-IuN -b1111111111111111111111111111110000 9bae_ -b100001 qaV=[ +b0 9bae_ +sU64\x20(0) 9F:Pu +b1000 qaV=[ b100001 Z0-R( -b1111111111111111111111000000000000 ivF'. -s\x20(15) Viu)x -b100001 ]K20. +b0 ivF'. +b1000 ]K20. b100001 K|1s| -b0 ./}9| -b11110000 An$p| -b11111111111111111111111111 {$yG& -b100001 7}63> +b0 {$yG& +0+E"k8 +sEq\x20(0) >v9Z| +0\A/^J +b1000 7}63> b100001 h,z|` -b0 zJOBP -b1111111111111111111111111111110000 [Qh#a -b100001 b&t'A +b0 [Qh#a +0:AS_p +sEq\x20(0) 3vjOu +0n,5~S +b1000 b&t'A b1 .\b7q -b100001 rn\:K +b1000 rn\:K b100001 54$." -b1111111111111111111111000000000000 r`U0s +b0 r`U0s +sStore\x20(1) u3W!- b0 -{>s -b100001 DQ^uL +b1000 DQ^uL b100001 J@k.S -b1111111111111111111111000000000000 d@1., -sWidth64Bit\x20(3) d%oDn -sSignExt\x20(1) '=9WG +b0 d@1., b0 \OySK -b100001 Ef\Qh +b1000 Ef\Qh b100001 h)z,a -b0 n|-pU -b1111111111111111111111111111110000 ]Mhp- -b11 ,Pv?r -b1000000000100 a:tIz -b1000000001000 gTqRd -sBranch\x20(8) saxDL -b0 nmNJ, -b11111111 GFy&u -b1001000 h,ii, -sDupLow32\x20(1) =P|XW -1G"d=} -1Okz_6 -b0 y[NOL -b11111111 ?/NUH -b100100000000000 :Xe5e -sDupLow32\x20(1) LTp&~ -1KA9gj -1AITll -b0 J1T8? -b11111111 Y}*O- -b1 hKeXi -b0 ([Dqp -b11111111 @F~J' -b100100000000000 $?GYs -sDupLow32\x20(1) 'n2+# -1`Hbpf -1:sW)\ -b0 ?^om, -b11111111 lWc>F -b10010000000000000000000 +P7Rq -b0 o1\{N -b11111111 35I%s -b100100 hVB5 -sFunnelShift2x32Bit\x20(2) <{?Id -b0 I5HN% -b11111111 c{zZ0 -b100100000000000 Z/St+ -sCmpRBTwo\x20(9) yf6z] -b0 &G2h\ -b11111111 stmPk -b10010000000000000000000 i7?i4 -b0 E:HrB -b11111111 8xhS] -b1001000 Z_OAO -125cGr -sSGt\x20(4) 7<'-` -1H6H%Y -b0 +~dd4 -b11111111 s9p}o -b100100000000000 `C]WJ -1Y=:H? -sSGt\x20(4) )Z^qC -1u/`<> -b0 j\m^R +b0 ]Mhp- +sWidth8Bit\x20(0) 87tGF +b10 ,Pv?r +b1000000001000 a:tIz +b1000000001100 gTqRd +sTransformedMove\x20(1) ,'3lf +sAddSub\x20(0) saxDL +b100000 nmNJ, +b1 GFy&u +b0 gQi\j +b0 h,ii, +sFull64\x20(0) =P|XW +0Okz_6 +0]obQt +b100000 y[NOL +b1 ?/NUH +b0 :Xe5e +sFull64\x20(0) LTp&~ +0AITll +0XPfL( +b100000 J1T8? +b1 Y}*O- +b0 3i>HA +b0 VI'z@ +b0 hKeXi +b100000 ([Dqp +b1 @F~J' +b0 $?GYs +sFull64\x20(0) 'n2+# +0:sW)\ +0B5o-v +b100000 ?^om, +b1 lWc>F +b0 +P7Rq +b100000 o1\{N +b1 35I%s +b0 L=cu[ +sHdlNone\x20(0) {p2dz +b0 hVB5 +sFunnelShift2x8Bit\x20(0) <{?Id +b100000 I5HN% +b1 c{zZ0 +b0 Z/St+ +sU64\x20(0) yf6z] +b100000 &G2h\ +b1 stmPk +b0 i7?i4 +b100000 E:HrB +b1 8xhS] +b0 F6*0y +b0 Z_OAO +025cGr +sEq\x20(0) 7<'-` +0H6H%Y +0\UFOQ +b100000 +~dd4 +b1 s9p}o +b0 `C]WJ +0Y=:H? +sEq\x20(0) )Z^qC +0u/`<> +0h\5o, +b100000 j\m^R sPowerIsaTimeBaseU\x20(1) =1kw; -b1000 .39{v -b0 %w/L -b11111111 AMh.? -b10010000000000000000000 ,A9~X +b0 .39{v +b100000 %w/L +b1 AMh.? +b0 ,A9~X sLoad\x20(0) +SQw~ -b100 /N,f, -b0 '=f3; -b11111111 Ub>G= -b10010000000000000000000 L!bB, -b100 wivAP -b0 NNw^> -b11111111 LKEU1 -b100100000000000 r80>T -sWidth16Bit\x20(1) |*%dP -b0 b;gWF -b0 v%{gr -b0 jFa=K -b0 &V`_k -0UU?*I -sAddSub\x20(0) 2*-)= -b0 #2OQ} -b0 i]+5z -b0 sh};) -sFull64\x20(0) xg&xE -0B2Xdz -0^Bh`$ -07="?/ -b0 ^Z&bQ -b0 w4qo2 -b0 .>zxg -b0 1Fx%S -sHdlNone\x20(0) -.lEL -b0 G"Qgz -sFunnelShift2x8Bit\x20(0) p\9a> -b0 fu";+ -b0 /BJ([ -sU64\x20(0) vcRr< -b0 `l|qB -b0 Ry[w -b0 7([Jb -b0 LHYn| -b0 >G= +b0 L!bB, +b0 wivAP +b100000 NNw^> +b1 LKEU1 +b0 r80>T +sWidth8Bit\x20(0) |*%dP +b10 b;gWF +b1000000001100 v%{gr +b1000000010000 jFa=K +sAddSubI\x20(1) 2*-)= +b100001 #2OQ} +b100001 vksO, +b0 GN@^o +b11110000 i]+5z +b11111111111111111111111111 sh};) +b100001 ,V^rO +b100001 sD6!8 +b0 tpI1J +b1111111111111111111111111111110000 df:Hc +b100001 Dj{+ +b100001 W^wOb +b0 ^;,60 +b11110000 I\hxa +b111 Ulf`d +b111 ]33~R +b111 Tq8l+ +b111 T{|1R +b1111 }_$k6 +1.;)9F +1D"s+s +1]<_1W +1@&b.U +b100001 @jX] +b100001 |@vsF +b0 ct%JD +b1111111111111111111111111111110000 `&Nae +b100001 ^Z&bQ +b100001 MTD,2 +b1111111111111111111111000000000000 w4qo2 +sSignExt8\x20(7) 3,+!U +1;P:@9 +1W.P<2 +1Ug*@' +1Rc+=F +b100001 .>zxg +b100001 -<[`2 +b0 5OTfn +b11110000 1Fx%S +sHdlSome\x20(1) -.lEL +b111111 G"Qgz +1Q{ST, +sHdlSome\x20(1) 6-{(: +b111111 4n/Ly +b111111 6U>6D +1.Yv,) +sSignExt8\x20(7) tPRxP +sFunnelShift2x16Bit\x20(1) p\9a> +b100001 fu";+ +b100001 RZytC +b0 t}'pz +b1111111111111111111111111111110000 /BJ([ +b100001 `l|qB +b100001 1:FjN +b1111111111111111111111000000000000 Ry[w +s\x20(15) ,,Krw +b100001 7([Jb +b100001 YY4%x +b0 Ttc7y +b11110000 LHYn| +b11111111111111111111111111 >8k -b0 },g58 -b0 GJBDZ -b0 W$a\K -b0 >r&?+ -b0 ?>\Q+ -b0 q084d -b0 uE%zT -b0 Y8{\< -b0 r3i&v -b0 zrC*% -b0 y-GAU -b0 fa8*B -b0 f?]#A -b0 >,8GX +b100001 ~Pb[l +b100001 P:T(_ +b0 nsD`2 +b1111111111111111111111111111110000 /Pn_y +b10 =a|@p +b1000000010000 P%JJ| +b1000000010000 ,TCQK +sAddSubI\x20(1) BK>8k +b1000 },g58 +b100001 GJBDZ +b0 KZwr&?+ +b100001 ?>\Q+ +b0 ~zcGR +sFull64\x20(0) ,vk"' +b1000 f?]#A +b100001 >,8GX b0 A^5^n -b0 so_5p -b0 +?W.q -b0 I`a%C -b0 z]_l= -b0 +%;|Z -b0 :35UK -b0 %l:7J -b0 u}^=~ +b1000 so_5p +b100001 +?W.q +b0 Jd9.m +sFunnelShift2x8Bit\x20(0) x*8qY +b1000 z]_l= +b100001 +%;|Z +b0 V8Bj\ +sU64\x20(0) d/\TS +b1000 %l:7J +b100001 u}^=~ b0 YQ.n` -b0 h6[&a -b0 \C[M" -b0 r*bPe -b0 ^;#MP -b0 3aP4) -b0 95z1H -b0 nG&}O -sPowerIsaTimeBase\x20(0) 0B!23 -b0 LQ#r] -b0 76Lmw -b0 T.vI4 +b1000 h6[&a +b100001 \C[M" +b0 &Z[@x +0d/e>+ +sEq\x20(0) ][)s; +0o?"]V +b1000 ^;#MP +b100001 3aP4) +b0 RS~%L +0hvHwO +sEq\x20(0) l7K6P +0]gfCo +b1000 nG&}O +b1 LQ#r] +b1000 76Lmw +b100001 T.vI4 b0 >9=-u -sLoad\x20(0) JRL\s +sStore\x20(1) JRL\s b0 rR-,i -b0 T+JxD -b0 l[Apv +b1000 T+JxD +b100001 l[Apv b0 WB*d$ b0 t_%P` -b0 KfRhZ -b0 (aT\. -b0 Ph_I_ -b1 L9B+' -sHdlSome\x20(1) /:g|& -sRetiredInstructions\x20(1) >y]-? -b1 _(R$b -b100 @;Sos -b1000 |8Ac" -b100 E[GDd -1uuc-% -sAddSubI\x20(1) [aA3[ -b100001 hdJJ$ -b1000000 6MX)H -b100001 >eU'[ -b100000000000000 bV|:b -b100001 juSO< -b1 9sgi6 -b100001 `>w~3 -b100000000000000 Cls3? -b100001 s\q[8 -b10000000000000000000000 /@@59 -b100001 7{rb~ -b100000 E*KZJ -b100001 Ty[zg -b100000000000000 ODmmU -b100001 a`x#d -b10000000000000000000000 vM#>F -b100001 x)lDW -b1000000 Ut}_I -b100001 /*7Qu -b100000000000000 4S[6f -b100001 MN|}N -b1 b`jl# -b100001 -M6#_ -b10000000000000000000000 %2FF} -sStore\x20(1) Wht$* -b100001 "/P'. -b10000000000000000000000 $`GAj -b100001 o]>Lv -b100000000000000 0]r=m +b1000 KfRhZ +b100001 (aT\. +b0 tO`2q +sWidth8Bit\x20(0) o/6c=# b1000 E{f') b1000000000000 "1`4I @@ -124947,7 +126081,7 @@ b100 &-:^? b1 s@z.r b111111111000 . -1,$G&O -sAddSubI\x20(1) +yMbc -b100001 DniYH -b1000000 `%'vL -b100001 F1AFf -b100000000000000 >ViZ} -b100001 )$-Lt -b1 V^U[8 -b100001 F,qyO -b100000000000000 =n#90 -b100001 _$?%# -b10000000000000000000000 "W__$ -b100001 ;-Z"y -b100000 "Wkoq -b100001 XS%KQ -b100000000000000 cwkK~ -b100001 Cb*0/ -b10000000000000000000000 Q$@KV -b100001 nk}.b -b1000000 uIoBB -b100001 pt;A- -b100000000000000 mI`"O -b100001 s}7? -b1 SW{ld -b100001 (t:Hv -b10000000000000000000000 CmA.R -sStore\x20(1) KGv"y -b100001 2cqr +b11111111 X~]Mi +b100100 Uia)[ +sFunnelShift2x32Bit\x20(2) wXaQ3 +b11111111 -!HQh +b100100000000000 QYi$` +sCmpRBTwo\x20(9) #lYDw +b11111111 z8`Q+ +b10010000000000000000000 1Ai +b10010000000000000000000 iN7JB +b100 \,4xP +b11111111 Lk*Xz +b100100000000000 ~X`=A +sWidth16Bit\x20(1) O\J[q +b110 50IDv b1 A/2&\ b1000 3U{._ b1000000000000 0^Fub @@ -125099,7 +126251,7 @@ b100 FW[9K b1 ne"E7 b111111111000 2\kwN sWidth64Bit\x20(3) "B#$v -b10 G]Da0 +b1 G]Da0 b1000000000000 J`HNu b1000000000100 f,@)} b100 #8@VS @@ -125150,200 +126302,440 @@ b11 I%fJg b11111111 tRvf7 b100011 >7)#& b1 'yfT` -b101 J8qAt -sHdlNone\x20(0) Ls -b100 N=9s$ -1b..ii -sBranchI\x20(9) +]vTu -b11 i0XGM -b1111000 *Py9= -b11111 CKdoe -sZeroExt8\x20(6) +.3X2 -1d^GZ4 -b11 AP}j_ -b111111111000 r%\mx -sSignExt32\x20(3) su`^* -1F9qN -1RBn:{ -b11 +tY{) -b1111000 I%;yk -b111 XC\wq -b11 Uw`vm -b11 G\=d= -b111111111000 sPsi" -sSignExt32\x20(3) -|fxi -19;h'R -1rlO"u -b11 N9;^T -b1111111110000000000 F;FJ? -b11 lgRf& -b1111000 /:8Q1 -sHdlSome\x20(1) ES=8A -b1111 Ya(=, -sSignExt8To64BitThenShift\x20(4) `bh*_ -b11 e&cM -b111111111000 y67vQ -sS32\x20(3) Y@ZT6 -b11 79G'` -b1111111110000000000 mGr9D -b11 :0&7< -b1111000 _{A^} -b11111 *8z82 -sSLt\x20(3) G>,DG -1:@CpG -11t3$W -b11 :y{jP -b111111111000 r9u&4 -1Q2m' -sULt\x20(1) #=);e -11ZbWS -1T.MO] -b11 I}bAd -sWriteL2Reg\x20(1) Sq%D, -b100 ^qdk4 -b11 `XBe' -b100 ;b%5v -b11 KHf-Y -sStore\x20(1) S'cKn -b100 .){3^ -b11 JrUXq -b1111111110000000000 O/U.N -b100 ]`>xJ -b11 90J+V -b111111111000 73]@& -sWidth64Bit\x20(3) :T!Xy -sHdlSome\x20(1) `~abz -b1 Z"QXv -b100 Sr(_e -b100 EQG5u -sLoadStore\x20(2) Rz2_# -b100 _srr\ -b1 f%+e6 -b1100000000000000000000 9dybB -b100 k!QDF -b1 GkQv\ -b11000000000000000000000000000 Xz)LV -b100 zR"7[ -b1 DWKXz -b100 [rp,_ -b1 f3E$U -b11000000000000000000000000000 nC_y@ -b100 v[7Y3 -b1 j^~&R -sSignExt32\x20(3) jT{gO -b100 "R+BF -b1 0~{Ld -b100000 ?^h"q -1YamXq -b100 ()^]$ -b1 5{OP; -b11000000000000000000000000000 U3VF| -b100 p/|6p -b1 f9yLp -sS32\x20(3) {38B( -b100 'mZ2c -b1 xfDL; -b1100000000000000000000 UG'>S -b100 Z4hLQ -b1 59k<} -b11000000000000000000000000000 ]s$?X -b100 qZy~1 -sPowerIsaTimeBaseU\x20(1) aAM%u -b100 ?53yR -b1 R!+vv -b100 ?D1!P -b1 r6xKd -b100 y%b\W -b1 A=!oq -sWidth64Bit\x20(3) \&H'c -b100 [w2>S -b1 9c!EF -b11000000000000000000000000000 /IlZk -b1111111111111111111111111111111111111111111111111111111111110000 ]N([G +b1 e(`:4 +b1000000000100 rkB,8 +b1000000001000 EndVc +b100 l`eho +1>,IVt +sBranch\x20(8) 5'K^W +b11111111 L.OQj +b1001000 N+>Ds +sDupLow32\x20(1) _5!GN +1~WT%? +14IhW- +b11111111 0_A+) +b100100000000000 JT]R~ +sDupLow32\x20(1) st8)~ +1Tr)fp +1!0-m@ +b11111111 2$w3J +b1 \QZyz +b1 xA[Gm +b11111111 mzn]t +b100100000000000 hcUCD +sDupLow32\x20(1) X_@ro +1&}%2R +1!AL== +b11111111 Y?`8j +b10010000000000000000000 [KAC" +b11111111 &X0.9 +b100100 CX/hj +sFunnelShift2x32Bit\x20(2) Z7|(g +b11111111 t%QY/ +b100100000000000 x$va: +sCmpRBTwo\x20(9) ie&&> +b11111111 SVj`u +b10010000000000000000000 t#nc" +b11111111 p~},5 +b1001000 oum5t +1m.,X+ +sSGt\x20(4) ku[O] +1WNFMV +b11111111 vdXA_ +b100100000000000 Ny6f~ +1a&#c> +sSGt\x20(4) ;qOo% +1S*R0x +sPowerIsaTimeBaseU\x20(1) n6|Tw +b1000 \xq^e +b11111111 @8-W] +b10010000000000000000000 vcEk^ +b100 cMOD+ +b11111111 4bggS +b10010000000000000000000 }vV&. +b100 eJDzj +b11111111 Q;_/e +b100100000000000 Lz'DZ +sWidth16Bit\x20(1) =~8Dj +b110 J8qAt +b1 }:QxN +b100 hh!}] +b1000000000000 k@R+E +b1000000000100 +PXSv +sCompareI\x20(7) MblDA +b1 [1QYf +b100 Q?&yg +b1 NO?~f +b0 iX+/, +b0 J6fRs +sFull64\x20(0) +,=3, +b1 >rfq~ +b100 gFsv> +b1 v#Ski +b0 ^I6uW +b1 oe:=f +b100 n%YVO +b1 "g!AL +b0 U_&Hd +b0 A~ME4 +b0 4F'jO +b0 r!)u; +b0 Q(_@E +b0 gCWse +0O7 +b0 g@~^Z +b1 GkaGC +b100 m]~n+ +b1 Gda?f +sFull64\x20(0) "/NTK +0-s3Dz +0>GxH3 +06eEiB +0!u&gK +b1 mW0X1 +b100 scS,5 +b1 A1IAK +b0 .,)Z1 +sHdlNone\x20(0) OFD]7 +b0 hV-6p +05QA@A +sHdlNone\x20(0) 3Wj>) +b0 sgm96 +b0 T$&2x +0oX!NS +sFull64\x20(0) n_r0= +sFunnelShift2x8Bit\x20(0) Q64:/ +b1 <`".; +b100 ^wgDb +b1 +C:9| +b0 $v(C` +b1 yU)K+ +b100 pyXrG +b1 geKT" +sU64\x20(0) H["-5 +b1 p-iOX +b100 `5VG7 +b1 mxU.; +b0 i1LF- +b0 {sGuK +0AGMRB +b1 \'IUv +b100 0~>JX +b1 PQAEX +b0 sng'| +b1 ?NS&) +b11 y1^x4 +b1 DBl,V +b10000100 JO/R^ +b11 b3\P: +b1 RrKX{ +b100 Jje[. +b1 Ga+b] +b11 :UwDD +b1 T_:GV +b100 6Ea*P +b1 xQk'J +sWidth8Bit\x20(0) [/"AR +sZeroExt\x20(0) ;8"H: +b11 N>D*k +b1 B`];W +b100 o7@]L +b1 QFU4L +b0 pEu:L +sHdlSome\x20(1) 6i^,, +b100 !Z5Ty +1yJx~x +sAddSubI\x20(1) PsP"T +b1 -Fa@y +b1110000 o%w2Y +b11111111111111111111111111 ]uq,* +sDupLow32\x20(1) @\M,% +b1 GDd@2 +b1111111111111111111111111111110000 !|=YH +b1 g%"]c +b1110000 ~=]e4 +b111 `Ar=O +b111 N^W~U +b111 'KOL@ +b111 zWEGD +b1111 $+BOf +10]j]# +1E2NJP +1)a!E8 +1#v50) +b1 +V=.G +b1111111111111111111111111111110000 GIe"C +b1 Cz?In +b1111111111111111111111100000000000 \9[(V +sSignExt8\x20(7) 5Ym+? +1Au,$Y +1}"i#Y +1U}R,Y +1XgFW= +b1 AV=HX +b1110000 (D$x- +sHdlSome\x20(1) ^"3]Z +b111111 p09^| +1:M$y: +sHdlSome\x20(1) LM8dP +b111111 Y>)8i +b111111 ;cJ{> +13YwB| +sSignExt8\x20(7) xkm?J +sFunnelShift2x64Bit\x20(3) H+S~7 +b1 @`@]V +b1111111111111111111111111111110000 39{aZ +b1 q]xmK +b1111111111111111111111100000000000 F|ri< +s\x20(15) 5GC.k +b1 G~T< +b1110000 Y+BM= +b11111111111111111111111111 ,a)oI +1j(,Qx +b1 &}w3a +b1111111111111111111111111111110000 l4P?K +b1 p7%jw +sWriteL2Reg\x20(1) `>N@0 +b1 _[R+r +b1 QvkOT +sStore\x20(1) 1/&bx +b1 rxq7X +b1111111111111111111111100000000000 d`61s +sWidth64Bit\x20(3) ]E"x\ +sSignExt\x20(1) #y5o` +b1 >Ps_l +b1111111111111111111111111111110000 ioPCT +b1 PfE*7 +b101 !}q}3 +b1000000000100 P6Lor +b1000000001000 %T}0a +sBranch\x20(8) [mX0D +b1 rE8w6 +b1001 N]QBz +b1001000 /f@r\ +sDupLow32\x20(1) 0M7*L +1'\Vg +1;p";g +b1 Hn*&] +b1001 3UKf> +b1000000000000000000010010000000000 !:mCD +sZeroExt16\x20(4) M[>K& +1E5@;] +b1 4#t0> +b1001 W8XS1 +b1 #,W(' +b1 "/Cu? +b1 PlfY7 +b1001 jK1(D +b1000000000000000000010010000000000 x+bLK +sZeroExt16\x20(4) iN|/x +1(oYiB +b1 7N(2B +b1001 Ry^d6 +b100100000000000000000 r]5!T +1`8>0x +b1 aw14V +b1001 &Z4~: +b100100 Wo_@D +0Xk9_R +sFunnelShift2x32Bit\x20(2) jfWXu +b1 D!mcj +b1001 LbNqC +b1000000000000000000010010000000000 iJ>#C +sU16\x20(4) Es'.K +b1 6Bs+q +b1001 q>44& +b100100000000000000000 -aB'c +b1 PUwX9 +b1001 cAAiR +b1001000 1{H(9 +1$nq= +sSGt\x20(4) K#iLK +1dtC%c +b1 +EHVj +b1001 ?M[[K +b1000000000000000000010010000000000 #!i:O +sUGt\x20(2) &]oEL +1pF>~[ +b1 =%q +sReadL2Reg\x20(0) d"z,m +b100 L4vhD +b1 nQ]F$ +b1001 O%K'j +b100 F-eaL +b1 TKqtx +b1001 2Ha^E +sLoad\x20(0) gF{%3 +b100 WDN^" +b1 Z5vY) +b1001 :Zs7T +b100100000000000000000 hxR^= +b100 iuTMY +b1 S(YP[ +b1001 #HCal +b1000000000000000000010010000000000 [w)"8 +sSignExt\x20(1) B-XFE +sHdlSome\x20(1) "=*ox +b10 |D8iF +b100 yn~ON +b1000 hF1zf +b100 =uFVc +1b{(Ll +sAddSubI\x20(1) 8QL]D +b10 mn)I; +b10000000 .Z?R> +b10 [eEq& +b100000000000000 eR>$x +b10 {0U!T +b10 Vw6*U +b10 oV$!P +b100000000000000 sX4NJ +b10 6R/4B +b1000000000000000000000 bYd%G +b10 }2PwT +1o8G+$ +b10 hF4^) +b100000000000000 5IJ}i +b10 1#)3: +b10000000 x?/rZ +b10 V9dUY +b100000000000000 _5:60 +b10 4xi~I +sWriteL2Reg\x20(1) +b100000000000000 :'5Bw +sHdlSome\x20(1) 2+~8. +b1 e.>!d +b11 Pf4v- +b1000 w(Y.E +b1000000000000 #77!F +b100 N8AJ[ +1WqnyH +sBranchI\x20(9) hO;,E +b11 o70n3 +b1111000 ic)l7 +b11111 Fb^`# +sZeroExt8\x20(6) !#$|) +1#mS/Q +b11 4ZiR{ +b111111111000 }{9s? +sSignExt32\x20(3) .X3*Y +1uEIl' +1)U6jj +b11 T}6F{ +b1111000 x#u|# +b111 2qgU| +b11 S6jJW +b11 PlkVY +b111111111000 GBP=# +sSignExt32\x20(3) V9g+: +1{M,9L +1|Qmtn +b11 4UYzc +b1111111110000000000 TdVa( +b11 c;]X: +b1111000 @mWc| +sHdlSome\x20(1) pyQf< +b1111 Mf}"1 +sSignExt8To64BitThenShift\x20(4) =?~c: +b11 vK5MO +b111111111000 `6k&. +sS32\x20(3) []~,Y +b11 WN]D: +b1111111110000000000 =La9s +b11 Hg%`D +b1111000 7tgJR +b11111 gn4!j +sSLt\x20(3) '-L5Z +1}5`yD +1Y(xel +b11 <3&o{ +b111111111000 L)/~: +1qTLL~ +sULt\x20(1) PYr8_ +1(^ad; +1PNX:n +b11 +%u8S +sWriteL2Reg\x20(1) yK$C< +b100 .LF;N +b11 dyBI< +b100 Dkv_< +b11 q27kl +sStore\x20(1) zwMR* +b100 a7Z34 +b11 N~"3y +b1111111110000000000 O(\N_ +b100 dWYPP +b11 ,'hfW +b111111111000 m>x7" +sWidth64Bit\x20(3) +uLF* +sHdlNone\x20(0) @a:}a +b0 4rI|P +b0 @>$7) +b0 ?E'qI +sAluBranch\x20(0) lvD"q +b0 pfayd +b0 e*[Uq +b0 0_X)K +b0 Dfchk +b0 {}v": +b0 Om=R2 +b0 pU[WY +b0 `OY#I +b0 o8[nM +b0 Q[`GK +b0 .&rua +b0 nDR%8 +b0 daYrb +sFull64\x20(0) ~)&}( +b0 zV^l$ +b0 krOy> +b0 &}qEw +0if"O& +b0 ?uct: +b0 vFC(* +b0 ULjET +b0 SU$Vk +b0 QN/HH +sU64\x20(0) VtOfE +b0 :=Cq0 +b0 p:A&% +b0 n1^GQ +b0 &%x.Z +b0 QT/}s +b0 Dy|*^ +b0 BSxks +sPowerIsaTimeBase\x20(0) ^/dzh +b0 ]@)%< +b0 RDG@% +b0 tRFnH +b0 2oi3Z +b0 RG#r@ +b0 1d~Bk +sWidth8Bit\x20(0) K.=gg +b0 $Pz+f +b0 {\ok+ +b0 #gkH} b11 2dI+? b11 )]`8> -b10 W{y*6 -b10 9x%q| b1 $p9bV b1 WZL2f b1001 37y=/ -b101 Rn&!X -b100 992f$ -b1000 l'eOs -b100 Xju#L -1&Q.q2 -sAddSubI\x20(1) 1cq;o -b100001 />!Hs -b1000000 @Z|g? -b100001 Su'a0 -b100000000000000 QK,v3 -b100001 u8VKG -b1 [xfN9 -b100001 LS(0[ -b100000000000000 $0Y*5 -b100001 ?q]vF -b10000000000000000000000 J]Kdl -b100001 ,O2AU -b100000 |/lEl -b100001 w@0h2 -b100000000000000 ~FhiP -b100001 ]GpVG -b10000000000000000000000 q93m) -b100001 _T%NE -b1000000 JH%6J -b100001 gb=:h -b100000000000000 MKQyf -b100001 >?kw` -b1 ~F|)' -b100001 dy#Xs -b10000000000000000000000 S[hlJ -sStore\x20(1) bVSom -b100001 aUj-P -b10000000000000000000000 7m,ii -b100001 TO=k3 -b100000000000000 N\ak/ -b1 c>*Yt +b110 Rn&!X b1 fSYB' b1000 (Tb@s b1000000000000 %^)!N @@ -125408,7 +126800,7 @@ b1 \UV1\ b111111111000 3D8v? sWidth64Bit\x20(3) Iy0o* b1 *B$;$ -b10 ~844q +b1 ~844q b1000000000000 /cb.q b1000000000100 #djZj b100 1vANG @@ -125460,47 +126852,66 @@ b11111111 "%Zxz b100011 "oVLw b1 t?9-+ b1 S15xi -b101 6ngWu -1pZ8e) -0yv"Nd -sFinished\x20(2) L3vq1 -b10 plxh` -b100 eY|O> -b1000 :KovG -b100 uson -1'4GAU -sAddSubI\x20(1) rb)R> -b10 [ExK\ -b10000000 H+ZT5 -b10 Sr|Sb -b100000000000000 |[lOv -b10 >~Ihq -b10 ST +1i\}M< +17uO +b1001000 Y_(.e +1Id.si +sSGt\x20(4) Qvv8H +1UTNc" +b11111111 k%WYK +b100100000000000 >-6MN +1DhZ$J +sSGt\x20(4) D46m9 +1Z81Ep +sPowerIsaTimeBaseU\x20(1) oj8kD +b1000 -hb)p +b11111111 z!`l= +b10010000000000000000000 kf}g +b100 rYn-w +b11111111 \U/eB +b10010000000000000000000 cx9U% +b100 16B,A +b11111111 {l09Z +b100100000000000 2F;Rw +sWidth16Bit\x20(1) !znD4 +b1 @AxRX +b110 6ngWu +sINR_S_C ?3a@- +sINR_S_C R=4[: +sINR_S_C _.qH b1 rmXQH b11 J{: +b1 Xa>{: b100 4q:R| b1000000000000 neY*K b1000000000100 kR(7} @@ -125638,172 +127048,4899 @@ b1 Z'u0} b100 U2fC1 b1 :$9gM 1v!82V -17P\i5 -b101 2/sm& +b1 ||dv( +b101 a01#R +b1000000000100 .oq%u +b1000000001000 Igftu +b100 ZOa;h +1lKqNk +sBranch\x20(8) p0|Vo +b10 ^vNmL +b1 `BQri +b1001 '@6&r +b1001000 L<{nY +sDupLow32\x20(1) dsR!J +1Z-HXb +1W9V9) +b10 ?F73) +b1 tLkeQ +b1001 Lq}4; +b1000000000000000000010010000000000 0SFTX +sZeroExt16\x20(4) \oP0s +12lGPU +b10 A.~AA +b1 Z5+P_ +b1001 Mm/}_ +b1 p\y=c +b1 zN@au +b10 RbV\E +b1 \h|'@ +b1001 D.+Mj +b1000000000000000000010010000000000 ?a&?f +sZeroExt16\x20(4) Rcj~~ +1&><=. +b10 /^KYj +b1 SFr"* +b1001 T)WRL +b100100000000000000000 !+)nq +1be(=< +b10 4o\\r +b1 =n/,^ +b1001 gmYcA +b100100 o-ht` +sFunnelShift2x32Bit\x20(2) KNjxh +b10 ^kHI} +b1 _)G#7 +b1001 @^P2 +b100 Gw>t2 +b10 (N#P* +b1 ^@cbA +b1001 Ds^x. +b100 TFvyP +b10 E=rNx +b1 MD2J, +b1001 ,'kVB +b100100000000000000000 *wr>s +b100 xI`"* +b10 >"#p^ +b1 }t]zn +b1001 -?ad\ +b1000000000000000000010010000000000 a$(KU +sSignExt\x20(1) ooIOt +18ZV~; +b110 2/sm& +s\"INR_S_C:\x200x0:\x20AddSub\x20pu0_or0x0,\x20%0x0_u7,\x20%0x0_u7,\x20-0x10_i34\" jh9?I +s\"INR_S_C:\x200x0..:\x20Load\x20pu3_or0x0,\x20%0x1_u7,\x200x0_i34,\x20u64\" 41&Ni +s\"INR_S_C:\x200x4:\x20AddSub\x20pu1_or0x0,\x20%0x0_u7,\x20%0x0_u7,\x200x4000_i34\" :GA_. +s\"NotYetEnqueued:\x200x8:\x20Branch\x20pu2_or0x0,\x20%0x0_u7,\x20%0x0_u7,\x200xFF8_i34,\x20uge,\x20pc_relative,\x20is_call\" 8/,R| +s\"NotYetEnqueued:\x200x1000:\x20Compare\x20pu0_or0x1,\x20%0x4_u7,\x200x1_i34,\x20u64\" 9AXXS +s\"NotYetEnqueued:\x200x1004:\x20Branch\x20pu1_or0x1,\x20%0x9_u7,\x20%0x0_u7,\x20%0x0_u7,\x200x48_i26,\x20sle,\x20pc_relative\" IdbB6 +b1 %RtTH +b100 8/pV| +b1000000000000 j2-1L +b1000000000100 NbFkw +sCompareI\x20(7) VT<5| +b1 }I;A' +b100 )*dfH +b1 (=:gr +b0 X43Ey +b0 pmYBk +sFull64\x20(0) =#5|# +b1 ^=0uJ +b100 NOOLi +b1 4QQWB +b0 PYs8w +b1 :)nQ; +b100 QR`Ib +b1 !@O&[ +b0 D+rmX +b0 M8z%l +b0 V"R=R +b0 V%(mx +b0 |%SnM +b0 *zky* +0oy5AD +0e>loV +0VnkZp +0A%z-x +b1 e~"?/ +b100 MQU +b1 @nvij +b100 {H8aD +b1 Oc*E_ +b0 WpJ&( +sHdlNone\x20(0) Ihtib +b0 $~k+p +00S_Yn +sHdlNone\x20(0) =.[GV +b0 TL"W@ +b0 +j.'* +0VoysQ +sFull64\x20(0) v2p/3 +sFunnelShift2x8Bit\x20(0) 4LPcH +b1 VWvW* +b100 K+Hdv +b1 A^}_? +b0 o!ZS* +b1 "$OJ) +b100 H#5g" +b1 ]AqLG +sU64\x20(0) br>{% +b1 "G]bW +b100 N&t8( +b1 T6t8` +b0 gBdp| +b0 4n&=f +0@$`{S +b1 q_)`Q +b100 OB`3w +b1 %v}4, +b0 *?{=$ +b1 8krPb +b11 .&|EK +b1 oxIol +b10000100 pVs1C +b11 (&;{I +b1 kwl{E +b100 ]B3q( +b1 ]y>): +b11 BJQ-k +b1 "al1e +b100 /%~37 +b1 qXBAS +sWidth8Bit\x20(0) %}qKh +sZeroExt\x20(0) 'Xz^e +b11 9hOd2 +b1 %|w/X +b100 8opUH +b1 ^xzLU +b0 V^Kh, +sHdlSome\x20(1) &#$?z +b100 K{GN. +1/[Etl +sAddSubI\x20(1) /Q%c9 +b1 +'%>l +b1110000 tk@m4 +b11111111111111111111111111 #$jt +sDupLow32\x20(1) m+G8Q +b1 Cr27@ +b1111111111111111111111111111110000 8Y2z> +b1 "Yv%^ +b1110000 Emkj +b1 irH\u +b1111111111111111111111100000000000 G|:nk +sSignExt8\x20(7) y'qUc +1u\EQ: +1&7vvF +1OaVR5 +1go.m) +b1 W.W#{ +b1110000 c7SL{ +sHdlSome\x20(1) j45)M +b111111 ?x`CL +14G@9\ +sHdlSome\x20(1) ;"I"Y +b111111 Zr$u= +b111111 L)t/@ +1{;)bQ +sSignExt8\x20(7) f3zY\ +sFunnelShift2x64Bit\x20(3) +pXf& +b1 @+ls* +b1111111111111111111111111111110000 48?;s +b1 Sb%Ui +b1111111111111111111111100000000000 k0dqB +s\x20(15) 0.t|p +b1 [C/-c +b1110000 TZ!FZ +b11111111111111111111111111 O~C<7 +1NseSm +b1 !CWHY +b1111111111111111111111111111110000 N1)y2 +b1 %V|(, +sWriteL2Reg\x20(1) $WN2= +b1 bp:)O +b1 yMU)Q +sStore\x20(1) X|h&> +b1 $nw8p +b1111111111111111111111100000000000 }7>_D +sWidth64Bit\x20(3) p`X6F +sSignExt\x20(1) Zm~0M +b1 y?T<= +b1111111111111111111111111111110000 Our\- +b1 EYNKC +b101 <`a(d +b1000000000100 mmsOk +b1000000001000 7XMZr +sBranch\x20(8) ,XZ}d +b1 e\a9F +b1001 rE7CE +b1001000 .*eQ[ +sDupLow32\x20(1) ?BeP +18ZNt* +1Y^oy> +b1 F/5[; +b1001 g_PPN +b1000000000000000000010010000000000 `,uj" +sZeroExt16\x20(4) *TN*V +1@j{GW +b1 s:}ri +b1001 95nzG +b1 Ps:}@ +b1 1wVLv +b1 (ghbf +b1001 \/8G; +b1000000000000000000010010000000000 2K^8/ +sZeroExt16\x20(4) s.QDw +12jkaI +b1 8F!{4 +b1001 *J=j> +b100100000000000000000 +fttv +1.Q,+* +b1 F2T,# +b1001 ~g4$S +b100100 lB~:5 +0+B5b) +sFunnelShift2x32Bit\x20(2) ^Vk|< +b1 k$G01 +b1001 ]_'&* +b1000000000000000000010010000000000 Vut&j +sU16\x20(4) IkdRr +b1 j(|or +b1001 hY;?S +b100100000000000000000 @)Nkq +b1 A_A27 +b1001 c1>Ri +b1001000 )ZfuF +1kO7vP +sSGt\x20(4) v"b4$ +1UqlWF +b1 g.qP +b1 V39rE +sPowerIsaTimeBaseU\x20(1) &.(F^ +sReadL2Reg\x20(0) [.HiI +b100 F6CUV +b1 c3Pz +b1001 ;4?h^ +b100 =~3eG +b1 =K_m# +b1001 DW;BZ +sLoad\x20(0) {fBT, +b100 AMbg: +b1 Z|v*^ +b1001 0?x/& +b100100000000000000000 8+!~W +b100 I7C._ +b1 )OPb/ +b1001 6kDhN +b1000000000000000000010010000000000 >L;;6 +sSignExt\x20(1) ZE3L7 +sHdlSome\x20(1) 26y~o +b10 InY9- +b100 zM@z. +b1000 LBirM +b100 WzI`m +1irxdd +sAddSubI\x20(1) c@wGa +b10 I66X_ +b10000000 o-vN; +b10 G%avb +b100000000000000 <]W'p +b10 w~3u6 +b10 Z>{<] +b10 DVtq; +b100000000000000 P%b*; +b10 +b10 foxD +b10000000 m'a-Z +b10 {VoG= +b100000000000000 oVK!V +b10 7^@D* +sWriteL2Reg\x20(1) ICD\u +b10 '\BAY +b10 R}HI% +sStore\x20(1) Wyy6% +b10 f$6dC +b1000000000000000000000 Fz#Yt +b10 / +b11 #'>Kb +b1111000 ^S7[g +b11111 +8|*X +sZeroExt8\x20(6) S]^yD +1|z6|e +b11 "=5Db +b111111111000 V;j=| +sSignExt32\x20(3) :4FXk +1wy?VK +1B*HGB +b11 &{w6( +b1111000 3v-QX +b111 ]RXZa +b11 F:D-Z +b11 @tQ0| +b111111111000 :9`Mi +sSignExt32\x20(3) L]'dG +1\/|'+ +1qypN> +b11 ~C9?J +b1111111110000000000 J~Qrj +b11 %6B9R_: +b111111111000 m9fl. +1}nudm +sULt\x20(1) ~K@F3 +1mX_DB +1kn%<~ +b11 \l\CN +sWriteL2Reg\x20(1) KWF^i +b100 D/9k6 +b11 ^FEx_ +b100 mSbG% +b11 /I;}9 +sStore\x20(1) 5R,d^ +b100 T|7)^ +b11 %l~FW +b1111111110000000000 E,~7$ +b100 6oeD. +b11 P2sr9 +b111111111000 1'2]8 +sWidth64Bit\x20(3) G*c=t +sHdlNone\x20(0) N;QS\ +b0 #zFMy +b0 [cyqx +b0 uu}aP +sAluBranch\x20(0) h:a+q +b0 +WpKR +b0 O=#b< +b0 !KJiJ +b0 P1/U: +b0 !D8r, +b0 P@Yr9 +b0 V{xD} +b0 dilqP +b0 g.$CP +b0 juBcI +b0 $vt;n +b0 6S":= +b0 N4Qj0 +sFull64\x20(0) krT~4 +b0 P#lh@ +b0 >3pf8 +b0 AcO_k +0:R(jf +b0 #4dBu +b0 OcSb\ +b0 <9E{j +b0 {+lD# +b0 ApuA@ +sU64\x20(0) HS:sG +b0 k(0+m +b0 Bv[[X +b0 )&cNK +b0 ,n*cU +b0 Bh/-k +b0 {+RfY +b0 I_(nG +sPowerIsaTimeBase\x20(0) `PENj +b0 "fp!n +b0 98ekT +b0 Z'E<* +b0 {g/i< +b0 ^k>|b +b0 q,A#3 +sWidth8Bit\x20(0) gzcfX +b0 t@$_$ +b0 2i>{X +b0 C';^3 +b1 Zo'Zv +b100 ~d]=J +b100 ~qlMm +b100 f0Q(] +b1 HLps$ +sWidth64Bit\x20(3) 18y~. +b100 ssVIL> +#3000000 +0spsS) +0Trgwi +0VmrjO +0~ge89 +0%3;Sp +0BEBSD +0LCUP8 +0%/Ado +#3500000 +1spsS) +1Trgwi +1VmrjO +1~ge89 +1%3;Sp +1BEBSD +1LCUP8 +1%/Ado +b11 PEA1+ +b1000000010000 I-08w +b1000000010100 1Z&s> +0`8zR0 +sLoadStore\x20(2) DSuu| +sAddSubI\x20(1) ~&~b| +b0 \SE_R +b1000 tBZ +b1000 GerxR +b100000 nA|7R +sSignExt32\x20(3) 4K~NA +b0 ZQs0& +b1000 :UWF( +b100000 w&W[> +b0 Y)aua +b1000 Xw8=f +b100000 e5uJ^ +sSignExt32\x20(3) 0e.`n +b0 }(y)g +b1000 'gIGX +b100000 yn`;P +b0 Nw=#6 +b1000 /%bDo +b100000 f6Ev. +sSignExt32To64BitThenShift\x20(6) f`Q{~ +b0 eyKDp +b1000 6u1CU +b100000 nyjIK +sS32\x20(3) A}Xg% +b0 W:}rz +b1000 *h(<2 +b100000 i<}9< +b0 bt}41 +b1000 u/9D[ +b100000 r.Z][ +1&//~f +sULt\x20(1) ZxX/a +b0 M*}E5 +b1000 0evK. +b100000 3kGdn +1&LOc, +sULt\x20(1) #uq)w +b0 nL)6( +sPowerIsaTimeBase\x20(0) a-mZh +b1 }R#CU +b0 m0{pQ +b1000 OAU@@ +b100000 ;=xb? +sStore\x20(1) ^qXED +b0 5v()u +b1000 ^*VHQ +b100000 6pOL/ +b0 #}\qx +b1000 CD%P= +b100000 .?2[3 +sWidth64Bit\x20(3) 8*+Sv +b11 ._e2c +b1000000010100 &IybE +b1000000010100 q7AbU +b1000 y7)D$ +b1000 XeM2O +b0 0PBB~ +b1000 6l2a= +b1000 3MwsK +b1000 //E) +b1000 :{M]a +b0 [7N{m +b0 ]y\?p +b0 2199y +b0 @8FZG +b0 $h^|j +0wKP5S +00Z5u# +0'FjS]P +0AG![i +0W0_by +b1000 faRN. +b1000 ^Fj6N +sHdlNone\x20(0) wGU:r +b0 "=jp} +0VO!/0 +sHdlNone\x20(0) c]q&W +b0 Ae\E\ +b0 T^2+| +0^Y]il +sFull64\x20(0) I>!7l +sFunnelShift2x8Bit\x20(0) "A:0. +b1000 +r*}d +b1000 O{o|u +b1000 T+eDu +b100000000000 v3:u- +sU64\x20(0) 71U1s +b1000 CpG-f +b1000 i!j-\ +b0 8n\{U +b1000 mAE>J +b1000 GsS![ +b1000 st\ge +b1000 P6V.p +b100000000000 8vEg3 +b1000 aOT,e +b100000000000 ].)~" +sWidth8Bit\x20(0) Q:en@ +sZeroExt\x20(0) 2$PGM +b1000 VA4I, +b1000 -HxLj +b11 tHOJj +b1000000010100 A'=Rz +b1000000011000 Lu@[& +0t_DKN +sLoadStore\x20(2) F0#nQ +b0 ,(~"Z +b1000 DQV+h +b111110 0Yr6K +sSignExt32\x20(3) WN.jv +b0 /%NB$ +b1000 fmbnW +b111110 j1@2L +sSignExt32\x20(3) w@W?^ +b0 tiOj/ +b1000 =iLU* +b111110 C`/}p +b0 25"-0 +b1000 nR}z\ +b111110 JuL(I +sSignExt32\x20(3) |N@&U +b0 ct#Y1 +b1000 ;;n*/ +b111110 {Ko6C +b0 VsL;G +b1000 qb;sd +b111110 UJ`qo +sSignExt32To64BitThenShift\x20(6) (8smv +b0 vTy6) +b1000 066is +b111110 CXz8V +sS32\x20(3) 9?P>e +b0 I)IKr +b1000 X&%Q: +b111110 >XpS4 +b0 #YbS, +b1000 H,Vvy +b111110 7u>}p +1VQsc) +sULt\x20(1) YJ30i +b0 G|+;# +b1000 h2cR< +b111110 hY"y& +1q}_t4 +sULt\x20(1) Ca$-J +b0 Y|kUw +sPowerIsaTimeBase\x20(0) z:6c< +b0 #q@'& +b1000 $;3m1 +b111110 2IwCh +b0 do+%C +b1000 <,ios +b111110 'GRou +b0 i~}(P +b1000 !w2ms +b111110 ~_lCL +sWidth64Bit\x20(3) J57w$ +b1000000011000 u];=A +b0 yzxH' +b100 %4VT6 +b11 N.OXU +b1000000010000 9`!,u +b1000000010100 QlkNC +05eQ.? +sLoadStore\x20(2) /]!O. +sAddSubI\x20(1) gTl08 +b0 iT~h` +b1000 TS=!3 +b100000 :2|OZ +sSignExt32\x20(3) F#;rq +b0 8)c"z +b1000 G7|vg +b100000 ]M93n +sSignExt32\x20(3) S}^+t +b0 D9>eb +b1000 F~x!8 +b100000 Y@|Ja +b0 .W!T/ +b1000 `;fd_ +b100000 N2${a +sSignExt32\x20(3) 8wIW7 +b0 Cy4nP +b1000 W$"e\ +b100000 I:m){ +b0 YAr\k +b1000 K|,p_ +b100000 mnn+F +sSignExt32To64BitThenShift\x20(6) 7Yd +b100000 ^fpBb +b0 I"E#p +b1000 pQ-j( +b100000 b[]V@ +1@'i^} +sULt\x20(1) 1 { +b0 SDCz$ +b1000 c$:Xv +b100000 x2E^C +1`>[:C +sULt\x20(1) fO_6D +b0 ;~Hln +sPowerIsaTimeBase\x20(0) ?a"}} +b1 XeL<% +b0 $u9je +b1000 J)8I| +b100000 rd6;k +sStore\x20(1) $hy$k +b0 -a#jV +b1000 ,XW2] +b100000 =N%V@ +b0 2;07E +b1000 %ZUdK +b100000 ck^m$ +sWidth64Bit\x20(3) rp9WJ +b11 `%:u/ +b1000000010100 +.1SM +b1000000010100 dp]}: +b1000 zNb>V +b1000 qiPq/ +b0 t?Oy0 +b1000 zR!_3 +b1000 !@5Gr +b1000 Zc#vz +b1000 X:2Ac +b0 eC\C' +b0 Ed*ET +b0 V!. +sZeroExt\x20(0) +Ax03 +b1000 Ot/;: +b1000 Src+k +b11 ){&o_ +b1000000010100 F0~]I +b1000000011000 _|Rnb +0jTp$U +sLoadStore\x20(2) ~nv;z +b0 "&P:c +b1000 x]f^t +b111110 )?0fP +sSignExt32\x20(3) vY(Xt +b0 I##*P +b1000 Tv6xg +b111110 9}MA$ +sSignExt32\x20(3) >--'1 +b0 ,7EpA +b1000 ;'X`% +b111110 zUZ8E +b0 xjgd` +b1000 g/YKL +b111110 HdJ^6 +sSignExt32\x20(3) }\}kL +b0 BB2ux +b1000 -*$nE +b111110 n%}L0 +b0 @Tuw~ +b1000 ~"gxI +b111110 ,C#0* +sSignExt32To64BitThenShift\x20(6) ~xDx- +b0 V\V!B +b1000 3:(Fa +b111110 {-IuN +sS32\x20(3) 9F:Pu +b0 qaV=[ +b1000 Z0-R( +b111110 ivF'. +b0 ]K20. +b1000 K|1s| +b111110 ./}9| +1+E"k8 +sULt\x20(1) >v9Z| +b0 7}63> +b1000 h,z|` +b111110 zJOBP +1:AS_p +sULt\x20(1) 3vjOu +b0 b&t'A +sPowerIsaTimeBase\x20(0) 4{x.8 +b0 rn\:K +b1000 54$." +b111110 r`U0s +b0 DQ^uL +b1000 J@k.S +b111110 d@1., +b0 Ef\Qh +b1000 h)z,a +b111110 n|-pU +sWidth64Bit\x20(3) 87tGF +b11 ,Pv?r +b1000000010000 a:tIz +b1000000010100 gTqRd +0RBJ?^ +sLoadStore\x20(2) ,'3lf +sAddSubI\x20(1) saxDL +b0 nmNJ, +b1000 GFy&u +b100000 -s6PA +sSignExt32\x20(3) =P|XW +b0 y[NOL +b1000 ?/NUH +b100000 4z=+d +sSignExt32\x20(3) LTp&~ +b0 J1T8? +b1000 Y}*O- +b100000 A\Z8, +b0 ([Dqp +b1000 @F~J' +b100000 fdUkT +sSignExt32\x20(3) 'n2+# +b0 ?^om, +b1000 lWc>F +b100000 +P7Rq +b0 o1\{N +b1000 35I%s +b100000 a#SLK +sSignExt32To64BitThenShift\x20(6) <{?Id +b0 I5HN% +b1000 c{zZ0 +b100000 }am'r +sS32\x20(3) yf6z] +b0 &G2h\ +b1000 stmPk +b100000 i7?i4 +b0 E:HrB +b1000 8xhS] +b100000 p9;XE +125cGr +sULt\x20(1) 7<'-` +b0 +~dd4 +b1000 s9p}o +b100000 {UJU8 +1Y=:H? +sULt\x20(1) )Z^qC +b0 j\m^R +sPowerIsaTimeBase\x20(0) =1kw; +b1 .39{v +b0 %w/L +b1000 AMh.? +b100000 ,A9~X +sStore\x20(1) +SQw~ +b0 '=f3; +b1000 Ub>G= +b100000 L!bB, +b0 NNw^> +b1000 LKEU1 +b100000 zpR'i +sWidth64Bit\x20(3) |*%dP +b11 b;gWF +b1000000010100 v%{gr +b1000000010100 jFa=K +b1000 #2OQ} +b1000 i]+5z +b0 sh};) +b1000 ,V^rO +b1000 df:Hc +b1000 Dj{+ +b1000 I\hxa +b0 Ulf`d +b0 ]33~R +b0 Tq8l+ +b0 T{|1R +b0 }_$k6 +0.;)9F +0D"s+s +0]<_1W +0@&b.U +b1000 @jX] +b1000 `&Nae +b1000 ^Z&bQ +b100000000000 w4qo2 +sFull64\x20(0) 3,+!U +0;P:@9 +0W.P<2 +0Ug*@' +0Rc+=F +b1000 .>zxg +b1000 1Fx%S +sHdlNone\x20(0) -.lEL +b0 G"Qgz +0Q{ST, +sHdlNone\x20(0) 6-{(: +b0 4n/Ly +b0 6U>6D +0.Yv,) +sFull64\x20(0) tPRxP +sFunnelShift2x8Bit\x20(0) p\9a> +b1000 fu";+ +b1000 /BJ([ +b1000 `l|qB +b100000000000 Ry[w +sU64\x20(0) ,,Krw +b1000 7([Jb +b1000 LHYn| +b0 >r&?+ +b1000 ?>\Q+ +b111110 q084d +sSignExt32\x20(3) ,vk,8GX +b111110 A^5^n +b0 so_5p +b1000 +?W.q +b111110 I`a%C +sSignExt32To64BitThenShift\x20(6) x*8qY +b0 z]_l= +b1000 +%;|Z +b111110 :35UK +sS32\x20(3) d/\TS +b0 %l:7J +b1000 u}^=~ +b111110 YQ.n` +b0 h6[&a +b1000 \C[M" +b111110 r*bPe +1d/e>+ +sULt\x20(1) ][)s; +b0 ^;#MP +b1000 3aP4) +b111110 95z1H +1hvHwO +sULt\x20(1) l7K6P +b0 nG&}O +sPowerIsaTimeBase\x20(0) 0B!23 +b0 76Lmw +b1000 T.vI4 +b111110 >9=-u +b0 T+JxD +b1000 l[Apv +b111110 WB*d$ +b0 KfRhZ +b1000 (aT\. +b111110 Ph_I_ +sWidth64Bit\x20(3) o/[1% +b100 5Z2Va +1M=d+< +sTransformedMove\x20(1) ^0g-$ +b100000 o8j(. +b1 :aDC~ +b100000 i7[-_ +b1 MIuh@ +b100000 K,*}% +b1 &QF=> +b100000 {.73r +b1 t^/Q' +b100000 ~8R\e +b1 /Yap= +b100000 lB:5U +b1 "5pa" +b100000 ;$gY7 +b1 A8QF> +b100000 gu(|, +b1 j(g0" +b100000 O@|7X +b1 }f4CY +b100000 E4DPW +b1 TX+3u +b100000 f#b?Y +sPowerIsaTimeBaseU\x20(1) M@18@ +b100000 $xDX2 +b1 8";@C +b100000 76Rs` +b1 t@i~f +b100000 rkK\[ +b1 iNMoP +b10 "wu\A +b1000000001100 2VLa& +b1000000010000 f|3xZ +b100 a7co- +17Rh4S +sAddSubI\x20(1) Rtk:@ +b100001 bBEq2 +b100001 g7<}% +b11110000 R$v'G +b11111111111111111111111111 *n80? +b100001 "`OE, +b100001 ly.dB +b1111111111111111111111111111110000 6c}$~ +b100001 m0%o` +b100001 un@IR +b11110000 vn>6 +b111 &^/7v +b111 b.LoQ +b111 Ioc_$ +b111 D$f|K +b1111 *_?jY +1!vs7J +1E(8jx +1UC}0J +1h^]RA +b100001 86btZ +b100001 /3w]` +b1111111111111111111111111111110000 oQPm_ +b100001 FJfnS +b100001 4N:L= +b1111111111111111111111000000000000 K4SQ) +sSignExt8\x20(7) @p?X_ +1G3M)2 +1'+I#@ +1M{ecz +1!>2`j +b100001 KaH6< +b100001 4%ild +b11110000 'c0;W +sHdlSome\x20(1) `[r2) +b111111 ;`|4~ +1Ym%%> +sHdlSome\x20(1) KsrF3 +b111111 pMx`" +b111111 x\3.[ +1`W;-, +sSignExt8\x20(7) "`K8e +sFunnelShift2x16Bit\x20(1) lXK'R +b100001 %hAk= +b100001 aaI.& +b1111111111111111111111111111110000 I'!;v +b100001 ;IUgv +b100001 Z!RHy +b1111111111111111111111000000000000 }qWp# +s\x20(15) &LVgO +b100001 \^y`{ +b100001 ?-^?M +b11110000 8xjzm +b11111111111111111111111111 Lc|7, +b100001 {JqCT +b100001 /C1D| +b1111111111111111111111111111110000 I7KMJ +b100001 Rp#+x +sPowerIsaTimeBaseU\x20(1) &z^vp +b1 &k)nm +b100001 cp75c +b100001 q6x5F +b1111111111111111111111000000000000 OkV"j +sStore\x20(1) WP\ +b1000 `5uy^ +b100001 8i>vj +b1000 1Xy4V +b100001 E8z4" +b1000 zgm+r +b100001 tAj'i +b1000 _K[MH +b100001 9WcUn +b1000 f>j]Q +b100001 [AV8Q +b1000 #N9km +b100001 ZxC1G +b1000 $Wf=? +b100001 m#7s_ +b1000 V8U+E +b100001 USE`$ +b1000 +jE7^ +b100001 Kf,&G +b1000 3O#+v +sPowerIsaTimeBaseU\x20(1) B,&}f +b1 N'|zk +b1000 8cZqM +b100001 2w\Nr +sStore\x20(1) T6Dah +b1000 *4S/- +b100001 P05"" +b1000 0So'i +b100001 n'sYP +b1001 50IDv +b10 FS%/" +b1000000001000 o9uqZ +b100000 7A-lo +b1 V2LKL +b100000 '4+{_ +b1 d^3^5f +b1 WTi&v +b100000 C4K6J +b1 u#4*7 +b100000 j2kE8 +b1 aY>Qi +b100000 $1X>` +b1 dS0Y4 +b100000 ?]!wR +b1 *ht6` +b100000 $X.07 +b1 -U/8{ +b100000 g,9Ll +b1 8(=/j +b100000 `4?A" +sPowerIsaTimeBaseU\x20(1) #}{8? +b100000 kY8EL +b1 T&WQP +b100000 Qr(KK +b1 AhTxQ +b100000 4~N#1 +b1 6"4gF +b10 (Rf@g +b1000000001100 "s6:; +b1000000010000 yEi;' +b100 X2TcM +1Z>*~j +sAddSubI\x20(1) =G{NS +b100001 m.,Uf +b100001 Gn +b111111 1t.6Y +b111111 O'9Gq +1gN+y^ +sSignExt8\x20(7) 6<@`7 +sFunnelShift2x16Bit\x20(1) Y#*a` +b100001 2nOK] +b100001 %h5]P +b1111111111111111111111111111110000 ?}'tV +b100001 |fOZf +b100001 j-jc& +b1111111111111111111111000000000000 Zkq;t +s\x20(15) &IT78 +b100001 m}Ku0 +b100001 !ps]] +b11110000 ;S!0H +b11111111111111111111111111 >(y^1 +b100001 s-ZVO +b100001 PRe +sWidth64Bit\x20(3) 0qmsT +sSignExt\x20(1) n.`x_ +b100001 #JXbe +b100001 .u;~i +b1111111111111111111111111111110000 R5I{y +b10 ;OIV7 +b1000000010000 y6d,- +b1000000010000 rBY/0 +b100 5FN!k +1GyD/- +sAddSubI\x20(1) \%RT{ +b1000 s85)J +b100001 YAzZA +b1000 Y(X=; +b100001 RDs!D +b1000 i^oVM +b100001 CnE>K +b1000 .XKp' +b100001 ;r5FC +b1000 'U`hE +b100001 IE<]? +b1000 n(+hq +b100001 4y0jr +b1000 I+DO+ +b100001 m'Df0 +b1000 @(nfv +b100001 bl75e +b1000 'i6dK +b100001 Ade1k +b1000 wO!s9 +b100001 ]J-W2 +b1000 wocc] +sPowerIsaTimeBaseU\x20(1) 9'w`t +b1 R7Xen +b1000 M\OH" +b100001 uk|g( +sStore\x20(1) q#!#Q +b1000 f{C9o +b100001 &LjqU +b1000 8~nha +b100001 B9<#f +b1001 J8qAt +b10 }:QxN +b111 hh!}] +b1000000010000 k@R+E +b1000000010000 +PXSv +sAddSubI\x20(1) MblDA +b10 [1QYf +b1011 Q?&yg +b0 NO?~f +b10 >rfq~ +b1011 gFsv> +b0 v#Ski +b10 oe:=f +b1011 n%YVO +b0 "g!AL +b10 a|i#T +b1011 :'&q] +b0 };`>7 +b10 GkaGC +b1011 m]~n+ +b0 Gda?f +b10 mW0X1 +b1011 scS,5 +b0 A1IAK +b10 <`".; +b1011 ^wgDb +b0 +C:9| +b10 yU)K+ +b1011 pyXrG +b0 geKT" +b10 p-iOX +b1011 `5VG7 +b0 mxU.; +b10 \'IUv +b1011 0~>JX +b0 PQAEX +b10 ?NS&) +sPowerIsaTimeBaseU\x20(1) n)CBx +b0 y1^x4 +b10 DBl,V +b1011 JO/R^ +b0 b3\P: +b10 RrKX{ +b1011 Jje[. +b0 Ga+b] +b0 :UwDD +b10 T_:GV +b1011 6Ea*P +b0 xQk'J +b0 N>D*k +b10 B`];W +b1011 o7@]L +b0 QFU4L +sHdlNone\x20(0) 6i^,, +b0 !Z5Ty +0yJx~x +sAddSub\x20(0) PsP"T +b0 -Fa@y +b0 o%w2Y +b0 ]uq,* +sFull64\x20(0) @\M,% +b0 GDd@2 +b0 !|=YH +b0 g%"]c +b0 ~=]e4 +b0 `Ar=O +b0 N^W~U +b0 'KOL@ +b0 zWEGD +b0 $+BOf +00]j]# +0E2NJP +0)a!E8 +0#v50) +b0 +V=.G +b0 GIe"C +b0 Cz?In +b0 \9[(V +sFull64\x20(0) 5Ym+? +0Au,$Y +0}"i#Y +0U}R,Y +0XgFW= +b0 AV=HX +b0 (D$x- +sHdlNone\x20(0) ^"3]Z +b0 p09^| +0:M$y: +sHdlNone\x20(0) LM8dP +b0 Y>)8i +b0 ;cJ{> +03YwB| +sFull64\x20(0) xkm?J +sFunnelShift2x8Bit\x20(0) H+S~7 +b0 @`@]V +b0 39{aZ +b0 q]xmK +b0 F|ri< +sU64\x20(0) 5GC.k +b0 G~T< +b0 Y+BM= +b0 ,a)oI +0j(,Qx +b0 &}w3a +b0 l4P?K +b0 p7%jw +sReadL2Reg\x20(0) `>N@0 +b0 _[R+r +b0 QvkOT +sLoad\x20(0) 1/&bx +b0 rxq7X +b0 d`61s +sWidth8Bit\x20(0) ]E"x\ +sZeroExt\x20(0) #y5o` +b0 >Ps_l +b0 ioPCT +sHdlSome\x20(1) )Nu\r +sHdlNone\x20(0) 8c+O\ +b0 PfE*7 +b0 !}q}3 +b0 P6Lor +b0 %T}0a +b0 u7:y\ +0~+goK +sAddSub\x20(0) [mX0D +b0 xA$R" +b0 rE8w6 +b0 N]QBz +b0 /f@r\ +sFull64\x20(0) 0M7*L +0'\Vg +0;p";g +b0 Aln%5 +b0 Hn*&] +b0 3UKf> +b0 !:mCD +sFull64\x20(0) M[>K& +0E5@;] +b0 +b0 W8XS1 +b0 #,W(' +b0 "/Cu? +b0 c|YDQ +b0 PlfY7 +b0 jK1(D +b0 x+bLK +sFull64\x20(0) iN|/x +0(oYiB +b0 ~/SU@ +b0 7N(2B +b0 Ry^d6 +b0 r]5!T +0`8>0x +b0 #C +sU64\x20(0) Es'.K +b0 Zhb;B +b0 6Bs+q +b0 q>44& +b0 -aB'c +b0 I-P?< +b0 PUwX9 +b0 cAAiR +b0 1{H(9 +0$nq= +sEq\x20(0) K#iLK +0dtC%c +b0 %kOhN +b0 +EHVj +b0 ?M[[K +b0 #!i:O +sEq\x20(0) &]oEL +0pF>~[ +b0 9h,[u +b0 =%q +b0 L4vhD +b0 fRBsa +b0 nQ]F$ +b0 O%K'j +b0 F-eaL +b0 !+vbL +b0 TKqtx +b0 2Ha^E +b0 WDN^" +b0 MLv]\ +b0 Z5vY) +b0 :Zs7T +b0 hxR^= +b0 iuTMY +b0 d;an= +b0 S(YP[ +b0 #HCal +b0 [w)"8 +sZeroExt\x20(0) B-XFE +sHdlNone\x20(0) "=*ox +b0 |D8iF +b0 yn~ON +b0 hF1zf +b0 =uFVc +0b{(Ll +sAddSub\x20(0) 8QL]D +b0 mn)I; +b0 .Z?R> +b0 [eEq& +b0 eR>$x +b0 {0U!T +b0 Vw6*U +b0 oV$!P +b0 sX4NJ +b0 6R/4B +b0 bYd%G +b0 }2PwT +0o8G+$ +b0 hF4^) +b0 5IJ}i +b0 1#)3: +b0 x?/rZ +b0 V9dUY +b0 _5:60 +b0 4xi~I +sReadL2Reg\x20(0) +b0 :'5Bw +b10 e.>!d +b110 Pf4v- +b1000000001100 w(Y.E +b1000000010000 #77!F +sAddSubI\x20(1) hO;,E +b1 o_fn1 +b10 koytw +b1110000 ic)l7 +b11111111111111111111111111 Fb^`# +sDupLow32\x20(1) !#$|) +0#mS/Q +b1 bo=u; +b10 >7qi% +b1111111111111111111111111111110000 }{9s? +sFull64\x20(0) .X3*Y +0uEIl' +0)U6jj +b1 i\g~u +b10 rM7-O +b1110000 x#u|# +b111 S6jJW +b111 J+fq` +b111 vErr. +b1111 19u~E +1yp8qN +13pl!7 +1^i2k\ +15@{;| +b1 Jd~Pb +b10 edNTB +b1111111111111111111111111111110000 GBP=# +sFull64\x20(0) V9g+: +0{M,9L +0|Qmtn +b1 PL1n; +b10 4tao> +b1111111111111111111111100000000000 TdVa( +sSignExt8\x20(7) 8xZ+? +1:,;bn +1bO2,? +1$'?mR +1H3&*T +b1 2Hd\+ +b10 ^'3#Y +b1110000 @mWc| +b111111 Mf}"1 +1Di-yd +sHdlSome\x20(1) *ECrH +b111111 T-eB3 +b111111 3UK-V +1%|A)e +sSignExt8\x20(7) rG.-, +sFunnelShift2x64Bit\x20(3) =?~c: +b1 ;F|s= +b10 *kE&> +b1111111111111111111111111111110000 `6k&. +sU64\x20(0) []~,Y +b1 Do[v_ +b10 Mc(T# +b1111111111111111111111100000000000 =La9s +s\x20(15) _zsO} +b1 &OrI| +b10 GNhZj +b1110000 7tgJR +b11111111111111111111111111 gn4!j +1]?L-J +sEq\x20(0) '-L5Z +0}5`yD +0Y(xel +b1 `KhXe +b10 J&bcl +b1111111111111111111111111111110000 L)/~: +0qTLL~ +sEq\x20(0) PYr8_ +0(^ad; +0PNX:n +b1 w+b0u +b0 .LF;N +b1 >L(9z +b10 8d>S1 +b0 Dkv_< +b1 R+JSz +b10 /U8+( +b0 a7Z34 +b1 top=[ +b10 ^)X#@ +b1111111111111111111111100000000000 O(\N_ +sWidth64Bit\x20(3) h.Xqu +sSignExt\x20(1) _)=(. +b0 dWYPP +b1 p%PLP +b10 ,AQ#^ +b1111111111111111111111111111110000 m>x7" +sWidth8Bit\x20(0) +uLF* +sHdlSome\x20(1) }&+TC +b1 mRC_, +b11 4)DEa +b1000 hX]+$ +b1000000000000 8ETVJ +b100 >?[dF +1C0O|* +sBranchI\x20(9) o#SL2 +b11 \ltH? +b1111000 !=\[D +b11111 hEl?> +sZeroExt8\x20(6) yM}[a +1T?tdw +b11 :OiER +b111111111000 ;Q:Ic +sSignExt32\x20(3) ]4BA< +1DOG[a +1jCQXL +b11 Aq78/ +b1111000 <=607 +b111 j'zFZ +b11 S4-Lo +b11 (:S=c +b111111111000 [S,/K +sSignExt32\x20(3) 1oeWN +1;((h +b100 Xz1eH +b11 n]Up7 +b100 ^6q{l +b11 8EXM/ +sStore\x20(1) o4m.{ +b100 N${(T +b11 yN?IZ +b1111111110000000000 C4vg\ +b100 pV@;n +b11 &+~"` +b111111111000 XRIzz +sWidth64Bit\x20(3) |:7{B +b10 tuP}s +b10001 Hg:VN +b11 lQQ}d +b11 VMCF, +b11 W{y*6 +b1 9M#U/ +b1011 9x%q| +b1000 Rn&!X +b10 J/uEj +b1000000001000 A,}n% +b1000000001100 e=x4= +b100 aCOLy +1v!lay +sTransformedMove\x20(1) 3\\jf +b100000 -nZ"+ +b1 @.F5B +b100000 ^otck +b1 Wlj;[ +b100000 DB.xv +b1 :#]p? +b100000 :S8y} +b1 *pi~M +b100000 F=T{z +b1 xKgNJ +b100000 K;Oxm +b1 $z4\1 +b100000 jljs% +b1 *d5-z +b100000 =a_"/ +b1 v6#8r +b100000 CubTp +b1 J(wo^ +b100000 QB!U[ +b1 7nift +b100000 WqOG9 +sPowerIsaTimeBaseU\x20(1) zTLLx +b100000 -6_ +1%Nqn/ +13B5j4 +b100001 zs0;- +b100001 4(Wer +b1111111111111111111111111111110000 NuF7p +b100001 Y]+|j +b100001 Y\;*K +b1111111111111111111111000000000000 mr3!& +sSignExt8\x20(7) 9-]qR +1\ZRg| +1=BkZW +1d_"^/ +1c+~>5 +b100001 [#6~8 +b100001 bKv~j +b11110000 b8c1/ +sHdlSome\x20(1) ~"0}l +b111111 tcjpf +1j~*"' +sHdlSome\x20(1) }CBT? +b111111 RU*e# +b111111 ]19$* +1D@-*E +sSignExt8\x20(7) k5N(J +sFunnelShift2x16Bit\x20(1) LY6Z" +b100001 dqVpl +b100001 "O0xA +b1111111111111111111111111111110000 |jt0: +b100001 tpR4t +b100001 dGI/E +b1111111111111111111111000000000000 yv+"| +s\x20(15) 5..cg +b100001 H"ta# +b100001 [g9a6 +b11110000 Md+f2 +b11111111111111111111111111 eN/9> +b100001 08Cp( +b100001 {E{K9 +b1111111111111111111111111111110000 qb%/% +b100001 fsZ[X +sPowerIsaTimeBaseU\x20(1) uMQd| +b1 [#-XS +b100001 F1a?` +b100001 E\+kY +b1111111111111111111111000000000000 WL7iI +sStore\x20(1) InUc\ +b100001 m_F1" +b100001 C60CA +b1111111111111111111111000000000000 xdS#3 +sWidth64Bit\x20(3) ;F}(> +sSignExt\x20(1) ]M:Z, +b100001 9?kT/ +b100001 kTF&2 +b1111111111111111111111111111110000 '=Y:Z +b1 )Q[~2 +b10 -CWX +b1000000010000 .r&NG +b1000000010000 dQX}W +b100 lL@#W +1-NaQx +sAddSubI\x20(1) UgV0p +b1000 )$B0I +b100001 [^/5n +b1000 :>G77 +b100001 sbre, +b1000 L:'A* +b100001 Zo,KB +b1000 "u3X: +b100001 s][GI +b1000 p5Gi\ +b100001 ~k&YV +b1000 #P]v3 +b100001 mU.8| +b1000 VW>Kc +b100001 e,Neg +b1000 I*t_Z +b100001 ~-(X* +b1000 R5L4z +b100001 1~Mzj +b1000 %b2Y* +b100001 }~s`F +b1000 /Ow4M +sPowerIsaTimeBaseU\x20(1) /xzZu +b1 mfa%J +b1000 yEN}c +b100001 @I:+K +sStore\x20(1) :}}t{ +b1000 `b8s} +b100001 W>!?7 +b1000 TSBPu +b100001 |SAS3 +b1 [AxyT +b1001 6ngWu +sIR_S_C ?3a@- +sIR_S_C _.qH +sINR_S_C mnaw{ +sINR_S_C zdMbX +sINR_S_C s^w4E +b10 j*d(7 +b110 {\}3\ +b1000000001100 N2qph +b1000000010000 V)C," +b100 }`?d# +1gXS%1 +sAddSubI\x20(1) @;q'D +b11 X.J +b111 #Sh\? +b1111 :zBmL +1}v3;9 +1}&~+D +1Ly#;} +1b($!F +b11 B5@1q +b1 |n4NH +b10 wA3V" +b1111111111111111111111111111110000 /'CZ/ +b11 L^?bD +b1 ,5g.t +b10 hc5c/ +b1111111111111111111111100000000000 )Ij\< +sSignExt8\x20(7) In]Bt +1n/q\R +1is]UV +1cyr\x20(15) TnBe* +b11 xZl3E +b1 vTYbs +b10 ;<+Z/ +b1110000 {^g!n +b11111111111111111111111111 voYaS +1ji0LQ +b11 Xl5u> +b1 (>'!4 +b10 kW4u6 +b1111111111111111111111111111110000 TR^LI +b11 :b=81 +b1 HQ+F% +sWriteL2Reg\x20(1) Zb6Jo +b11 ~KE&y +b1 .UZBO +b10 k)L: +b11 i[*eB +b1 "qRDa +b10 UGq^= +sStore\x20(1) !pqWT +b11 /KDIx +b1 v+9b; +b10 nzvCg +b1111111111111111111111100000000000 ]q(>w +sWidth64Bit\x20(3) hPob` +sSignExt\x20(1) B@nCO +b11 u5,*B +b1 _J!ec +b10 ~![@% +b1111111111111111111111111111110000 P$4Hz +1=ejS| +b10 v.xH9 +b111 k\.W- +b1000000010000 Rva]s +b1000000010000 NPnW3 +b100 XN7]F +1IezOi +sAddSubI\x20(1) >2B1o +b1 n(,`Z +b10 1Q7dl +b1011 b3&~d +b1 ;I^{P +b10 l?9sc +b1011 ]T%sG +b1 +X0{a +b10 ]Nq(" +b1011 /j%;] +b1 )KmIA +b10 -WmzW +b1011 By09[ +b1 6Z+n% +b10 DuvzE +b1011 ,Lyid +b1 dqL`K +b10 ~6^b1 +b1011 A*[83 +b1 mTvUG +b10 8CP=) +b1011 S0'>j +b1 *;PN$ +b10 <): +b0 BJQ-k +b10 "al1e +b1011 /%~37 +b0 qXBAS +b0 9hOd2 +b10 %|w/X +b1011 8opUH +b0 ^xzLU +sHdlNone\x20(0) &#$?z +b0 K{GN. +0/[Etl +sAddSub\x20(0) /Q%c9 +b0 +'%>l +b0 tk@m4 +b0 #$jt +sFull64\x20(0) m+G8Q +b0 Cr27@ +b0 8Y2z> +b0 "Yv%^ +b0 Emkj +b0 irH\u +b0 G|:nk +sFull64\x20(0) y'qUc +0u\EQ: +0&7vvF +0OaVR5 +0go.m) +b0 W.W#{ +b0 c7SL{ +sHdlNone\x20(0) j45)M +b0 ?x`CL +04G@9\ +sHdlNone\x20(0) ;"I"Y +b0 Zr$u= +b0 L)t/@ +0{;)bQ +sFull64\x20(0) f3zY\ +sFunnelShift2x8Bit\x20(0) +pXf& +b0 @+ls* +b0 48?;s +b0 Sb%Ui +b0 k0dqB +sU64\x20(0) 0.t|p +b0 [C/-c +b0 TZ!FZ +b0 O~C<7 +0NseSm +b0 !CWHY +b0 N1)y2 +b0 %V|(, +sReadL2Reg\x20(0) $WN2= +b0 bp:)O +b0 yMU)Q +sLoad\x20(0) X|h&> +b0 $nw8p +b0 }7>_D +sWidth8Bit\x20(0) p`X6F +sZeroExt\x20(0) Zm~0M +b0 y?T<= +b0 Our\- +sHdlSome\x20(1) \-QnV +sHdlNone\x20(0) #"r$8 +b0 EYNKC +b0 <`a(d +b0 mmsOk +b0 7XMZr +b0 66w1a +0h}^7~ +sAddSub\x20(0) ,XZ}d +b0 Jl~uo +b0 e\a9F +b0 rE7CE +b0 .*eQ[ +sFull64\x20(0) ?BeP +08ZNt* +0Y^oy> +b0 3d\u4 +b0 F/5[; +b0 g_PPN +b0 `,uj" +sFull64\x20(0) *TN*V +0@j{GW +b0 yot\: +b0 s:}ri +b0 95nzG +b0 Ps:}@ +b0 1wVLv +b0 H"ySy +b0 (ghbf +b0 \/8G; +b0 2K^8/ +sFull64\x20(0) s.QDw +02jkaI +b0 '#~4, +b0 8F!{4 +b0 *J=j> +b0 +fttv +0.Q,+* +b0 ^WW@= +b0 F2T,# +b0 ~g4$S +b0 lB~:5 +sFunnelShift2x8Bit\x20(0) ^Vk|< +b0 C>+,& +b0 k$G01 +b0 ]_'&* +b0 Vut&j +sU64\x20(0) IkdRr +b0 ;C=+Z +b0 j(|or +b0 hY;?S +b0 @)Nkq +b0 *Ri +b0 )ZfuF +0kO7vP +sEq\x20(0) v"b4$ +0UqlWF +b0 SLwRF +b0 g.qP +b0 )()VL +b0 V39rE +sPowerIsaTimeBase\x20(0) &.(F^ +b0 F6CUV +b0 buQm? +b0 c3Pz +b0 ;4?h^ +b0 =~3eG +b0 lLDRV +b0 =K_m# +b0 DW;BZ +b0 AMbg: +b0 7(J,^ +b0 Z|v*^ +b0 0?x/& +b0 8+!~W +b0 I7C._ +b0 kiFO, +b0 )OPb/ +b0 6kDhN +b0 >L;;6 +sZeroExt\x20(0) ZE3L7 +sHdlNone\x20(0) 26y~o +b0 InY9- +b0 zM@z. +b0 LBirM +b0 WzI`m +0irxdd +sAddSub\x20(0) c@wGa +b0 I66X_ +b0 o-vN; +b0 G%avb +b0 <]W'p +b0 w~3u6 +b0 Z>{<] +b0 DVtq; +b0 P%b*; +b0 +b0 foxD +b0 m'a-Z +b0 {VoG= +b0 oVK!V +b0 7^@D* +sReadL2Reg\x20(0) ICD\u +b0 '\BAY +b0 R}HI% +sLoad\x20(0) Wyy6% +b0 f$6dC +b0 Fz#Yt +b0 / +b1 7KC4r +b10 6tbM; +b1110000 ^S7[g +b11111111111111111111111111 +8|*X +sDupLow32\x20(1) S]^yD +0|z6|e +b1 ~6W~< +b10 B6j+a +b1111111111111111111111111111110000 V;j=| +sFull64\x20(0) :4FXk +0wy?VK +0B*HGB +b1 ;CO,F +b10 h**~) +b1110000 3v-QX +b111 F:D-Z +b111 ;/<%D +b111 k5?pH +b1111 $K6j< +1@*~C+ +1GE*|/ +1EA_M2 +1?{MM" +b1 ZmqS_ +b10 C=F}S +b1111111111111111111111111111110000 :9`Mi +sFull64\x20(0) L]'dG +0\/|'+ +0qypN> +b1 oYP]b +b10 -W14c +b1111111111111111111111100000000000 J~Qrj +sSignExt8\x20(7) tHst^ +1ls2}< +1\t^<) +1)4QA@ +1Ig"j( +b1 .gyUg +b10 tDs0G +b1110000 r/E[F +b111111 +y&d' +1(R[~J +sHdlSome\x20(1) P!%Rr +b111111 ZeNo^ +b111111 2_V~y +1D`o.1 +sSignExt8\x20(7) :1Pnw +sFunnelShift2x64Bit\x20(3) r,Z;k +b1 Tx\-$ +b10 yp/S' +b1111111111111111111111111111110000 CC?$h +sU64\x20(0) ,l]|7 +b1 HH!y7 +b10 q%tN9 +b1111111111111111111111100000000000 &7/KQ +s\x20(15) w9T{8 +b1 T@,MO +b10 |s.ZK +b1110000 6'ql+ +b11111111111111111111111111 $,(2m +1aJnp? +sEq\x20(0) %6e?) +071|W2 +0<$WNb +b1 ^py|E +b10 ~La}- +b1111111111111111111111111111110000 m9fl. +0}nudm +sEq\x20(0) ~K@F3 +0mX_DB +0kn%<~ +b1 h@X~z +b0 D/9k6 +b1 5Ij8& +b10 ln-L2 +b0 mSbG% +b1 u_^j` +b10 mVr!x +b0 T|7)^ +b1 Ah".5 +b10 56{qw +b1111111111111111111111100000000000 E,~7$ +sWidth64Bit\x20(3) Aq>CQ +sSignExt\x20(1) )3;6* +b0 6oeD. +b1 $TU|I +b10 K#he3 +b1111111111111111111111111111110000 1'2]8 +sWidth8Bit\x20(0) G*c=t +sHdlSome\x20(1) 4Cq); +b1 einTN +b11 <'~E5 +b1000 Cj$s$ +b1000000000000 [ZgUa +b100 O4-+K +1bFngG +sBranchI\x20(9) pR)p +b11 ER)|f +b1111000 qLRQT +b11111 \|NAG +sZeroExt8\x20(6) pn]_v +1<0/C| +b11 p#1r2 +b111111111000 Z%Rv +sSignExt32\x20(3) 65TZr +1NH(%e +1+mG6; +b11 /+v/i +b1111000 ARDF# +b111 OxZ2R +b11 +},xs +b11 H,WYx +b111111111000 I3=sb +sSignExt32\x20(3) }RNWd +1NB+d+ +1^/j`1 +b11 p#1fLZ +b11 ,h0hu +b1111000 cxAkf +sHdlSome\x20(1) )o`H0 +b1111 9f{bJ +sSignExt8To64BitThenShift\x20(4) CM3@? +b11 "\AiF +b111111111000 ShDYq +sS32\x20(3) XXWeF +b11 <*jWF +b1111111110000000000 r{=%f +b11 .[~9y +b1111000 #%S5< +b11111 1fg%j +sSLt\x20(3) >UWya +1,rIuT +1tZGUS +b11 =hUet +b111111111000 >$ZPq +1wFhav +sULt\x20(1) Gt@z8 +11lf5X +1w&]h5 +b11 B'C%C +sWriteL2Reg\x20(1) B)[[# +b100 ZrSF- +b11 /D}!O +b100 (vzZ +sHdlSome\x20(1) n}C`` +b1111111111111111111111111111111111111111111111111111111111110000 }Dz;f +sHdlSome\x20(1) r+(d7 +b100 ->lH +b111111 \Jbke +1rQ+Wq +sHdlSome\x20(1) o;l?4 +b111111 t|[\v +b111111 iV8/h +1U=Xm. +sSignExt8\x20(7) e$!yk +sFunnelShift2x64Bit\x20(3) V54m` +b1 +TF]] +b1111111111111111111111111111110000 JCe!} +b1 pU:_s +b1111111111111111111111100000000000 !PpX3 +s\x20(15) $fqWW +b1 #)mJJ +b1110000 H4CsI +b11111111111111111111111111 l<9ZG +1W3Ez> +b1 ,:H/N +b1111111111111111111111111111110000 Y^){/ +b1 hCrGT +sWriteL2Reg\x20(1) {q.)5 +b1 poEpV +b1 :NCNs +sStore\x20(1) dI&E& +b1 I;k+B +b1111111111111111111111100000000000 kXl_6 +sWidth64Bit\x20(3) IO_,q +sSignExt\x20(1) 8uiu\ +b1 -aW&V +b1111111111111111111111111111110000 srF&M +sHdlSome\x20(1) o8ZI) +b1111111111111111111111111111111111111111111111111111111111110000 N>' +b10 bd*&Y +b10 #o}nG +b10 k2>s^ +b100000000000000 ._ +b10 *{ovA +b100000000000000 {H"u, +b10 B&Lv$ +b1000000000000000000000 l]=:d +b10 eN(^} +b10000000 F4Q2n +b10 hbD'N +b100000000000000 ^5_@O +b10 %-%E- +sWriteL2Reg\x20(1) [COt6 +b10 70AKO +b10 6C+*c +sStore\x20(1) i)gQ( +b10 K`jtJ +b1000000000000000000000 54c7+ +b10 S`(u) +b100000000000000 c5t>3 +sHdlSome\x20(1) rO&kb +b10 Os~O@ +b100000000000000 >O:GV +b1 :ni]o +#4000000 +0spsS) +0Trgwi +0VmrjO +0~ge89 +0%3;Sp +0BEBSD +0LCUP8 +0%/Ado +#4500000 +1spsS) +1Trgwi +1VmrjO +1~ge89 +1%3;Sp +1BEBSD +1LCUP8 +1%/Ado +b100 PEA1+ +b1000000011000 I-08w +b1000000011100 1Z&s> +1`8zR0 +sAluBranch\x20(0) DSuu| +b111110 \SE_R +b100011 tBZ +b100011 GerxR +b0 nA|7R +b1111111111111111111111111111111110 F\$v' +sFull64\x20(0) 4K~NA +b111110 ZQs0& +b100011 :UWF( +b0 w&W[> +b11111110 \55fC +b111 xdN*8 +b111 2`:l +b111 Bg5Xt +b111 t:_&v +b1111 Z\x20(15) ]4AD +b111110 bt}41 +b100011 u/9D[ +b0 r.Z][ +b11111110 -0;Ik +b11111111111111111111111111 m:Ou% +0&//~f +sEq\x20(0) ZxX/a +b111110 M*}E5 +b100011 0evK. +b0 3kGdn +b1111111111111111111111111111111110 ]4wOz +0&LOc, +sEq\x20(0) #uq)w +b111110 nL)6( +sPowerIsaTimeBaseU\x20(1) a-mZh +b111110 m0{pQ +b100011 OAU@@ +b1111111111111111111111111000000000 ;=xb? +b111110 5v()u +b100011 ^*VHQ +b1111111111111111111111111000000000 6pOL/ +sWidth64Bit\x20(3) hQW$1 +sSignExt\x20(1) hddmj +b111110 #}\qx +b100011 CD%P= +b0 .?2[3 +b1111111111111111111111111111111110 l1v\t +sWidth8Bit\x20(0) 8*+Sv +b100 ._e2c +b1000000011100 &IybE +b1000000100000 q7AbU +b100011 y7)D$ +b100011 }pc}= +b11111111 XeM2O +b11111111111111111111111111 0PBB~ +b100011 6l2a= +b100011 S((or +b1111111111111111111111111111111111 3MwsK +b100011 //E) +b100011 N>ZS]P +1AG![i +1W0_by +b100011 faRN. +b100011 0ZR7S +b11111111 ^Fj6N +sHdlSome\x20(1) wGU:r +b111111 "=jp} +1VO!/0 +sHdlSome\x20(1) c]q&W +b111111 Ae\E\ +b111111 T^2+| +1^Y]il +sSignExt8\x20(7) I>!7l +sFunnelShift2x16Bit\x20(1) "A:0. +b100011 +r*}d +b100011 /@-K| +b1111111111111111111111111111111111 O{o|u +b100011 T+eDu +b100011 w@}@Q +b1111111111111111111111111100000000 v3:u- +s\x20(15) 71U1s +b100011 CpG-f +b100011 J +b100011 YL%&; +b1111111111111111111111111111111111 GsS![ +b100011 st\ge +b100011 P6V.p +b100011 -J&/x +b1111111111111111111111111100000000 8vEg3 +b100011 aOT,e +b100011 4>2B) +b1111111111111111111111111100000000 ].)~" +sWidth64Bit\x20(3) Q:en@ +sSignExt\x20(1) 2$PGM +b100011 VA4I, +b100011 jawjF +b1111111111111111111111111111111111 -HxLj +b100 tHOJj +b1000000100000 A'=Rz +b1000000000000 Lu@[& +1t_DKN +sAluBranch\x20(0) F0#nQ +sBranchI\x20(9) (5Ule +b1 ,(~"Z +b0 DQV+h +b0 0Yr6K +b11100000 ]Qw?H +b11111111111111111111111111 JfH*[ +1>*@wE +1avGfT +b1 /%NB$ +b0 fmbnW +b0 j1@2L +b1111111111111111111111111111100000 BN0Pi +1aZ!9t +1[=&&% +b1 tiOj/ +b0 =iLU* +b0 C`/}p +b11100000 9kyzU +b111 @sGyd +b111 YN,?x +b111 UR'K9 +b111 B./rB +b1111 6GXoh +14YXYW +1Kago` +14RZi= +1`UW[- +b1 25"-0 +b0 nR}z\ +b0 JuL(I +b1111111111111111111111111111100000 =Kc,7 +1l6oNR +1-(x#J +b1 ct#Y1 +b0 ;;n*/ +b1111111111111111111110000000000000 {Ko6C +sSignExt8\x20(7) @=XZ2 +1d):3^ +1&E7!Z +1!SanV +1o,a"? +b1 VsL;G +b0 qb;sd +b0 UJ`qo +b11100000 hGe>a +sHdlSome\x20(1) z$*.W +b111111 j:-4~ +1[?,!? +sHdlSome\x20(1) _92tN +b111111 xX^@r +b111111 +xk[Z +1f$3CN +sSignExt8\x20(7) uCj]O +sShiftSigned64\x20(7) (8smv +b1 vTy6) +b0 066is +b0 CXz8V +b1111111111111111111111111111100000 *+[85 +b1 I)IKr +b0 X&%Q: +b1111111111111111111110000000000000 >XpS4 +s\x20(15) D1D=) +b1 #YbS, +b0 H,Vvy +b0 7u>}p +b11100000 t,qtb +b11111111111111111111111111 Xk?DD +1etxN% +1n0BQI +b1 G|+;# +b0 h2cR< +b0 hY"y& +b1111111111111111111111111111100000 aoo[G +17-VND +1`A5b^ +b1 Y|kUw +b1001 ;}jO` +b1 #q@'& +b0 $;3m1 +b1111111111111111111110000000000000 2IwCh +b100 ;JSI] +b1 do+%C +b0 <,ios +b1111111111111111111110000000000000 'GRou +sWidth64Bit\x20(3) f;UYZ +sSignExt\x20(1) B7IiL +b100 [h`Z\ +b1 i~}(P +b0 !w2ms +b0 ~_lCL +b1111111111111111111111111111100000 8l,xt +b1000000000000 u];=A +b1000000100100 {cG=X +b10 Yk8$* +b101 %4VT6 +b100 N.OXU +b1000000011000 9`!,u +b1000000011100 QlkNC +15eQ.? +sAluBranch\x20(0) /]!O. +b111110 iT~h` +b100011 TS=!3 +b0 :2|OZ +b11111110 eja+\ +b11111111111111111111111111 Q'66= +sFull64\x20(0) F#;rq +b111110 8)c"z +b100011 G7|vg +b0 ]M93n +b1111111111111111111111111111111110 XHR-X +sFull64\x20(0) S}^+t +b111110 D9>eb +b100011 F~x!8 +b0 Y@|Ja +b11111110 l:@`] +b111 owfWm +b111 c8c^_ +b111 a)qoJ +b111 5xvu} +b1111 ]":{i +1'sD>s +10V@C} +14$,Y~ +1~QzJ` +b111110 .W!T/ +b100011 `;fd_ +b0 N2${a +b1111111111111111111111111111111110 J_~S< +sFull64\x20(0) 8wIW7 +b111110 Cy4nP +b100011 W$"e\ +b1111111111111111111111111000000000 I:m){ +sSignExt8\x20(7) F4&^( +12/!rI +1#@b`# +1S0--: +1COyM_ +b111110 YAr\k +b100011 K|,p_ +b0 mnn+F +b11111110 /gz0| +sHdlSome\x20(1) jot"3 +b111111 r%%5y +1.#hFi +sHdlSome\x20(1) .fibJ +b111111 2]^15 +b111111 UHIo; +1B%j@{ +sSignExt8\x20(7) {O;7u +sFunnelShift2x16Bit\x20(1) 7Yd +b1111111111111111111111111000000000 ^fpBb +s\x20(15) 0j53c +b111110 I"E#p +b100011 pQ-j( +b0 b[]V@ +b11111110 g.;g$ +b11111111111111111111111111 wxA}Q +0@'i^} +sEq\x20(0) 1 { +b111110 SDCz$ +b100011 c$:Xv +b0 x2E^C +b1111111111111111111111111111111110 H|1P# +0`>[:C +sEq\x20(0) fO_6D +b111110 ;~Hln +sPowerIsaTimeBaseU\x20(1) ?a"}} +b111110 $u9je +b100011 J)8I| +b1111111111111111111111111000000000 rd6;k +b111110 -a#jV +b100011 ,XW2] +b1111111111111111111111111000000000 =N%V@ +sWidth64Bit\x20(3) %k=W= +sSignExt\x20(1) p={M3 +b111110 2;07E +b100011 %ZUdK +b0 ck^m$ +b1111111111111111111111111111111110 (FHYG +sWidth8Bit\x20(0) rp9WJ +b100 `%:u/ +b1000000011100 +.1SM +b1000000100000 dp]}: +b100011 zNb>V +b100011 !1lK: +b11111111 qiPq/ +b11111111111111111111111111 t?Oy0 +b100011 zR!_3 +b100011 ^Ck6B +b1111111111111111111111111111111111 !@5Gr +b100011 Zc#vz +b100011 acelg +b11111111 X:2Ac +b111 eC\C' +b111 Ed*ET +b111 V!\x20(15) o-D;G +b100011 +uz|. +b100011 BKd|u +b11111111 `(kC~ +b11111111111111111111111111 5f@LH +b100011 }nR9J +b100011 6?!l5 +b1111111111111111111111111111111111 czn[e +b100011 mZ"q' +b100011 XicV& +b100011 }[+Z( +b1111111111111111111111111100000000 N..e| +b100011 gm@a\ +b100011 RPB}I +b1111111111111111111111111100000000 WfKEm +sWidth64Bit\x20(3) 0Sp>. +sSignExt\x20(1) +Ax03 +b100011 Ot/;: +b100011 /s&|Z +b1111111111111111111111111111111111 Src+k +b100 ){&o_ +b1000000100000 F0~]I +b1000000000000 _|Rnb +1jTp$U +sAluBranch\x20(0) ~nv;z +sBranchI\x20(9) !H"gQxD +19`*Px +b1 @Tuw~ +b0 ~"gxI +b0 ,C#0* +b11100000 hz$]J +sHdlSome\x20(1) JIDpd +b111111 niwY> +1,>Oc` +sHdlSome\x20(1) vQL"G +b111111 11mQJ +b111111 \]ww> +1ubXf5 +sSignExt8\x20(7) [gcwU +sShiftSigned64\x20(7) ~xDx- +b1 V\V!B +b0 3:(Fa +b0 {-IuN +b1111111111111111111111111111100000 9bae_ +b1 qaV=[ +b0 Z0-R( +b1111111111111111111110000000000000 ivF'. +s\x20(15) Viu)x +b1 ]K20. +b0 K|1s| +b0 ./}9| +b11100000 An$p| +b11111111111111111111111111 {$yG& +1\A/^J +19@Q;* +b1 7}63> +b0 h,z|` +b0 zJOBP +b1111111111111111111111111111100000 [Qh#a +1n,5~S +1HtXod +b1 b&t'A +b1001 .\b7q +b1 rn\:K +b0 54$." +b1111111111111111111110000000000000 r`U0s +b100 -{>s +b1 DQ^uL +b0 J@k.S +b1111111111111111111110000000000000 d@1., +sWidth64Bit\x20(3) d%oDn +sSignExt\x20(1) '=9WG +b100 \OySK +b1 Ef\Qh +b0 h)z,a +b0 n|-pU +b1111111111111111111111111111100000 ]Mhp- +b100 ,Pv?r +b1000000011000 a:tIz +b1000000011100 gTqRd +1RBJ?^ +sAluBranch\x20(0) ,'3lf +b111110 nmNJ, +b100011 GFy&u +b0 -s6PA +b11111110 gQi\j +b11111111111111111111111111 h,ii, +sFull64\x20(0) =P|XW +b111110 y[NOL +b100011 ?/NUH +b0 4z=+d +b1111111111111111111111111111111110 :Xe5e +sFull64\x20(0) LTp&~ +b111110 J1T8? +b100011 Y}*O- +b0 A\Z8, +b11111110 3i>HA +b111 VI'z@ +b111 hKeXi +b111 h2_xP +b111 ;p&nS +b1111 )YDFF +1h';2G +1v:-i] +1!~GyI +1@'|mL +b111110 ([Dqp +b100011 @F~J' +b0 fdUkT +b1111111111111111111111111111111110 $?GYs +sFull64\x20(0) 'n2+# +b111110 ?^om, +b100011 lWc>F +b1111111111111111111111111000000000 +P7Rq +sSignExt8\x20(7) BeiV# +1B+I|B +1C99vz +1[b=u( +155qp0 +b111110 o1\{N +b100011 35I%s +b0 a#SLK +b11111110 L=cu[ +sHdlSome\x20(1) {p2dz +b111111 hVB5 +1yvbT4 +sHdlSome\x20(1) ~uskf +b111111 =dL?G +b111111 nFmk, +1?2x+z +sSignExt8\x20(7) <^#6K +sFunnelShift2x16Bit\x20(1) <{?Id +b111110 I5HN% +b100011 c{zZ0 +b0 }am'r +b1111111111111111111111111111111110 Z/St+ +sU64\x20(0) yf6z] +b111110 &G2h\ +b100011 stmPk +b1111111111111111111111111000000000 i7?i4 +s\x20(15) x8a$: +b111110 E:HrB +b100011 8xhS] +b0 p9;XE +b11111110 F6*0y +b11111111111111111111111111 Z_OAO +025cGr +sEq\x20(0) 7<'-` +b111110 +~dd4 +b100011 s9p}o +b0 {UJU8 +b1111111111111111111111111111111110 `C]WJ +0Y=:H? +sEq\x20(0) )Z^qC +b111110 j\m^R +sPowerIsaTimeBaseU\x20(1) =1kw; +b111110 %w/L +b100011 AMh.? +b1111111111111111111111111000000000 ,A9~X +b111110 '=f3; +b100011 Ub>G= +b1111111111111111111111111000000000 L!bB, +sWidth64Bit\x20(3) e'!k# +sSignExt\x20(1) EblHw +b111110 NNw^> +b100011 LKEU1 +b0 zpR'i +b1111111111111111111111111111111110 r80>T +sWidth8Bit\x20(0) |*%dP +b100 b;gWF +b1000000011100 v%{gr +b1000000100000 jFa=K +b100011 #2OQ} +b100011 vksO, +b11111111 i]+5z +b11111111111111111111111111 sh};) +b100011 ,V^rO +b100011 sD6!8 +b1111111111111111111111111111111111 df:Hc +b100011 Dj{+ +b100011 W^wOb +b11111111 I\hxa +b111 Ulf`d +b111 ]33~R +b111 Tq8l+ +b111 T{|1R +b1111 }_$k6 +1.;)9F +1D"s+s +1]<_1W +1@&b.U +b100011 @jX] +b100011 |@vsF +b1111111111111111111111111111111111 `&Nae +b100011 ^Z&bQ +b100011 MTD,2 +b1111111111111111111111111100000000 w4qo2 +sSignExt8\x20(7) 3,+!U +1;P:@9 +1W.P<2 +1Ug*@' +1Rc+=F +b100011 .>zxg +b100011 -<[`2 +b11111111 1Fx%S +sHdlSome\x20(1) -.lEL +b111111 G"Qgz +1Q{ST, +sHdlSome\x20(1) 6-{(: +b111111 4n/Ly +b111111 6U>6D +1.Yv,) +sSignExt8\x20(7) tPRxP +sFunnelShift2x16Bit\x20(1) p\9a> +b100011 fu";+ +b100011 RZytC +b1111111111111111111111111111111111 /BJ([ +b100011 `l|qB +b100011 1:FjN +b1111111111111111111111111100000000 Ry[w +s\x20(15) ,,Krw +b100011 7([Jb +b100011 YY4%x +b11111111 LHYn| +b11111111111111111111111111 >8k +b1 },g58 +b0 GJBDZ +b0 W$a\K +b11100000 T/^qT +b11111111111111111111111111 KZwr&?+ +b0 ?>\Q+ +b0 q084d +b1111111111111111111111111111100000 ~zcGR +1,CEgq +1jYxyP +b1 uE%zT +b0 Y8{\< +b0 r3i&v +b11100000 45&F( +b111 (eNGH +b111 4fkE# +b111 7L~~= +b111 BpuDy +b1111 r^RNn +1@2*&L +1J$n>S +1cO&mX +1lNIz] +b1 zrC*% +b0 y-GAU +b0 fa8*B +b1111111111111111111111111111100000 ]x5Ix +1uH>"' +1i3)BK +b1 f?]#A +b0 >,8GX +b1111111111111111111110000000000000 A^5^n +sSignExt8\x20(7) X"baP +1EQUEI +1'OYs@ +18oI6y +1|Pf=% +b1 so_5p +b0 +?W.q +b0 I`a%C +b11100000 B/7|# +sHdlSome\x20(1) 9(JN] +b111111 Jd9.m +1|A.=` +sHdlSome\x20(1) :m\Y; +b111111 apvfj +b111111 !w06O +1JV~b' +sSignExt8\x20(7) 3IA,K +sShiftSigned64\x20(7) x*8qY +b1 z]_l= +b0 +%;|Z +b0 :35UK +b1111111111111111111111111111100000 V8Bj\ +b1 %l:7J +b0 u}^=~ +b1111111111111111111110000000000000 YQ.n` +s\x20(15) 1`3[N +b1 h6[&a +b0 \C[M" +b0 r*bPe +b11100000 DZTX? +b11111111111111111111111111 &Z[@x +1o?"]V +11[Xn9 +b1 ^;#MP +b0 3aP4) +b0 95z1H +b1111111111111111111111111111100000 RS~%L +1]gfCo +1Gn/-S +b1 nG&}O +b1001 LQ#r] +b1 76Lmw +b0 T.vI4 +b1111111111111111111110000000000000 >9=-u +b100 rR-,i +b1 T+JxD +b0 l[Apv +b1111111111111111111110000000000000 WB*d$ +sWidth64Bit\x20(3) W+_C` +sSignExt\x20(1) .APJ0 +b100 t_%P` +b1 KfRhZ +b0 (aT\. +b0 Ph_I_ +b1111111111111111111111111111100000 tO`2q +sHdlSome\x20(1) /:g|& +sRetiredInstructions\x20(1) >y]-? +b1 _(R$b +b11 w}/Bf +b1000000010000 Eky!H +b1000000010100 :sI9j +b100 )nJ"~ +sLoadStore\x20(2) ?N$]^ +sAddSubI\x20(1) &MfgI +b1000 6sD4N +b100000 HQY6t +sSignExt32\x20(3) MKX;Q +b1000 T8t[X +b100000 sS~NV +sSignExt32\x20(3) pD&Ls +b1000 ?@)9q +b100000 7=Pgf +b1000 VMN)u +b100000 ctw7h +sSignExt32\x20(3) U0@BC +b1000 d+9I4 +b100000 QkW1x +b1000 KB!C) +b100000 DF\;- +sSignExt32To64BitThenShift\x20(6) 0_#L* +b1000 {0ee@ +b100000 -4|a@ +sS32\x20(3) J-+JX +b1000 ~V}|J +b100000 C.H\h +b1000 P +b1 ZLL\;h +b111110 UEFA@ +b1000 %u+Dc +b111110 ByS^& +sSignExt32To64BitThenShift\x20(6) pv:OH +b1000 7r7AR +b111110 >MmW +sS32\x20(3) /c$Xz +b1000 {G8@+ +b111110 c0LX" +b1000 !:fy4 +b111110 {(Bn@ +14Qlx +sStore\x20(1) hadbI +b1000 m$|/9 +b100000 [f>nA +b1000 -LXNb +b100000 G~p~g +sWidth64Bit\x20(3) ig.YP +b11 $'o?g +b1000000010100 3um:5 +b1000000010100 ){4i% +b100 6apdr +1ju6fs +sAddSubI\x20(1) w9P-> +b1000 v28ue +b100001 =|"qS +b1000 Pzz8j +b1000 D>IZJ +b100001 ]jsx5 +b1000 jB%K/ +b1000 zV10L +b100001 qW.:. +b1000 a%_Pt +b1000 I[S/] +b100001 IGIn4 +b1000 rlKhk +b1000 v't5d +b100001 '2:cU +b100000000000 VC{S{ +b1000 ZO4-X +b100001 uCt)P +b1000 DN]\] +b1000 =[>NsUm +b100001 /M6,? +b100000000000 _j![? +b1000 Nue:T +b100001 SBZi& +b1000 [2*&w +b1000 `O448 +b100001 @!EF+ +b1000 2u-O: +b1000 "bvT, +sPowerIsaTimeBaseU\x20(1) x-b:} +b1 E,skd +b1000 zAS]1 +b100001 Iz=>r +b100000000000 txV:. +sStore\x20(1) l`@v4 +b1000 C9K$K +b100001 %$M5R +b100000000000 J +b111110 !Cj{" +sSignExt32\x20(3) qYmZ) +b1000 #bG~1 +b111110 `(BH9 +sSignExt32\x20(3) B+-$k +b1000 _bc@3 +b111110 'D7.H +b1000 q%6RF +b111110 `vjow +sSignExt32\x20(3) 9AWi +b1 z*Ya\ +b1000 |4%S; +b111110 ]DB(- +sStore\x20(1) *@U;i +b1000 1h<[W +b111110 Du.ri +b1000 ggw'" +b111110 F:}gG +sWidth64Bit\x20(3) ;yP{| +b1100 J8qAt +sHdlNone\x20(0) GsdD" +b0 }:QxN +b0 hh!}] +b0 k@R+E +b0 +PXSv +b0 l?S\m +0\V<+8 +sAddSub\x20(0) MblDA +b0 ,x}1E +b0 [1QYf +b0 Q?&yg +b0 :7n0q +b0 >rfq~ +b0 gFsv> +b0 ;y<{T +b0 oe:=f +b0 n%YVO +b0 BZ_}6 +b0 a|i#T +b0 :'&q] +b0 >k6Kc +b0 GkaGC +b0 m]~n+ +b0 -,5HB +b0 mW0X1 +b0 scS,5 +b0 !S[oU +b0 <`".; +b0 ^wgDb +b0 EuQ&g +b0 yU)K+ +b0 pyXrG +b0 Z3oTw +b0 p-iOX +b0 `5VG7 +b0 @BCQ( +b0 \'IUv +b0 0~>JX +b0 n0w"3 +b0 ?NS&) +sPowerIsaTimeBase\x20(0) n)CBx +sReadL2Reg\x20(0) @6Wh^ +b0 vz]]| +b0 DBl,V +b0 JO/R^ +b0 #A\{" +b0 RrKX{ +b0 Jje[. +sLoad\x20(0) GFU6/ +b0 B +b1000 !:mCD +b10 +b1011 W8XS1 +b1000 n`F3H +b10 c|YDQ +b10 PlfY7 +b1011 jK1(D +b1000 x+bLK +b10 ~/SU@ +b10 7N(2B +b1011 Ry^d6 +b10000000000 r]5!T +b10 #C +b10 Zhb;B +b10 6Bs+q +b1011 q>44& +b10000000000 -aB'c +b10 I-P?< +b10 PUwX9 +b1011 cAAiR +b1000 Il`'' +b10 %kOhN +b10 +EHVj +b1011 ?M[[K +b1000 #!i:O +b10 9h,[u +b10 =%q +sWriteL2Reg\x20(1) d"z,m +b10 fRBsa +b10 nQ]F$ +b1011 O%K'j +b10 !+vbL +b10 TKqtx +b1011 2Ha^E +sStore\x20(1) gF{%3 +b10 MLv]\ +b10 Z5vY) +b1011 :Zs7T +b10000000000 hxR^= +b10 d;an= +b10 S(YP[ +b1011 #HCal +b1000 [w)"8 +sHdlNone\x20(0) 2+~8. +b0 e.>!d +b0 Pf4v- +b0 w(Y.E +b0 #77!F +b0 N8AJ[ +0WqnyH +sAddSub\x20(0) hO;,E +b0 o70n3 +b0 o_fn1 +b0 koytw +b0 ic)l7 +b0 Fb^`# +sFull64\x20(0) !#$|) +b0 4ZiR{ +b0 bo=u; +b0 >7qi% +b0 }{9s? +b0 T}6F{ +b0 i\g~u +b0 rM7-O +b0 x#u|# +b0 2qgU| +b0 S6jJW +b0 J+fq` +b0 vErr. +b0 19u~E +0yp8qN +03pl!7 +0^i2k\ +05@{;| +b0 PlkVY +b0 Jd~Pb +b0 edNTB +b0 GBP=# +b0 4UYzc +b0 PL1n; +b0 4tao> +b0 TdVa( +sFull64\x20(0) 8xZ+? +0:,;bn +0bO2,? +0$'?mR +0H3&*T +b0 c;]X: +b0 2Hd\+ +b0 ^'3#Y +b0 @mWc| +sHdlNone\x20(0) pyQf< +b0 Mf}"1 +0Di-yd +sHdlNone\x20(0) *ECrH +b0 T-eB3 +b0 3UK-V +0%|A)e +sFull64\x20(0) rG.-, +sFunnelShift2x8Bit\x20(0) =?~c: +b0 vK5MO +b0 ;F|s= +b0 *kE&> +b0 `6k&. +b0 WN]D: +b0 Do[v_ +b0 Mc(T# +b0 =La9s +sU64\x20(0) _zsO} +b0 Hg%`D +b0 &OrI| +b0 GNhZj +b0 7tgJR +b0 gn4!j +0]?L-J +b0 <3&o{ +b0 `KhXe +b0 J&bcl +b0 L)/~: +b0 +%u8S +b0 w+b0u +sReadL2Reg\x20(0) yK$C< +b0 dyBI< +b0 >L(9z +b0 8d>S1 +b0 q27kl +b0 R+JSz +b0 /U8+( +sLoad\x20(0) zwMR* +b0 N~"3y +b0 top=[ +b0 ^)X#@ +b0 O(\N_ +sWidth8Bit\x20(0) h.Xqu +sZeroExt\x20(0) _)=(. +b0 ,'hfW +b0 p%PLP +b0 ,AQ#^ +b0 m>x7" +b10 mRC_, +b110 4)DEa +b1000000001100 hX]+$ +b1000000010000 8ETVJ +sAddSubI\x20(1) o#SL2 +b1 }?5X| +b10 qxaPo +b1110000 !=\[D +b11111111111111111111111111 hEl?> +sDupLow32\x20(1) yM}[a +0T?tdw +b1 :.opf +b10 @hGR( +b1111111111111111111111111111110000 ;Q:Ic +sFull64\x20(0) ]4BA< +0DOG[a +0jCQXL +b1 +U}/' +b1111 Xy8}E +111IPQ +1"3Kp +b1 J*I|< +b10 l!A~' +b1111111111111111111111111111110000 [S,/K +sFull64\x20(0) 1oeWN +0^ +15XgS` +b1 9#9%H +b10 (8/)1 +b1110000 Zap2# +b111111 }QHl= +1o"d4H +sHdlSome\x20(1) ^/N8S +b111111 DDbT^ +b111111 ,$?hn +1I"(>Y +sSignExt8\x20(7) +OUit +sFunnelShift2x64Bit\x20(3) F"/%U +b1 tk"+A +b10 A4W>N +b1111111111111111111111111111110000 #YdXT +sU64\x20(0) j~ilT +b1 .Q\$j +b10 ,g4_m +b1111111111111111111111100000000000 oJTHi +s\x20(15) /Rd]Q +b1 u]U06 +b10 ^OM{\ +b1110000 (#nmX +b11111111111111111111111111 +gJjj +1(y\Q7 +sEq\x20(0) Q68Fi +0j8~u] +0Qthh. +b1 !>paD +b10 4,LIq +b1111111111111111111111111111110000 _/bAq +0aIBb= +sEq\x20(0) !jq9^ +0B_HFB +0+~l}K +b1 ^W`2q +b0 Xz1eH +b1 /c:]K +b10 gZWR@ +b0 ^6q{l +b1 XZaQp +b10 6k"4t +b0 N${(T +b1 g[(5. +b10 |oC@' +b1111111111111111111111100000000000 C4vg\ +sWidth64Bit\x20(3) :}ITB +sSignExt\x20(1) o{DA? +b0 pV@;n +b1 mQc8/ +b10 lG->` +b1111111111111111111111111111110000 XRIzz +sWidth8Bit\x20(0) |:7{B +b100000000000000 o{AjW +sHdlSome\x20(1) @a:}a +b11 ck@eh +b1000 4rI|P +b1000000010000 ak:L> +b1000000010100 @>$7) +b100 ?E'qI +sLoadStore\x20(2) lvD"q +sAddSubI\x20(1) (.R$r +b100 pfayd +b1 Oa~d4 +b10001 e*[Uq +b11 *c.=A +sZeroExt8\x20(6) WZ$#^ +b100 Dfchk +b1 t3vX" +b10001 {}v": +b11 e48]; +sSignExt32\x20(3) )^O6a +b100 pU[WY +b1 `9-7* +b10001 `OY#I +b11 s9Del +b100 o8[nM +b1 ft?eF +b10001 Q[`GK +b11 %>NWw +sSignExt32\x20(3) T;W:h +b100 nDR%8 +b1 !_dym +b10001 daYrb +b11 V=g>q +b100 zV^l$ +b1 50ZOV +b10001 krOy> +b11 Zi8HQ +sSignExt8To64BitThenShift\x20(4) hD~;f +b100 ?uct: +b1 8?5_q +b10001 vFC(* +b11 F*[*f +sS32\x20(3) $op8_ +b100 SU$Vk +b1 *kfe, +b10001 QN/HH +b11 bia5L +b100 :=Cq0 +b1 ov+9` +b10001 p:A&% +b11 w0L(n +sSLt\x20(3) S7GGZ +b100 &%x.Z +b1 CFq.z +b10001 QT/}s +b11 1JI\O +1"t~Xg +sULt\x20(1) 5Ej+U +b100 BSxks +b1 05SJ% +sPowerIsaTimeBaseU\x20(1) ^/dzh +sWriteL2Reg\x20(1) (dJfJ +b100 ]@)%< +b1 FEL/2 +b10010001 RDG@% +b100 tRFnH +b1 ~E8x2 +b10001 2oi3Z +b11 #IF +sStore\x20(1) K:_W] +b100 RG#r@ +b1 [@C"7 +b10001 1d~Bk +b11 +?0Ji +b100 $Pz+f +b1 BZqq7 +b10001 {\ok+ +b11 nI1%n +sWidth64Bit\x20(3) ?\a<@ +sHdlSome\x20(1) e2InP +b1 W\wJR +b100 8^v[N +b100 Uo0#B +sLoadStore\x20(2) 56-k+ +b100 gkX*9 +b1 >qj?1 +b1100000000000000000000 4a1`I +b100 ,4$(m +b1 r%'~J +b11000000000000000000000000000 4[!Kv +b100 Po;)= +b1 OcqRK +b100 !yhT# +b1 v'XCG +b11000000000000000000000000000 Vkh~x +b100 W]_!r +b1 ,`>#$ +sSignExt32\x20(3) YM%.H +b100 kEa7> +b1 ,kT.K +b100000 ~:GCy +1k:a#H +b100 Z;k|n +b1 Y!Zka +b11000000000000000000000000000 GcfeE +b100 k3Box +b1 Gg+j' +sS32\x20(3) EnKft +b100 YGuK' +b1 $E&7^ +b1100000000000000000000 oz%iQ +b100 (Od4c +b1 bsz[F +b11000000000000000000000000000 }nFsD +b100 '2dpk +sPowerIsaTimeBaseU\x20(1) }^kVKXg +b100000 `G\DS +sSignExt32\x20(3) g;*CW +b1000 Nj|g; +b100000 83:XP +sSignExt32\x20(3) B<_;H +b1000 + +sS32\x20(3) G]\+) +b1000 c-"X{ +b100000 ^)eR" +b1000 E?O;q +b100000 8$79d +1Cws4+ +sULt\x20(1) d/t5* +b1000 29[AY +b100000 QaU1H +1dG@SE +sULt\x20(1) OJj}0 +b1 IIt=7 +b1000 u!gm/ +b100000 &fJ=I +sStore\x20(1) *t.1T +b1000 oZnqW +b100000 z'E>U +b1000 #]Nqr +b100000 D_yQ= +sWidth64Bit\x20(3) U-V8F +b1 Q8.k[ +b11 ;_3I; +b1000000010100 k5Uf2 +b1000000010100 PM::U +b100 ;y<#` +1M.mP~ +sAddSubI\x20(1) 917hP +b1000 >;%8g +b100001 Ls`r3 +b1000 h0S5G +b1000 +XN{} +b100001 >GyN_ +b1000 y{da8 +b1000 Gys_i +b100001 mdb/3 +b1000 j4Kw% +b1000 RvFO? +b100001 eeH5_ +b1000 r6|*' +b1000 }8KhF +b100001 4E?m* +b100000000000 m_Hyo +b1000 (f.%r +b100001 u`._^ +b1000 g%BT* +b1000 #+%hl +b100001 rUz^o +b1000 U#E3H +b1000 Uxb:l +b100001 8ichW +b100000000000 mfV{o +b1000 z`V- +b1000 1fU># +b1000 l2Xh) +b100001 Feh}X +b1000 $H(34 +b1000 pWZlr +sPowerIsaTimeBaseU\x20(1) bL2ql +b1 |[`H/ +b1000 v]2UJ +b100001 u&3X| +b100000000000 5ccZp +sStore\x20(1) e^[lR +b1000 \Z!]& +b100001 C3zZ. +b100000000000 "(=5 +b1000 )}}$o +b100001 ShU9k +b1000 -y+7^ +b1 *n`_w +b11 "n'rI +b1000000010100 3v&^* +b1000000011000 `0/8C +b100 E\]PA +sLoadStore\x20(2) fCOk{ +sAddSubI\x20(1) a$qJA +b1000 o>LHC +b111110 ]~QRV +sSignExt32\x20(3) (mt0q +b1000 1fX9> +b111110 60I}5 +sSignExt32\x20(3) k%(*c +b1000 o*!K) +b111110 yA,P& +b1000 "aX|" +b111110 >;V7g +sSignExt32\x20(3) ;AX5E +b1000 EUBzo +b111110 5pu{C +b1000 e-56\ +b111110 i9p0& +sSignExt32To64BitThenShift\x20(6) .pTTj +b1000 -8c6k +b111110 L{/% +sS32\x20(3) [@uB: +b1000 Mx;ln +b111110 ,e8=x +b1000 SRkPd +b111110 Ucq&V +1HGqrI +sULt\x20(1) Rpn@l +b1000 S0c4B +b111110 pts{~ +sSignExt32\x20(3) DaJIt +b100 *6$// +b1 [TH2x +b10001 =n;qp +b11 ,!Ys3 +b100 `J.tk +b1 nrhnz +b10001 Z\nvY +b11 JnROK +sSignExt8To64BitThenShift\x20(4) m{9HL +b100 |y\_4 +b1 hB)Vw +b10001 v1=]l +b11 ''ZBn +sS32\x20(3) 4Zy2h +b100 bUAW* +b1 p-/$F +b10001 TNLe^ +b11 =i{Y- +b100 KA?^ +b1 @N;R> +b10001 U]S-A +b11 ,982e +sSLt\x20(3) C:{&w +b100 xVDy| +b1 W9ib0 +b10001 "k@JZ +b11 5V8f9 +1%Rf^( +sULt\x20(1) L#9!t +b100 V:7M5 +b1 M{Fss +sPowerIsaTimeBaseU\x20(1) l/1:h +sWriteL2Reg\x20(1) $5Jnk +b100 9(wvk +b1 ?uB3y +b10010001 w+z-V +b100 YjYM' +b1 ydd"} +b10001 bY'>| +b11 :DtY= +sStore\x20(1) rZ>|B +b100 'Mzw1 +b1 Pe];[ +b10001 !c +b1 KO!kN +b10001 T#FU4 +b11 %@&?g +sWidth64Bit\x20(3) vmb:S +1;$9pA +b11 C[xiC +b1001 %b|Fh +b1000000010100 Io,]} +b1000000010100 o;x.q +b100 Q,#%^ +1$B<{. +sAddSubI\x20(1) V#|\= +b10 5J}/i +b10 z9&t6 +b1011 ip@<@ +b1000 ;@&VK +b10 p%h}x +b10 {KLK1 +b1011 n^>"h +b1000 w@YE: +b10 ,PgLz +b10 1+o$U +b1011 =OT;\ +b1000 OvXl[ +b10 p'[RS +b10 )O0BS +b1011 *hIc" +b1000 OK.7\ +b10 L2|vy +b10 92KW_ +b1011 a/"$9 +b10000000000 &$s*X +b10 rk?eo +b10 A9t54 +b1011 +}36% +b1000 K+sbL +b10 \"u-W +b10 r5/Tb +b1011 \Ym%2 +b1000 }mt-] +b10 Aw30o +b10 q?LiJ +b1011 !*djF +b10000000000 7,5Oe +b10 vx#8F +b10 !AOr: +b1011 D-e| +b1000 'uDP+ +b10 ~/2O> +b10 &H~tc +b1011 @XyE% +b1000 LRsyn +b10 =yS/9 +b10 %GO74 +sPowerIsaTimeBaseU\x20(1) :W\vN +sWriteL2Reg\x20(1) ,of&[ +b10 &*aY\ +b10 LKZZk +b1011 \E}{G +b10 1zA7L +b10 %~^@} +b1011 MJEaC +sStore\x20(1) 2IZYo +b10 /-EBQ +b10 Q3aZD +b1011 bhQm, +b10000000000 =vl>c +b10 SWIm0 +b10 *l>*= +b1011 v>nX/ +b1000 }(D1o +1%n3G +b10 G46AM +b10010 =8C0U +sSignExt32\x20(3) <}5wz +b100 J8cn+ +b10 F:!lx +b10010 jgS4f +b100 h:~"4 +b10 s^PNB +b10010 cp,o +sWriteL2Reg\x20(1) S@/Q@ +b100 fxJA? +b10 D17|s +b10010 E#Ld, +b100 j/'&) +b10 cd&4q +b10010 +RUaM +sStore\x20(1) UMUl[ +b100 dTp@i +b10 lI"8z +b10010 tUG}: +b100 ^L+'& +b10 z~kLn +b10010 ys_k^ +sWidth64Bit\x20(3) YC7AA +1(n$N} +b1011 2/sm& sHdlSome\x20(1) &-:U^ b1111111111111111111111111111111111111111111111111111111111110000 Wp83F -s\"Finished:\x200x0:\x20AddSub\x20pu0_or0x0,\x20%0x0_u7,\x20%0x0_u7,\x20-0x10_i34\" jh9?I -s\"(S)NotStarted:\x200x4:\x20AddSub\x20pu1_or0x0,\x20%0x0_u7,\x20%0x0_u7,\x200x4000_i34\" :GA_. -s\"(S)NotStarted:\x200x8:\x20Branch\x20pu2_or0x0,\x20%0x0_u7,\x20%0x0_u7,\x200xFF8_i34,\x20uge,\x20pc_relative,\x20is_call\" 8/,R| -s\"(S)NotStarted:\x200x1000:\x20Compare\x20pu0_or0x1,\x20%0x4_u7,\x200x1_i34,\x20u64\" 9AXXS -sHdlNone\x20(0) nkQ2N -sHdlSome\x20(1) )z^s> -b10 /Prl& -b100 ]=,I. -b1000 A")OE -b100 !Cp.7 -13P=sb -sAddSubI\x20(1) [(35J -b10 Q>BJ_ -b10000000 ?,_9N -b10 Ym7JR -b100000000000000 tbK}; -b10 &"{BA -b10 XH]La -b10 ?=O8N -b100000000000000 $R<=N -b10 p)1#0 -b1000000000000000000000 tnEQ` -b10 x54e& -1Q~YaY -b10 E?PC -b100000000000000 CH%YO -b10 (i7#U -b1000000000000000000000 9e@}L -b10 2LL:I -b10000000 =VIv9 -b10 ^U@Hk -b100000000000000 Q:PuW -b10 +tJN_ -sWriteL2Reg\x20(1) QZ[[< -b10 %n==B -b10 K>t)> -sStore\x20(1) ?D3u= -b10 Tvc%' -b1000000000000000000000 ?9G"z -b10 mpJW; -b100000000000000 ,t+G4 -sHdlSome\x20(1) UuBqd -b1 {;4<\ -b11 P>V,n -b1000 E|F~\ -b1000000000000 g.&#[ -b100 eqz@h -1vjjSN -sBranchI\x20(9) i!S`, -b11 dk$96 -b1111000 p#4w_ -b11111 ;!osD -sZeroExt8\x20(6) qRHgN -1P)U%M -b11 !_\Jt -b111111111000 Wyu%d -sSignExt32\x20(3) u-0IS -1;.K4l -1$vW5P -b11 Hl)sN -b1111000 BbO+g -b111 @i3K@ -b11 NOUO# -b11 k;}"q -b111111111000 qy,c( -sSignExt32\x20(3) 2nPr] -sSignExt8To64BitThenShift\x20(4) hD(-G -b11 K9.az -b111111111000 nqCb9 -sS32\x20(3) l~zk9 -b11 q=1Id -b1111111110000000000 Kohu9 -b11 =[82 -b1111000 ?R -sULt\x20(1) xH^!T -1X[;ke -1R'S?t -b11 06LtC -sWriteL2Reg\x20(1) f_sp? -b100 X&_8a -b11 >[?*l -b100 =Z^3V -b11 r!>-| -sStore\x20(1) M|NN. -b100 hOP54 -b11 -HPdI? -sLoadStore\x20(2) 3e\d+ -b100 }h\}N -b1 4Y:_v -b1100000000000000000000 %@'i$ -b100 ]H_!q -b1 ^Tv"" -b11000000000000000000000000000 3-T&$ -b100 Z/D,B -b1 !otF( -b100 CHg4I -b1 QhCeJ -b11000000000000000000000000000 ^0e~n -b100 0eR" -b1 Su'_; -sSignExt32\x20(3) 3G,Jv -b100 w1}|0 -b1 [K!RU -b100000 ?_Oi: -1k_t(- -b100 `]RM~ -b1 1h:z4 -b11000000000000000000000000000 #CKD; -b100 0-WD6 -b1 W`.H& -sS32\x20(3) =Xf/D -b100 /X),E -b1 ccLo6 -b1100000000000000000000 wXR.8 -b100 8,pK( -b1 pKLh. -b11000000000000000000000000000 *(lo. -b100 Exg@8 -sPowerIsaTimeBaseU\x20(1) Hl}R0 -b100 Wr2W& -b1 2BA#^ -b100 3GwBd -b1 ,NU{m -b100 ;(=q8 -b1 9(5MF -sWidth64Bit\x20(3) QVrY? -b100 &]M[[ -b1 R%MX$ -b11000000000000000000000000000 >bi^H -b1111111111111111111111111111111111111111111111111111111111110000 4dk/1 -sHdlNone\x20(0) msjmY -sHdlNone\x20(0) QL_q -sHdlNone\x20(0) $"9>$ -sHdlNone\x20(0) F[4T> -b0 @uKa` +sHdlSome\x20(1) x@^v4 +b100000000000000 D=1&q +s\"F_C(finished):\x200x0:\x20AddSub\x20pu0_or0x0,\x20%0x0_u7,\x20%0x0_u7,\x20-0x10_i34\" jh9?I +s\"F_C(finished):\x200x4:\x20AddSub\x20pu1_or0x0,\x20%0x0_u7,\x20%0x0_u7,\x200x4000_i34\" :GA_. +s\"IR_S_C:\x200x8:\x20Branch\x20pu2_or0x0,\x20%0x0_u7,\x20%0x0_u7,\x200xFF8_i34,\x20uge,\x20pc_relative,\x20is_call\" 8/,R| +s\"INR_S_C:\x200x100c:\x20AddSub\x20pu2_or0x1,\x20%0x2_u7,\x20%0x0_u7,\x20-0x10_i34\" $CPgh +s\"INR_S_C:\x200x1010:\x20AddSub\x20pu0_or0x2,\x20%0xB_u7,\x20%0x0_u7,\x200x0_i34\" &_rP5 +s\"NotYetEnqueued:\x200x1010..:\x20Store\x20pu3_or0x1,\x20%0x11_u7,\x20%0x3_u7,\x200x0_i34,\x20u64\" [fD3% +s\"NotYetEnqueued:\x200x1014:\x20AddSub\x20pu1_or0x2,\x20%0xB_u7,\x20%0x0_u7,\x200x8_i34\" 5V$0e +s\"NotYetEnqueued:\x200x1014..:\x20Store\x20pu3_or0x2,\x20%0x12_u7,\x20%0x0_u7,\x200x0_i34,\x20u64\" :it1N +sHdlNone\x20(0) [C%Hf +b0 %RtTH +b0 8/pV| +b0 j2-1L +b0 NbFkw +b0 3AP`S +0')1eW +sAddSub\x20(0) VT<5| +b0 X.9SR +b0 }I;A' +b0 )*dfH +b0 0q.D{ +b0 ^=0uJ +b0 NOOLi +b0 nZ{}2 +b0 :)nQ; +b0 QR`Ib +b0 @up]M +b0 e~"?/ +b0 vNrz +b0 1{YN5 +b0 {\p-O +b0 '&`u] +b0 @nvij +b0 {H8aD +b0 gxzt: +b0 VWvW* +b0 K+Hdv +b0 h.q}< +b0 "$OJ) +b0 H#5g" +b0 rIzGO +b0 "G]bW +b0 N&t8( +b0 n0QT5 +b0 q_)`Q +b0 OB`3w +b0 OTQ[C +b0 8krPb +sPowerIsaTimeBase\x20(0) _orp# +sReadL2Reg\x20(0) (RD!N +b0 [O*PO +b0 oxIol +b0 pVs1C +b0 :'Ba1 +b0 kwl{E +b0 ]B3q( +sLoad\x20(0) yqT@W +b0 @Z]rc +b0 "al1e +b0 /%~37 +b0 r7:zo +b0 %|w/X +b0 8opUH +sHdlNone\x20(0) \-QnV +sHdlSome\x20(1) #"r$8 +b11 EYNKC +b1001 <`a(d +b1000000010100 mmsOk +b1000000010100 7XMZr +b100 66w1a +1h}^7~ +sAddSubI\x20(1) ,XZ}d +b10 Jl~uo +b10 e\a9F +b1011 rE7CE +b1000 kf7v' +b10 3d\u4 +b10 F/5[; +b1011 g_PPN +b1000 `,uj" +b10 yot\: +b10 s:}ri +b1011 95nzG +b1000 UfS!X +b10 H"ySy +b10 (ghbf +b1011 \/8G; +b1000 2K^8/ +b10 '#~4, +b10 8F!{4 +b1011 *J=j> +b10000000000 +fttv +b10 ^WW@= +b10 F2T,# +b1011 ~g4$S +b1000 L%ctK +b10 C>+,& +b10 k$G01 +b1011 ]_'&* +b1000 Vut&j +b10 ;C=+Z +b10 j(|or +b1011 hY;?S +b10000000000 @)Nkq +b10 *Ri +b1000 x3p:L +b10 SLwRF +b10 L;;6 +sHdlNone\x20(0) EP/ +b0 #'>Kb +b0 7KC4r +b0 6tbM; +b0 ^S7[g +b0 +8|*X +sFull64\x20(0) S]^yD +b0 "=5Db +b0 ~6W~< +b0 B6j+a +b0 V;j=| +b0 &{w6( +b0 ;CO,F +b0 h**~) +b0 3v-QX +b0 ]RXZa +b0 F:D-Z +b0 ;/<%D +b0 k5?pH +b0 $K6j< +0@*~C+ +0GE*|/ +0EA_M2 +0?{MM" +b0 @tQ0| +b0 ZmqS_ +b0 C=F}S +b0 :9`Mi +b0 ~C9?J +b0 oYP]b +b0 -W14c +b0 J~Qrj +sFull64\x20(0) tHst^ +0ls2}< +0\t^<) +0)4QA@ +0Ig"j( +b0 %6B9R_: +b0 ^py|E +b0 ~La}- +b0 m9fl. +b0 \l\CN +b0 h@X~z +sReadL2Reg\x20(0) KWF^i +b0 ^FEx_ +b0 5Ij8& +b0 ln-L2 +b0 /I;}9 +b0 u_^j` +b0 mVr!x +sLoad\x20(0) 5R,d^ +b0 %l~FW +b0 Ah".5 +b0 56{qw +b0 E,~7$ +sWidth8Bit\x20(0) Aq>CQ +sZeroExt\x20(0) )3;6* +b0 P2sr9 +b0 $TU|I +b0 K#he3 +b0 1'2]8 +b10 einTN +b110 <'~E5 +b1000000001100 Cj$s$ +b1000000010000 [ZgUa +sAddSubI\x20(1) pR)p +b1 g*%59 +b10 b{U;y +b1110000 qLRQT +b11111111111111111111111111 \|NAG +sDupLow32\x20(1) pn]_v +0<0/C| +b1 (s$ue +b10 MDVIh +b1111111111111111111111111111110000 Z%Rv +sFull64\x20(0) 65TZr +0NH(%e +0+mG6; +b1 t;)iM +b10 77YbM +b1110000 ARDF# +b111 +},xs +b111 ]xLO} +b111 E71zE +b1111 h/2[- +1{.{CL +1rMhqy +1R*e"^ +1qLJ/e +b1 JBCXs +b10 )6v,w +b1111111111111111111111111111110000 I3=sb +sFull64\x20(0) }RNWd +0NB+d+ +0^/j`1 +b1 +i6I: +b10 @KI:J +b1111111111111111111111100000000000 1>fLZ +sSignExt8\x20(7) p&'n8 +1LALMA +1o5T'D +1[+dgb +1,Qrp$ +b1 Lr*l= +b10 hY35; +b1110000 cxAkf +b111111 9f{bJ +1o)z}# +sHdlSome\x20(1) *1yp' +b111111 ]"rac +b111111 `BA?# +1cd`x\ +sSignExt8\x20(7) 5JTvd +sFunnelShift2x64Bit\x20(3) CM3@? +b1 ua-5? +b10 kZ{kU +b1111111111111111111111111111110000 ShDYq +sU64\x20(0) XXWeF +b1 2IZ+: +b10 vLOH@ +b1111111111111111111111100000000000 r{=%f +s\x20(15) TW:eo +b1 R}qR6 +b10 VBZ$9 +b1110000 #%S5< +b11111111111111111111111111 1fg%j +1w:19a +sEq\x20(0) >UWya +0,rIuT +0tZGUS +b1 1pY.6 +b10 C(!B{ +b1111111111111111111111111111110000 >$ZPq +0wFhav +sEq\x20(0) Gt@z8 +01lf5X +0w&]h5 +b1 hWPEo +b0 ZrSF- +b1 6JLB9 +b10 XAC-0 +b0 3pf8 +b11 v[[V? +sSignExt8To64BitThenShift\x20(4) JTGV` +b100 #4dBu +b1 mPoN: +b10001 OcSb\ +b11 o?8IN +sS32\x20(3) =!ftg +b100 {+lD# +b1 E<,{b +b10001 ApuA@ +b11 -.l$l +b100 k(0+m +b1 s;{.' +b10001 Bv[[X +b11 *y2X^ +sSLt\x20(3) G`lUq +b100 ,n*cU +b1 {Y9_^ +b10001 Bh/-k +b11 {Y8/\ +13&~fa +sULt\x20(1) LvMO~ +b100 I_(nG +b1 Y?Lm{ +sPowerIsaTimeBaseU\x20(1) `PENj +sWriteL2Reg\x20(1) OZG&u +b100 "fp!n +b1 >,I|4 +b10010001 98ekT +b100 Z'E<* +b1 H'/WC +b10001 {g/i< +b11 =jn7d +sStore\x20(1) l17_z +b100 ^k>|b +b1 p8EBF +b10001 q,A#3 +b11 <49e% +b100 t@$_$ +b1 XP1Wf +b10001 2i>{X +b11 ~c{'k +sWidth64Bit\x20(3) &U<*T +sHdlSome\x20(1) r:u1S +b1 Sq>rR +b100 >k=a* +b100 a8NsS +sLoadStore\x20(2) =c{8k +b100 ""CvX +b1 k|9Y, +b1100000000000000000000 HU1E& +b100 ^vD>{ +b1 v9+e\ +b11000000000000000000000000000 jDJMi +b100 .7sgl +b1 *e!tD +b100 B8@f# +b1 m;o"H +b11000000000000000000000000000 w;>EN +b100 7}$0k +b1 g~}[r +sSignExt32\x20(3) D=_" +b100 HZ?mi +b1 Hd(P. +b100000 f`#iz +1;;idR +b100 H'By] +b1 i'D>T +b11000000000000000000000000000 O{%Bf +b100 gQeXN +b1 him9F +sS32\x20(3) RE8%I +b100 (j]'3 +b1 t>BCz +b1100000000000000000000 Sle!a +b100 Z$|h2 +b1 <8%EB +b11000000000000000000000000000 QF/jp +b100 #'Y+/ +sPowerIsaTimeBaseU\x20(1) h]?w" +b100 9c7a. +b1 %CSMI +b100 ~r49< +b1 8bwN_ +b100 NvtlJ +b1 zg1GD +sWidth64Bit\x20(3) 6lP7& +b100 OJwQ% +b1 zHG_e +b11000000000000000000000000000 jY49{ +b1111111111111111111111111111111111111111111111111111111111110000 cBNJ) +sHdlNone\x20(0) thK|e +sHdlNone\x20(0) -VNX5 +b0 R*\|t +sHdlNone\x20(0) k5NJV +sHdlNone\x20(0) >(vzZ +sHdlNone\x20(0) n}C`` +b0 }Dz;f +sHdlNone\x20(0) r+(d7 b0 ->' +b0 bd*&Y +b0 #o}nG +b0 k2>s^ +b0 ._ +b0 *{ovA +b0 {H"u, +b0 B&Lv$ +b0 l]=:d +b0 eN(^} +b0 F4Q2n +b0 hbD'N +b0 ^5_@O +b0 %-%E- +sReadL2Reg\x20(0) [COt6 +b0 70AKO +b0 6C+*c +sLoad\x20(0) i)gQ( +b0 K`jtJ +b0 54c7+ +b0 S`(u) +b0 c5t>3 +sHdlNone\x20(0) rO&kb +b0 Os~O@ +b0 >O:GV +b0 :ni]o +sHdlSome\x20(1) b&/Ct +b11 |pGpG +sHdlSome\x20(1) jKoZE +b11 FzvmA +b1100 /o`t` +sPush\x20(1) wuO#2 +b1100 uk1,# +sHdlSome\x20(1) F +b1111000 wAi*y +b11111 \hl;[ +sSLt\x20(3) y>:Z\ +1_ASED +1|F?wM +b11 DrjT+ +b111111111000 xwsnS +1U,.Hj +sULt\x20(1) PCVK( +1/L!#7 +1_bk1< +b11 gFF]1 +sWriteL2Reg\x20(1) fDL:@ +b100 0?<7> +b11 j~]yM +b100 }rG%U +b11 @[T[q +sStore\x20(1) G?Qs+ +b100 v1b!I +b11 spg+c +b1111111110000000000 {$ipO +b100 hdFxC +b11 k)&Gx +b111111111000 5N$2. +sWidth64Bit\x20(3) Z^Go6 +sHdlSome\x20(1) EJ?S[ +b11 2gth9 +b1100 pp;z +sPush\x20(1) R[}5~ +b1100 8IH+. +b1 [hqJq +#5000000 0spsS) 0Trgwi 0VmrjO @@ -125880,7 +132156,7 @@ b0 ^D|wP 0BEBSD 0LCUP8 0%/Ado -#4500000 +#5500000 1spsS) 1Trgwi 1VmrjO @@ -125889,212 +132165,453 @@ b0 ^D|wP 1BEBSD 1LCUP8 1%/Ado -b0 PEA1+ -b0 I-08w -b0 1Z&s> -b0 ZT&'? -0`8zR0 -sAddSub\x20(0) ~&~b| -b0 tBZ +sCompareI\x20(7) ~&~b| +b11111111 \SE_R +b1 #e-S| +b0 D%-{C b0 ]80eu -sFull64\x20(0) hBth_ -0A;!0R -0Osgv1 -b0 GerxR +b11111111 -'a5> +b1 nA|7R b0 F\$v' -sFull64\x20(0) 4K~NA -0TK%nF -0+*xfD -b0 :UWF( +b11111111 ZQs0& +b1 w&W[> +b0 \55fC +b0 xdN*8 b0 2`:l b0 Bg5Xt -b0 Xw8=f +b0 t:_&v +b0 ZZS]P +0AG![i +0W0_by +b0 faRN. +b11111111 0ZR7S +b0 ^Fj6N +sHdlNone\x20(0) wGU:r +b100100 "=jp} +0VO!/0 +sHdlNone\x20(0) c]q&W +b0 Ae\E\ +b0 T^2+| +0^Y]il +sFull64\x20(0) I>!7l +sFunnelShift2x32Bit\x20(2) "A:0. +b0 +r*}d +b11111111 /@-K| +b100100000000000 O{o|u +sCmpRBTwo\x20(9) FuBYe +b0 T+eDu +b11111111 w@}@Q +b10010000000000000000000 v3:u- +sU64\x20(0) 71U1s +b0 CpG-f +b11111111 J +b11111111 YL%&; +b100100000000000 GsS![ +1FCW1< +sSGt\x20(4) e{z1' +1=v:#H +b0 st\ge +b1000 _mE.y +b0 P6V.p +b11111111 -J&/x +b10010000000000000000000 8vEg3 +sLoad\x20(0) w4Y}F +b100 aJW>` +b0 aOT,e +b11111111 4>2B) +b10010000000000000000000 ].)~" +sWidth8Bit\x20(0) Q:en@ +sZeroExt\x20(0) 2$PGM +b100 .&`Wq +b0 VA4I, +b11111111 jawjF +b100100000000000 -HxLj +sWidth16Bit\x20(1) $X\vk +b101 tHOJj +b1000000001000 A'=Rz +b1000000001100 Lu@[& +sTransformedMove\x20(1) F0#nQ +sAddSub\x20(0) (5Ule +b100000 ,(~"Z +b1 DQV+h +b0 ]Qw?H +b0 JfH*[ +sFull64\x20(0) WN.jv +0>*@wE +0avGfT +b100000 /%NB$ +b1 fmbnW +b0 BN0Pi +sFull64\x20(0) w@W?^ +0aZ!9t +0[=&&% +b100000 tiOj/ +b1 =iLU* +b0 9kyzU +b0 @sGyd +b0 YN,?x +b0 UR'K9 +b0 B./rB +b0 6GXoh +04YXYW +0Kago` +04RZi= +0`UW[- +b100000 25"-0 +b1 nR}z\ +b0 =Kc,7 +sFull64\x20(0) |N@&U +0l6oNR +0-(x#J +b100000 ct#Y1 +b1 ;;n*/ +b0 {Ko6C +sFull64\x20(0) @=XZ2 +0d):3^ +0&E7!Z +0!SanV +0o,a"? +b100000 VsL;G +b1 qb;sd +b0 hGe>a +sHdlNone\x20(0) z$*.W +b0 j:-4~ +0[?,!? +sHdlNone\x20(0) _92tN +b0 xX^@r +b0 +xk[Z +0f$3CN +sFull64\x20(0) uCj]O +sFunnelShift2x8Bit\x20(0) (8smv +b100000 vTy6) +b1 066is +b0 *+[85 +sU64\x20(0) 9?P>e +b100000 I)IKr +b1 X&%Q: +b0 >XpS4 +sU64\x20(0) D1D=) +b100000 #YbS, +b1 H,Vvy +b0 t,qtb +b0 Xk?DD +0VQsc) +sEq\x20(0) YJ30i +0etxN% +0n0BQI +b100000 G|+;# +b1 h2cR< +b0 aoo[G +0q}_t4 +sEq\x20(0) Ca$-J +07-VND +0`A5b^ +b100000 Y|kUw +sPowerIsaTimeBaseU\x20(1) z:6c< +b0 ;}jO` +b100000 #q@'& +b1 $;3m1 +b0 2IwCh +sLoad\x20(0) eRLjP +b0 ;JSI] +b100000 do+%C +b1 <,ios +b0 'GRou +sWidth8Bit\x20(0) f;UYZ +sZeroExt\x20(0) B7IiL +b0 [h`Z\ +b100000 i~}(P +b1 !w2ms +b0 8l,xt +sWidth8Bit\x20(0) J57w$ +b1000000001100 u];=A +b110 %4VT6 +b101 N.OXU +b1000000000000 9`!,u +b1000000000100 QlkNC +sCompareI\x20(7) gTl08 +b11111111 iT~h` +b1 :2|OZ +b0 eja+\ b0 Q'66= -sFull64\x20(0) F#;rq -0[3:A" -0K(0F/ -b100000 8)c"z -b1 G7|vg +b11111111 8)c"z +b1 ]M93n b0 XHR-X -sFull64\x20(0) S}^+t -0|?Ur@ -0[>F.` -b100000 D9>eb -b1 F~x!8 +b11111111 D9>eb +b1 Y@|Ja +b0 l:@`] +b0 owfWm b0 c8c^_ b0 a)qoJ -b100000 .W!T/ -b1 `;fd_ +b0 5xvu} +b0 ]":{i +0'sD>s +00V@C} +04$,Y~ +0~QzJ` +b11111111 .W!T/ +b1 N2${a b0 J_~S< -sFull64\x20(0) 8wIW7 -0(8$VO -0Yt_29 -b100000 Cy4nP -b1 W$"e\ -b0 I:m){ -b100000 YAr\k -b1 K|,p_ +b11111111 Cy4nP +b1 I:m){ +sFull64\x20(0) F4&^( +02/!rI +0#@b`# +0S0--: +0COyM_ +b11111111 YAr\k +b1 mnn+F +b0 /gz0| +sHdlNone\x20(0) jot"3 b0 r%%5y +0.#hFi +sHdlNone\x20(0) .fibJ +b0 2]^15 +b0 UHIo; +0B%j@{ +sFull64\x20(0) {O;7u sFunnelShift2x8Bit\x20(0) 7Yd -b0 ^fpBb -b100000 I"E#p -b1 pQ-j( +b11111111 tes)z +b1 ^fpBb +sU64\x20(0) 0j53c +b11111111 I"E#p +b1 b[]V@ +b0 g.;g$ b0 wxA}Q -0@'i^} -sEq\x20(0) 1 { -0cp4|$ -b100000 SDCz$ -b1 c$:Xv +b11111111 SDCz$ +b1 x2E^C b0 H|1P# -0`>[:C -sEq\x20(0) fO_6D -05bo0, -b100000 ;~Hln -b0 XeL<% -b100000 $u9je -b1 J)8I| -b0 rd6;k -b0 W:(}Z -b100000 -a#jV -b1 ,XW2] -b0 =N%V@ -b0 13M=1 -b100000 2;07E -b1 %ZUdK +b11111111 ;~Hln +b111 XeL<% +b11111111 $u9je +b1 rd6;k +b11 W:(}Z +b11111111 -a#jV +b1 =N%V@ +sWidth8Bit\x20(0) %k=W= +sZeroExt\x20(0) p={M3 +b11 13M=1 +b11111111 2;07E +b1 ck^m$ b0 (FHYG -sWidth8Bit\x20(0) rp9WJ -b1000000001100 +.1SM -b1000000010000 dp]}: -sAluBranch\x20(0) ?ES_( -sAddSubI\x20(1) wijWV -b100001 zNb>V -b100001 !1lK: -b11110000 qiPq/ -b11111111111111111111111111 t?Oy0 -b100001 zR!_3 -b100001 ^Ck6B -b1111111111111111111111111111110000 !@5Gr -b100001 Zc#vz -b100001 acelg -b11110000 X:2Ac -b111 eC\C' -b111 Ed*ET -b111 V!\x20(15) o-D;G -b100001 +uz|. -b100001 BKd|u -b11110000 `(kC~ -b11111111111111111111111111 5f@LH -b100001 }nR9J -b100001 6?!l5 -b1111111111111111111111111111110000 czn[e -b100001 mZ"q' -b1 ED+_D -b100001 XicV& -b100001 }[+Z( -b1111111111111111111111000000000000 N..e| -sStore\x20(1) |#*EN -b100001 gm@a\ -b100001 RPB}I -b1111111111111111111111000000000000 WfKEm -sWidth64Bit\x20(3) 0Sp>. -sSignExt\x20(1) +Ax03 -b100001 Ot/;: -b100001 /s&|Z -b1111111111111111111111111111110000 Src+k -b100 ){&o_ -b1000000010000 F0~]I -b1000 "&P:c +b101 `%:u/ +b1000000000100 +.1SM +b1000000001000 dp]}: +sBranch\x20(8) wijWV +b0 zNb>V +b11111111 !1lK: +b0 qiPq/ +b1001000 t?Oy0 +sDupLow32\x20(1) +0rQ4 +1=05C- +1ZSkBW +b0 zR!_3 +b11111111 ^Ck6B +b100100000000000 !@5Gr +sDupLow32\x20(1) f"5we +19bHA] +1'@XYj +b0 Zc#vz +b11111111 acelg +b0 X:2Ac +b0 eC\C' +b1 Ed*ET +b1 V!. +sZeroExt\x20(0) +Ax03 +b100 @\Rzx +b0 Ot/;: +b11111111 /s&|Z +b100100000000000 Src+k +sWidth16Bit\x20(1) yC:+, +b101 ){&o_ +b1000000001000 F0~]I +b1000000001100 _|Rnb +sTransformedMove\x20(1) ~nv;z +sAddSub\x20(0) !H"--'1 +0{U*;] +0Mo_aO +b100000 ,7EpA +b1 ;'X`% b0 C*8p( b0 VEfTR b0 =l/3p @@ -126105,16 +132622,22 @@ b0 xjGjK 0ec8ZG 0nn`cR 0?0\?g -b1000 xjgd` +b100000 xjgd` +b1 g/YKL b0 ""Ld; -b1000 BB2ux +sFull64\x20(0) }\}kL +0ci8O+ +07AE;Q +b100000 BB2ux +b1 -*$nE b0 n%}L0 sFull64\x20(0) `ej:F 0e98Pn 0VH""n 0>gQxD 09`*Px -b1000 @Tuw~ +b100000 @Tuw~ +b1 ~"gxI b0 hz$]J sHdlNone\x20(0) JIDpd b0 niwY> @@ -126125,81 +132648,308 @@ b0 \]ww> 0ubXf5 sFull64\x20(0) [gcwU sFunnelShift2x8Bit\x20(0) ~xDx- -b1000 V\V!B +b100000 V\V!B +b1 3:(Fa b0 9bae_ -b1000 qaV=[ +sU64\x20(0) 9F:Pu +b100000 qaV=[ +b1 Z0-R( b0 ivF'. sU64\x20(0) Viu)x -b1000 ]K20. +b100000 ]K20. +b1 K|1s| b0 An$p| b0 {$yG& -b1000 7}63> +0+E"k8 +sEq\x20(0) >v9Z| +0\A/^J +09@Q;* +b100000 7}63> +b1 h,z|` b0 [Qh#a -b1000 b&t'A -b1000 rn\:K +0:AS_p +sEq\x20(0) 3vjOu +0n,5~S +0HtXod +b100000 b&t'A +sPowerIsaTimeBaseU\x20(1) 4{x.8 +b0 .\b7q +b100000 rn\:K +b1 54$." b0 r`U0s -b1000 DQ^uL +sLoad\x20(0) u3W!- +b0 -{>s +b100000 DQ^uL +b1 J@k.S b0 d@1., sWidth8Bit\x20(0) d%oDn sZeroExt\x20(0) '=9WG -b1000 Ef\Qh +b0 \OySK +b100000 Ef\Qh +b1 h)z,a b0 ]Mhp- -b0 ,Pv?r -b0 a:tIz -b0 gTqRd -b0 zc2xj -0RBJ?^ -sAddSub\x20(0) saxDL -b0 GFy&u +sWidth8Bit\x20(0) 87tGF +b101 ,Pv?r +b1000000000000 a:tIz +b1000000000100 gTqRd +sCompareI\x20(7) saxDL +b11111111 nmNJ, +b1 -s6PA +b0 gQi\j b0 h,ii, -sFull64\x20(0) =P|XW -0G"d=} -0Okz_6 -b0 ?/NUH +b11111111 y[NOL +b1 4z=+d b0 :Xe5e -sFull64\x20(0) LTp&~ -0KA9gj -0AITll -b0 Y}*O- +b11111111 J1T8? +b1 A\Z8, +b0 3i>HA +b0 VI'z@ b0 hKeXi b0 h2_xP -b0 @F~J' +b0 ;p&nS +b0 )YDFF +0h';2G +0v:-i] +0!~GyI +0@'|mL +b11111111 ([Dqp +b1 fdUkT b0 $?GYs -sFull64\x20(0) 'n2+# -0`Hbpf -0:sW)\ -b0 lWc>F -b0 +P7Rq -b0 35I%s +b11111111 ?^om, +b1 +P7Rq +sFull64\x20(0) BeiV# +0B+I|B +0C99vz +0[b=u( +055qp0 +b11111111 o1\{N +b1 a#SLK +b0 L=cu[ +sHdlNone\x20(0) {p2dz b0 hVB5 +0yvbT4 +sHdlNone\x20(0) ~uskf +b0 =dL?G +b0 nFmk, +0?2x+z +sFull64\x20(0) <^#6K sFunnelShift2x8Bit\x20(0) <{?Id -b0 c{zZ0 +b11111111 I5HN% +b1 }am'r b0 Z/St+ -sU64\x20(0) yf6z] -b0 stmPk -b0 i7?i4 -b0 8xhS] +b11111111 &G2h\ +b1 i7?i4 +sU64\x20(0) x8a$: +b11111111 E:HrB +b1 p9;XE +b0 F6*0y b0 Z_OAO -025cGr -sEq\x20(0) 7<'-` -0H6H%Y -b0 s9p}o +b11111111 +~dd4 +b1 {UJU8 b0 `C]WJ -0Y=:H? -sEq\x20(0) )Z^qC -0u/`<> -sPowerIsaTimeBase\x20(0) =1kw; -b0 .39{v -b0 AMh.? -b0 ,A9~X -b0 /N,f, -b0 Ub>G= -b0 L!bB, -b0 wivAP -b0 LKEU1 +b11111111 j\m^R +b111 .39{v +b11111111 %w/L +b1 ,A9~X +b11 /N,f, +b11111111 '=f3; +b1 L!bB, +sWidth8Bit\x20(0) e'!k# +sZeroExt\x20(0) EblHw +b11 wivAP +b11111111 NNw^> +b1 zpR'i b0 r80>T -sWidth8Bit\x20(0) |*%dP -b0 L9B+' +b101 b;gWF +b1000000000100 v%{gr +b1000000001000 jFa=K +sBranch\x20(8) 2*-)= +b0 #2OQ} +b11111111 vksO, +b0 i]+5z +b1001000 sh};) +sDupLow32\x20(1) xg&xE +1'Z1IW +1B2Xdz +1*arG% +1^Bh`$ +b0 ^Z&bQ +b11111111 MTD,2 +b10010000000000000000000 w4qo2 +sFull64\x20(0) 3,+!U +0;P:@9 +0W.P<2 +0Ug*@' +0Rc+=F +b0 .>zxg +b11111111 -<[`2 +b0 1Fx%S +sHdlNone\x20(0) -.lEL +b100100 G"Qgz +0Q{ST, +sHdlNone\x20(0) 6-{(: +b0 4n/Ly +b0 6U>6D +0.Yv,) +sFull64\x20(0) tPRxP +sFunnelShift2x32Bit\x20(2) p\9a> +b0 fu";+ +b11111111 RZytC +b100100000000000 /BJ([ +sCmpRBTwo\x20(9) vcRr< +b0 `l|qB +b11111111 1:FjN +b10010000000000000000000 Ry[w +sU64\x20(0) ,,Krw +b0 7([Jb +b11111111 YY4%x +b0 LHYn| +b1001000 >8k +b100000 },g58 +b1 GJBDZ +b0 T/^qT +b0 KZwr&?+ +b1 ?>\Q+ +b0 ~zcGR +sFull64\x20(0) ,vkS +0cO&mX +0lNIz] +b100000 zrC*% +b1 y-GAU +b0 ]x5Ix +sFull64\x20(0) F4VNf +0uH>"' +0i3)BK +b100000 f?]#A +b1 >,8GX +b0 A^5^n +sFull64\x20(0) X"baP +0EQUEI +0'OYs@ +08oI6y +0|Pf=% +b100000 so_5p +b1 +?W.q +b0 B/7|# +sHdlNone\x20(0) 9(JN] +b0 Jd9.m +0|A.=` +sHdlNone\x20(0) :m\Y; +b0 apvfj +b0 !w06O +0JV~b' +sFull64\x20(0) 3IA,K +sFunnelShift2x8Bit\x20(0) x*8qY +b100000 z]_l= +b1 +%;|Z +b0 V8Bj\ +sU64\x20(0) d/\TS +b100000 %l:7J +b1 u}^=~ +b0 YQ.n` +sU64\x20(0) 1`3[N +b100000 h6[&a +b1 \C[M" +b0 DZTX? +b0 &Z[@x +0d/e>+ +sEq\x20(0) ][)s; +0o?"]V +01[Xn9 +b100000 ^;#MP +b1 3aP4) +b0 RS~%L +0hvHwO +sEq\x20(0) l7K6P +0]gfCo +0Gn/-S +b100000 nG&}O +sPowerIsaTimeBaseU\x20(1) 0B!23 +b0 LQ#r] +b100000 76Lmw +b1 T.vI4 +b0 >9=-u +sLoad\x20(0) JRL\s +b0 rR-,i +b100000 T+JxD +b1 l[Apv +b0 WB*d$ +sWidth8Bit\x20(0) W+_C` +sZeroExt\x20(0) .APJ0 +b0 t_%P` +b100000 KfRhZ +b1 (aT\. +b0 tO`2q +sWidth8Bit\x20(0) o/y]-? b0 _(R$b @@ -126388,7 +133138,6 @@ b100 !3kxa b1 o]>Lv b111111111000 0]r=m sWidth64Bit\x20(3) Ub'}p -b10 >6c=# b1000000000000 E{f') b1000000000100 "1`4I sCompareI\x20(7) \%1;S @@ -126471,7 +133220,6 @@ b100011 )T1(y b1 #;"5W b0 .r +b100000 KD{1/ +b1 X~]Mi +b0 Uia)[ +sFunnelShift2x8Bit\x20(0) wXaQ3 +b100000 zaynS +b1 -!HQh +b0 QYi$` +sU64\x20(0) #lYDw +b100000 YJv3/ +b1 z8`Q+ +b0 1Ai +b0 iN7JB +b0 \,4xP +b100000 q8s8. +b1 Lk*Xz +b0 ~X`=A +sWidth8Bit\x20(0) O\J[q +b1000000001100 9x0nS +b1000000010000 !>[1% +sAluBranch\x20(0) ^0g-$ +sAddSubI\x20(1) :)cZ} +b100001 o8j(. +b100001 :aDC~ +b11110000 t_J~a +b11111111111111111111111111 {OMm" +b100001 i7[-_ +b100001 MIuh@ +b1111111111111111111111111111110000 |WDYA +b100001 K,*}% +b100001 &QF=> +b11110000 WxUg_ +b111 Wx||[ +b111 '2TTI +b111 wx#v/ +b111 z?3Y4 +b1111 BJaL7 +1v|Ipi +1g"yAH +1(~LN> +1d[LF& +b100001 {.73r +b100001 t^/Q' +b1111111111111111111111111111110000 (UQET +b100001 ~8R\e +b100001 /Yap= +b1111111111111111111111000000000000 V"i\z +sSignExt8\x20(7) fz}_u +1(IKyo +1*&kG^ +1AdxeJ +1zB +b1111111111111111111111111111110000 LLY;J +b100001 gu(|, +b100001 j(g0" +b1111111111111111111111000000000000 Y2"sd +s\x20(15) MKig= +b100001 O@|7X +b100001 }f4CY +b11110000 yG8*) +b11111111111111111111111111 {"2gU +b100001 E4DPW +b100001 TX+3u +b1111111111111111111111111111110000 iM=S} +b100001 f#b?Y +b1 J05<\ +b100001 $xDX2 +b100001 8";@C +b1111111111111111111111000000000000 +tN>0 +sStore\x20(1) y6{`) +b100001 76Rs` +b100001 t@i~f +b1111111111111111111111000000000000 }0rB0 +sWidth64Bit\x20(3) &y'"X +sSignExt\x20(1) 7iI^~ +b100001 rkK\[ +b100001 iNMoP +b1111111111111111111111111111110000 Sg0N5 +b1000000010000 2VLa& +b1000 bBEq2 +b0 R$v'G +b0 *n80? +b1000 "`OE, +b0 6c}$~ +b1000 m0%o` +b0 vn>6 +b0 &^/7v +b0 b.LoQ +b0 Ioc_$ +b0 D$f|K +b0 *_?jY +0!vs7J +0E(8jx +0UC}0J +0h^]RA +b1000 86btZ +b0 oQPm_ +b1000 FJfnS +b0 K4SQ) +sFull64\x20(0) @p?X_ +0G3M)2 +0'+I#@ +0M{ecz +0!>2`j +b1000 KaH6< +b0 'c0;W +sHdlNone\x20(0) `[r2) +b0 ;`|4~ +0Ym%%> +sHdlNone\x20(0) KsrF3 +b0 pMx`" +b0 x\3.[ +0`W;-, +sFull64\x20(0) "`K8e +sFunnelShift2x8Bit\x20(0) lXK'R +b1000 %hAk= +b0 I'!;v +b1000 ;IUgv +b0 }qWp# +sU64\x20(0) &LVgO +b1000 \^y`{ +b0 8xjzm +b0 Lc|7, +b1000 {JqCT +b0 I7KMJ +b1000 Rp#+x +b1000 cp75c +b0 OkV"j +b1000 p%w_` +b0 $r\`C +sWidth8Bit\x20(0) UX{;@ +sZeroExt\x20(0) wx8u) +b1000 lw[z] +b0 ,6FJ1 +b11 M6v2* +b1000000010100 `F_;@ +0TfU1; +sLoadStore\x20(2) "w7{` +b0 nd\n^ +b1000 :p>P\ +b100000 DVU%, +sSignExt32\x20(3) 9L>]I +b0 `5uy^ +b1000 8i>vj +b100000 A5a%v +sSignExt32\x20(3) M%@~8 +b0 1Xy4V +b1000 E8z4" +b100000 QIl7Y +b0 zgm+r +b1000 tAj'i +b100000 z=d&5 +sSignExt32\x20(3) StZx9 +b0 _K[MH +b1000 9WcUn +b100000 6VId6 +b0 f>j]Q +b1000 [AV8Q +b100000 rjEZ7 +sSignExt32To64BitThenShift\x20(6) *%OQ +b0 #N9km +b1000 ZxC1G +b100000 y}O'N +sS32\x20(3) hq31E +b0 $Wf=? +b1000 m#7s_ +b100000 \NqcR +b0 V8U+E +b1000 USE`$ +b100000 t$7"T +1AdmOE +sULt\x20(1) E8$xf +b0 +jE7^ +b1000 Kf,&G +b100000 >QKUR +1+bPB] +sULt\x20(1) /,BmP +b0 3O#+v +sPowerIsaTimeBase\x20(0) B,&}f +b0 8cZqM +b1000 2w\Nr +b100000 3=J2K +b0 *4S/- +b1000 P05"" +b100000 (>q+% +b0 0So'i +b1000 n'sYP +b100000 QoA# +sWidth64Bit\x20(3) Wr%Ei +b1000000010100 Eky!H +1DWZ|, +sAluBranch\x20(0) ?N$]^ +b1000 :])K| +b100001 6sD4N +b0 HQY6t +b1000 3%/pK +sFull64\x20(0) MKX;Q +b1000 SJhim +b100001 T8t[X +b0 sS~NV +b1000 p'i9" +sFull64\x20(0) pD&Ls +b1000 tt-,Z +b100001 ?@)9q +b0 7=Pgf +b1000 Jnt\X +b1000 c` +b100001 VMN)u +b0 ctw7h +b1000 JSLb4 +sFull64\x20(0) U0@BC +b1000 [:mL? +b100001 d+9I4 +b100000000000 QkW1x +b1000 2#a4, +b100001 KB!C) +b0 DF\;- +b1000 7b_"] +sFunnelShift2x8Bit\x20(0) 0_#L* +b1000 ?g,V* +b100001 {0ee@ +b0 -4|a@ +b1000 :k#*} +sU64\x20(0) J-+JX +b1000 'T_X +b100001 ~V}|J +b100000000000 C.H\h +b1000 q4Pn= +b100001 P>; +b0 jf}[B +sSignExt32\x20(3) hnFfh +b0 LD)JA +b0 p6.ai +1')TZl +sULt\x20(1) Du +b0 }[)z[ +b1000 }bJkj +b111110 N:nWt +b0 0&6o, +b1000 1lFWY +b111110 F!TaV +b0 H6*Ho +b1000 4{H\' +b111110 /}fX8 +b0 `A"Sk +sWidth64Bit\x20(3) cVDac +b100 ;=6[t +b1000000011000 knr_b +b1000000011100 7i+r% +12+r.j +sAluBranch\x20(0) f@rL" +b111110 lFXz8 +b100011 q_[u? +b0 $*8zu +b11111110 v,MMs +b11111111111111111111111111 +C0#B +sFull64\x20(0) mXZ]b +b111110 t;>03 +b100011 AK9j& +b0 Pi_7x +b1111111111111111111111111111111110 fup$* +sFull64\x20(0) 9-SIQ +b111110 \9pXm +b100011 ?#'fi +b0 {?e|U +b11111110 &5<,b +b111 4100b +b111 HxA.A +b111 >0no9 +b111 xRUL% +b1111 Gsc^y +1$'j{) +1S#Kt( +1>2IV\ +1#aUm@ +b111110 bTP>' +b100011 &IP~X +b0 c&*h +b1111111111111111111111111111111110 nK'UC +sFull64\x20(0) yw:f) +b111110 biVxy +b100011 >L\;h +b1111111111111111111111111000000000 UEFA@ +sSignExt8\x20(7) 93}K- +1N@+dE +1vw]40 +118e%_ +1<+HZ[ +b111110 Ve@9o +b100011 %u+Dc +b0 ByS^& +b11111110 wqX7~ +sHdlSome\x20(1) pZ'*[ +b111111 Q[2:| +1PcI(G +sHdlSome\x20(1) ,L(#] +b111111 -x$N` +b111111 j`*%> +1C8*fn +sSignExt8\x20(7) aS#jf +sFunnelShift2x16Bit\x20(1) pv:OH +b111110 #H3`| +b100011 7r7AR +b0 >MmW +b1111111111111111111111111111111110 t9562 +sU64\x20(0) /c$Xz +b111110 WPkI@ +b100011 {G8@+ +b1111111111111111111111111000000000 c0LX" +s\x20(15) 9wdS< +b111110 c'[FI +b100011 !:fy4 +b0 {(Bn@ +b11111110 dqg)h +b11111111111111111111111111 BG{_- +04QQDf +b100 _DdXc +1KWddu +sAddSubI\x20(1) [kSDq +b100011 JnU"& +b100011 ^#Fx@ +b11111111 SzqnS +b11111111111111111111111111 n7I0s +b100011 LqdrX +b100011 _4Aq5 +b1111111111111111111111111111111111 qjpsK83 +1W6w5] +1~I'5@ +b100011 f7-gb +b100011 4\(XO +b1111111111111111111111111111111111 bfJ}N +b100011 7qC!_N +b100011 ^@$uw +b1111111111111111111111111111111111 0<|YD +b100011 y&.ab +b100011 >Ro7u +b1111111111111111111111111100000000 EP2.a +s\x20(15) pq&p" +b100011 |%7;t +b100011 G?=UK +b11111111 #J.|4 +b11111111111111111111111111 + +b1 8w,4w +b11100000 @MWf) +b11111111111111111111111111 5*mzp +sSignExt32\x20(3) Zp?1( +1}Y[^A +1cRH7v +b1 !9uf& +b1111111111111111111111111111100000 SSPNO +sSignExt32\x20(3) ei)|0 +1>J'B# +1tFP+L +b1 &m$V< +b11100000 r=$xg +b111 8o~M* +b111 1H'`h +b111 ]Njb1 +b111 GMI48 +b1111 {?&2c +1/ceFT +1:.E(j +1sXdDF +10kVd# +b1 J_F%D +b1111111111111111111111111111100000 16|[V +sSignExt32\x20(3) In/VL +1%-s!X +1qTq#h +b1 JoovG +b1111111111111111111110000000000000 t'(i^ +sSignExt8\x20(7) 9PO~F +1^U^.Z +12[SFO +1kV'lX +1WHz^ +b1 o\>Y/ +b11100000 _FVzh +sHdlSome\x20(1) E>SC3 +b111111 dm(fZ +1U87jW +sHdlSome\x20(1) IcdG@ +b111111 r7LmB +b111111 \ms,/ +1/FO?$ +sSignExt8\x20(7) ti]u +sShiftSigned64\x20(7) gB?f9 +b1 6;O-O +b1111111111111111111111111111100000 8f_># +sS32\x20(3) L$}n' +b1 p.d%. +b1111111111111111111110000000000000 tW&N< +s\x20(15) b^"Dp +b1 &[W|F +b11100000 MeBs' +b11111111111111111111111111 FU|gT +1ULS[& +sULt\x20(1) [=%O2 +1y7)#& b0 'yfT` b100100000000000 sBc)Y sWidth16Bit\x20(1) q[0h7 -sHdlNone\x20(0) r!\:9 -b0 -Ep(K -b0 [#GQl -b0 'r`E[ -b0 CHJZS -02WLSa -sAddSub\x20(0) 8hkh9 -b0 bUp#B -b0 'PZ?; -b0 HU!_P -b0 w(eN, -b0 7YHQ; -b0 K`=$2 -b0 :+&~) -b0 h@h}, -b0 ,mJP* -b0 F2`Fk -b0 7$4~) -0npa"U -b0 cjuG^ -b0 nk$S7 -b0 5~m.~ -b0 tELx} -b0 UXFR< -b0 ,R-C. -b0 W%mLs -b0 N=9s$ -0b..ii -sAddSub\x20(0) +]vTu -b0 i0XGM -b0 *Py9= -b0 CKdoe -sFull64\x20(0) +.3X2 -0d^GZ4 -b0 AP}j_ -b0 r%\mx -sFull64\x20(0) su`^* -0F9qN -0RBn:{ -b0 +tY{) -b0 I%;yk -b0 XC\wq -b0 Uw`vm -b0 G\=d= -b0 sPsi" -sFull64\x20(0) -|fxi -09;h'R -0rlO"u -b0 N9;^T -b0 F;FJ? -b0 lgRf& -b0 /:8Q1 -sHdlNone\x20(0) ES=8A -b0 Ya(=, -sFunnelShift2x8Bit\x20(0) `bh*_ -b0 e&cM -b0 y67vQ -sU64\x20(0) Y@ZT6 -b0 79G'` -b0 mGr9D -b0 :0&7< -b0 _{A^} -b0 *8z82 -sEq\x20(0) G>,DG -0:@CpG -01t3$W -b0 :y{jP -b0 r9u&4 -0Q2m' -sEq\x20(0) #=);e -01ZbWS -0T.MO] -b0 I}bAd -sReadL2Reg\x20(0) Sq%D, -b0 ^qdk4 -b0 `XBe' -b0 ;b%5v -b0 KHf-Y -sLoad\x20(0) S'cKn -b0 .){3^ -b0 JrUXq -b0 O/U.N -b0 ]`>xJ -b0 90J+V -b0 73]@& -sWidth8Bit\x20(0) :T!Xy -sHdlNone\x20(0) `~abz -b0 Z"QXv -b0 Sr(_e -b0 EQG5u -sAluBranch\x20(0) Rz2_# -b0 _srr\ -b0 f%+e6 -b0 9dybB -b0 k!QDF -b0 GkQv\ -b0 Xz)LV -b0 zR"7[ -b0 DWKXz -b0 [rp,_ -b0 f3E$U -b0 nC_y@ -b0 v[7Y3 -b0 j^~&R -sFull64\x20(0) jT{gO -b0 "R+BF -b0 0~{Ld -b0 ?^h"q -0YamXq -b0 ()^]$ -b0 5{OP; -b0 U3VF| -b0 p/|6p -b0 f9yLp -sU64\x20(0) {38B( -b0 'mZ2c -b0 xfDL; -b0 UG'>S -b0 Z4hLQ -b0 59k<} -b0 ]s$?X -b0 qZy~1 -sPowerIsaTimeBase\x20(0) aAM%u -b0 ?53yR -b0 R!+vv -b0 ?D1!P -b0 r6xKd -b0 y%b\W -b0 A=!oq -sWidth8Bit\x20(0) \&H'c -b0 [w2>S -b0 9c!EF -b0 /IlZk -b0 ]N([G -sHdlSome\x20(1) p~GLZ -b1 d(ga: +b10 e(`:4 +b1000000001000 rkB,8 +b1000000001100 EndVc +sTransformedMove\x20(1) 7vH}X +sAddSub\x20(0) 5'K^W +b100000 ~2j+& +b1 L.OQj +b0 N+>Ds +sFull64\x20(0) _5!GN +0~WT%? +04IhW- +b100000 ^]%uh +b1 0_A+) +b0 JT]R~ +sFull64\x20(0) st8)~ +0Tr)fp +0!0-m@ +b100000 5dthH +b1 2$w3J +b0 \QZyz +b0 xA[Gm +b100000 a4G5Z +b1 mzn]t +b0 hcUCD +sFull64\x20(0) X_@ro +0&}%2R +0!AL== +b100000 oI?kk +b1 Y?`8j +b0 [KAC" +b100000 x:Y5t +b1 &X0.9 +b0 CX/hj +sFunnelShift2x8Bit\x20(0) Z7|(g +b100000 07~!C +b1 t%QY/ +b0 x$va: +sU64\x20(0) ie&&> +b100000 6swGa +b1 SVj`u +b0 t#nc" +b100000 NzOEl +b1 p~},5 +b0 oum5t +0m.,X+ +sEq\x20(0) ku[O] +0WNFMV +b100000 +sEq\x20(0) ;qOo% +0S*R0x +b100000 }IWt6 +b0 \xq^e +b100000 VQl;9 +b1 @8-W] +b0 vcEk^ +b0 cMOD+ +b100000 0&HcT +b1 4bggS +b0 }vV&. +b0 eJDzj +b100000 cVst9 +b1 Q;_/e +b0 Lz'DZ +sWidth8Bit\x20(0) =~8Dj +b1000000001100 o9uqZ +b11110000 "[jD2 +b11111111111111111111111111 "BI!4 +b100001 7A-lo +b100001 V2LKL +b1111111111111111111111111111110000 E7bc +b100001 '4+{_ +b100001 d^3B +1&/,]f +b100001 =>^5f +b100001 WTi&v +b1111111111111111111111111111110000 eOSX\ +b100001 C4K6J +b100001 u#4*7 +b1111111111111111111111000000000000 mvrbq +sSignExt8\x20(7) JY:y9 +1ynK\0 +1qfi^M +1hSO!r +1{7!:F +b100001 j2kE8 +b100001 aY>Qi +b11110000 iJo+` +sHdlSome\x20(1) D#`+= +b111111 7`n8 +1]gr6I +sHdlSome\x20(1) %~xW9 +b111111 .M|}S +b111111 :y3[; +1|>F6J +sSignExt8\x20(7) o'-aQ +sFunnelShift2x16Bit\x20(1) iJOo< +b100001 $1X>` +b100001 dS0Y4 +b1111111111111111111111111111110000 W2omp +b100001 ?]!wR +b100001 *ht6` +b1111111111111111111111000000000000 >Gi__ +s\x20(15) Z{^{h +b100001 $X.07 +b100001 -U/8{ +b11110000 -rDFm +b11111111111111111111111111 byE!` +b100001 g,9Ll +b100001 8(=/j +b1111111111111111111111111111110000 Gcy/r +b100001 `4?A" +b1 t4WFE +b100001 kY8EL +b100001 T&WQP +b1111111111111111111111000000000000 3!$a[ +sStore\x20(1) 8czMt +b100001 Qr(KK +b100001 AhTxQ +b1111111111111111111111000000000000 [|m;c +sWidth64Bit\x20(3) #(;At +sSignExt\x20(1) O"6N" +b100001 4~N#1 +b100001 6"4gF +b1111111111111111111111111111110000 Z;l,= +b1000000010000 "s6:; +b1000 m.,Uf +b0 !L'G' +b0 AR~s@ +b1000 [{O@: +b0 ]7UO@ +b1000 /*?lV +b0 rM]WZ +b0 -pSpV +b0 xMPLr +b0 HpWa; +b0 &@|cQ +b0 SP+dF +0w7.WT +0h:19q +0\DHC( +0myP7k +b1000 '-RHe +b0 )a=X_ +b1000 Pb@7< +b0 xNkP| +sFull64\x20(0) 6!@yI +0G%wK< +0gdC;: +0NqT_n +0u3{2# +b1000 0y-HW +b0 m\Vr~ +sHdlNone\x20(0) %~!_X +b0 mW9d) +0:JkXI +sHdlNone\x20(0) O&>Gn +b0 1t.6Y +b0 O'9Gq +0gN+y^ +sFull64\x20(0) 6<@`7 +sFunnelShift2x8Bit\x20(0) Y#*a` +b1000 2nOK] +b0 ?}'tV +b1000 |fOZf +b0 Zkq;t +sU64\x20(0) &IT78 +b1000 m}Ku0 +b0 ;S!0H +b0 >(y^1 +b1000 s-ZVO +b0 FfmNt +b1000 Sx/"T +b1000 `dGR8 +b0 Jnk, +b1000 ""!PD +b0 |Z!W> +sWidth8Bit\x20(0) 0qmsT +sZeroExt\x20(0) n.`x_ +b1000 #JXbe +b0 R5I{y +b11 ;OIV7 +b1000000010100 rBY/0 +0GyD/- +sLoadStore\x20(2) gi1Tl +b0 s85)J +b1000 YAzZA +b100000 49)6B +sSignExt32\x20(3) yds4r +b0 Y(X=; +b1000 RDs!D +b100000 "JCD{ +sSignExt32\x20(3) o-5;T +b0 i^oVM +b1000 CnE>K +b100000 tO;Co +b0 .XKp' +b1000 ;r5FC +b100000 {4V2% +sSignExt32\x20(3) PwRsF +b0 'U`hE +b1000 IE<]? +b100000 jxbtE +b0 n(+hq +b1000 4y0jr +b100000 D1;lR +sSignExt32To64BitThenShift\x20(6) NHkK* +b0 I+DO+ +b1000 m'Df0 +b100000 BYBqd +sS32\x20(3) vE(," +b0 @(nfv +b1000 bl75e +b100000 r4iw[ +b0 'i6dK +b1000 Ade1k +b100000 xMj7o +1rrslV +sULt\x20(1) NQ0nm +b0 wO!s9 +b1000 ]J-W2 +b100000 -TMzd +1.$|'# +sULt\x20(1) v|]\q +b0 wocc] +sPowerIsaTimeBase\x20(0) 9'w`t +b0 M\OH" +b1000 uk|g( +b100000 f~5+7 +b0 f{C9o +b1000 &LjqU +b100000 OR]C\ +b0 8~nha +b1000 B9<#f +b100000 M58f5 +sWidth64Bit\x20(3) m-0%g +b1000000010100 PJFNQ +1Jlx +b1000 B%@%e +b100001 m$|/9 +b100000000000 [f>nA +b1000 7=IZJ +b1000 ]jsx5 +b111110 \jp%0 +b0 jB%K/ +sSignExt32\x20(3) 9@$(< +b0 zV10L +b1000 qW.:. +b111110 /|s<( +b0 a%_Pt +b0 I[S/] +b1000 IGIn4 +b111110 unVKH +b0 rlKhk +sSignExt32\x20(3) g:UBk +b0 v't5d +b1000 '2:cU +b111110 VC{S{ +b0 ZO4-X +b1000 uCt)P +b111110 dI"g$ +b0 DN]\] +sSignExt32To64BitThenShift\x20(6) S5m:) +b0 =[>NsUm +b1000 /M6,? +b111110 _j![? +b0 Nue:T +b1000 SBZi& +b111110 ]z{s# +b0 [2*&w +1Q;Rpa +sULt\x20(1) 0zbe` +b0 `O448 +b1000 @!EF+ +b111110 4z{'] +b0 2u-O: +1t2z7Q +sULt\x20(1) c]g+_ +b0 "bvT, +sPowerIsaTimeBase\x20(0) x-b:} +b0 zAS]1 +b1000 Iz=>r +b111110 txV:. +b0 C9K$K +b1000 %$M5R +b111110 J +b0 !Cj{" +b11111110 R6cfV +b11111111111111111111111111 #WEfr +sFull64\x20(0) qYmZ) +b111110 p=D~@ +b100011 #bG~1 +b0 `(BH9 +b1111111111111111111111111111111110 bgX1Y +sFull64\x20(0) B+-$k +b111110 D2oCd +b100011 _bc@3 +b0 'D7.H +b11111110 =QZa, +b111 bA\iD +b111 n=Qv1 +b111 eN89% +b111 lW]Y: +b1111 M1J"^ +15f)E& +1Ax|-I +1`)39j +1$HL[A +b111110 kUtC5 +b100011 q%6RF +b0 `vjow +b1111111111111111111111111111111110 @~uXD +sFull64\x20(0) 9AW\x20(15) SjV`* +b111110 R'{y9 +b100011 "M8U' +b0 |(jxC +b11111110 }q/0; +b11111111111111111111111111 /{b?x +0D^]qi +sEq\x20(0) a(h"K +b111110 dt1\9 +b100011 (&zcx +b0 9DXy6 +b1111111111111111111111111111111110 g"N&4 +05J{ab +sEq\x20(0) ld.>i +b111110 sr`Pu +sPowerIsaTimeBaseU\x20(1) %V(A5 +b111110 |VL!s +b100011 |4%S; +b1111111111111111111111111000000000 ]DB(- +b111110 aA|#> +b100011 1h<[W +b1111111111111111111111111000000000 Du.ri +sWidth64Bit\x20(3) 1Gt4A +sSignExt\x20(1) Q#^PK +b111110 ,"H9- +b100011 ggw'" +b0 F:}gG +b1111111111111111111111111111111110 qiAHl +sWidth8Bit\x20(0) ;yP{| +b100 YlRxv +b1000000011100 $Q&(R +b1000000100000 %8"}e +b100 @G*Ek +128n3G +sAddSubI\x20(1) GymWM +b100011 .yM{T +b100011 :q$0B +b11111111 M7/lm +b11111111111111111111111111 cs[A= +b100011 BoEft +b100011 ,Dgie +b1111111111111111111111111111111111 l4%:5 +b100011 7?pvK +b100011 jgI~- +b11111111 @)]iB +b111 ,rqk_ +b111 c47)x +b111 FmSB_ +b111 vR6Y+ +b1111 D$v}6 +1Vk,8_ +1_RV-u +1GV'8a +1<$+o| +b100011 N8Ql= +b100011 x/^Q1 +b1111111111111111111111111111111111 WWtK[ +b100011 dEFch +b100011 4ID+v +b1111111111111111111111111100000000 *m#3B +sSignExt8\x20(7) *],C; +1ESd"K +1Z9n%, +1ESS\_ +1EIIq6 +b100011 F3Ou> +b100011 9B9-u +b11111111 :]=@7 +sHdlSome\x20(1) >]k-$ +b111111 `$E2j +1[Zy,P +sHdlSome\x20(1) W]!:{ +b111111 ^2~|F +b111111 ~3hex +1J_v+) +sSignExt8\x20(7) aq#8H +sFunnelShift2x16Bit\x20(1) hwt4> +b100011 Ln_Ah +b100011 hKj(R +b1111111111111111111111111111111111 SI{2@ +b100011 y1z8Y +b100011 ,#-6U +b1111111111111111111111111100000000 *1Ofv +s\x20(15) XRH91 +b100011 NsnwL +b100011 .PSn, +b11111111 .|2|Q +b11111111111111111111111111 r;R9f +b100011 0K`*q +b100011 Dp-ui +b1111111111111111111111111111111111 e`s-U +b100011 pu"]d +sPowerIsaTimeBaseU\x20(1) tV*uK +b1 ^d`|/ +b100011 ~9v|Y +b100011 qxhT8 +b1111111111111111111111111100000000 t)-^c +sStore\x20(1) ?_QgB +b100011 tA}AF +b100011 ._HN[ +b1111111111111111111111111100000000 1B'"% +sWidth64Bit\x20(3) uRCAN +sSignExt\x20(1) uP%($ +b100011 N6z#3 +b100011 YW7@- +b1111111111111111111111111111111111 gN!}A +b100 cZDID +b1000000100000 @+M>{ +b1000000000000 .R@P) +b100 7KHBq +1F*78- +sBranchI\x20(9) Ngi{/ +b1 `n:{r +b11100000 Uc9%` +b11111111111111111111111111 RUy{L +sSignExt32\x20(3) k}6Me +1A`UX7 +1|!!q2 +b1 /u4JM +b1111111111111111111111111111100000 )fc1Q +sSignExt32\x20(3) `=Txe +1VK37^ +1i"7DW +b1 Y)n@q +b11100000 |yIBm +b111 h]B%x +b111 7i#TP +b111 Y};o4 +b111 ,)~-D +b1111 LB8/2 +1S,C=8 +1BW0DV +1ajW7@ +13cxne +b1 sW$kd +b1111111111111111111111111111100000 0pK$3 +sSignExt32\x20(3) FqdS. +1.hU|K +1-OPnp +b1 JixN4 +b1111111111111111111110000000000000 ^&~Dq +sSignExt8\x20(7) D"&)# +1Z}BV& +1QY4

\x20(15) P13$G +b1 Y^6{Z +b11100000 d;6UW +1B)9ZW +1rlX_Z +b1 &$X6Z +b1001 2FtUw +b1 &Zfg+ +b1111111111111111111110000000000000 },k^g +sStore\x20(1) EarZG +b100 wf8dL +b1 o?sb& +b1111111111111111111110000000000000 p~usg +sWidth64Bit\x20(3) c%|)w +sSignExt\x20(1) ((s-p +b100 B:eMc +b1 >So35 +b1111111111111111111111111111100000 {$tUz +sWidth64Bit\x20(3) omaxe +b1110 J8qAt +sHdlSome\x20(1) GsdD" +b100 }:QxN +b1100 hh!}] +b1000000011100 k@R+E +b1000000100000 +PXSv +b100 l?S\m +1\V<+8 +sAddSubI\x20(1) MblDA +b1 ,x}1E +b11 [1QYf +b100 Q?&yg +b1111111 iX+/, +b11111111111111111111111111 J6fRs +sDupLow32\x20(1) +,=3, +b1 :7n0q +b11 >rfq~ +b100 gFsv> +b1111111111111111111111111111111111 ^I6uW +b1 ;y<{T +b11 oe:=f +b100 n%YVO +b1111111 U_&Hd +b111 A~ME4 +b111 4F'jO +b111 r!)u; +b111 Q(_@E +b1111 gCWse +1Ok6Kc +b11 GkaGC +b100 m]~n+ +b1111111111111111111111111110000000 Gda?f +sSignExt8\x20(7) "/NTK +1-s3Dz +1>GxH3 +16eEiB +1!u&gK +b1 -,5HB +b11 mW0X1 +b100 scS,5 +b1111111 .,)Z1 +sHdlSome\x20(1) OFD]7 +b111111 hV-6p +15QA@A +sHdlSome\x20(1) 3Wj>) +b111111 sgm96 +b111111 T$&2x +1oX!NS +sSignExt8\x20(7) n_r0= +sFunnelShift2x64Bit\x20(3) Q64:/ +b1 !S[oU +b11 <`".; +b100 ^wgDb +b1111111111111111111111111111111111 $v(C` +b1 EuQ&g +b11 yU)K+ +b100 pyXrG +b1111111111111111111111111110000000 geKT" +s\x20(15) H["-5 +b1 Z3oTw +b11 p-iOX +b100 `5VG7 +b1111111 i1LF- +b11111111111111111111111111 {sGuK +1AGMRB +b1 @BCQ( +b11 \'IUv +b100 0~>JX +b1111111111111111111111111111111111 sng'| +b1 n0w"3 +b11 ?NS&) +sWriteL2Reg\x20(1) @6Wh^ +b1 vz]]| +b11 DBl,V +b100 JO/R^ +b1 #A\{" +b11 RrKX{ +b100 Jje[. +b10000000 Ga+b] +sStore\x20(1) GFU6/ +b1 B +b1111111111111111111111111111100000 !:mCD +sSignExt32\x20(3) M[>K& +1RUY~q +1B.|N9 +b11 4#t0> +b0 W8XS1 +b1100000 n`F3H +b111 {/l|q +b111 #,W(' +b111 "/Cu? +b111 uHZ|h +b1111 1F6~F +1#CVjz +1=4N6I +1d?QAC +18,28/ +b11 PlfY7 +b0 jK1(D +b1111111111111111111111111111100000 x+bLK +sSignExt32\x20(3) iN|/x +1O'd__ +1E\**t +b11 7N(2B +b0 Ry^d6 +b1111111111111111111111000000000000 r]5!T +sSignExt8\x20(7) 0x +b11 aw14V +b0 &Z4~: +b1100000 *I;{j +sHdlSome\x20(1) *@ZRv +b111111 Wo_@D +1Xk9_R +sHdlSome\x20(1) 09ACC +b111111 O&kO5 +b111111 2Q/&v +1cLMRf +sSignExt8\x20(7) {j)b~ +sShiftSigned64\x20(7) jfWXu +b11 D!mcj +b0 LbNqC +b1111111111111111111111111111100000 iJ>#C +sS32\x20(3) Es'.K +b11 6Bs+q +b0 q>44& +b1111111111111111111111000000000000 -aB'c +s\x20(15) 46QGd +b11 PUwX9 +b0 cAAiR +b1100000 Il`'' +b11111111111111111111111111 1{H(9 +1$nq= +sSLt\x20(3) K#iLK +1yXhJ? +1tk7() +b11 +EHVj +b0 ?M[[K +b1111111111111111111111111111100000 #!i:O +1z=nV: +sULt\x20(1) &]oEL +1TR(mK +1n0Y\5 +b11 =%q +b100 L4vhD +b11 nQ]F$ +b0 O%K'j +b100 F-eaL +b11 TKqtx +b0 2Ha^E +b100 WDN^" +b11 Z5vY) +b0 :Zs7T +b1111111111111111111111000000000000 hxR^= +sWidth64Bit\x20(3) ,XY*g +sSignExt\x20(1) ZK:%} +b100 iuTMY +b11 S(YP[ +b0 #HCal +b1111111111111111111111111111100000 [w)"8 +sWidth64Bit\x20(3) i=J$R +sHdlSome\x20(1) 2+~8. +b100 e.>!d +b1011 Pf4v- +b1000000011000 w(Y.E +b1000000011100 #77!F +b100 N8AJ[ +1WqnyH +sAddSubI\x20(1) hO;,E +b11 o70n3 +b10 o_fn1 +b100 koytw +b1111110 ic)l7 +b11111111111111111111111111 Fb^`# +sDupLow32\x20(1) !#$|) +b11 4ZiR{ +b10 bo=u; +b100 >7qi% +b1111111111111111111111111111111110 }{9s? +b11 T}6F{ +b10 i\g~u +b100 rM7-O +b1111110 x#u|# +b111 2qgU| +b111 S6jJW +b111 J+fq` +b111 vErr. +b1111 19u~E +1yp8qN +13pl!7 +1^i2k\ +15@{;| +b11 PlkVY +b10 Jd~Pb +b100 edNTB +b1111111111111111111111111111111110 GBP=# +b11 4UYzc +b10 PL1n; +b100 4tao> +b1111111111111111111111111100000000 TdVa( +sSignExt8\x20(7) 8xZ+? +1:,;bn +1bO2,? +1$'?mR +1H3&*T +b11 c;]X: +b10 2Hd\+ +b100 ^'3#Y +b1111110 @mWc| +sHdlSome\x20(1) pyQf< +b111111 Mf}"1 +1Di-yd +sHdlSome\x20(1) *ECrH +b111111 T-eB3 +b111111 3UK-V +1%|A)e +sSignExt8\x20(7) rG.-, +sFunnelShift2x64Bit\x20(3) =?~c: +b11 vK5MO +b10 ;F|s= +b100 *kE&> +b1111111111111111111111111111111110 `6k&. +b11 WN]D: +b10 Do[v_ +b100 Mc(T# +b1111111111111111111111111100000000 =La9s +s\x20(15) _zsO} +b11 Hg%`D +b10 &OrI| +b100 GNhZj +b1111110 7tgJR +b11111111111111111111111111 gn4!j +1]?L-J +b11 <3&o{ +b10 `KhXe +b100 J&bcl +b1111111111111111111111111111111110 L)/~: +b11 +%u8S +b10 w+b0u +sWriteL2Reg\x20(1) yK$C< +b11 dyBI< +b10 >L(9z +b100 8d>S1 +b11 q27kl +b10 R+JSz +b100 /U8+( +sStore\x20(1) zwMR* +b11 N~"3y +b10 top=[ +b100 ^)X#@ +b1111111111111111111111111100000000 O(\N_ +sWidth64Bit\x20(3) h.Xqu +sSignExt\x20(1) _)=(. +b11 ,'hfW +b10 p%PLP +b100 ,AQ#^ +b1111111111111111111111111111111110 m>x7" +sHdlNone\x20(0) }&+TC +b0 mRC_, +b0 4)DEa +b0 hX]+$ +b0 8ETVJ +b0 >?[dF +0C0O|* +sAddSub\x20(0) o#SL2 +b0 \ltH? +b0 }?5X| +b0 qxaPo +b0 !=\[D +b0 hEl?> +sFull64\x20(0) yM}[a +b0 :OiER +b0 :.opf +b0 @hGR( +b0 ;Q:Ic +b0 Aq78/ +b0 +U}/' +b0 Xy8}E +011IPQ +0"3Kp +b0 (:S=c +b0 J*I|< +b0 l!A~' +b0 [S,/K +b0 "@r^ +05XgS` +b0 DeL)W +b0 9#9%H +b0 (8/)1 +b0 Zap2# +sHdlNone\x20(0) *1VY' +b0 }QHl= +0o"d4H +sHdlNone\x20(0) ^/N8S +b0 DDbT^ +b0 ,$?hn +0I"(>Y +sFull64\x20(0) +OUit +sFunnelShift2x8Bit\x20(0) F"/%U +b0 lm!8m +b0 tk"+A +b0 A4W>N +b0 #YdXT +b0 #**`C +b0 .Q\$j +b0 ,g4_m +b0 oJTHi +sU64\x20(0) /Rd]Q +b0 WqFGd +b0 u]U06 +b0 ^OM{\ +b0 (#nmX +b0 +gJjj +0(y\Q7 +b0 9S\,q +b0 !>paD +b0 4,LIq +b0 _/bAq +b0 [MFit +b0 ^W`2q +sReadL2Reg\x20(0) >;((h +b0 n]Up7 +b0 /c:]K +b0 gZWR@ +b0 8EXM/ +b0 XZaQp +b0 6k"4t +sLoad\x20(0) o4m.{ +b0 yN?IZ +b0 g[(5. +b0 |oC@' +b0 C4vg\ +sWidth8Bit\x20(0) :}ITB +sZeroExt\x20(0) o{DA? +b0 &+~"` +b0 mQc8/ +b0 lG->` +b0 XRIzz +b0 o{AjW +b1010 4rI|P +b1000000010100 ak:L> +b1000000011000 @>$7) +b10 Oa~d4 +b10010 e*[Uq +b0 *c.=A +b10 t3vX" +b10010 {}v": +b0 e48]; +b10 `9-7* +b10010 `OY#I +b0 s9Del +b10 ft?eF +b10010 Q[`GK +b0 %>NWw +b10 !_dym +b10010 daYrb +b0 V=g>q +b10 50ZOV +b10010 krOy> +b0 Zi8HQ +b10 8?5_q +b10010 vFC(* +b0 F*[*f +b10 *kfe, +b10010 QN/HH +b0 bia5L +b10 ov+9` +b10010 p:A&% +b0 w0L(n +b10 CFq.z +b10010 QT/}s +b0 1JI\O +b10 05SJ% +sPowerIsaTimeBase\x20(0) ^/dzh +b10 FEL/2 +b10010 RDG@% +b10 ~E8x2 +b10010 2oi3Z +b0 #IF +b10 [@C"7 +b10010 1d~Bk +b0 +?0Ji +b10 BZqq7 +b10010 {\ok+ +b0 nI1%n +sHdlNone\x20(0) e2InP +b0 W\wJR +b0 8^v[N +b0 Uo0#B +sAluBranch\x20(0) 56-k+ +b0 gkX*9 +b0 >qj?1 +b0 4a1`I +b0 ,4$(m +b0 r%'~J +b0 4[!Kv +b0 Po;)= +b0 OcqRK +b0 !yhT# +b0 v'XCG +b0 Vkh~x +b0 W]_!r +b0 ,`>#$ +sFull64\x20(0) YM%.H +b0 kEa7> +b0 ,kT.K +b0 ~:GCy +0k:a#H +b0 Z;k|n +b0 Y!Zka +b0 GcfeE +b0 k3Box +b0 Gg+j' +sU64\x20(0) EnKft +b0 YGuK' +b0 $E&7^ +b0 oz%iQ +b0 (Od4c +b0 bsz[F +b0 }nFsD +b0 '2dpk +sPowerIsaTimeBase\x20(0) }^k +b1 *G9"E +b11 E(H*u +b11001 7u^cC +b11 PeP~U +b10 #@dui +b10011 cBLPb b1 moEt. b1 SW!_A -b110 Rn&!X +b1110 Rn&!X b100 yG>#9 0|N#!& sLoadStore\x20(2) \1erd @@ -127233,7 +135584,6 @@ b100 -RUi? b1 TO=k3 b111111111000 N\ak/ sWidth64Bit\x20(3) [6V8$ -b10 fSYB' b1000000000000 (Tb@s b1000000000100 %^)!N sCompareI\x20(7) {2CD@ @@ -127316,7 +135666,6 @@ b100011 ;g):O b1 6+ke\ b0 3D8v? sWidth8Bit\x20(0) Iy0o* -b11 ~844q b1000000000100 /cb.q b1000000001000 #djZj sBranch\x20(8) ,o=pf @@ -127392,6 +135741,642 @@ b11111111 "oVLw b0 t?9-+ b100100000000000 N4RvK sWidth16Bit\x20(1) 1x1'R +b10 *S2}w +b1000000001000 F8YaY +b1000000001100 By4s_ +sTransformedMove\x20(1) =\=]> +sAddSub\x20(0) $t~8^ +b100000 HLx)> +b1 "-yQQ +b0 %yr;Y +sFull64\x20(0) 'S>ST +0i\}M< +07uOus +b1 uVD{8 +b0 ev#YK +sFull64\x20(0) 1mvx) +0_}f3$ +0y=^0; +b100000 K6(z[ +b1 ML+5* +b0 fF,.- +b100000 CL<~8 +b1 B7s.] +b0 `J-;% +sFunnelShift2x8Bit\x20(0) 8Xb2# +b100000 &f1,x +b1 k +b0 Y_(.e +0Id.si +sEq\x20(0) Qvv8H +0UTNc" +b100000 ZV355 +b1 k%WYK +b0 >-6MN +0DhZ$J +sEq\x20(0) D46m9 +0Z81Ep +b100000 W]'.W +b0 -hb)p +b100000 <+YMM +b1 z!`l= +b0 kf}g +b0 rYn-w +b100000 ='&OR +b1 \U/eB +b0 cx9U% +b0 16B,A +b100000 &y;f, +b1 {l09Z +b0 2F;Rw +sWidth8Bit\x20(0) !znD4 +b0 @AxRX +b1000000001100 A,}n% +b1000000010000 e=x4= +sAluBranch\x20(0) 3\\jf +sAddSubI\x20(1) 4saPo +b100001 -nZ"+ +b100001 @.F5B +b11110000 Xy(^_ +b11111111111111111111111111 55a/1 +b100001 ^otck +b100001 Wlj;[ +b1111111111111111111111111111110000 p^=u" +b100001 DB.xv +b100001 :#]p? +b11110000 S+T{< +b111 '$!`F +b111 #@@%h +b111 ;_S[2 +b111 Wq$vr +b1111 5{'!` +1TOT8N7 +1G"Gbv +1w^Mvc +15OvlT +b100001 K;Oxm +b100001 $z4\1 +b11110000 "1+ak +sHdlSome\x20(1) lC34Q +b111111 U`>tT +1jbx,| +sHdlSome\x20(1) 7Jl[D +b111111 sL}ag +b111111 *YIOo +1uTU\h +sSignExt8\x20(7) c-4Ah +sFunnelShift2x16Bit\x20(1) ;%0A< +b100001 jljs% +b100001 *d5-z +b1111111111111111111111111111110000 x>bcT +b100001 =a_"/ +b100001 v6#8r +b1111111111111111111111000000000000 ~^'*S +s\x20(15) fU=U: +b100001 CubTp +b100001 J(wo^ +b11110000 d/FPI +b11111111111111111111111111 u*uAH +b100001 QB!U[ +b100001 7nift +b1111111111111111111111111111110000 fKg,Z +b100001 WqOG9 +b1 OvW-6_ +0%Nqn/ +03B5j4 +b1000 zs0;- +b0 NuF7p +b1000 Y]+|j +b0 mr3!& +sFull64\x20(0) 9-]qR +0\ZRg| +0=BkZW +0d_"^/ +0c+~>5 +b1000 [#6~8 +b0 b8c1/ +sHdlNone\x20(0) ~"0}l +b0 tcjpf +0j~*"' +sHdlNone\x20(0) }CBT? +b0 RU*e# +b0 ]19$* +0D@-*E +sFull64\x20(0) k5N(J +sFunnelShift2x8Bit\x20(0) LY6Z" +b1000 dqVpl +b0 |jt0: +b1000 tpR4t +b0 yv+"| +sU64\x20(0) 5..cg +b1000 H"ta# +b0 Md+f2 +b0 eN/9> +b1000 08Cp( +b0 qb%/% +b1000 fsZ[X +b1000 F1a?` +b0 WL7iI +b1000 m_F1" +b0 xdS#3 +sWidth8Bit\x20(0) ;F}(> +sZeroExt\x20(0) ]M:Z, +b1000 9?kT/ +b0 '=Y:Z +b11 -CWX +b1000000010100 dQX}W +0-NaQx +sLoadStore\x20(2) K\JC} +b0 )$B0I +b1000 [^/5n +b100000 n=Eh +sSignExt32\x20(3) (-I'b +b0 :>G77 +b1000 sbre, +b100000 oKk=M +sSignExt32\x20(3) @&vB; +b0 L:'A* +b1000 Zo,KB +b100000 >tAP' +b0 "u3X: +b1000 s][GI +b100000 n787_ +sSignExt32\x20(3) 1(lw/ +b0 p5Gi\ +b1000 ~k&YV +b100000 +nns/ +b0 #P]v3 +b1000 mU.8| +b100000 (&GW. +sSignExt32To64BitThenShift\x20(6) fwZ'A +b0 VW>Kc +b1000 e,Neg +b100000 3'Z)d +sS32\x20(3) =PpT@ +b0 I*t_Z +b1000 ~-(X* +b100000 `StD' +b0 R5L4z +b1000 1~Mzj +b100000 g3?$" +1-6)Xd +sULt\x20(1) aZQ0e +b0 %b2Y* +b1000 }~s`F +b100000 t^^bK +1z)bf] +sULt\x20(1) )44?@ +b0 /Ow4M +sPowerIsaTimeBase\x20(0) /xzZu +b0 yEN}c +b1000 @I:+K +b100000 g5cZo +b0 `b8s} +b1000 W>!?7 +b100000 #y*n0 +b0 TSBPu +b1000 |SAS3 +b100000 ?v:?; +sWidth64Bit\x20(3) 0cyZ< +b1000000010100 I5k=u +1`-IYJ +sAluBranch\x20(0) rmgOy +b1000 xREuC +b100001 >VKXg +b0 `G\DS +b1000 |hC^ +sFull64\x20(0) g;*CW +b1000 qAnCx +b100001 Nj|g; +b0 83:XP +b1000 aJRo& +sFull64\x20(0) B<_;H +b1000 H*X/{ +b100001 @]4U +b100001 3j2A^ +b0 gX3;1 +b1000 hfUO? +sFunnelShift2x8Bit\x20(0) 50BMU +b1000 !\/a- +b100001 (hL"N +b0 aVb>+ +b1000 =&XTk +sU64\x20(0) G]\+) +b1000 JO5Yq +b100001 c-"X{ +b100000000000 ^)eR" +b1000 6<7"I +b100001 E?O;q +b0 8$79d +b1000 %r'.6 +0Cws4+ +sEq\x20(0) d/t5* +b1000 WBcmY +b100001 29[AY +b0 QaU1H +b1000 Mh}V# +0dG@SE +sEq\x20(0) OJj}0 +b1000 "zA!d +sPowerIsaTimeBaseU\x20(1) 6.SG> +b1000 XrZ-G +b100001 u!gm/ +b100000000000 &fJ=I +b1000 tFcDA +b100001 oZnqW +b100000000000 z'E>U +b1000 -y"/N +b100001 #]Nqr +b0 D_yQ= +b1000 ^o~Ul +sWidth8Bit\x20(0) U-V8F +b1000000011000 PM::U +0M.mP~ +sLoadStore\x20(2) u=!{S +b0 >;%8g +b1000 Ls`r3 +b111110 b[?`K +b0 h0S5G +sSignExt32\x20(3) %poRz +b0 +XN{} +b1000 >GyN_ +b111110 T.RTa +b0 y{da8 +sSignExt32\x20(3) Iwb#] +b0 Gys_i +b1000 mdb/3 +b111110 pwDrN +b0 j4Kw% +b0 RvFO? +b1000 eeH5_ +b111110 -2Csa +b0 r6|*' +sSignExt32\x20(3) LdE~g +b0 }8KhF +b1000 4E?m* +b111110 m_Hyo +b0 (f.%r +b1000 u`._^ +b111110 M,)z`V- +b111110 +Xp?t +b0 1fU># +1]]!sM +sULt\x20(1) HJnmH +b0 l2Xh) +b1000 Feh}X +b111110 rUt4q +b0 $H(34 +1bK)I* +sULt\x20(1) xKmKs +b0 pWZlr +sPowerIsaTimeBase\x20(0) bL2ql +b0 v]2UJ +b1000 u&3X| +b111110 5ccZp +b0 \Z!]& +b1000 C3zZ. +b111110 "(=5 +b0 )}}$o +b1000 ShU9k +b111110 (z