diff --git a/Tests/isa/build-assembly.sh b/Tests/isa/build-assembly.sh new file mode 100644 index 0000000..1fcac21 --- /dev/null +++ b/Tests/isa/build-assembly.sh @@ -0,0 +1,17 @@ +# Send assembler file to remote machine to run +# scp Cprograms/start.S home:/home/akilan/cheri/output/sdk/bin/ +# scp Cprograms/main.c home:/home/akilan/cheri/output/sdk/bin/ + +scp cheri.S home:/home/akilan/cheri/output/sdk/bin/ + +# Run compiled instruction remotely +ssh home 'cd /home/akilan/cheri/output/sdk/bin/ && ./clang --target=riscv64-unknown-elf -march=rv64gcxcheri -mabi=l64pc128 -nostdlib -nostartfiles -Wl,-Ttext=0x80000000 -o testC cheri.S' + +# ssh home 'cd /home/akilan/cheri/output/sdk/bin/ && ./clang --target=riscv64-unknown-elf -march=rv64gcxcheri -mabi=lp64d -nostdlib -nostartfiles -Wl,-Ttext=0x80000000 -o testC start.S main.c' + +# Disassembly ouput +ssh home 'cd /home/akilan/cheri/output/sdk/bin/ && ./llvm-objdump -d testC' + +# Copy file back for testing +scp home:/home/akilan/cheri/output/sdk/bin/testC . + diff --git a/Tests/isa/cheri.S b/Tests/isa/cheri.S new file mode 100644 index 0000000..50a08ba --- /dev/null +++ b/Tests/isa/cheri.S @@ -0,0 +1,56 @@ +.section .text + .globl _start + .align 4 +_start: + # 1. Setup the Page Table Root (Sv39) + # The PPN points to the physical location of your root table. + li t0, (0x80000000 >> 12) + li t1, (8 << 60) # Mode 8 = Sv39 + or t0, t0, t1 + csrw satp, t0 + sfence.vma # All addresses below are now VIRTUAL + + # 2. Get the root capability (PCC) + # Since we are running in VA space, ct0 now describes a VA range. + cspecialr ct0, pcc + + # ---------------------------------------------------------------- + # 3. Create Virtual Address Silos (ca1 - ca4) + # ---------------------------------------------------------------- + + # Silo 1: VA 0x80006000 + li t1, 0x80006000 + csetaddr ca1, ct0, t1 + li t2, 8 + csetbounds ca1, ca1, t2 + ld t0, 0(ca1) # Accessing VA 0x80006000 + + # ... (Repeat for ca2, ca3, ca4 as in your previous logic) ... + + # ---------------------------------------------------------------- + # 4. FIX: The 'tohost' Exit Mechanism (Virtual Address) + # ---------------------------------------------------------------- + + # 'la' loads the Virtual Address of the label 'tohost' + la t0, tohost + + # We MUST derive c1 from a valid capability (ct0) to keep the TAG bit + csetaddr c1, ct0, t0 + + # Set bounds to 8 bytes (size of a dword) + li t1, 8 + csetbounds c1, c1, t1 + + # Final Store to signal the simulator (Success = 1) + li t1, 1 + csd t1, 0(c1) # Store 1 to the VA of tohost + +# ---------------------------------------------------------------- +# Data Section: Needs to be mapped in your Sv39 Page Tables +# ---------------------------------------------------------------- +.section ".tohost","aw",@progbits +.align 6 +.globl tohost +tohost: .dword 0 +.globl fromhost +fromhost: .dword 0 \ No newline at end of file diff --git a/Tests/isa/testC b/Tests/isa/testC new file mode 100755 index 0000000..d6821b3 Binary files /dev/null and b/Tests/isa/testC differ diff --git a/builds/RV64ACDFIMSUxCHERI_Toooba_bluesim/Makefile b/builds/RV64ACDFIMSUxCHERI_Toooba_bluesim/Makefile index bfd267c..99f1fce 100644 --- a/builds/RV64ACDFIMSUxCHERI_Toooba_bluesim/Makefile +++ b/builds/RV64ACDFIMSUxCHERI_Toooba_bluesim/Makefile @@ -13,7 +13,8 @@ BSC_COMPILATION_FLAGS += -verbose # TEST ?= Page # TEST ?= PageReadWrite # TEST ?= CheriPage -TEST ?= MemoryAllocator +# TEST ?= MemoryAllocator +TEST ?= testC #================================================================ # Parameter settings for MIT RISCY, setup paths etc. for Include_Common diff --git a/builds/RV64ACDFIMSUxCHERI_Toooba_bluesim/test.txt b/builds/RV64ACDFIMSUxCHERI_Toooba_bluesim/test.txt index d810599..8791f5b 100644 --- a/builds/RV64ACDFIMSUxCHERI_Toooba_bluesim/test.txt +++ b/builds/RV64ACDFIMSUxCHERI_Toooba_bluesim/test.txt @@ -2,2114 +2,2295 @@ make -C ../../Tests/elf_to_hex make[1]: Entering directory '/Users/akilan/Documents/Cheri/Test/Reverse/Test/Toooba/Tests/elf_to_hex' make[1]: 'elf_to_hex' is up to date. make[1]: Leaving directory '/Users/akilan/Documents/Cheri/Test/Reverse/Test/Toooba/Tests/elf_to_hex' -../../Tests/elf_to_hex/elf_to_hex ../../Tests/isa/Page Mem.hex -c_mem_load_elf: ../../Tests/isa/Page is a 64-bit ELF file -Section .text : addr 80000000 to addr 80000094; size 0x 94 (= 148) bytes -Section .data : addr 80002000 to addr 80006000; size 0x 4000 (= 16384) bytes +../../Tests/elf_to_hex/elf_to_hex ../../Tests/isa/testC Mem.hex +c_mem_load_elf: ../../Tests/isa/testC is a 64-bit ELF file +Section .text : addr 80000000 to addr 80000084; size 0x 84 (= 132) bytes Section .riscv.attributes: Ignored +Section .comment : Ignored Section .symtab : Searching for addresses of '_start', 'exit' and 'tohost' symbols Writing symbols to: symbol_table.txt -Section .strtab : Ignored + No 'exit' label found + No 'tohost' symbol found Section .shstrtab : Ignored +Section .strtab : Ignored Min addr: 80000000 (hex) -Max addr: 80005fff (hex) +Max addr: 80000083 (hex) Writing mem hex to file 'Mem.hex' Subtracting 0x80000000 base from addresses ./exe_HW_sim +v1 +tohost -Warning: file 'Mem.hex' for memory 'rf' has a gap at addresses 768 to 33554430. +Warning: file 'Mem.hex' for memory 'rf' has a gap at addresses 5 to 33554430. 1: top.soc_top.rl_reset_start_initial ... +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle 11: Mem_Controller.set_addr_map: addr_base 0x80000000 addr_lim 0xc0000000 SoC address map: Boot ROM: 0x1000 .. 0x2000 Mem0 Controller: 0x80000000 .. 0xc0000000 UART0: 0xc0000000 .. 0xc0000080 11: top.soc_top.rl_reset_complete_initial +calling cycle ================================================================ Bluespec RISC-V standalone system simulation v1.2 Copyright (c) 2017-2019 Bluespec, Inc. All Rights Reserved. ================================================================ -INFO: watch_tohost 1, tohost_addr = 0x80002000, fromhost_addr = 0x0 -12: top.soc_top.method start (tohost 80002000, fromhost 0) +INFO: watch_tohost 1, tohost_addr = 0x0, fromhost_addr = 0x0 +12: top.soc_top.method start (tohost 0, fromhost 0) +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle 100: top.soc_top.rl_step_0, n = 0, do_release 100: top.soc_top do_release(restartRunning: True, to_host_addr: 0) 100: top.soc_top.corew_proc.method start: startpc 1000, tohostAddr 0, fromhostAddr 0 +calling cycle 101: top.soc_top.rl_ctrl_req -101: top.soc_top.corew_proc.method start: startpc 1000, tohostAddr 80002000, fromhostAddr 0 -101: top.soc_top do_release(restartRunning: True, to_host_addr: 80002000) +101: top.soc_top.corew_proc.method start: startpc 1000, tohostAddr 0, fromhostAddr 0 +101: top.soc_top do_release(restartRunning: True, to_host_addr: 0) +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000020 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'h0 } }, regs: PhyRegs { src1: tagged Valid 'h40, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h41, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h00, t: 'h01 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Auipc, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'h0 } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h40, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h00, t: 'h00 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle +calling cycle +calling cycle +calling cycle [RFile] wr_ 1: r 40 <= 0000000000000400000000001fffff44000000 +calling cycle [RFile] wr_ 0: r 41 <= 0000000000000408000000001fffff44000000 instret:0 PC:0x1ffff0000000000000000000000001000 instr:0x00000297 iType:Auipc [doCommitNormalInst [0]] 167 +calling cycle instret:1 PC:0x1ffff0000000000000000000000001004 instr:0x02028593 iType:Alu [doCommitNormalInst [0]] 168 +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Csr, execFunc: tagged Alu Csrs, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Valid csrAddrMHARTID, scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'h0 } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Valid 'h00, src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h42, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h01, t: 'h02 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle +calling cycle +calling cycle +calling cycle [RFile] wr_ 0: r 42 <= 0000000000000000000000001fffff44000000 +calling cycle instret:2 PC:0x1ffff0000000000000000000000001008 instr:0xf1402573 iType:Csr [doCommitSystemInst] 224 +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Jr, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h43, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h02, t: 'h04 }, spec_bits: 'h000, spec_tag: tagged Valid 'h0, regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } [mkReservationStationRow::_write] ToReservationStation { data: MemRSData { mem_func: Ld, imm: 'h00000018, ldstq_tag: tagged Ld 'h00, cap_checks: CapChecks {rn1 'h05, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h40, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h43, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h01, t: 'h03 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle 3340 : [doDispatchMem] ToReservationStation { data: MemRSData { mem_func: Ld, imm: 'h00000018, ldstq_tag: tagged Ld 'h00, cap_checks: CapChecks {rn1 'h05, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h40, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h43, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h01, t: 'h03 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle 3350 : [doRegReadMem] ToSpecFifo { data: MemDispatchToRegRead { mem_func: Ld, imm: 'h00000018, regs: PhyRegs { src1: tagged Valid 'h40, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h43, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h01, t: 'h03 }, ldstq_tag: tagged Ld 'h00, cap_checks: CapChecks {rn1 'h05, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, spec_bits: 'h000 } +calling cycle 3360 : [doExeMem] ToSpecFifo { data: MemRegReadToExe { mem_func: Ld, imm: 'h00000018, tag: InstTag { way: 'h1, ptr: 'h01, t: 'h03 }, ldstq_tag: tagged Ld 'h00, rVal1: v: True a: 'h0000000000001000 o: 'h0000000000001000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, rVal2: v: False a: 'h0000000000000000 o: 'h0000000000000000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h0000 hp: 'h000 ot: 'h3ffff f: 'h0, vaddr: v: True a: 'h0000000000001018 o: 'h0000000000001018 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, cap_checks: CapChecks {rn1 'h05, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, origBE: tagged DataMemAccess , shiftBEData: }, spec_bits: 'h000 } DTLB top.soc_top.corew_proc.core_0.coreFix_memExe_dTlb req (bare): TlbReq { addr: 'h0000000000001018, write: False, capStore: False, potentialCapLoad: False } +calling cycle 3370 : [doFinishMem] DTlbResp { resp: <'h0000000000001018,tagged Invalid ,True>, inst: MemExeToFinish { mem_func: Ld, tag: InstTag { way: 'h1, ptr: 'h01, t: 'h03 }, ldstq_tag: tagged Ld 'h00, shiftedBE: tagged DataMemAccess , vaddr: v: True a: 'h0000000000001018 o: 'h0000000000001018 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, misaligned: False, capStore: False, allowCapLoad: False, capException: tagged Invalid , check: tagged Valid BoundsCheck { authority_base: 'h0000000000000000, authority_top: 'h10000000000000000, authority_idx: 'h21, check_low: 'h0000000000001018, check_high: 'h00000000000001020, check_inclusive: True } }, specBits: 'h000 } +calling cycle +calling cycle [doDeqLdQ_MMIO_issue] LdQDeqEntry { tag: 'h00, instTag: InstTag { way: 'h1, ptr: 'h01, t: 'h03 }, memFunc: Ld, byteOrTagEn: tagged DataMemAccess , unsignedLd: False, acq: False, rel: False, dst: tagged Valid PhyDst { indx: 'h43, isFpuReg: False }, paddr: 'h0000000000001018, isMMIO: True, shiftedBE: tagged DataMemAccess , fault: tagged Invalid , allowCap: False, killed: tagged Invalid }; MMIOCRq { addr: 'h0000000000001018, func: tagged Ld , byteEn: , data: TaggedData { tag: , data: }, loadTags: False } +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle [RFile] wr_ 3: r 43 <= 0000000020000000000000001fffff44000000 [doDeqLdQ_MMIO_deq] LdQDeqEntry { tag: 'h00, instTag: InstTag { way: 'h1, ptr: 'h01, t: 'h03 }, memFunc: Ld, byteOrTagEn: tagged DataMemAccess , unsignedLd: False, acq: False, rel: False, dst: tagged Valid PhyDst { indx: 'h43, isFpuReg: False }, paddr: 'h0000000000001018, isMMIO: True, shiftedBE: tagged DataMemAccess , fault: tagged Invalid , allowCap: False, killed: tagged Invalid }; TaggedData { tag: False, data: }; TaggedData { tag: False, data: } +calling cycle instret:3 PC:0x1ffff000000000000000000000000100c instr:0x0182b283 iType:Ld [doCommitNormalInst [0]] 403 +calling cycle +calling cycle +calling cycle [ALU redirect - 1] 'h1ffff0000000000000000000080000000; 'h0; InstTag { way: 'h0, ptr: 'h02, t: 'h04 } +calling cycle [ROB incorrectSpec] 'h0 ; InstTag { way: 'h0, ptr: 'h02, t: 'h04 } ; 'h1 ; 'h0 ; ; ; > ; > ; 'h1 ; ; +calling cycle instret:4 PC:0x1ffff0000000000000000000000001010 instr:0x00028067 iType:Jr [doCommitNormalInst [0]] 408 - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Csr, execFunc: tagged Alu Csrs, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Valid csrAddrMHARTID, scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Valid 'h00, src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h45, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h02, t: 'h05 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } -[RFile] wr_ 0: r 45 <= 0000000000000000000000001fffff44000000 -instret:5 PC:0x1ffff0000000000000000000080000000 instr:0xf1402573 iType:Csr [doCommitSystemInst] 1155 - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Auipc, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00004000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h47, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h03, t: 'h07 }, spec_bits: 'h001, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Br, execFunc: tagged Br Neq, capFunc: tagged Other , capChecks: CapChecks {rn1 'h0a, rn2 'h00, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000084 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'h000, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h002 }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h45, src2: tagged Valid 'h00, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h03, t: 'h06 }, spec_bits: 'h000, spec_tag: tagged Valid 'h0, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Srl, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h0000000c }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h48, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h49, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h04, t: 'h09 }, spec_bits: 'h001, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffff8 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h47, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h48, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h04, t: 'h08 }, spec_bits: 'h001, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Or, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000001 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h4a, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h4b, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h05, t: 'h0b }, spec_bits: 'h001, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Sll, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h0000000a }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h49, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h4a, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h05, t: 'h0a }, spec_bits: 'h001, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h06, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hffffffe4 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h4c, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h4d, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h06, t: 'h0d }, spec_bits: 'h001, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Auipc, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00003000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h4c, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h06, t: 'h0c }, spec_bits: 'h001, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } -[RFile] wr_ 0: r 47 <= 0000000020001002000000001fffff44000000 - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Auipc, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00005000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h4f, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h07, t: 'h0f }, spec_bits: 'h001, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: MemRSData { mem_func: St, imm: 'h00000000, ldstq_tag: tagged St 'h0, cap_checks: CapChecks {rn1 'h06, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h4d, src2: tagged Valid 'h4b, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h07, t: 'h0e }, spec_bits: 'h001, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: False, src3: True, dst: True } } -[RFile] wr_ 1: r 48 <= 0000000020001000000000001fffff44000000 -instret:6 PC:0x1ffff0000000000000000000080000004 instr:0x08051263 iType:Br [doCommitNormalInst [0]] 1167 -instret:7 PC:0x1ffff0000000000000000000080000008 instr:0x00004297 iType:Auipc [doCommitNormalInst [1]] 1167 - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Srl, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h0000000c }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h50, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h51, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h08, t: 'h11 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h18}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hffffffd8 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h4f, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h50, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h08, t: 'h10 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } -[RFile] wr_ 0: r 49 <= 0000000000020001000000001fffff44000000 -instret:8 PC:0x1ffff000000000000000000008000000c instr:0xff828293 iType:Alu [doCommitNormalInst [0]] 1168 - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Or, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000001 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h52, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h53, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h09, t: 'h13 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Sll, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h0000000a }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h51, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h52, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h09, t: 'h12 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } -[RFile] wr_ 1: r 4a <= 0000000008000400000000001fffff44000000 - 11690 : [doDispatchMem] ToReservationStation { data: MemRSData { mem_func: St, imm: 'h00000000, ldstq_tag: tagged St 'h0, cap_checks: CapChecks {rn1 'h06, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h4d, src2: tagged Valid 'h4b, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h07, t: 'h0e }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } -instret:9 PC:0x1ffff0000000000000000000080000010 instr:0x00c2d293 iType:Alu [doCommitNormalInst [0]] 1169 - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Auipc, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00004000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h54, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h0a, t: 'h14 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } -[RFile] wr_ 0: r 4b <= 0000000008000400400000001fffff44000000 -[RFile] wr_ 1: r 4c <= 0000000020000c07000000001fffff44000000 - 11700 : [doRegReadMem] ToSpecFifo { data: MemDispatchToRegRead { mem_func: St, imm: 'h00000000, regs: PhyRegs { src1: tagged Valid 'h4d, src2: tagged Valid 'h4b, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h07, t: 'h0e }, ldstq_tag: tagged St 'h0, cap_checks: CapChecks {rn1 'h06, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, spec_bits: 'h000 } -instret:10 PC:0x1ffff0000000000000000000080000014 instr:0x00a29293 iType:Alu [doCommitNormalInst [0]] 1170 -[RFile] wr_ 0: r 4d <= 0000000020000c00000000001fffff44000000 -[RFile] wr_ 1: r 4f <= 000000002000140a000000001fffff44000000 - 11710 : [doExeMem] ToSpecFifo { data: MemRegReadToExe { mem_func: St, imm: 'h00000000, tag: InstTag { way: 'h0, ptr: 'h07, t: 'h0e }, ldstq_tag: tagged St 'h0, rVal1: v: True a: 'h0000000080003000 o: 'h0000000080003000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, rVal2: v: False a: 'h0000000020001001 o: 'h0000000020001001 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h0000 hp: 'h000 ot: 'h3ffff f: 'h0, vaddr: v: True a: 'h0000000080003000 o: 'h0000000080003000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, cap_checks: CapChecks {rn1 'h06, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, origBE: tagged DataMemAccess , shiftBEData: }, spec_bits: 'h000 } -DTLB top.soc_top.corew_proc.core_0.coreFix_memExe_dTlb req (bare): TlbReq { addr: 'h0000000080003000, write: True, capStore: False, potentialCapLoad: False } -instret:11 PC:0x1ffff0000000000000000000080000018 instr:0x0012e293 iType:Alu [doCommitNormalInst [0]] 1171 -instret:12 PC:0x1ffff000000000000000000008000001c instr:0x00003317 iType:Auipc [doCommitNormalInst [1]] 1171 -[RFile] wr_ 1: r 50 <= 0000000020001400000000001fffff44000000 - 11720 : [doFinishMem] DTlbResp { resp: <'h0000000080003000,tagged Invalid ,True>, inst: MemExeToFinish { mem_func: St, tag: InstTag { way: 'h0, ptr: 'h07, t: 'h0e }, ldstq_tag: tagged St 'h0, shiftedBE: tagged DataMemAccess , vaddr: v: True a: 'h0000000080003000 o: 'h0000000080003000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, misaligned: False, capStore: False, allowCapLoad: False, capException: tagged Invalid , check: tagged Valid BoundsCheck { authority_base: 'h0000000000000000, authority_top: 'h10000000000000000, authority_idx: 'h21, check_low: 'h0000000080003000, check_high: 'h00000000080003008, check_inclusive: True } }, specBits: 'h000 } -instret:13 PC:0x1ffff0000000000000000000080000020 instr:0xfe430313 iType:Alu [doCommitNormalInst [0]] 1172 -[RFile] wr_ 0: r 51 <= 0000000000020001400000001fffff44000000 -[RFile] wr_ 1: r 54 <= 000000002000100f000000001fffff44000000 -instret:14 PC:0x1ffff0000000000000000000080000024 instr:0x00533023 iType:St [doCommitNormalInst [0]] 1173 -instret:15 PC:0x1ffff0000000000000000000080000028 instr:0x00005297 iType:Auipc [doCommitNormalInst [1]] 1173 -[RFile] wr_ 1: r 52 <= 0000000008000500000000001fffff44000000 -[doDeqStQ_St] StQDeqEntry { instTag: InstTag { way: 'h0, ptr: 'h07, t: 'h0e }, memFunc: St, amoFunc: None, acq: False, rel: False, dst: tagged Invalid , paddr: 'h0000000000000100, isMMIO: False, shiftedBE: , stData: TaggedData { tag: False, data: }, allowCapAmoLd: False, fault: tagged Invalid , pcHash: 'h8024 } - 11740 L1 top.soc_top.corew_proc.core_0 cRqTransfer_new: 'h0 ; ProcRq { id: 'h00, addr: 'h0000000000000100, toState: M, op: St, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8024 } -instret:16 PC:0x1ffff000000000000000000008000002c instr:0xfd828293 iType:Alu [doCommitNormalInst [0]] 1174 -instret:17 PC:0x1ffff0000000000000000000080000030 instr:0x00c2d293 iType:Alu [doCommitNormalInst [1]] 1174 -[RFile] wr_ 0: r 53 <= 0000000008000500400000001fffff44000000 - 11750 L1 top.soc_top.corew_proc.core_0 pipelineResp: PipeOut { cmd: tagged L1CRq 'h0, way: 'h0, pRqMiss: False, ram: RamData { info: CacheInfo { tag: 'h0000000000000, cs: I, dir: , owner: tagged Invalid , other: }, line: CLine { tag: , data: > } }, repInfo: , setAuxData: tagged Invalid } - 11750 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: 'h0 ; ProcRq { id: 'h00, addr: 'h0000000000000100, toState: M, op: St, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8024 } - 11750 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: no owner, miss no replace -instret:18 PC:0x1ffff0000000000000000000080000034 instr:0x00a29293 iType:Alu [doCommitNormalInst [0]] 1175 -instret:19 PC:0x1ffff0000000000000000000080000038 instr:0x0012e293 iType:Alu [doCommitNormalInst [0]] 1176 -instret:20 PC:0x1ffff000000000000000000008000003c instr:0x00004317 iType:Auipc [doCommitNormalInst [1]] 1176 - 11770 L1 top.soc_top.corew_proc.core_0 sendRqToP: 'h0 ; ProcRq { id: 'h00, addr: 'h0000000000000100, toState: M, op: St, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8024 } ; L1CRqSlot { way: 'h0, cs: I, repTag: 'h2aaaaaaaaaaaa, waitP: True } ; CRqMsg { addr: 'h0000000000000100, fromState: I, toState: M, canUpToE: True, id: 'h0, child: , isPrefetchRq: False } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h06, rn2 'h04}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hffffffc4 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h54, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h55, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h0a, t: 'h15 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: MemRSData { mem_func: St, imm: 'h00000000, ldstq_tag: tagged St 'h1, cap_checks: CapChecks {rn1 'h06, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h55, src2: tagged Valid 'h53, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h0b, t: 'h16 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Auipc, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00005000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h58, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h0c, t: 'h18 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h0000005f }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h57, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h0b, t: 'h17 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - 12230 : [doDispatchMem] ToReservationStation { data: MemRSData { mem_func: St, imm: 'h00000000, ldstq_tag: tagged St 'h1, cap_checks: CapChecks {rn1 'h06, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h55, src2: tagged Valid 'h53, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h0b, t: 'h16 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h06, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hffffffb4 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h58, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h59, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h0c, t: 'h19 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: MemRSData { mem_func: St, imm: 'h00000000, ldstq_tag: tagged St 'h2, cap_checks: CapChecks {rn1 'h06, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h59, src2: tagged Valid 'h57, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h0d, t: 'h1a }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } - 12240 : [doRegReadMem] ToSpecFifo { data: MemDispatchToRegRead { mem_func: St, imm: 'h00000000, regs: PhyRegs { src1: tagged Valid 'h55, src2: tagged Valid 'h53, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h0b, t: 'h16 }, ldstq_tag: tagged St 'h1, cap_checks: CapChecks {rn1 'h06, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, spec_bits: 'h000 } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hffffffa8 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h5b, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h5c, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h0e, t: 'h1c }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Auipc, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00003000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h5b, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h0d, t: 'h1b }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } -[RFile] wr_ 1: r 55 <= 0000000020001000000000001fffff44000000 - 12250 : [doExeMem] ToSpecFifo { data: MemRegReadToExe { mem_func: St, imm: 'h00000000, tag: InstTag { way: 'h0, ptr: 'h0b, t: 'h16 }, ldstq_tag: tagged St 'h1, rVal1: v: True a: 'h0000000080004000 o: 'h0000000080004000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, rVal2: v: False a: 'h0000000020001401 o: 'h0000000020001401 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h0000 hp: 'h000 ot: 'h3ffff f: 'h0, vaddr: v: True a: 'h0000000080004000 o: 'h0000000080004000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, cap_checks: CapChecks {rn1 'h06, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, origBE: tagged DataMemAccess , shiftBEData: }, spec_bits: 'h000 } -DTLB top.soc_top.corew_proc.core_0.coreFix_memExe_dTlb req (bare): TlbReq { addr: 'h0000000080004000, write: True, capStore: False, potentialCapLoad: False } - 12250 : [doDispatchMem] ToReservationStation { data: MemRSData { mem_func: St, imm: 'h00000000, ldstq_tag: tagged St 'h2, cap_checks: CapChecks {rn1 'h06, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h59, src2: tagged Valid 'h57, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h0d, t: 'h1a }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Addw, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hffffffff }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h5e, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h0f, t: 'h1e }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Srl, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h0000000c }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h5c, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h5d, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h0e, t: 'h1d }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } -[RFile] wr_ 0: r 58 <= 0000000020001413000000001fffff44000000 -[RFile] wr_ 1: r 57 <= 0000000000000017c00000001fffff44000000 - 12260 : [doFinishMem] DTlbResp { resp: <'h0000000080004000,tagged Invalid ,True>, inst: MemExeToFinish { mem_func: St, tag: InstTag { way: 'h0, ptr: 'h0b, t: 'h16 }, ldstq_tag: tagged St 'h1, shiftedBE: tagged DataMemAccess , vaddr: v: True a: 'h0000000080004000 o: 'h0000000080004000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, misaligned: False, capStore: False, allowCapLoad: False, capException: tagged Invalid , check: tagged Valid BoundsCheck { authority_base: 'h0000000000000000, authority_top: 'h10000000000000000, authority_idx: 'h21, check_low: 'h0000000080004000, check_high: 'h00000000080004008, check_inclusive: True } }, specBits: 'h000 } - 12260 : [doRegReadMem] ToSpecFifo { data: MemDispatchToRegRead { mem_func: St, imm: 'h00000000, regs: PhyRegs { src1: tagged Valid 'h59, src2: tagged Valid 'h57, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h0d, t: 'h1a }, ldstq_tag: tagged St 'h2, cap_checks: CapChecks {rn1 'h06, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, spec_bits: 'h000 } -instret:21 PC:0x1ffff0000000000000000000080000040 instr:0xfc430313 iType:Alu [doCommitNormalInst [0]] 1226 - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Or, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h5d, src2: tagged Valid 'h5f, src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h60, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h10, t: 'h20 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: False, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Sll, capFunc: tagged Other , capChecks: CapChecks {rn1 'h06, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h0000003f }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h5e, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h5f, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h0f, t: 'h1f }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } -[RFile] wr_ 0: r 59 <= 0000000020001400000000001fffff44000000 - 12270 : [doExeMem] ToSpecFifo { data: MemRegReadToExe { mem_func: St, imm: 'h00000000, tag: InstTag { way: 'h0, ptr: 'h0d, t: 'h1a }, ldstq_tag: tagged St 'h2, rVal1: v: True a: 'h0000000080005000 o: 'h0000000080005000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, rVal2: v: False a: 'h000000000000005f o: 'h000000000000005f b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h0000 hp: 'h000 ot: 'h3ffff f: 'h0, vaddr: v: True a: 'h0000000080005000 o: 'h0000000080005000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, cap_checks: CapChecks {rn1 'h06, rn2 'h05, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, origBE: tagged DataMemAccess , shiftBEData: }, spec_bits: 'h000 } -DTLB top.soc_top.corew_proc.core_0.coreFix_memExe_dTlb req (bare): TlbReq { addr: 'h0000000080005000, write: True, capStore: False, potentialCapLoad: False } -instret:22 PC:0x1ffff0000000000000000000080000044 instr:0x00533023 iType:St [doCommitNormalInst [0]] 1227 -instret:23 PC:0x1ffff0000000000000000000080000048 instr:0x05f00293 iType:Alu [doCommitNormalInst [1]] 1227 -[RFile] wr_ 1: r 5b <= 0000000020000c16000000001fffff44000000 - 12280 : [doFinishMem] DTlbResp { resp: <'h0000000080005000,tagged Invalid ,True>, inst: MemExeToFinish { mem_func: St, tag: InstTag { way: 'h0, ptr: 'h0d, t: 'h1a }, ldstq_tag: tagged St 'h2, shiftedBE: tagged DataMemAccess , vaddr: v: True a: 'h0000000080005000 o: 'h0000000080005000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, misaligned: False, capStore: False, allowCapLoad: False, capException: tagged Invalid , check: tagged Valid BoundsCheck { authority_base: 'h0000000000000000, authority_top: 'h10000000000000000, authority_idx: 'h21, check_low: 'h0000000080005000, check_high: 'h00000000080005008, check_inclusive: True } }, specBits: 'h000 } -instret:24 PC:0x1ffff000000000000000000008000004c instr:0x00005317 iType:Auipc [doCommitNormalInst [0]] 1228 -instret:25 PC:0x1ffff0000000000000000000080000050 instr:0xfb430313 iType:Alu [doCommitNormalInst [1]] 1228 -[RFile] wr_ 0: r 5c <= 0000000020000c00000000001fffff44000000 -instret:26 PC:0x1ffff0000000000000000000080000054 instr:0x00533023 iType:St [doCommitNormalInst [0]] 1229 -instret:27 PC:0x1ffff0000000000000000000080000058 instr:0x00003297 iType:Auipc [doCommitNormalInst [1]] 1229 -[RFile] wr_ 0: r 5e <= 3fffffffffffffffcfff00001fffff44000000 -[RFile] wr_ 1: r 5d <= 0000000000020000c00000001fffff44000000 -instret:28 PC:0x1ffff000000000000000000008000005c instr:0xfa828293 iType:Alu [doCommitNormalInst [0]] 1230 -[RFile] wr_ 1: r 5f <= 2000000000000000080000001fffff44000000 -instret:29 PC:0x1ffff0000000000000000000080000060 instr:0x00c2d293 iType:Alu [doCommitNormalInst [0]] 1231 -instret:30 PC:0x1ffff0000000000000000000080000064 instr:0xfff0031b iType:Alu [doCommitNormalInst [1]] 1231 -[RFile] wr_ 0: r 60 <= 2000000000020000c80000001fffff44000000 -instret:31 PC:0x1ffff0000000000000000000080000068 instr:0x03f31313 iType:Alu [doCommitNormalInst [0]] 1232 - 12330 L1 top.soc_top.corew_proc.core_0 pRsTransfer: PRsMsg { addr: 'h0000000000000100, toState: M, child: , data: tagged Valid CLine { tag: , data: > }, id: 'h0 } -instret:32 PC:0x1ffff000000000000000000008000006c instr:0x0062e2b3 iType:Alu [doCommitNormalInst [0]] 1233 - 12340 L1 top.soc_top.corew_proc.core_0 pipelineResp: PipeOut { cmd: tagged L1PRs , way: 'h0, pRqMiss: False, ram: RamData { info: CacheInfo { tag: 'h0000000000000, cs: M, dir: , owner: tagged Valid 'h0, other: }, line: CLine { tag: , data: > } }, repInfo: , setAuxData: tagged Invalid } - 12340 L1 top.soc_top.corew_proc.core_0 pipelineResp: pRs: - 12340 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: 'h0 ; ProcRq { id: 'h00, addr: 'h0000000000000100, toState: M, op: St, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8024 } -[Store resp] idx 'h00, WaitStResp { offset: 'h0, shiftedBE: , shiftedData: TaggedData { tag: False, data: } } - 12340 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: update ram: CLine { tag: , data: > } ; tagged Invalid - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Csr, execFunc: tagged Alu Csrw, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Valid csrAddrSATP, scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Valid 'h60, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h1, ptr: 'h10, t: 'h21 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } -[doDeqStQ_St] StQDeqEntry { instTag: InstTag { way: 'h0, ptr: 'h0b, t: 'h16 }, memFunc: St, amoFunc: None, acq: False, rel: False, dst: tagged Invalid , paddr: 'h0000000000000100, isMMIO: False, shiftedBE: , stData: TaggedData { tag: False, data: }, allowCapAmoLd: False, fault: tagged Invalid , pcHash: 'h8044 } - 12350 L1 top.soc_top.corew_proc.core_0 cRqTransfer_new: 'h1 ; ProcRq { id: 'h00, addr: 'h0000000000000100, toState: M, op: St, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8044 } - 12360 L1 top.soc_top.corew_proc.core_0 pipelineResp: PipeOut { cmd: tagged L1CRq 'h1, way: 'h0, pRqMiss: False, ram: RamData { info: CacheInfo { tag: 'h0000000000000, cs: M, dir: , owner: tagged Invalid , other: }, line: CLine { tag: , data: > } }, repInfo: , setAuxData: tagged Invalid } - 12360 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: 'h1 ; ProcRq { id: 'h00, addr: 'h0000000000000100, toState: M, op: St, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8044 } - 12360 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: no owner, hit - 12360 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: 'h1 ; ProcRq { id: 'h00, addr: 'h0000000000000100, toState: M, op: St, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8044 } -[Store resp] idx 'h00, WaitStResp { offset: 'h0, shiftedBE: , shiftedData: TaggedData { tag: False, data: } } - 12360 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: update ram: CLine { tag: , data: > } ; tagged Invalid -[doDeqStQ_St] StQDeqEntry { instTag: InstTag { way: 'h0, ptr: 'h0d, t: 'h1a }, memFunc: St, amoFunc: None, acq: False, rel: False, dst: tagged Invalid , paddr: 'h0000000000000100, isMMIO: False, shiftedBE: , stData: TaggedData { tag: False, data: }, allowCapAmoLd: False, fault: tagged Invalid , pcHash: 'h8054 } - 12370 L1 top.soc_top.corew_proc.core_0 cRqTransfer_new: 'h2 ; ProcRq { id: 'h00, addr: 'h0000000000000100, toState: M, op: St, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8054 } - 12380 L1 top.soc_top.corew_proc.core_0 pipelineResp: PipeOut { cmd: tagged L1CRq 'h2, way: 'h0, pRqMiss: False, ram: RamData { info: CacheInfo { tag: 'h0000000000000, cs: M, dir: , owner: tagged Invalid , other: }, line: CLine { tag: , data: > } }, repInfo: , setAuxData: tagged Invalid } - 12380 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: 'h2 ; ProcRq { id: 'h00, addr: 'h0000000000000100, toState: M, op: St, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8054 } - 12380 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: no owner, hit - 12380 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: 'h2 ; ProcRq { id: 'h00, addr: 'h0000000000000100, toState: M, op: St, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8054 } -[Store resp] idx 'h00, WaitStResp { offset: 'h0, shiftedBE: , shiftedData: TaggedData { tag: False, data: } } - 12380 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: update ram: CLine { tag: , data: > } ; tagged Invalid -instret:33 PC:0x1ffff0000000000000000000080000070 instr:0x18029073 iType:Csr [doCommitSystemInst] 1239 +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hffffffff }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h46, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h03, t: 'h06 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h10}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00080000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h45, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h02, t: 'h05 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Or, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h45, src2: tagged Valid 'h47, src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h48, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h04, t: 'h08 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: False, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Sll, capFunc: tagged Other , capChecks: CapChecks {rn1 'h06, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h0000003f }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h46, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h47, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h03, t: 'h07 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle +calling cycle +calling cycle +[RFile] wr_ 0: r 46 <= 3fffffffffffffffcfff00001fffff44000000 +[RFile] wr_ 1: r 45 <= 0000000000020000000000001fffff44000000 +calling cycle +[RFile] wr_ 1: r 47 <= 2000000000000000080000001fffff44000000 +instret:5 PC:0x1ffff0000000000000000000080000000 instr:0x000802b7 iType:Alu [doCommitNormalInst [0]] 1155 +instret:6 PC:0x1ffff0000000000000000000080000004 instr:0x0000537d iType:Alu [doCommitNormalInst [1]] 1155 +calling cycle +[RFile] wr_ 0: r 48 <= 2000000000020000080000001fffff44000000 +instret:7 PC:0x1ffff0000000000000000000080000006 instr:0x0000137e iType:Alu [doCommitNormalInst [0]] 1156 +calling cycle +instret:8 PC:0x1ffff0000000000000000000080000008 instr:0x0062e2b3 iType:Alu [doCommitNormalInst [0]] 1157 +calling cycle + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Csr, execFunc: tagged Alu Csrw, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Valid csrAddrSATP, scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Valid 'h48, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h1, ptr: 'h04, t: 'h09 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +instret:9 PC:0x1ffff000000000000000000008000000c instr:0x18029073 iType:Csr [doCommitSystemInst] 1163 +calling cycle +calling cycle [DTLB] flush begin +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle [DTLB] flush done -instret:34 PC:0x1ffff0000000000000000000080000074 instr:0x12000073 iType:SFence [doCommitSystemInst] 1510 +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +instret:10 PC:0x1ffff0000000000000000000080000010 instr:0x12000073 iType:SFence [doCommitSystemInst] 1434 +calling cycle +calling cycle [DTLB] flush begin +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle [DTLB] flush done - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h08}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hffffff88 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h63, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h64, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h12, t: 'h24 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Auipc, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00002000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h63, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h11, t: 'h23 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000001 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h65, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h12, t: 'h25 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: MemRSData { mem_func: St, imm: 'h00000000, ldstq_tag: tagged St 'h3, cap_checks: CapChecks {rn1 'h05, rn2 'h06, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h64, src2: tagged Valid 'h65, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h13, t: 'h26 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: False, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h14, t: 'h28 }, spec_bits: 'h000, spec_tag: tagged Valid 'h0, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - 17830 : [doDispatchMem] ToReservationStation { data: MemRSData { mem_func: St, imm: 'h00000000, ldstq_tag: tagged St 'h3, cap_checks: CapChecks {rn1 'h05, rn2 'h06, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h64, src2: tagged Valid 'h65, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h13, t: 'h26 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h15, t: 'h2a }, spec_bits: 'h001, spec_tag: tagged Valid 'h1, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } -[RFile] wr_ 1: r 63 <= 000000002000081e000000001fffff44000000 - 17840 : [doRegReadMem] ToSpecFifo { data: MemDispatchToRegRead { mem_func: St, imm: 'h00000000, regs: PhyRegs { src1: tagged Valid 'h64, src2: tagged Valid 'h65, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h13, t: 'h26 }, ldstq_tag: tagged St 'h3, cap_checks: CapChecks {rn1 'h05, rn2 'h06, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, spec_bits: 'h000 } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h16, t: 'h2c }, spec_bits: 'h003, spec_tag: tagged Valid 'h2, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } -[RFile] wr_ 0: r 64 <= 0000000020000800000000001fffff44000000 -[RFile] wr_ 1: r 65 <= 0000000000000000400000001fffff44000000 - 17850 : [doExeMem] ToSpecFifo { data: MemRegReadToExe { mem_func: St, imm: 'h00000000, tag: InstTag { way: 'h0, ptr: 'h13, t: 'h26 }, ldstq_tag: tagged St 'h3, rVal1: v: True a: 'h0000000080002000 o: 'h0000000080002000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, rVal2: v: False a: 'h0000000000000001 o: 'h0000000000000001 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h0000 hp: 'h000 ot: 'h3ffff f: 'h0, vaddr: v: True a: 'h0000000080002000 o: 'h0000000080002000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, cap_checks: CapChecks {rn1 'h05, rn2 'h06, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, origBE: tagged DataMemAccess , shiftBEData: }, spec_bits: 'h000 } -DTLB top.soc_top.corew_proc.core_0.coreFix_memExe_dTlb req (bare): TlbReq { addr: 'h0000000080002000, write: True, capStore: False, potentialCapLoad: False } -instret:35 PC:0x1ffff0000000000000000000080000078 instr:0x00002297 iType:Auipc [doCommitNormalInst [0]] 1785 - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h17, t: 'h2e }, spec_bits: 'h007, spec_tag: tagged Valid 'h3, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - 17860 : [doFinishMem] DTlbResp { resp: <'h0000000080002000,tagged Invalid ,True>, inst: MemExeToFinish { mem_func: St, tag: InstTag { way: 'h0, ptr: 'h13, t: 'h26 }, ldstq_tag: tagged St 'h3, shiftedBE: tagged DataMemAccess , vaddr: v: True a: 'h0000000080002000 o: 'h0000000080002000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, misaligned: False, capStore: False, allowCapLoad: False, capException: tagged Invalid , check: tagged Valid BoundsCheck { authority_base: 'h0000000000000000, authority_top: 'h10000000000000000, authority_idx: 'h21, check_low: 'h0000000080002000, check_high: 'h00000000080002008, check_inclusive: True } }, specBits: 'h000 } -instret:36 PC:0x1ffff000000000000000000008000007c instr:0xf8828293 iType:Alu [doCommitNormalInst [0]] 1786 -instret:37 PC:0x1ffff0000000000000000000080000080 instr:0x00100313 iType:Alu [doCommitNormalInst [1]] 1786 - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h18, t: 'h30 }, spec_bits: 'h00f, spec_tag: tagged Valid 'h4, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h19, t: 'h32 }, spec_bits: 'h01e, spec_tag: tagged Valid 'h0, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } -[doDeqStQ_MMIO_issue] StQDeqEntry { instTag: InstTag { way: 'h0, ptr: 'h13, t: 'h26 }, memFunc: St, amoFunc: None, acq: False, rel: False, dst: tagged Invalid , paddr: 'h0000000000000100, isMMIO: True, shiftedBE: , stData: TaggedData { tag: False, data: }, allowCapAmoLd: False, fault: tagged Invalid , pcHash: 'h8084 }; MMIOCRq { addr: 'h0000000000000100, func: tagged St , byteEn: , data: TaggedData { tag: False, data: }, loadTags: False } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h1a, t: 'h34 }, spec_bits: 'h01d, spec_tag: tagged Valid 'h1, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h1b, t: 'h36 }, spec_bits: 'h01b, spec_tag: tagged Valid 'h2, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h1c, t: 'h38 }, spec_bits: 'h017, spec_tag: tagged Valid 'h3, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h1d, t: 'h3a }, spec_bits: 'h00f, spec_tag: tagged Valid 'h4, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h1e, t: 'h3c }, spec_bits: 'h01e, spec_tag: tagged Valid 'h0, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h1f, t: 'h3e }, spec_bits: 'h01d, spec_tag: tagged Valid 'h1, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h00, t: 'h00 }, spec_bits: 'h01b, spec_tag: tagged Valid 'h2, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } -[doDeqStQ_MMIO_fault] StQDeqEntry { instTag: InstTag { way: 'h0, ptr: 'h13, t: 'h26 }, memFunc: St, amoFunc: None, acq: False, rel: False, dst: tagged Invalid , paddr: 'h0000000000000100, isMMIO: True, shiftedBE: , stData: TaggedData { tag: False, data: }, allowCapAmoLd: False, fault: tagged Invalid , pcHash: 'h8084 } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h01, t: 'h02 }, spec_bits: 'h017, spec_tag: tagged Valid 'h3, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h02, t: 'h04 }, spec_bits: 'h00f, spec_tag: tagged Valid 'h4, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h03, t: 'h06 }, spec_bits: 'h01e, spec_tag: tagged Valid 'h0, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h04, t: 'h08 }, spec_bits: 'h01d, spec_tag: tagged Valid 'h1, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h05, t: 'h0a }, spec_bits: 'h01b, spec_tag: tagged Valid 'h2, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h06, t: 'h0c }, spec_bits: 'h017, spec_tag: tagged Valid 'h3, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h07, t: 'h0e }, spec_bits: 'h00f, spec_tag: tagged Valid 'h4, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h08, t: 'h10 }, spec_bits: 'h01e, spec_tag: tagged Valid 'h0, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h09, t: 'h12 }, spec_bits: 'h01d, spec_tag: tagged Valid 'h1, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h0a, t: 'h14 }, spec_bits: 'h01b, spec_tag: tagged Valid 'h2, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h0b, t: 'h16 }, spec_bits: 'h017, spec_tag: tagged Valid 'h3, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h0c, t: 'h18 }, spec_bits: 'h00f, spec_tag: tagged Valid 'h4, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h0d, t: 'h1a }, spec_bits: 'h01e, spec_tag: tagged Valid 'h0, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h0e, t: 'h1c }, spec_bits: 'h01d, spec_tag: tagged Valid 'h1, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h0f, t: 'h1e }, spec_bits: 'h01b, spec_tag: tagged Valid 'h2, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h10, t: 'h20 }, spec_bits: 'h017, spec_tag: tagged Valid 'h3, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h11, t: 'h22 }, spec_bits: 'h00f, spec_tag: tagged Valid 'h4, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } - [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: J, execFunc: tagged Br AT, capFunc: tagged Other , capChecks: CapChecks {rn1 'h1f, rn2 'h1f, bounds check: auth Pcc, low Src1Addr, high Src1AddrPlus2, inclusive True}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'hfffffffc }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Invalid , src2: tagged Invalid , src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h0, ptr: 'h12, t: 'h24 }, spec_bits: 'h01e, spec_tag: tagged Valid 'h0, regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } -instret:38 PC:0x1ffff0000000000000000000080000084 instr:0x0062b023 iType:St [doCommitTrap] 1814 -instret:39 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1825 -instret:40 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1834 -instret:41 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1843 -instret:42 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1852 -instret:43 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1861 -instret:44 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1870 -instret:45 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1879 -instret:46 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1888 -instret:47 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1897 -instret:48 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1906 -instret:49 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1915 -instret:50 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1924 -instret:51 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1933 -instret:52 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1942 -instret:53 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1951 -instret:54 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1960 -instret:55 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1969 -instret:56 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1978 -instret:57 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1987 -instret:58 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 1996 -instret:59 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2005 -instret:60 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2014 -instret:61 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2023 -instret:62 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2032 -instret:63 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2041 -instret:64 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2050 -instret:65 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2059 -instret:66 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2068 -instret:67 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2077 -instret:68 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2086 -instret:69 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2095 -instret:70 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2104 -instret:71 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2113 -instret:72 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2122 -instret:73 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2131 -instret:74 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2140 -instret:75 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2149 -instret:76 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2158 -instret:77 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2167 -instret:78 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2176 -instret:79 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2185 -instret:80 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2194 -instret:81 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2203 -instret:82 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2212 -instret:83 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2221 -instret:84 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2230 -instret:85 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2239 -instret:86 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2248 -instret:87 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2257 -instret:88 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2266 -instret:89 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2275 -instret:90 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2284 -instret:91 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2293 -instret:92 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2302 -instret:93 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2311 -instret:94 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2320 -instret:95 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2329 -instret:96 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2338 -instret:97 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2347 -instret:98 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2356 -instret:99 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2365 -instret:100 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2374 -instret:101 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2383 -instret:102 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2392 -instret:103 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2401 -instret:104 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2410 -instret:105 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2419 -instret:106 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2428 -instret:107 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2437 -instret:108 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2446 -instret:109 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2455 -instret:110 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2464 -instret:111 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2473 -instret:112 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2482 -instret:113 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2491 -instret:114 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2500 -instret:115 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2509 -instret:116 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2518 -instret:117 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2527 -instret:118 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2536 -instret:119 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2545 -instret:120 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2554 -instret:121 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2563 -instret:122 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2572 -instret:123 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2581 -instret:124 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2590 -instret:125 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2599 -instret:126 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2608 -instret:127 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2617 -instret:128 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2626 -instret:129 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2635 -instret:130 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2644 -instret:131 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2653 -instret:132 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2662 -instret:133 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2671 -instret:134 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2680 -instret:135 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2689 -instret:136 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2698 -instret:137 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2707 -instret:138 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2716 -instret:139 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2725 -instret:140 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2734 -instret:141 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2743 -instret:142 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2752 -instret:143 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2761 -instret:144 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2770 -instret:145 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2779 -instret:146 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2788 -instret:147 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2797 -instret:148 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2806 -instret:149 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2815 -instret:150 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2824 -instret:151 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2833 -instret:152 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2842 -instret:153 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2851 -instret:154 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2860 -instret:155 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2869 -instret:156 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2878 -instret:157 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2887 -instret:158 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2896 -instret:159 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2905 -instret:160 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2914 -instret:161 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2923 -instret:162 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2932 -instret:163 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2941 -instret:164 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2950 -instret:165 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2959 -instret:166 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2968 -instret:167 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2977 -instret:168 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2986 -instret:169 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 2995 -instret:170 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3004 -instret:171 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3013 -instret:172 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3022 -instret:173 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3031 -instret:174 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3040 -instret:175 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3049 -instret:176 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3058 -instret:177 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3067 -instret:178 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3076 -instret:179 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3085 -instret:180 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3094 -instret:181 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3103 -instret:182 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3112 -instret:183 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3121 -instret:184 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3130 -instret:185 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3139 -instret:186 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3148 -instret:187 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3157 -instret:188 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3166 -instret:189 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3175 -instret:190 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3184 -instret:191 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3193 -instret:192 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3202 -instret:193 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3211 -instret:194 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3220 -instret:195 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3229 -instret:196 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3238 -instret:197 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3247 -instret:198 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3256 -instret:199 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3265 -instret:200 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3274 -instret:201 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3283 -instret:202 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3292 -instret:203 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3301 -instret:204 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3310 -instret:205 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3319 -instret:206 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3328 -instret:207 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3337 -instret:208 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3346 -instret:209 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3355 -instret:210 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3364 -instret:211 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3373 -instret:212 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3382 -instret:213 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3391 -instret:214 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3400 -instret:215 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3409 -instret:216 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3418 -instret:217 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3427 -instret:218 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3436 -instret:219 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3445 -instret:220 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3454 -instret:221 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3463 -instret:222 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3472 -instret:223 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3481 -instret:224 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3490 -instret:225 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3499 -instret:226 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3508 -instret:227 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3517 -instret:228 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3526 -instret:229 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3535 -instret:230 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3544 -instret:231 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3553 -instret:232 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3562 -instret:233 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3571 -instret:234 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3580 -instret:235 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3589 -instret:236 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3598 -instret:237 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3607 -instret:238 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3616 -instret:239 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3625 -instret:240 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3634 -instret:241 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3643 -instret:242 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3652 -instret:243 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3661 -instret:244 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3670 -instret:245 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3679 -instret:246 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3688 -instret:247 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3697 -instret:248 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3706 -instret:249 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3715 -instret:250 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3724 -instret:251 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3733 -instret:252 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3742 -instret:253 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3751 -instret:254 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3760 -instret:255 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3769 -instret:256 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3778 -instret:257 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3787 -instret:258 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3796 -instret:259 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3805 -instret:260 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3814 -instret:261 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3823 -instret:262 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3832 -instret:263 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3841 -instret:264 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3850 -instret:265 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3859 -instret:266 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3868 -instret:267 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3877 -instret:268 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3886 -instret:269 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3895 -instret:270 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3904 -instret:271 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3913 -instret:272 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3922 -instret:273 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3931 -instret:274 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3940 -instret:275 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3949 -instret:276 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3958 -instret:277 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3967 -instret:278 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3976 -instret:279 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3985 -instret:280 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 3994 -instret:281 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4003 -instret:282 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4012 -instret:283 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4021 -instret:284 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4030 -instret:285 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4039 -instret:286 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4048 -instret:287 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4057 -instret:288 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4066 -instret:289 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4075 -instret:290 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4084 -instret:291 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4093 -instret:292 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4102 -instret:293 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4111 -instret:294 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4120 -instret:295 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4129 -instret:296 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4138 -instret:297 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4147 -instret:298 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4156 -instret:299 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4165 -instret:300 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4174 -instret:301 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4183 -instret:302 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4192 -instret:303 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4201 -instret:304 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4210 -instret:305 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4219 -instret:306 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4228 -instret:307 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4237 -instret:308 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4246 -instret:309 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4255 -instret:310 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4264 -instret:311 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4273 -instret:312 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4282 -instret:313 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4291 -instret:314 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4300 -instret:315 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4309 -instret:316 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4318 -instret:317 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4327 -instret:318 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4336 -instret:319 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4345 -instret:320 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4354 -instret:321 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4363 -instret:322 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4372 -instret:323 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4381 -instret:324 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4390 -instret:325 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4399 -instret:326 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4408 -instret:327 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4417 -instret:328 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4426 -instret:329 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4435 -instret:330 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4444 -instret:331 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4453 -instret:332 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4462 -instret:333 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4471 -instret:334 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4480 -instret:335 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4489 -instret:336 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4498 -instret:337 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4507 -instret:338 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4516 -instret:339 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4525 -instret:340 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4534 -instret:341 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4543 -instret:342 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4552 -instret:343 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4561 -instret:344 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4570 -instret:345 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4579 -instret:346 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4588 -instret:347 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4597 -instret:348 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4606 -instret:349 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4615 -instret:350 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4624 -instret:351 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4633 -instret:352 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4642 -instret:353 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4651 -instret:354 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4660 -instret:355 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4669 -instret:356 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4678 -instret:357 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4687 -instret:358 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4696 -instret:359 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4705 -instret:360 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4714 -instret:361 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4723 -instret:362 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4732 -instret:363 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4741 -instret:364 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4750 -instret:365 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4759 -instret:366 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4768 -instret:367 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4777 -instret:368 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4786 -instret:369 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4795 -instret:370 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4804 -instret:371 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4813 -instret:372 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4822 -instret:373 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4831 -instret:374 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4840 -instret:375 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4849 -instret:376 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4858 -instret:377 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4867 -instret:378 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4876 -instret:379 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4885 -instret:380 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4894 -instret:381 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4903 -instret:382 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4912 -instret:383 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4921 -instret:384 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4930 -instret:385 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4939 -instret:386 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4948 -instret:387 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4957 -instret:388 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4966 -instret:389 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4975 -instret:390 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4984 -instret:391 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 4993 -instret:392 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5002 -instret:393 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5011 -instret:394 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5020 -instret:395 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5029 -instret:396 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5038 -instret:397 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5047 -instret:398 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5056 -instret:399 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5065 -instret:400 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5074 -instret:401 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5083 -instret:402 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5092 -instret:403 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5101 -instret:404 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5110 -instret:405 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5119 -instret:406 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5128 -instret:407 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5137 -instret:408 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5146 -instret:409 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5155 -instret:410 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5164 -instret:411 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5173 -instret:412 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5182 -instret:413 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5191 -instret:414 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5200 -instret:415 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5209 -instret:416 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5218 -instret:417 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5227 -instret:418 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5236 -instret:419 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5245 -instret:420 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5254 -instret:421 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5263 -instret:422 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5272 -instret:423 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5281 -instret:424 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5290 -instret:425 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5299 -instret:426 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5308 -instret:427 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5317 -instret:428 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5326 -instret:429 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5335 -instret:430 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5344 -instret:431 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5353 -instret:432 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5362 -instret:433 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5371 -instret:434 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5380 -instret:435 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5389 -instret:436 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5398 -instret:437 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5407 -instret:438 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5416 -instret:439 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5425 -instret:440 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5434 -instret:441 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5443 -instret:442 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5452 -instret:443 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5461 -instret:444 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5470 -instret:445 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5479 -instret:446 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5488 -instret:447 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5497 -instret:448 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5506 -instret:449 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5515 -instret:450 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5524 -instret:451 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5533 -instret:452 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5542 -instret:453 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5551 -instret:454 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5560 -instret:455 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5569 -instret:456 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5578 -instret:457 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5587 -instret:458 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5596 -instret:459 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5605 -instret:460 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5614 -instret:461 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5623 -instret:462 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5632 -instret:463 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5641 -instret:464 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5650 -instret:465 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5659 -instret:466 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5668 -instret:467 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5677 -instret:468 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5686 -instret:469 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5695 -instret:470 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5704 -instret:471 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5713 -instret:472 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5722 -instret:473 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5731 -instret:474 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5740 -instret:475 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5749 -instret:476 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5758 -instret:477 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5767 -instret:478 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5776 -instret:479 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5785 -instret:480 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5794 -instret:481 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5803 -instret:482 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5812 -instret:483 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5821 -instret:484 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5830 -instret:485 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5839 -instret:486 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5848 -instret:487 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5857 -instret:488 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5866 -instret:489 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5875 -instret:490 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5884 -instret:491 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5893 -instret:492 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5902 -instret:493 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5911 -instret:494 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5920 -instret:495 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5929 -instret:496 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5938 -instret:497 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5947 -instret:498 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5956 -instret:499 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5965 -instret:500 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5974 -instret:501 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5983 -instret:502 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 5992 -instret:503 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6001 -instret:504 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6010 -instret:505 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6019 -instret:506 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6028 -instret:507 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6037 -instret:508 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6046 -instret:509 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6055 -instret:510 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6064 -instret:511 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6073 -instret:512 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6082 -instret:513 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6091 -instret:514 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6100 -instret:515 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6109 -instret:516 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6118 -instret:517 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6127 -instret:518 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6136 -instret:519 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6145 -instret:520 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6154 -instret:521 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6163 -instret:522 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6172 -instret:523 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6181 -instret:524 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6190 -instret:525 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6199 -instret:526 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6208 -instret:527 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6217 -instret:528 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6226 -instret:529 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6235 -instret:530 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6244 -instret:531 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6253 -instret:532 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6262 -instret:533 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6271 -instret:534 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6280 -instret:535 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6289 -instret:536 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6298 -instret:537 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6307 -instret:538 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6316 -instret:539 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6325 -instret:540 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6334 -instret:541 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6343 -instret:542 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6352 -instret:543 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6361 -instret:544 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6370 -instret:545 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6379 -instret:546 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6388 -instret:547 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6397 -instret:548 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6406 -instret:549 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6415 -instret:550 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6424 -instret:551 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6433 -instret:552 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6442 -instret:553 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6451 -instret:554 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6460 -instret:555 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6469 -instret:556 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6478 -instret:557 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6487 -instret:558 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6496 -instret:559 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6505 -instret:560 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6514 -instret:561 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6523 -instret:562 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6532 -instret:563 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6541 -instret:564 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6550 -instret:565 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6559 -instret:566 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6568 -instret:567 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6577 -instret:568 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6586 -instret:569 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6595 -instret:570 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6604 -instret:571 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6613 -instret:572 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6622 -instret:573 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6631 -instret:574 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6640 -instret:575 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6649 -instret:576 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6658 -instret:577 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6667 -instret:578 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6676 -instret:579 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6685 -instret:580 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6694 -instret:581 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6703 -instret:582 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6712 -instret:583 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6721 -instret:584 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6730 -instret:585 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6739 -instret:586 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6748 -instret:587 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6757 -instret:588 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6766 -instret:589 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6775 -instret:590 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6784 -instret:591 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6793 -instret:592 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6802 -instret:593 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6811 -instret:594 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6820 -instret:595 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6829 -instret:596 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6838 -instret:597 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6847 -instret:598 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6856 -instret:599 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6865 -instret:600 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6874 -instret:601 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6883 -instret:602 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6892 -instret:603 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6901 -instret:604 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6910 -instret:605 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6919 -instret:606 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6928 -instret:607 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6937 -instret:608 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6946 -instret:609 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6955 -instret:610 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6964 -instret:611 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6973 -instret:612 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6982 -instret:613 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 6991 -instret:614 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7000 -instret:615 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7009 -instret:616 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7018 -instret:617 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7027 -instret:618 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7036 -instret:619 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7045 -instret:620 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7054 -instret:621 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7063 -instret:622 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7072 -instret:623 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7081 -instret:624 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7090 -instret:625 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7099 -instret:626 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7108 -instret:627 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7117 -instret:628 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7126 -instret:629 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7135 -instret:630 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7144 -instret:631 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7153 -instret:632 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7162 -instret:633 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7171 -instret:634 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7180 -instret:635 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7189 -instret:636 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7198 -instret:637 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7207 -instret:638 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7216 -instret:639 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7225 -instret:640 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7234 -instret:641 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7243 -instret:642 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7252 -instret:643 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7261 -instret:644 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7270 -instret:645 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7279 -instret:646 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7288 -instret:647 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7297 -instret:648 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7306 -instret:649 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7315 -instret:650 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7324 -instret:651 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7333 -instret:652 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7342 -instret:653 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7351 -instret:654 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7360 -instret:655 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7369 -instret:656 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7378 -instret:657 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7387 -instret:658 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7396 -instret:659 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7405 -instret:660 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7414 -instret:661 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7423 -instret:662 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7432 -instret:663 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7441 -instret:664 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7450 -instret:665 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7459 -instret:666 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7468 -instret:667 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7477 -instret:668 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7486 -instret:669 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7495 -instret:670 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7504 -instret:671 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7513 -instret:672 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7522 -instret:673 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7531 -instret:674 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7540 -instret:675 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7549 -instret:676 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7558 -instret:677 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7567 -instret:678 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7576 -instret:679 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7585 -instret:680 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7594 -instret:681 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7603 -instret:682 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7612 -instret:683 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7621 -instret:684 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7630 -instret:685 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7639 -instret:686 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7648 -instret:687 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7657 -instret:688 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7666 -instret:689 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7675 -instret:690 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7684 -instret:691 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7693 -instret:692 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7702 -instret:693 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7711 -instret:694 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7720 -instret:695 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7729 -instret:696 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7738 -instret:697 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7747 -instret:698 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7756 -instret:699 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7765 -instret:700 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7774 -instret:701 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7783 -instret:702 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7792 -instret:703 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7801 -instret:704 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7810 -instret:705 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7819 -instret:706 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7828 -instret:707 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7837 -instret:708 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7846 -instret:709 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7855 -instret:710 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7864 -instret:711 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7873 -instret:712 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7882 -instret:713 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7891 -instret:714 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7900 -instret:715 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7909 -instret:716 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7918 -instret:717 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7927 -instret:718 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7936 -instret:719 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7945 -instret:720 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7954 -instret:721 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7963 -instret:722 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7972 -instret:723 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7981 -instret:724 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7990 -instret:725 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 7999 -instret:726 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8008 -instret:727 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8017 -instret:728 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8026 -instret:729 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8035 -instret:730 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8044 -instret:731 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8053 -instret:732 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8062 -instret:733 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8071 -instret:734 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8080 -instret:735 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8089 -instret:736 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8098 -instret:737 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8107 -instret:738 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8116 -instret:739 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8125 -instret:740 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8134 -instret:741 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8143 -instret:742 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8152 -instret:743 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8161 -instret:744 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8170 -instret:745 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8179 -instret:746 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8188 -instret:747 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8197 -instret:748 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8206 -instret:749 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8215 -instret:750 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8224 -instret:751 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8233 -instret:752 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8242 -instret:753 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8251 -instret:754 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8260 -instret:755 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8269 -instret:756 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8278 -instret:757 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8287 -instret:758 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8296 -instret:759 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8305 -instret:760 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8314 -instret:761 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8323 -instret:762 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8332 -instret:763 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8341 -instret:764 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8350 -instret:765 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8359 -instret:766 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8368 -instret:767 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8377 -instret:768 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8386 -instret:769 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8395 -instret:770 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8404 -instret:771 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8413 -instret:772 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8422 -instret:773 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8431 -instret:774 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8440 -instret:775 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8449 -instret:776 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8458 -instret:777 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8467 -instret:778 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8476 -instret:779 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8485 -instret:780 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8494 -instret:781 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8503 -instret:782 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8512 -instret:783 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8521 -instret:784 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8530 -instret:785 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8539 -instret:786 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8548 -instret:787 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8557 -instret:788 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8566 -instret:789 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8575 -instret:790 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8584 -instret:791 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8593 -instret:792 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8602 -instret:793 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8611 -instret:794 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8620 -instret:795 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8629 -instret:796 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8638 -instret:797 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8647 -instret:798 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8656 -instret:799 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8665 -instret:800 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8674 -instret:801 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8683 -instret:802 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8692 -instret:803 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8701 -instret:804 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8710 -instret:805 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8719 -instret:806 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8728 -instret:807 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8737 -instret:808 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8746 -instret:809 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8755 -instret:810 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8764 -instret:811 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8773 -instret:812 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8782 -instret:813 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8791 -instret:814 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8800 -instret:815 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8809 -instret:816 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8818 -instret:817 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8827 -instret:818 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8836 -instret:819 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8845 -instret:820 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8854 -instret:821 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8863 -instret:822 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8872 -instret:823 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8881 -instret:824 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8890 -instret:825 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8899 -instret:826 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8908 -instret:827 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8917 -instret:828 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8926 -instret:829 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8935 -instret:830 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8944 -instret:831 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8953 -instret:832 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8962 -instret:833 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8971 -instret:834 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8980 -instret:835 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8989 -instret:836 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 8998 -instret:837 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9007 -instret:838 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9016 -instret:839 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9025 -instret:840 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9034 -instret:841 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9043 -instret:842 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9052 -instret:843 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9061 -instret:844 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9070 -instret:845 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9079 -instret:846 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9088 -instret:847 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9097 -instret:848 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9106 -instret:849 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9115 -instret:850 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9124 -instret:851 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9133 -instret:852 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9142 -instret:853 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9151 -instret:854 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9160 -instret:855 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9169 -instret:856 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9178 -instret:857 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9187 -instret:858 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9196 -instret:859 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9205 -instret:860 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9214 -instret:861 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9223 -instret:862 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9232 -instret:863 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9241 -instret:864 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9250 -instret:865 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9259 -instret:866 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9268 -instret:867 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9277 -instret:868 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9286 -instret:869 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9295 -instret:870 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9304 -instret:871 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9313 -instret:872 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9322 -instret:873 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9331 -instret:874 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9340 -instret:875 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9349 -instret:876 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9358 -instret:877 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9367 -instret:878 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9376 -instret:879 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9385 -instret:880 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9394 -instret:881 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9403 -instret:882 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9412 -instret:883 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9421 -instret:884 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9430 -instret:885 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9439 -instret:886 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9448 -instret:887 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9457 -instret:888 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9466 -instret:889 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9475 -instret:890 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9484 -instret:891 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9493 -instret:892 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9502 -instret:893 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9511 -instret:894 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9520 -instret:895 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9529 -instret:896 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9538 -instret:897 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9547 -instret:898 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9556 -instret:899 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9565 -instret:900 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9574 -instret:901 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9583 -instret:902 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9592 -instret:903 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9601 -instret:904 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9610 -instret:905 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9619 -instret:906 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9628 -instret:907 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9637 -instret:908 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9646 -instret:909 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9655 -instret:910 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9664 -instret:911 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9673 -instret:912 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9682 -instret:913 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9691 -instret:914 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9700 -instret:915 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9709 -instret:916 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9718 -instret:917 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9727 -instret:918 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9736 -instret:919 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9745 -instret:920 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9754 -instret:921 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9763 -instret:922 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9772 -instret:923 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9781 -instret:924 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9790 -instret:925 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9799 -instret:926 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9808 -instret:927 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9817 -instret:928 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9826 -instret:929 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9835 -instret:930 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9844 -instret:931 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9853 -instret:932 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9862 -instret:933 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9871 -instret:934 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9880 -instret:935 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9889 -instret:936 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9898 -instret:937 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9907 -instret:938 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9916 -instret:939 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9925 -instret:940 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9934 -instret:941 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9943 -instret:942 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9952 -instret:943 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9961 -instret:944 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9970 -instret:945 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9979 -instret:946 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9988 -instret:947 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 9997 -instret:948 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10006 -instret:949 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10015 -instret:950 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10024 -instret:951 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10033 -instret:952 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10042 -instret:953 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10051 -instret:954 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10060 -instret:955 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10069 -instret:956 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10078 -instret:957 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10087 -instret:958 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10096 -instret:959 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10105 -instret:960 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10114 -instret:961 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10123 -instret:962 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10132 -instret:963 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10141 -instret:964 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10150 -instret:965 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10159 -instret:966 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10168 -instret:967 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10177 -instret:968 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10186 -instret:969 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10195 -instret:970 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10204 -instret:971 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10213 -instret:972 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10222 -instret:973 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10231 -instret:974 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10240 -instret:975 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10249 -instret:976 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10258 -instret:977 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10267 -instret:978 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10276 -instret:979 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10285 -instret:980 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10294 -instret:981 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10303 -instret:982 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10312 -instret:983 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10321 -instret:984 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10330 -instret:985 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10339 -instret:986 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10348 -instret:987 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10357 -instret:988 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10366 -instret:989 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10375 -instret:990 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10384 -instret:991 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10393 -instret:992 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10402 -instret:993 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10411 -instret:994 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10420 -instret:995 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10429 -instret:996 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10438 -instret:997 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10447 -instret:998 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10456 -instret:999 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10465 -instret:1000 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10474 -instret:1001 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10483 -instret:1002 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10492 -instret:1003 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10501 -instret:1004 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10510 -instret:1005 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10519 -instret:1006 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10528 -instret:1007 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10537 -instret:1008 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10546 -instret:1009 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10555 -instret:1010 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10564 -instret:1011 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10573 -instret:1012 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10582 -instret:1013 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10591 -instret:1014 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10600 -instret:1015 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10609 -instret:1016 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10618 -instret:1017 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10627 -instret:1018 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10636 -instret:1019 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10645 -instret:1020 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10654 -instret:1021 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10663 -instret:1022 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10672 -instret:1023 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10681 -instret:1024 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10690 -instret:1025 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10699 -instret:1026 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10708 -instret:1027 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10717 -instret:1028 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10726 -instret:1029 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10735 -instret:1030 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10744 -instret:1031 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10753 -instret:1032 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10762 -instret:1033 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10771 -instret:1034 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10780 -instret:1035 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10789 -instret:1036 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10798 -instret:1037 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10807 -instret:1038 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10816 -instret:1039 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10825 -instret:1040 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10834 -instret:1041 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10843 -instret:1042 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10852 -instret:1043 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10861 -instret:1044 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10870 -instret:1045 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10879 -instret:1046 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10888 -instret:1047 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10897 -instret:1048 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10906 -instret:1049 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10915 -instret:1050 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10924 -instret:1051 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10933 -instret:1052 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10942 -instret:1053 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10951 -instret:1054 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10960 -instret:1055 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10969 -instret:1056 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10978 -instret:1057 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10987 -instret:1058 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 10996 -instret:1059 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11005 -instret:1060 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11014 -instret:1061 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11023 -instret:1062 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11032 -instret:1063 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11041 -instret:1064 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11050 -instret:1065 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11059 -instret:1066 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11068 -instret:1067 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11077 -instret:1068 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11086 -instret:1069 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11095 -instret:1070 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11104 -instret:1071 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11113 -instret:1072 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11122 -instret:1073 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11131 -instret:1074 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11140 -instret:1075 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11149 -instret:1076 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11158 -instret:1077 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11167 -instret:1078 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11176 -instret:1079 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11185 -instret:1080 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11194 -instret:1081 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11203 -instret:1082 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11212 -instret:1083 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11221 -instret:1084 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11230 -instret:1085 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11239 -instret:1086 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11248 -instret:1087 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11257 -instret:1088 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11266 -instret:1089 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11275 -instret:1090 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11284 -instret:1091 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11293 -instret:1092 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11302 -instret:1093 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11311 -instret:1094 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11320 -instret:1095 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11329 -instret:1096 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11338 -instret:1097 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11347 -instret:1098 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11356 -instret:1099 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11365 -instret:1100 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11374 -instret:1101 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11383 -instret:1102 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11392 -instret:1103 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11401 -instret:1104 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11410 -instret:1105 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11419 -instret:1106 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11428 -instret:1107 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11437 -instret:1108 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11446 -instret:1109 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11455 -instret:1110 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11464 -instret:1111 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11473 -instret:1112 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11482 -instret:1113 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11491 -instret:1114 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11500 -instret:1115 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11509 -instret:1116 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11518 -instret:1117 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11527 -instret:1118 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11536 -instret:1119 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11545 -instret:1120 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11554 -instret:1121 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11563 -instret:1122 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11572 -instret:1123 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11581 -instret:1124 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11590 -instret:1125 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11599 -instret:1126 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11608 -instret:1127 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11617 -instret:1128 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11626 -instret:1129 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11635 -instret:1130 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11644 -instret:1131 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11653 -instret:1132 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11662 -instret:1133 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11671 -instret:1134 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11680 -instret:1135 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11689 -instret:1136 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11698 -instret:1137 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11707 -instret:1138 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11716 -instret:1139 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11725 -instret:1140 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11734 -instret:1141 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11743 -instret:1142 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11752 -instret:1143 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11761 -instret:1144 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11770 -instret:1145 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11779 -instret:1146 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11788 -instret:1147 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11797 -instret:1148 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11806 -instret:1149 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11815 -instret:1150 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11824 -instret:1151 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11833 -instret:1152 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11842 -instret:1153 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11851 -instret:1154 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11860 -instret:1155 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11869 -instret:1156 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11878 -instret:1157 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11887 -instret:1158 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11896 -instret:1159 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11905 -instret:1160 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11914 -instret:1161 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11923 -instret:1162 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11932 -instret:1163 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11941 -instret:1164 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11950 -instret:1165 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11959 -instret:1166 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11968 -instret:1167 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11977 -instret:1168 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11986 -instret:1169 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 11995 -instret:1170 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12004 -instret:1171 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12013 -instret:1172 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12022 -instret:1173 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12031 -instret:1174 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12040 -instret:1175 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12049 -instret:1176 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12058 -instret:1177 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12067 -instret:1178 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12076 -instret:1179 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12085 -instret:1180 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12094 -instret:1181 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12103 -instret:1182 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12112 -instret:1183 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12121 -instret:1184 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12130 -instret:1185 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12139 -instret:1186 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12148 -instret:1187 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12157 -instret:1188 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12166 -instret:1189 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12175 -instret:1190 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12184 -instret:1191 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12193 -instret:1192 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12202 -instret:1193 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12211 -instret:1194 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12220 -instret:1195 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12229 -instret:1196 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12238 -instret:1197 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12247 -instret:1198 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12256 -instret:1199 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12265 -instret:1200 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12274 -instret:1201 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12283 -instret:1202 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12292 -instret:1203 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12301 -instret:1204 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12310 -instret:1205 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12319 -instret:1206 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12328 -instret:1207 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12337 -instret:1208 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12346 -instret:1209 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12355 -instret:1210 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12364 -instret:1211 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12373 -instret:1212 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12382 -instret:1213 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12391 -instret:1214 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12400 -instret:1215 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12409 -instret:1216 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12418 -instret:1217 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12427 -instret:1218 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12436 -instret:1219 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12445 -instret:1220 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12454 -instret:1221 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12463 -instret:1222 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12472 -instret:1223 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12481 -instret:1224 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12490 -instret:1225 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12499 -instret:1226 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12508 -instret:1227 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12517 -instret:1228 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12526 -instret:1229 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12535 -instret:1230 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12544 -instret:1231 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12553 -instret:1232 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12562 -instret:1233 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12571 -instret:1234 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12580 -instret:1235 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12589 -instret:1236 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12598 -instret:1237 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12607 -instret:1238 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12616 -instret:1239 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12625 -instret:1240 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12634 -instret:1241 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12643 -instret:1242 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12652 -instret:1243 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12661 -instret:1244 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12670 -instret:1245 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12679 -instret:1246 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12688 -instret:1247 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12697 -instret:1248 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12706 -instret:1249 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12715 -instret:1250 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12724 -instret:1251 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12733 -instret:1252 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12742 -instret:1253 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12751 -instret:1254 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12760 -instret:1255 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12769 -instret:1256 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12778 -instret:1257 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12787 -instret:1258 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12796 -instret:1259 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12805 -instret:1260 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12814 -instret:1261 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12823 -instret:1262 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12832 -instret:1263 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12841 -instret:1264 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12850 -instret:1265 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12859 -instret:1266 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12868 -instret:1267 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12877 -instret:1268 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12886 -instret:1269 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12895 -instret:1270 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12904 -instret:1271 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12913 -instret:1272 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12922 -instret:1273 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12931 -instret:1274 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12940 -instret:1275 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12949 -instret:1276 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12958 -instret:1277 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12967 -instret:1278 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12976 -instret:1279 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12985 -instret:1280 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 12994 -instret:1281 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13003 -instret:1282 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13012 -instret:1283 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13021 -instret:1284 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13030 -instret:1285 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13039 -instret:1286 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13048 -instret:1287 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13057 -instret:1288 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13066 -instret:1289 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13075 -instret:1290 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13084 -instret:1291 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13093 -instret:1292 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13102 -instret:1293 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13111 -instret:1294 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13120 -instret:1295 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13129 -instret:1296 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13138 -instret:1297 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13147 -instret:1298 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13156 -instret:1299 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13165 -instret:1300 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13174 -instret:1301 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13183 -instret:1302 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13192 -instret:1303 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13201 -instret:1304 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13210 -instret:1305 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13219 -instret:1306 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13228 -instret:1307 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13237 -instret:1308 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13246 -instret:1309 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13255 -instret:1310 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13264 -instret:1311 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13273 -instret:1312 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13282 -instret:1313 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13291 -instret:1314 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13300 -instret:1315 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13309 -instret:1316 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13318 -instret:1317 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13327 -instret:1318 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13336 -instret:1319 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13345 -instret:1320 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13354 -instret:1321 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13363 -instret:1322 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13372 -instret:1323 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13381 -instret:1324 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13390 -instret:1325 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13399 -instret:1326 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13408 -instret:1327 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13417 -instret:1328 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13426 -instret:1329 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13435 -instret:1330 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13444 -instret:1331 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13453 -instret:1332 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13462 -instret:1333 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13471 -instret:1334 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13480 -instret:1335 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13489 -instret:1336 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13498 -instret:1337 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13507 -instret:1338 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13516 -instret:1339 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13525 -instret:1340 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13534 -instret:1341 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13543 -instret:1342 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13552 -instret:1343 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13561 -instret:1344 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13570 -instret:1345 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13579 -instret:1346 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13588 -instret:1347 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13597 -instret:1348 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13606 -instret:1349 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13615 -instret:1350 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13624 -instret:1351 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13633 -instret:1352 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13642 -instret:1353 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13651 -instret:1354 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13660 -instret:1355 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13669 -instret:1356 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13678 -instret:1357 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13687 -instret:1358 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13696 -instret:1359 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13705 -instret:1360 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13714 -instret:1361 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13723 -instret:1362 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13732 -instret:1363 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13741 -instret:1364 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13750 -instret:1365 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13759 -instret:1366 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13768 -instret:1367 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13777 -instret:1368 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13786 -instret:1369 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13795 -instret:1370 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13804 -instret:1371 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13813 -instret:1372 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13822 -instret:1373 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13831 -instret:1374 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13840 -instret:1375 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13849 -instret:1376 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13858 -instret:1377 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13867 -instret:1378 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13876 -instret:1379 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13885 -instret:1380 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13894 -instret:1381 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13903 -instret:1382 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13912 -instret:1383 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13921 -instret:1384 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13930 -instret:1385 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13939 -instret:1386 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13948 -instret:1387 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13957 -instret:1388 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13966 -instret:1389 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13975 -instret:1390 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13984 -instret:1391 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 13993 -instret:1392 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14002 -instret:1393 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14011 -instret:1394 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14020 -instret:1395 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14029 -instret:1396 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14038 -instret:1397 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14047 -instret:1398 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14056 -instret:1399 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14065 -instret:1400 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14074 -instret:1401 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14083 -instret:1402 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14092 -instret:1403 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14101 -instret:1404 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14110 -instret:1405 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14119 -instret:1406 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14128 -instret:1407 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14137 -instret:1408 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14146 -instret:1409 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14155 -instret:1410 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14164 -instret:1411 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14173 -instret:1412 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14182 -instret:1413 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14191 -instret:1414 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14200 -instret:1415 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14209 -instret:1416 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14218 -instret:1417 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14227 -instret:1418 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14236 -instret:1419 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14245 -instret:1420 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14254 -instret:1421 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14263 -instret:1422 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14272 -instret:1423 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14281 -instret:1424 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14290 -instret:1425 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14299 -instret:1426 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14308 -instret:1427 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14317 -instret:1428 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14326 -instret:1429 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14335 -instret:1430 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14344 -instret:1431 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14353 -instret:1432 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14362 -instret:1433 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14371 -instret:1434 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14380 -instret:1435 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14389 -instret:1436 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14398 -instret:1437 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14407 -instret:1438 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14416 -instret:1439 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14425 -instret:1440 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14434 -instret:1441 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14443 -instret:1442 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14452 -instret:1443 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14461 -instret:1444 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14470 -instret:1445 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14479 -instret:1446 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14488 -instret:1447 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14497 -instret:1448 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14506 -instret:1449 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14515 -instret:1450 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14524 -instret:1451 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14533 -instret:1452 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14542 -instret:1453 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14551 -instret:1454 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14560 -instret:1455 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14569 -instret:1456 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14578 -instret:1457 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14587 -instret:1458 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14596 -instret:1459 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14605 -instret:1460 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14614 -instret:1461 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14623 -instret:1462 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14632 -instret:1463 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14641 -instret:1464 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14650 -instret:1465 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14659 -instret:1466 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14668 -instret:1467 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14677 -instret:1468 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14686 -instret:1469 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14695 -instret:1470 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14704 -instret:1471 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14713 -instret:1472 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14722 -instret:1473 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14731 -instret:1474 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14740 -instret:1475 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14749 -instret:1476 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14758 -instret:1477 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14767 -instret:1478 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14776 -instret:1479 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14785 -instret:1480 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14794 -instret:1481 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14803 -instret:1482 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14812 -instret:1483 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14821 -instret:1484 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14830 -instret:1485 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14839 -instret:1486 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14848 -instret:1487 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14857 -instret:1488 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14866 -instret:1489 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14875 -instret:1490 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14884 -instret:1491 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14893 -instret:1492 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14902 -instret:1493 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14911 -instret:1494 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14920 -instret:1495 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14929 -instret:1496 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14938 -instret:1497 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14947 -instret:1498 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14956 -instret:1499 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14965 -instret:1500 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14974 -instret:1501 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14983 -instret:1502 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 14992 -instret:1503 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15001 -instret:1504 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15010 -instret:1505 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15019 -instret:1506 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15028 -instret:1507 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15037 -instret:1508 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15046 -instret:1509 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15055 -instret:1510 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15064 -instret:1511 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15073 -instret:1512 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15082 -instret:1513 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15091 -instret:1514 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15100 -instret:1515 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15109 -instret:1516 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15118 -instret:1517 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15127 -instret:1518 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15136 -instret:1519 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15145 -instret:1520 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15154 -instret:1521 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15163 -instret:1522 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15172 -instret:1523 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15181 -instret:1524 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15190 -instret:1525 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15199 -instret:1526 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15208 -instret:1527 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15217 -instret:1528 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15226 -instret:1529 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15235 -instret:1530 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15244 -instret:1531 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15253 -instret:1532 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15262 -instret:1533 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15271 -instret:1534 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15280 -instret:1535 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15289 -instret:1536 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15298 -instret:1537 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15307 -instret:1538 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15316 -instret:1539 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15325 -instret:1540 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15334 -instret:1541 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15343 -instret:1542 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15352 -instret:1543 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15361 -instret:1544 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15370 -instret:1545 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15379 -instret:1546 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15388 -instret:1547 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15397 -instret:1548 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15406 -instret:1549 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15415 -instret:1550 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15424 -instret:1551 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15433 -instret:1552 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15442 -instret:1553 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15451 -instret:1554 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15460 -instret:1555 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15469 -instret:1556 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15478 -instret:1557 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15487 -instret:1558 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15496 -instret:1559 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15505 -instret:1560 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15514 -instret:1561 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15523 -instret:1562 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15532 -instret:1563 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15541 -instret:1564 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15550 -instret:1565 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15559 -instret:1566 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15568 -instret:1567 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15577 -instret:1568 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15586 -instret:1569 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15595 -instret:1570 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15604 -instret:1571 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15613 -instret:1572 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15622 -instret:1573 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15631 -instret:1574 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15640 -instret:1575 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15649 -instret:1576 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15658 -instret:1577 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15667 -instret:1578 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15676 -instret:1579 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15685 -instret:1580 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15694 -instret:1581 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15703 -instret:1582 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15712 -instret:1583 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15721 -instret:1584 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15730 -instret:1585 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15739 -instret:1586 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15748 -instret:1587 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15757 -instret:1588 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15766 -instret:1589 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15775 -instret:1590 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15784 -instret:1591 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15793 -instret:1592 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15802 -instret:1593 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15811 -instret:1594 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15820 -instret:1595 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15829 -instret:1596 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15838 -instret:1597 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15847 -instret:1598 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15856 -instret:1599 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15865 -instret:1600 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15874 -instret:1601 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15883 -instret:1602 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15892 -instret:1603 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15901 -instret:1604 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15910 -instret:1605 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15919 -instret:1606 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15928 -instret:1607 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15937 -instret:1608 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15946 -instret:1609 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15955 -instret:1610 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15964 -instret:1611 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15973 -instret:1612 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15982 -instret:1613 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 15991 -instret:1614 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16000 -instret:1615 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16009 -instret:1616 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16018 -instret:1617 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16027 -instret:1618 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16036 -instret:1619 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16045 -instret:1620 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16054 -instret:1621 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16063 -instret:1622 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16072 -instret:1623 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16081 -instret:1624 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16090 -instret:1625 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16099 -instret:1626 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16108 -instret:1627 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16117 -instret:1628 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16126 -instret:1629 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16135 -instret:1630 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16144 -instret:1631 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16153 -instret:1632 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16162 -instret:1633 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16171 -instret:1634 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16180 -instret:1635 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16189 -instret:1636 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16198 -instret:1637 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16207 -instret:1638 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16216 -instret:1639 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16225 -instret:1640 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16234 -instret:1641 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16243 -instret:1642 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16252 -instret:1643 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16261 -instret:1644 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16270 -instret:1645 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16279 -instret:1646 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16288 -instret:1647 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16297 -instret:1648 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16306 -instret:1649 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16315 -instret:1650 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16324 -instret:1651 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16333 -instret:1652 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16342 -instret:1653 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16351 -instret:1654 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16360 -instret:1655 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16369 -instret:1656 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16378 -instret:1657 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16387 -instret:1658 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16396 -instret:1659 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16405 -instret:1660 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16414 -instret:1661 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16423 -instret:1662 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16432 -instret:1663 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16441 -instret:1664 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16450 -instret:1665 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16459 -instret:1666 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16468 -instret:1667 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16477 -instret:1668 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16486 -instret:1669 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16495 -instret:1670 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16504 -instret:1671 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16513 -instret:1672 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16522 -instret:1673 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16531 -instret:1674 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16540 -instret:1675 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16549 -instret:1676 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16558 -instret:1677 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16567 -instret:1678 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16576 -instret:1679 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16585 -instret:1680 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16594 -instret:1681 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16603 -instret:1682 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16612 -instret:1683 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16621 -instret:1684 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16630 -instret:1685 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16639 -instret:1686 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16648 -instret:1687 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16657 -instret:1688 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16666 -instret:1689 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16675 -instret:1690 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16684 -instret:1691 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16693 -instret:1692 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16702 -instret:1693 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16711 -instret:1694 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16720 -instret:1695 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16729 -instret:1696 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16738 -instret:1697 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16747 -instret:1698 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16756 -instret:1699 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16765 -instret:1700 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16774 -instret:1701 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16783 -instret:1702 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16792 -instret:1703 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16801 -instret:1704 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16810 -instret:1705 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16819 -instret:1706 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16828 -instret:1707 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16837 -instret:1708 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16846 -instret:1709 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16855 -instret:1710 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16864 -instret:1711 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16873 -instret:1712 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16882 -instret:1713 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16891 -instret:1714 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16900 -instret:1715 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16909 -instret:1716 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16918 -instret:1717 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16927 -instret:1718 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16936 -instret:1719 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16945 -instret:1720 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16954 -instret:1721 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16963 -instret:1722 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16972 -instret:1723 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16981 -instret:1724 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16990 -instret:1725 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 16999 -instret:1726 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17008 -instret:1727 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17017 -instret:1728 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17026 -instret:1729 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17035 -instret:1730 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17044 -instret:1731 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17053 -instret:1732 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17062 -instret:1733 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17071 -instret:1734 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17080 -instret:1735 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17089 -instret:1736 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17098 -instret:1737 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17107 -instret:1738 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17116 -instret:1739 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17125 -instret:1740 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17134 -instret:1741 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17143 -instret:1742 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17152 -instret:1743 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17161 -instret:1744 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17170 -instret:1745 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17179 -instret:1746 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17188 -instret:1747 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17197 -instret:1748 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17206 -instret:1749 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17215 -instret:1750 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17224 -instret:1751 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17233 -instret:1752 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17242 -instret:1753 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17251 -instret:1754 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17260 -instret:1755 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17269 -instret:1756 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17278 -instret:1757 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17287 -instret:1758 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17296 -instret:1759 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17305 -instret:1760 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17314 -instret:1761 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17323 -instret:1762 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17332 -instret:1763 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17341 -instret:1764 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17350 -instret:1765 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17359 -instret:1766 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17368 -instret:1767 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17377 -instret:1768 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17386 -instret:1769 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17395 -instret:1770 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17404 -instret:1771 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17413 -instret:1772 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17422 -instret:1773 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17431 -instret:1774 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17440 -instret:1775 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17449 -instret:1776 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17458 -instret:1777 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17467 -instret:1778 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17476 -instret:1779 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17485 -instret:1780 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17494 -instret:1781 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17503 -instret:1782 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17512 -instret:1783 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17521 -instret:1784 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17530 -instret:1785 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17539 -instret:1786 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17548 -instret:1787 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17557 -instret:1788 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17566 -instret:1789 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17575 -instret:1790 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17584 -instret:1791 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17593 -instret:1792 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17602 -instret:1793 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17611 -instret:1794 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17620 -instret:1795 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17629 -instret:1796 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17638 -instret:1797 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17647 -instret:1798 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17656 -instret:1799 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17665 -instret:1800 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17674 -instret:1801 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17683 -instret:1802 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17692 -instret:1803 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17701 -instret:1804 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17710 -instret:1805 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17719 -instret:1806 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17728 -instret:1807 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17737 -instret:1808 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17746 -instret:1809 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17755 -instret:1810 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17764 -instret:1811 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17773 -instret:1812 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17782 -instret:1813 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17791 -instret:1814 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17800 -instret:1815 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17809 -instret:1816 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17818 -instret:1817 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17827 -instret:1818 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17836 -instret:1819 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17845 -instret:1820 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17854 -instret:1821 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17863 -instret:1822 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17872 -instret:1823 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17881 -instret:1824 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17890 -instret:1825 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17899 -instret:1826 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17908 -instret:1827 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17917 -instret:1828 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17926 -instret:1829 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17935 -instret:1830 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17944 -instret:1831 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17953 -instret:1832 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17962 -instret:1833 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17971 -instret:1834 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17980 -instret:1835 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17989 -instret:1836 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 17998 -instret:1837 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18007 -instret:1838 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18016 -instret:1839 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18025 -instret:1840 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18034 -instret:1841 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18043 -instret:1842 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18052 -instret:1843 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18061 -instret:1844 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18070 -instret:1845 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18079 -instret:1846 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18088 -instret:1847 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18097 -instret:1848 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18106 -instret:1849 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18115 -instret:1850 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18124 -instret:1851 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18133 -instret:1852 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18142 -instret:1853 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18151 -instret:1854 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18160 -instret:1855 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18169 -instret:1856 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18178 -instret:1857 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18187 -instret:1858 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18196 -instret:1859 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18205 -instret:1860 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18214 -instret:1861 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18223 -instret:1862 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18232 -instret:1863 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18241 -instret:1864 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18250 -instret:1865 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18259 -instret:1866 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18268 -instret:1867 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18277 -instret:1868 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18286 -instret:1869 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18295 -instret:1870 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18304 -instret:1871 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18313 -instret:1872 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18322 -instret:1873 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18331 -instret:1874 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18340 -instret:1875 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18349 -instret:1876 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18358 -instret:1877 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18367 -instret:1878 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18376 -instret:1879 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18385 -instret:1880 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18394 -instret:1881 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18403 -instret:1882 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18412 -instret:1883 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18421 -instret:1884 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18430 -instret:1885 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18439 -instret:1886 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18448 -instret:1887 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18457 -instret:1888 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18466 -instret:1889 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18475 -instret:1890 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18484 -instret:1891 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18493 -instret:1892 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18502 -instret:1893 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18511 -instret:1894 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18520 -instret:1895 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18529 -instret:1896 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18538 -instret:1897 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18547 -instret:1898 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18556 -instret:1899 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18565 -instret:1900 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18574 -instret:1901 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18583 -instret:1902 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18592 -instret:1903 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18601 -instret:1904 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18610 -instret:1905 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18619 -instret:1906 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18628 -instret:1907 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18637 -instret:1908 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18646 -instret:1909 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18655 -instret:1910 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18664 -instret:1911 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18673 -instret:1912 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18682 -instret:1913 PC:0x1ffff0000000000000000000000000000 instr:0x00000000 iType:Unsupported [doCommitTrap] 18691 +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h10}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00080000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h4c, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h06, t: 'h0c }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Auipcc, execFunc: tagged Alu Add, capFunc: tagged CapModify tagged SpecialRW tagged TCC , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Valid scrAddrPCC, imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h4b, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h05, t: 'h0b }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Sll, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h0000000c }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h4d, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h4e, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h07, t: 'h0e }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Addw, capFunc: tagged Other , capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000001 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h4c, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h4d, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h06, t: 'h0d }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000008 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h50, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h08, t: 'h10 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Cap, execFunc: tagged Other , capFunc: tagged CapModify tagged SetAddr Src1Addr, capChecks: CapChecks {rn1 'h05, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h4e, src2: tagged Valid 'h4e, src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h4f, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h07, t: 'h0f }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: False, src3: True, dst: True } } +calling cycle + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Cap, execFunc: tagged Other , capFunc: tagged CapModify tagged SetBounds SetBoundsRounding, capChecks: CapChecks {rn1 'h02, rn2 'h07}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h4f, src2: tagged Valid 'h50, src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h51, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h08, t: 'h11 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: False, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: MemRSData { mem_func: Ld, imm: 'h00000000, ldstq_tag: tagged Ld 'h01, cap_checks: CapChecks {rn1 'h02, rn2 'h02, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h51, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h52, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h09, t: 'h12 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } +calling cycle +[RFile] wr_ 0: r 4c <= 0000000000020000000000001fffff44000000 +[RFile] wr_ 1: r 4b <= 40000000200000050000ffff1fffff44000000 + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Sll, capFunc: tagged Other , capChecks: CapChecks {rn1 'h06, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000001 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h53, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h54, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h0a, t: 'h14 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h40003000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h53, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h09, t: 'h13 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle +[RFile] wr_ 1: r 4d <= 0000000000020000400000001fffff44000000 +instret:11 PC:0x1ffff0000000000000000000080000014 instr:0x020002db iType:Auipcc [doCommitNormalInst [0]] 1709 +instret:12 PC:0x1ffff0000000000000000000080000018 instr:0x000802b7 iType:Alu [doCommitNormalInst [1]] 1709 + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Cap, execFunc: tagged Other , capFunc: tagged CapModify tagged SetAddr Src1Addr, capChecks: CapChecks {rn1 'h06, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h54, src2: tagged Valid 'h52, src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h55, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h0a, t: 'h15 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: False, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000008 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h56, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h0b, t: 'h16 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle +[RFile] wr_ 0: r 4e <= 0000000020000400000000001fffff44000000 + 17100 : [doDispatchMem] ToReservationStation { data: MemRSData { mem_func: Ld, imm: 'h00000000, ldstq_tag: tagged Ld 'h01, cap_checks: CapChecks {rn1 'h02, rn2 'h02, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h51, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h52, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h09, t: 'h12 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +instret:13 PC:0x1ffff000000000000000000008000001c instr:0x00002285 iType:Alu [doCommitNormalInst [0]] 1710 + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Cap, execFunc: tagged Other , capFunc: tagged CapModify tagged SetBounds SetBoundsRounding, capChecks: CapChecks {rn1 'h0b, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h55, src2: tagged Valid 'h56, src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h57, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h0b, t: 'h17 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: False, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: MemRSData { mem_func: Ld, imm: 'h00000000, ldstq_tag: tagged Ld 'h02, cap_checks: CapChecks {rn1 'h0b, rn2 'h0b, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h57, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h58, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h0c, t: 'h18 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } +calling cycle +[RFile] wr_ 0: r 50 <= 0000000000000002000000001fffff44000000 +[RFile] wr_ 1: r 4f <= 0000000020000400000000001fffff44000000 + 17110 : [doRegReadMem] ToSpecFifo { data: MemDispatchToRegRead { mem_func: Ld, imm: 'h00000000, regs: PhyRegs { src1: tagged Valid 'h51, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h52, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h09, t: 'h12 }, ldstq_tag: tagged Ld 'h01, cap_checks: CapChecks {rn1 'h02, rn2 'h02, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, spec_bits: 'h000 } +instret:14 PC:0x1ffff000000000000000000008000001e instr:0x000002b2 iType:Alu [doCommitNormalInst [0]] 1711 + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Sll, capFunc: tagged Other , capChecks: CapChecks {rn1 'h06, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000003 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h59, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h5a, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h0d, t: 'h1a }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h10001000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h59, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h0c, t: 'h19 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle +[RFile] wr_ 1: r 51 <= 0000000020000400100000001ffff804021000 + 17120 : [doExeMem] ToSpecFifo { data: MemRegReadToExe { mem_func: Ld, imm: 'h00000000, tag: InstTag { way: 'h0, ptr: 'h09, t: 'h12 }, ldstq_tag: tagged Ld 'h01, rVal1: v: True a: 'h0000000080001000 o: 'h0000000080001000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, rVal2: v: False a: 'h0000000000000000 o: 'h0000000000000000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h0000 hp: 'h000 ot: 'h3ffff f: 'h0, vaddr: v: True a: 'h0000000080001000 o: 'h0000000080001000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, cap_checks: CapChecks {rn1 'h02, rn2 'h02, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, origBE: tagged DataMemAccess , shiftBEData: }, spec_bits: 'h000 } +DTLB top.soc_top.corew_proc.core_0.coreFix_memExe_dTlb req (bare): TlbReq { addr: 'h0000000080001000, write: False, capStore: False, potentialCapLoad: False } +instret:15 PC:0x1ffff0000000000000000000080000020 instr:0x2052815b iType:Cap [doCommitNormalInst [0]] 1712 +instret:16 PC:0x1ffff0000000000000000000080000024 instr:0x000043a1 iType:Alu [doCommitNormalInst [1]] 1712 + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000008 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h5c, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h0e, t: 'h1c }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Cap, execFunc: tagged Other , capFunc: tagged CapModify tagged SetAddr Src1Addr, capChecks: CapChecks {rn1 'h06, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h5a, src2: tagged Valid 'h58, src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h5b, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h0d, t: 'h1b }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: False, src3: True, dst: True } } +calling cycle +[RFile] wr_ 1: r 53 <= 0000000010000c00000000001fffff44000000 + 17130 : [doFinishMem] DTlbResp { resp: <'h0000000080001000,tagged Invalid ,True>, inst: MemExeToFinish { mem_func: Ld, tag: InstTag { way: 'h0, ptr: 'h09, t: 'h12 }, ldstq_tag: tagged Ld 'h01, shiftedBE: tagged DataMemAccess , vaddr: v: True a: 'h0000000080001000 o: 'h0000000080001000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, misaligned: False, capStore: False, allowCapLoad: False, capException: tagged Invalid , check: tagged Valid BoundsCheck { authority_base: 'h0000000000000000, authority_top: 'h10000000000000000, authority_idx: 'h21, check_low: 'h0000000080001000, check_high: 'h00000000080001008, check_inclusive: True } }, specBits: 'h000 } + 17130 : [doIssueLd] fromIssueQ: False ; LSQIssueLdInfo { tag: 'h01, paddr: 'h0000000080001000, shiftedBE: tagged DataMemAccess , pcHash: 'h802a } ; SBSearchRes { matchIdx: tagged Invalid , forwardData: tagged Invalid } ; tagged ToCache + 17130 L1 top.soc_top.corew_proc.core_0 cRqTransfer_new: 'h0 ; ProcRq { id: 'h01, addr: 'h0000000080001000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h802a } +instret:17 PC:0x1ffff0000000000000000000080000026 instr:0x1071015b iType:Cap [doCommitNormalInst [0]] 1713 + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Cap, execFunc: tagged Other , capFunc: tagged CapModify tagged SetBounds SetBoundsRounding, capChecks: CapChecks {rn1 'h0c, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h5b, src2: tagged Valid 'h5c, src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h5d, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h0e, t: 'h1d }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: False, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: MemRSData { mem_func: Ld, imm: 'h00000000, ldstq_tag: tagged Ld 'h03, cap_checks: CapChecks {rn1 'h0c, rn2 'h0c, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h5d, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h5e, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h0f, t: 'h1e }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } +calling cycle +[RFile] wr_ 0: r 54 <= 0000000020001800000000001fffff44000000 +[RFile] wr_ 1: r 56 <= 0000000000000002000000001fffff44000000 + 17140 L1 top.soc_top.corew_proc.core_0 pipelineResp: PipeOut { cmd: tagged L1CRq 'h0, way: 'h0, pRqMiss: False, ram: RamData { info: CacheInfo { tag: 'h0000000000000, cs: I, dir: , owner: tagged Invalid , other: }, line: CLine { tag: , data: > } }, repInfo: , setAuxData: tagged Invalid } + 17140 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: 'h0 ; ProcRq { id: 'h01, addr: 'h0000000080001000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h802a } + 17140 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: no owner, miss no replace + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Addw, capFunc: tagged Other , capChecks: CapChecks {rn1 'h06, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000009 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h5f, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h60, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h10, t: 'h20 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h10}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00080000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h5f, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h0f, t: 'h1f }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle +[RFile] wr_ 1: r 59 <= 0000000004000400000000001fffff44000000 + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Cap, execFunc: tagged Other , capFunc: tagged CapModify tagged SetAddr Src1Addr, capChecks: CapChecks {rn1 'h06, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h61, src2: tagged Valid 'h5e, src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h62, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h11, t: 'h22 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: False, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Sll, capFunc: tagged Other , capChecks: CapChecks {rn1 'h06, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h0000000c }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h60, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h61, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h10, t: 'h21 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } +calling cycle + 17160 L1 top.soc_top.corew_proc.core_0 sendRqToP: 'h0 ; ProcRq { id: 'h01, addr: 'h0000000080001000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h802a } ; L1CRqSlot { way: 'h0, cs: I, repTag: 'h2aaaaaaaaaaaa, waitP: True } ; CRqMsg { addr: 'h0000000080001000, fromState: I, toState: E, canUpToE: True, id: 'h0, child: , isPrefetchRq: False } +[RFile] wr_ 0: r 5a <= 0000000020002000000000001fffff44000000 + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Cap, execFunc: tagged Other , capFunc: tagged CapModify tagged SetBounds SetBoundsRounding, capChecks: CapChecks {rn1 'h0d, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h62, src2: tagged Valid 'h63, src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h64, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h12, t: 'h24 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: False, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000008 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h63, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h11, t: 'h23 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle +[RFile] wr_ 0: r 5c <= 0000000000000002000000001fffff44000000 + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h40001000 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h66, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h13, t: 'h26 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: MemRSData { mem_func: Ld, imm: 'h00000000, ldstq_tag: tagged Ld 'h04, cap_checks: CapChecks {rn1 'h0d, rn2 'h0d, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h64, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h65, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h12, t: 'h25 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } +calling cycle +[RFile] wr_ 1: r 5f <= 0000000000020000000000001fffff44000000 + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Cap, execFunc: tagged Other , capFunc: tagged CapModify tagged SetAddr Src1Addr, capChecks: CapChecks {rn1 'h06, rn2 'h05}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h67, src2: tagged Valid 'h65, src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h68, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h14, t: 'h28 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: False, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Sll, capFunc: tagged Other , capChecks: CapChecks {rn1 'h06, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000001 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h66, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h67, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h13, t: 'h27 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } +calling cycle +[RFile] wr_ 0: r 60 <= 0000000000020002400000001fffff44000000 + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Cap, execFunc: tagged Other , capFunc: tagged CapModify tagged SetBounds SetBoundsRounding, capChecks: CapChecks {rn1 'h0e, rn2 'h06}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Invalid }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h68, src2: tagged Valid 'h69, src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h6a, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h15, t: 'h2a }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: False, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000008 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h69, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h14, t: 'h29 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle +[RFile] wr_ 1: r 61 <= 0000000020002400000000001fffff44000000 + [mkReservationStationRow::_write] ToReservationStation { data: AluRSData { dInst: DecodedInst { iType: Alu, execFunc: tagged Alu Add, capFunc: tagged Other , capChecks: CapChecks {rn1 'h00, rn2 'h00}, csr: tagged Invalid , scr: tagged Invalid , imm: tagged Valid 'h00000001 }, trainInfo: PredTrainInfo { dir: TourTrainInfo { globalHist: 'haaa, localHist: 'h2aa, globalTaken: True, localTaken: False, pcIndex: 'h2aa }, ras: 'hf } }, regs: PhyRegs { src1: tagged Valid 'h00, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h6c, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h16, t: 'h2c }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } + [mkReservationStationRow::_write] ToReservationStation { data: MemRSData { mem_func: Ld, imm: 'h00000000, ldstq_tag: tagged Ld 'h05, cap_checks: CapChecks {rn1 'h0e, rn2 'h0e, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h6a, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h6b, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h15, t: 'h2b }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: False, src2: True, src3: True, dst: True } } +calling cycle +[RFile] wr_ 1: r 63 <= 0000000000000002000000001fffff44000000 +calling cycle +[RFile] wr_ 1: r 66 <= 0000000010000400000000001fffff44000000 +calling cycle +[RFile] wr_ 1: r 67 <= 0000000020000800000000001fffff44000000 +calling cycle +[RFile] wr_ 1: r 69 <= 0000000000000002000000001fffff44000000 +calling cycle +[RFile] wr_ 1: r 6c <= 0000000000000000400000001fffff44000000 +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle + 17640 L1 top.soc_top.corew_proc.core_0 pRsTransfer: PRsMsg { addr: 'h0000000080001000, toState: E, child: , data: tagged Valid CLine { tag: , data: > }, id: 'h0 } +calling cycle + 17650 L1 top.soc_top.corew_proc.core_0 pipelineResp: PipeOut { cmd: tagged L1PRs , way: 'h0, pRqMiss: False, ram: RamData { info: CacheInfo { tag: 'h0000000040000, cs: E, dir: , owner: tagged Valid 'h0, other: }, line: CLine { tag: , data: > } }, repInfo: , setAuxData: tagged Invalid } + 17650 L1 top.soc_top.corew_proc.core_0 pipelineResp: pRs: + 17650 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: 'h0 ; ProcRq { id: 'h01, addr: 'h0000000080001000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h802a } + 17650 : [Ld resp] 'h01; TaggedData { tag: False, data: }; LSQHitInfo { waitWPResp: False, dst: tagged Valid PhyDst { indx: 'h52, isFpuReg: False } } + 17650 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: update ram: CLine { tag: , data: > } ; tagged Invalid +calling cycle + 17660 : [doRespLdMem] 'h01; TaggedData { tag: False, data: }; LSQRespLdResult { wrongPath: False, dst: tagged Valid PhyDst { indx: 'h52, isFpuReg: False }, allowCap: False, data: TaggedData { tag: False, data: } } +[RFile] wr_ 3: r 52 <= 2aaaaaaaaaaaaaaa8aaa00001fffff44000000 +calling cycle +[doDeqLdQ_Ld] LdQDeqEntry { tag: 'h01, instTag: InstTag { way: 'h0, ptr: 'h09, t: 'h12 }, memFunc: Ld, byteOrTagEn: tagged DataMemAccess , unsignedLd: False, acq: False, rel: False, dst: tagged Valid PhyDst { indx: 'h52, isFpuReg: False }, paddr: 'h0000000080001000, isMMIO: False, shiftedBE: tagged DataMemAccess , fault: tagged Invalid , allowCap: False, killed: tagged Invalid } +calling cycle + 17680 : [doDispatchMem] ToReservationStation { data: MemRSData { mem_func: Ld, imm: 'h00000000, ldstq_tag: tagged Ld 'h02, cap_checks: CapChecks {rn1 'h0b, rn2 'h0b, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h57, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h58, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h0c, t: 'h18 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +instret:18 PC:0x1ffff000000000000000000008000002a instr:0x00006282 iType:Ld [doCommitNormalInst [0]] 1768 +instret:19 PC:0x1ffff000000000000000000008000002c instr:0x40003337 iType:Alu [doCommitNormalInst [1]] 1768 +calling cycle +[RFile] wr_ 0: r 55 <= 0000000020001800000000001fffff44000000 + 17690 : [doRegReadMem] ToSpecFifo { data: MemDispatchToRegRead { mem_func: Ld, imm: 'h00000000, regs: PhyRegs { src1: tagged Valid 'h57, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h58, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h0c, t: 'h18 }, ldstq_tag: tagged Ld 'h02, cap_checks: CapChecks {rn1 'h0b, rn2 'h0b, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, spec_bits: 'h000 } +instret:20 PC:0x1ffff0000000000000000000080000030 instr:0x00000306 iType:Alu [doCommitNormalInst [0]] 1769 +calling cycle +[RFile] wr_ 0: r 57 <= 0000000020001800200000001ffff808022000 + 17700 : [doExeMem] ToSpecFifo { data: MemRegReadToExe { mem_func: Ld, imm: 'h00000000, tag: InstTag { way: 'h0, ptr: 'h0c, t: 'h18 }, ldstq_tag: tagged Ld 'h02, rVal1: v: True a: 'h0000000080006000 o: 'h0000000080006000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, rVal2: v: False a: 'h0000000000000000 o: 'h0000000000000000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h0000 hp: 'h000 ot: 'h3ffff f: 'h0, vaddr: v: True a: 'h0000000080006000 o: 'h0000000080006000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, cap_checks: CapChecks {rn1 'h0b, rn2 'h0b, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, origBE: tagged DataMemAccess , shiftBEData: }, spec_bits: 'h000 } +DTLB top.soc_top.corew_proc.core_0.coreFix_memExe_dTlb req (bare): TlbReq { addr: 'h0000000080006000, write: False, capStore: False, potentialCapLoad: False } +instret:21 PC:0x1ffff0000000000000000000080000032 instr:0x206285db iType:Cap [doCommitNormalInst [0]] 1770 +instret:22 PC:0x1ffff0000000000000000000080000036 instr:0x00004321 iType:Alu [doCommitNormalInst [1]] 1770 +calling cycle + 17710 : [doFinishMem] DTlbResp { resp: <'h0000000080006000,tagged Invalid ,True>, inst: MemExeToFinish { mem_func: Ld, tag: InstTag { way: 'h0, ptr: 'h0c, t: 'h18 }, ldstq_tag: tagged Ld 'h02, shiftedBE: tagged DataMemAccess , vaddr: v: True a: 'h0000000080006000 o: 'h0000000080006000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, misaligned: False, capStore: False, allowCapLoad: False, capException: tagged Invalid , check: tagged Valid BoundsCheck { authority_base: 'h0000000000000000, authority_top: 'h10000000000000000, authority_idx: 'h21, check_low: 'h0000000080006000, check_high: 'h00000000080006008, check_inclusive: True } }, specBits: 'h000 } + 17710 : [doIssueLd] fromIssueQ: False ; LSQIssueLdInfo { tag: 'h02, paddr: 'h0000000080006000, shiftedBE: tagged DataMemAccess , pcHash: 'h803c } ; SBSearchRes { matchIdx: tagged Invalid , forwardData: tagged Invalid } ; tagged ToCache + 17710 L1 top.soc_top.corew_proc.core_0 cRqTransfer_new: 'h1 ; ProcRq { id: 'h02, addr: 'h0000000080006000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h803c } +instret:23 PC:0x1ffff0000000000000000000080000038 instr:0x106585db iType:Cap [doCommitNormalInst [0]] 1771 +calling cycle + 17720 L1 top.soc_top.corew_proc.core_0 pipelineResp: PipeOut { cmd: tagged L1CRq 'h1, way: 'h0, pRqMiss: False, ram: RamData { info: CacheInfo { tag: 'h0000000000000, cs: I, dir: , owner: tagged Invalid , other: }, line: CLine { tag: , data: > } }, repInfo: , setAuxData: tagged Invalid } + 17720 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: 'h1 ; ProcRq { id: 'h02, addr: 'h0000000080006000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h803c } + 17720 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: no owner, miss no replace +calling cycle +calling cycle + 17740 L1 top.soc_top.corew_proc.core_0 sendRqToP: 'h1 ; ProcRq { id: 'h02, addr: 'h0000000080006000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h803c } ; L1CRqSlot { way: 'h0, cs: I, repTag: 'h2aaaaaaaaaaaa, waitP: True } ; CRqMsg { addr: 'h0000000080006000, fromState: I, toState: E, canUpToE: True, id: 'h0, child: , isPrefetchRq: False } +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle + [mkReservationStationRow::_write] ToReservationStation { data: MemRSData { mem_func: St, imm: 'h00000000, ldstq_tag: tagged St 'h0, cap_checks: CapChecks {rn1 'h01, rn2 'h06, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h01, src2: tagged Valid 'h6c, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h1, ptr: 'h16, t: 'h2d }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle + 17990 : [doDispatchMem] ToReservationStation { data: MemRSData { mem_func: St, imm: 'h00000000, ldstq_tag: tagged St 'h0, cap_checks: CapChecks {rn1 'h01, rn2 'h06, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h01, src2: tagged Valid 'h6c, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h1, ptr: 'h16, t: 'h2d }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +calling cycle + 18000 : [doRegReadMem] ToSpecFifo { data: MemDispatchToRegRead { mem_func: St, imm: 'h00000000, regs: PhyRegs { src1: tagged Valid 'h01, src2: tagged Valid 'h6c, src3: tagged Invalid , dst: tagged Invalid }, tag: InstTag { way: 'h1, ptr: 'h16, t: 'h2d }, ldstq_tag: tagged St 'h0, cap_checks: CapChecks {rn1 'h01, rn2 'h06, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, spec_bits: 'h000 } +calling cycle + 18010 : [doExeMem] ToSpecFifo { data: MemRegReadToExe { mem_func: St, imm: 'h00000000, tag: InstTag { way: 'h1, ptr: 'h16, t: 'h2d }, ldstq_tag: tagged St 'h0, rVal1: v: True a: 'h0000000000000000 o: 'h0000000000000000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, rVal2: v: False a: 'h0000000000000001 o: 'h0000000000000001 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h0000 hp: 'h000 ot: 'h3ffff f: 'h0, vaddr: v: True a: 'h0000000000000000 o: 'h0000000000000000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, cap_checks: CapChecks {rn1 'h01, rn2 'h06, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, origBE: tagged DataMemAccess , shiftBEData: }, spec_bits: 'h000 } +DTLB top.soc_top.corew_proc.core_0.coreFix_memExe_dTlb req (bare): TlbReq { addr: 'h0000000000000000, write: True, capStore: False, potentialCapLoad: False } +calling cycle + 18020 : [doFinishMem] DTlbResp { resp: <'h0000000000000000,tagged Invalid ,True>, inst: MemExeToFinish { mem_func: St, tag: InstTag { way: 'h1, ptr: 'h16, t: 'h2d }, ldstq_tag: tagged St 'h0, shiftedBE: tagged DataMemAccess , vaddr: v: True a: 'h0000000000000000 o: 'h0000000000000000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, misaligned: False, capStore: False, allowCapLoad: False, capException: tagged Invalid , check: tagged Valid BoundsCheck { authority_base: 'h0000000000000000, authority_top: 'h10000000000000000, authority_idx: 'h21, check_low: 'h0000000000000000, check_high: 'h00000000000000008, check_inclusive: True } }, specBits: 'h000 } +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle + 18260 L1 top.soc_top.corew_proc.core_0 pRsTransfer: PRsMsg { addr: 'h0000000080006000, toState: E, child: , data: tagged Valid CLine { tag: , data: > }, id: 'h0 } +calling cycle + 18270 L1 top.soc_top.corew_proc.core_0 pipelineResp: PipeOut { cmd: tagged L1PRs , way: 'h0, pRqMiss: False, ram: RamData { info: CacheInfo { tag: 'h0000000040003, cs: E, dir: , owner: tagged Valid 'h1, other: }, line: CLine { tag: , data: > } }, repInfo: , setAuxData: tagged Invalid } + 18270 L1 top.soc_top.corew_proc.core_0 pipelineResp: pRs: + 18270 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: 'h1 ; ProcRq { id: 'h02, addr: 'h0000000080006000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h803c } + 18270 : [Ld resp] 'h02; TaggedData { tag: False, data: }; LSQHitInfo { waitWPResp: False, dst: tagged Valid PhyDst { indx: 'h58, isFpuReg: False } } + 18270 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: update ram: CLine { tag: , data: > } ; tagged Invalid +calling cycle + 18280 : [doRespLdMem] 'h02; TaggedData { tag: False, data: }; LSQRespLdResult { wrongPath: False, dst: tagged Valid PhyDst { indx: 'h58, isFpuReg: False }, allowCap: False, data: TaggedData { tag: False, data: } } +[RFile] wr_ 3: r 58 <= 2aaaaaaaaaaaaaaa8aaa00001fffff44000000 +calling cycle +[doDeqLdQ_Ld] LdQDeqEntry { tag: 'h02, instTag: InstTag { way: 'h0, ptr: 'h0c, t: 'h18 }, memFunc: Ld, byteOrTagEn: tagged DataMemAccess , unsignedLd: False, acq: False, rel: False, dst: tagged Valid PhyDst { indx: 'h58, isFpuReg: False }, paddr: 'h0000000080006000, isMMIO: False, shiftedBE: tagged DataMemAccess , fault: tagged Invalid , allowCap: False, killed: tagged Invalid } +calling cycle + 18300 : [doDispatchMem] ToReservationStation { data: MemRSData { mem_func: Ld, imm: 'h00000000, ldstq_tag: tagged Ld 'h03, cap_checks: CapChecks {rn1 'h0c, rn2 'h0c, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h5d, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h5e, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h0f, t: 'h1e }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +instret:24 PC:0x1ffff000000000000000000008000003c instr:0x0005b283 iType:Ld [doCommitNormalInst [0]] 1830 +instret:25 PC:0x1ffff0000000000000000000080000040 instr:0x10001337 iType:Alu [doCommitNormalInst [1]] 1830 +calling cycle +[RFile] wr_ 1: r 5b <= 0000000020002000000000001fffff44000000 + 18310 : [doRegReadMem] ToSpecFifo { data: MemDispatchToRegRead { mem_func: Ld, imm: 'h00000000, regs: PhyRegs { src1: tagged Valid 'h5d, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h5e, isFpuReg: False } }, tag: InstTag { way: 'h0, ptr: 'h0f, t: 'h1e }, ldstq_tag: tagged Ld 'h03, cap_checks: CapChecks {rn1 'h0c, rn2 'h0c, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, spec_bits: 'h000 } +instret:26 PC:0x1ffff0000000000000000000080000044 instr:0x0000030e iType:Alu [doCommitNormalInst [0]] 1831 +calling cycle +[RFile] wr_ 1: r 5d <= 0000000020002000000000001ffff800020000 + 18320 : [doExeMem] ToSpecFifo { data: MemRegReadToExe { mem_func: Ld, imm: 'h00000000, tag: InstTag { way: 'h0, ptr: 'h0f, t: 'h1e }, ldstq_tag: tagged Ld 'h03, rVal1: v: True a: 'h0000000080008000 o: 'h0000000080008000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, rVal2: v: False a: 'h0000000000000000 o: 'h0000000000000000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h0000 hp: 'h000 ot: 'h3ffff f: 'h0, vaddr: v: True a: 'h0000000080008000 o: 'h0000000080008000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, cap_checks: CapChecks {rn1 'h0c, rn2 'h0c, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, origBE: tagged DataMemAccess , shiftBEData: }, spec_bits: 'h000 } +DTLB top.soc_top.corew_proc.core_0.coreFix_memExe_dTlb req (bare): TlbReq { addr: 'h0000000080008000, write: False, capStore: False, potentialCapLoad: False } +instret:27 PC:0x1ffff0000000000000000000080000046 instr:0x2062865b iType:Cap [doCommitNormalInst [0]] 1832 +instret:28 PC:0x1ffff000000000000000000008000004a instr:0x00004321 iType:Alu [doCommitNormalInst [1]] 1832 +calling cycle + 18330 : [doFinishMem] DTlbResp { resp: <'h0000000080008000,tagged Invalid ,True>, inst: MemExeToFinish { mem_func: Ld, tag: InstTag { way: 'h0, ptr: 'h0f, t: 'h1e }, ldstq_tag: tagged Ld 'h03, shiftedBE: tagged DataMemAccess , vaddr: v: True a: 'h0000000080008000 o: 'h0000000080008000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, misaligned: False, capStore: False, allowCapLoad: False, capException: tagged Invalid , check: tagged Valid BoundsCheck { authority_base: 'h0000000000000000, authority_top: 'h10000000000000000, authority_idx: 'h21, check_low: 'h0000000080008000, check_high: 'h00000000080008008, check_inclusive: True } }, specBits: 'h000 } + 18330 : [doIssueLd] fromIssueQ: False ; LSQIssueLdInfo { tag: 'h03, paddr: 'h0000000080008000, shiftedBE: tagged DataMemAccess , pcHash: 'h8050 } ; SBSearchRes { matchIdx: tagged Invalid , forwardData: tagged Invalid } ; tagged ToCache + 18330 L1 top.soc_top.corew_proc.core_0 cRqTransfer_new: 'h2 ; ProcRq { id: 'h03, addr: 'h0000000080008000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8050 } +instret:29 PC:0x1ffff000000000000000000008000004c instr:0x1066065b iType:Cap [doCommitNormalInst [0]] 1833 +calling cycle + 18340 L1 top.soc_top.corew_proc.core_0 pipelineResp: PipeOut { cmd: tagged L1CRq 'h2, way: 'h1, pRqMiss: False, ram: RamData { info: CacheInfo { tag: 'h0000000000000, cs: I, dir: , owner: tagged Invalid , other: }, line: CLine { tag: , data: > } }, repInfo: , setAuxData: tagged Invalid } + 18340 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: 'h2 ; ProcRq { id: 'h03, addr: 'h0000000080008000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8050 } + 18340 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: no owner, miss no replace +calling cycle +calling cycle + 18360 L1 top.soc_top.corew_proc.core_0 sendRqToP: 'h2 ; ProcRq { id: 'h03, addr: 'h0000000080008000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8050 } ; L1CRqSlot { way: 'h1, cs: I, repTag: 'h2aaaaaaaaaaaa, waitP: True } ; CRqMsg { addr: 'h0000000080008000, fromState: I, toState: E, canUpToE: True, id: 'h1, child: , isPrefetchRq: False } +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle + 18840 L1 top.soc_top.corew_proc.core_0 pRsTransfer: PRsMsg { addr: 'h0000000080008000, toState: E, child: , data: tagged Valid CLine { tag: , data: > }, id: 'h1 } +calling cycle + 18850 L1 top.soc_top.corew_proc.core_0 pipelineResp: PipeOut { cmd: tagged L1PRs , way: 'h1, pRqMiss: False, ram: RamData { info: CacheInfo { tag: 'h0000000040004, cs: E, dir: , owner: tagged Valid 'h2, other: }, line: CLine { tag: , data: > } }, repInfo: , setAuxData: tagged Invalid } + 18850 L1 top.soc_top.corew_proc.core_0 pipelineResp: pRs: + 18850 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: 'h2 ; ProcRq { id: 'h03, addr: 'h0000000080008000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8050 } + 18850 : [Ld resp] 'h03; TaggedData { tag: False, data: }; LSQHitInfo { waitWPResp: False, dst: tagged Valid PhyDst { indx: 'h5e, isFpuReg: False } } + 18850 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: update ram: CLine { tag: , data: > } ; tagged Invalid +calling cycle + 18860 : [doRespLdMem] 'h03; TaggedData { tag: False, data: }; LSQRespLdResult { wrongPath: False, dst: tagged Valid PhyDst { indx: 'h5e, isFpuReg: False }, allowCap: False, data: TaggedData { tag: False, data: } } +[RFile] wr_ 3: r 5e <= 2aaaaaaaaaaaaaaa8aaa00001fffff44000000 +calling cycle +[doDeqLdQ_Ld] LdQDeqEntry { tag: 'h03, instTag: InstTag { way: 'h0, ptr: 'h0f, t: 'h1e }, memFunc: Ld, byteOrTagEn: tagged DataMemAccess , unsignedLd: False, acq: False, rel: False, dst: tagged Valid PhyDst { indx: 'h5e, isFpuReg: False }, paddr: 'h0000000080008000, isMMIO: False, shiftedBE: tagged DataMemAccess , fault: tagged Invalid , allowCap: False, killed: tagged Invalid } +calling cycle + 18880 : [doDispatchMem] ToReservationStation { data: MemRSData { mem_func: Ld, imm: 'h00000000, ldstq_tag: tagged Ld 'h04, cap_checks: CapChecks {rn1 'h0d, rn2 'h0d, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h64, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h65, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h12, t: 'h25 }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +instret:30 PC:0x1ffff0000000000000000000080000050 instr:0x00063283 iType:Ld [doCommitNormalInst [0]] 1888 +instret:31 PC:0x1ffff0000000000000000000080000054 instr:0x00080337 iType:Alu [doCommitNormalInst [1]] 1888 +calling cycle +[RFile] wr_ 0: r 62 <= 0000000020002400000000001fffff44000000 + 18890 : [doRegReadMem] ToSpecFifo { data: MemDispatchToRegRead { mem_func: Ld, imm: 'h00000000, regs: PhyRegs { src1: tagged Valid 'h64, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h65, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h12, t: 'h25 }, ldstq_tag: tagged Ld 'h04, cap_checks: CapChecks {rn1 'h0d, rn2 'h0d, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, spec_bits: 'h000 } +instret:32 PC:0x1ffff0000000000000000000080000058 instr:0x00002325 iType:Alu [doCommitNormalInst [0]] 1889 +instret:33 PC:0x1ffff000000000000000000008000005a instr:0x00000332 iType:Alu [doCommitNormalInst [1]] 1889 +calling cycle +[RFile] wr_ 0: r 64 <= 0000000020002400100000001ffff804021000 + 18900 : [doExeMem] ToSpecFifo { data: MemRegReadToExe { mem_func: Ld, imm: 'h00000000, tag: InstTag { way: 'h1, ptr: 'h12, t: 'h25 }, ldstq_tag: tagged Ld 'h04, rVal1: v: True a: 'h0000000080009000 o: 'h0000000080009000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, rVal2: v: False a: 'h0000000000000000 o: 'h0000000000000000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h0000 hp: 'h000 ot: 'h3ffff f: 'h0, vaddr: v: True a: 'h0000000080009000 o: 'h0000000080009000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, cap_checks: CapChecks {rn1 'h0d, rn2 'h0d, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, origBE: tagged DataMemAccess , shiftBEData: }, spec_bits: 'h000 } +DTLB top.soc_top.corew_proc.core_0.coreFix_memExe_dTlb req (bare): TlbReq { addr: 'h0000000080009000, write: False, capStore: False, potentialCapLoad: False } +instret:34 PC:0x1ffff000000000000000000008000005c instr:0x206286db iType:Cap [doCommitNormalInst [0]] 1890 +instret:35 PC:0x1ffff0000000000000000000080000060 instr:0x00004321 iType:Alu [doCommitNormalInst [1]] 1890 +calling cycle + 18910 : [doFinishMem] DTlbResp { resp: <'h0000000080009000,tagged Invalid ,True>, inst: MemExeToFinish { mem_func: Ld, tag: InstTag { way: 'h1, ptr: 'h12, t: 'h25 }, ldstq_tag: tagged Ld 'h04, shiftedBE: tagged DataMemAccess , vaddr: v: True a: 'h0000000080009000 o: 'h0000000080009000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, misaligned: False, capStore: False, allowCapLoad: False, capException: tagged Invalid , check: tagged Valid BoundsCheck { authority_base: 'h0000000000000000, authority_top: 'h10000000000000000, authority_idx: 'h21, check_low: 'h0000000080009000, check_high: 'h00000000080009008, check_inclusive: True } }, specBits: 'h000 } + 18910 : [doIssueLd] fromIssueQ: False ; LSQIssueLdInfo { tag: 'h04, paddr: 'h0000000080009000, shiftedBE: tagged DataMemAccess , pcHash: 'h8066 } ; SBSearchRes { matchIdx: tagged Invalid , forwardData: tagged Invalid } ; tagged ToCache + 18910 L1 top.soc_top.corew_proc.core_0 cRqTransfer_new: 'h3 ; ProcRq { id: 'h04, addr: 'h0000000080009000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8066 } +instret:36 PC:0x1ffff0000000000000000000080000062 instr:0x106686db iType:Cap [doCommitNormalInst [0]] 1891 +calling cycle + 18920 L1 top.soc_top.corew_proc.core_0 pipelineResp: PipeOut { cmd: tagged L1CRq 'h3, way: 'h1, pRqMiss: False, ram: RamData { info: CacheInfo { tag: 'h0000000000000, cs: I, dir: , owner: tagged Invalid , other: }, line: CLine { tag: , data: > } }, repInfo: , setAuxData: tagged Invalid } + 18920 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: 'h3 ; ProcRq { id: 'h04, addr: 'h0000000080009000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8066 } + 18920 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: no owner, miss no replace +calling cycle +calling cycle + 18940 L1 top.soc_top.corew_proc.core_0 sendRqToP: 'h3 ; ProcRq { id: 'h04, addr: 'h0000000080009000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8066 } ; L1CRqSlot { way: 'h1, cs: I, repTag: 'h2aaaaaaaaaaaa, waitP: True } ; CRqMsg { addr: 'h0000000080009000, fromState: I, toState: E, canUpToE: True, id: 'h1, child: , isPrefetchRq: False } +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle + 19420 L1 top.soc_top.corew_proc.core_0 pRsTransfer: PRsMsg { addr: 'h0000000080009000, toState: E, child: , data: tagged Valid CLine { tag: , data: > }, id: 'h1 } +calling cycle + 19430 L1 top.soc_top.corew_proc.core_0 pipelineResp: PipeOut { cmd: tagged L1PRs , way: 'h1, pRqMiss: False, ram: RamData { info: CacheInfo { tag: 'h0000000040004, cs: E, dir: , owner: tagged Valid 'h3, other: }, line: CLine { tag: , data: > } }, repInfo: , setAuxData: tagged Invalid } + 19430 L1 top.soc_top.corew_proc.core_0 pipelineResp: pRs: + 19430 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: 'h3 ; ProcRq { id: 'h04, addr: 'h0000000080009000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h8066 } + 19430 : [Ld resp] 'h04; TaggedData { tag: False, data: }; LSQHitInfo { waitWPResp: False, dst: tagged Valid PhyDst { indx: 'h65, isFpuReg: False } } + 19430 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: update ram: CLine { tag: , data: > } ; tagged Invalid +calling cycle + 19440 : [doRespLdMem] 'h04; TaggedData { tag: False, data: }; LSQRespLdResult { wrongPath: False, dst: tagged Valid PhyDst { indx: 'h65, isFpuReg: False }, allowCap: False, data: TaggedData { tag: False, data: } } +[RFile] wr_ 3: r 65 <= 2aaaaaaaaaaaaaaa8aaa00001fffff44000000 +calling cycle +[doDeqLdQ_Ld] LdQDeqEntry { tag: 'h04, instTag: InstTag { way: 'h1, ptr: 'h12, t: 'h25 }, memFunc: Ld, byteOrTagEn: tagged DataMemAccess , unsignedLd: False, acq: False, rel: False, dst: tagged Valid PhyDst { indx: 'h65, isFpuReg: False }, paddr: 'h0000000080009000, isMMIO: False, shiftedBE: tagged DataMemAccess , fault: tagged Invalid , allowCap: False, killed: tagged Invalid } +calling cycle + 19460 : [doDispatchMem] ToReservationStation { data: MemRSData { mem_func: Ld, imm: 'h00000000, ldstq_tag: tagged Ld 'h05, cap_checks: CapChecks {rn1 'h0e, rn2 'h0e, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, regs: PhyRegs { src1: tagged Valid 'h6a, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h6b, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h15, t: 'h2b }, spec_bits: 'h000, spec_tag: tagged Invalid , regs_ready: RegsReady { src1: True, src2: True, src3: True, dst: True } } +instret:37 PC:0x1ffff0000000000000000000080000066 instr:0x0006b283 iType:Ld [doCommitNormalInst [0]] 1946 +instret:38 PC:0x1ffff000000000000000000008000006a instr:0x40001337 iType:Alu [doCommitNormalInst [1]] 1946 +calling cycle +[RFile] wr_ 0: r 68 <= 0000000020000800000000001fffff44000000 + 19470 : [doRegReadMem] ToSpecFifo { data: MemDispatchToRegRead { mem_func: Ld, imm: 'h00000000, regs: PhyRegs { src1: tagged Valid 'h6a, src2: tagged Invalid , src3: tagged Invalid , dst: tagged Valid PhyDst { indx: 'h6b, isFpuReg: False } }, tag: InstTag { way: 'h1, ptr: 'h15, t: 'h2b }, ldstq_tag: tagged Ld 'h05, cap_checks: CapChecks {rn1 'h0e, rn2 'h0e, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, ddc_offset: True }, spec_bits: 'h000 } +instret:39 PC:0x1ffff000000000000000000008000006e instr:0x00000306 iType:Alu [doCommitNormalInst [0]] 1947 +calling cycle +[RFile] wr_ 0: r 6a <= 0000000020000800200000001ffff808022000 + 19480 : [doExeMem] ToSpecFifo { data: MemRegReadToExe { mem_func: Ld, imm: 'h00000000, tag: InstTag { way: 'h1, ptr: 'h15, t: 'h2b }, ldstq_tag: tagged Ld 'h05, rVal1: v: True a: 'h0000000080002000 o: 'h0000000080002000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, rVal2: v: False a: 'h0000000000000000 o: 'h0000000000000000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h0000 hp: 'h000 ot: 'h3ffff f: 'h0, vaddr: v: True a: 'h0000000080002000 o: 'h0000000080002000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, cap_checks: CapChecks {rn1 'h0e, rn2 'h0e, bounds check: auth Ddc, low Vaddr, high VaddrPlusSize, inclusive True}, origBE: tagged DataMemAccess , shiftBEData: }, spec_bits: 'h000 } +DTLB top.soc_top.corew_proc.core_0.coreFix_memExe_dTlb req (bare): TlbReq { addr: 'h0000000080002000, write: False, capStore: False, potentialCapLoad: False } +instret:40 PC:0x1ffff0000000000000000000080000070 instr:0x2062875b iType:Cap [doCommitNormalInst [0]] 1948 +instret:41 PC:0x1ffff0000000000000000000080000074 instr:0x00004321 iType:Alu [doCommitNormalInst [1]] 1948 +calling cycle + 19490 : [doFinishMem] DTlbResp { resp: <'h0000000080002000,tagged Invalid ,True>, inst: MemExeToFinish { mem_func: Ld, tag: InstTag { way: 'h1, ptr: 'h15, t: 'h2b }, ldstq_tag: tagged Ld 'h05, shiftedBE: tagged DataMemAccess , vaddr: v: True a: 'h0000000080002000 o: 'h0000000080002000 b: 'h0000000000000000 t: 'h10000000000000000 sp: 'h000f hp: 'hfff ot: 'h3ffff f: 'h0, misaligned: False, capStore: False, allowCapLoad: False, capException: tagged Invalid , check: tagged Valid BoundsCheck { authority_base: 'h0000000000000000, authority_top: 'h10000000000000000, authority_idx: 'h21, check_low: 'h0000000080002000, check_high: 'h00000000080002008, check_inclusive: True } }, specBits: 'h000 } + 19490 : [doIssueLd] fromIssueQ: False ; LSQIssueLdInfo { tag: 'h05, paddr: 'h0000000080002000, shiftedBE: tagged DataMemAccess , pcHash: 'h807a } ; SBSearchRes { matchIdx: tagged Invalid , forwardData: tagged Invalid } ; tagged ToCache + 19490 L1 top.soc_top.corew_proc.core_0 cRqTransfer_new: 'h4 ; ProcRq { id: 'h05, addr: 'h0000000080002000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h807a } +instret:42 PC:0x1ffff0000000000000000000080000076 instr:0x1067075b iType:Cap [doCommitNormalInst [0]] 1949 +calling cycle + 19500 L1 top.soc_top.corew_proc.core_0 pipelineResp: PipeOut { cmd: tagged L1CRq 'h4, way: 'h2, pRqMiss: False, ram: RamData { info: CacheInfo { tag: 'h0000000000000, cs: I, dir: , owner: tagged Invalid , other: }, line: CLine { tag: , data: > } }, repInfo: , setAuxData: tagged Invalid } + 19500 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: 'h4 ; ProcRq { id: 'h05, addr: 'h0000000080002000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h807a } + 19500 L1 top.soc_top.corew_proc.core_0 pipelineResp: cRq: no owner, miss no replace +calling cycle +calling cycle + 19520 L1 top.soc_top.corew_proc.core_0 sendRqToP: 'h4 ; ProcRq { id: 'h05, addr: 'h0000000080002000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h807a } ; L1CRqSlot { way: 'h2, cs: I, repTag: 'h2aaaaaaaaaaaa, waitP: True } ; CRqMsg { addr: 'h0000000080002000, fromState: I, toState: E, canUpToE: True, id: 'h2, child: , isPrefetchRq: False } +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle +calling cycle + 20000 L1 top.soc_top.corew_proc.core_0 pRsTransfer: PRsMsg { addr: 'h0000000080002000, toState: E, child: , data: tagged Valid CLine { tag: , data: > }, id: 'h2 } +calling cycle + 20010 L1 top.soc_top.corew_proc.core_0 pipelineResp: PipeOut { cmd: tagged L1PRs , way: 'h2, pRqMiss: False, ram: RamData { info: CacheInfo { tag: 'h0000000040001, cs: E, dir: , owner: tagged Valid 'h4, other: }, line: CLine { tag: , data: > } }, repInfo: , setAuxData: tagged Invalid } + 20010 L1 top.soc_top.corew_proc.core_0 pipelineResp: pRs: + 20010 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: 'h4 ; ProcRq { id: 'h05, addr: 'h0000000080002000, toState: E, op: Ld, byteEn: , data: TaggedData { tag: False, data: }, amoInst: AmoInst { func: None, width: Word, aq: True, rl: False }, loadTags: False, pcHash: 'h807a } + 20010 : [Ld resp] 'h05; TaggedData { tag: False, data: }; LSQHitInfo { waitWPResp: False, dst: tagged Valid PhyDst { indx: 'h6b, isFpuReg: False } } + 20010 L1 top.soc_top.corew_proc.core_0 pipelineResp: Hit func: update ram: CLine { tag: , data: > } ; tagged Invalid +calling cycle + 20020 : [doRespLdMem] 'h05; TaggedData { tag: False, data: }; LSQRespLdResult { wrongPath: False, dst: tagged Valid PhyDst { indx: 'h6b, isFpuReg: False }, allowCap: False, data: TaggedData { tag: False, data: } } +[RFile] wr_ 3: r 6b <= 2aaaaaaaaaaaaaaa8aaa00001fffff44000000 +calling cycle +[doDeqLdQ_Ld] LdQDeqEntry { tag: 'h05, instTag: InstTag { way: 'h1, ptr: 'h15, t: 'h2b }, memFunc: Ld, byteOrTagEn: tagged DataMemAccess , unsignedLd: False, acq: False, rel: False, dst: tagged Valid PhyDst { indx: 'h6b, isFpuReg: False }, paddr: 'h0000000080002000, isMMIO: False, shiftedBE: tagged DataMemAccess , fault: tagged Invalid , allowCap: False, killed: tagged Invalid } +calling cycle +instret:43 PC:0x1ffff000000000000000000008000007a instr:0x00073283 iType:Ld [doCommitNormalInst [0]] 2004 +instret:44 PC:0x1ffff000000000000000000008000007e instr:0x00004305 iType:Alu [doCommitNormalInst [1]] 2004 +calling cycle +calling cycle +[doDeqStQ_MMIO_issue] StQDeqEntry { instTag: InstTag { way: 'h1, ptr: 'h16, t: 'h2d }, memFunc: St, amoFunc: None, acq: False, rel: False, dst: tagged Invalid , paddr: 'h0000000000000000, isMMIO: True, shiftedBE: , stData: TaggedData { tag: False, data: }, allowCapAmoLd: False, fault: tagged Invalid , pcHash: 'h8080 }; MMIOCRq { addr: 'h0000000000000000, func: tagged St , byteEn: , data: TaggedData { tag: False, data: }, loadTags: False } +calling cycle +calling cycle +calling cycle +2010: mmioPlatform.rl_tohost: 0x1 (= 1) +PASS diff --git a/builds/Resources/Include_Common.mk b/builds/Resources/Include_Common.mk index 9a6b8b3..ede6930 100644 --- a/builds/Resources/Include_Common.mk +++ b/builds/Resources/Include_Common.mk @@ -56,6 +56,7 @@ BSC_COMPILATION_FLAGS += \ -D FABRIC64 \ -D BLUESIM \ -D PERFORMANCE_MONITORING \ + -D PERF_COUNT \ -keep-fires -aggressive-conditions -no-warn-action-shadowing -check-assert \ -suppress-warnings G0020 -steps-max-intervals 10000000 \ -steps-warn-interval 1000000 \ diff --git a/src_Core/CPU/Core.bsv b/src_Core/CPU/Core.bsv index 3773af0..961d6f8 100644 --- a/src_Core/CPU/Core.bsv +++ b/src_Core/CPU/Core.bsv @@ -918,6 +918,7 @@ module mkCore#(CoreId coreId)(Core); // incr cycle count (* fire_when_enabled, no_implicit_conditions *) rule incCycleCnt(doStats); + $display("calling cycle"); cycleCnt.incr(1); endrule diff --git a/src_Core/CPU/CsrFile.bsv b/src_Core/CPU/CsrFile.bsv index 34de083..925ba2d 100644 --- a/src_Core/CPU/CsrFile.bsv +++ b/src_Core/CPU/CsrFile.bsv @@ -330,7 +330,7 @@ interface StatsCsr; endinterface module mkStatsCsr(StatsCsr); - Reg#(Bool) doStats <- mkConfigReg(False); + Reg#(Bool) doStats <- mkConfigReg(True); FIFO#(Bool) writeQ <- mkFIFO1;